/* ==========================================================
   ORA HOME SOLUTIONS — COMPONENT LIBRARY STYLES
   Reusable UI patterns for the home services ecosystem.
   Supports both Light and Dark themes via modifier classes.
   ========================================================== */

/* Global Helper Icons */
.icon-sm {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  flex-shrink: 0;
  display: inline-block;
}

/* ── 01. Sticky Brand Header & Navigation ── */
.brand-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--t-default);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.brand-header.theme-light {
  background: rgba(255, 255, 255, 0.90);
  border-bottom: 1px solid var(--hairline);
  box-shadow: 0 10px 30px -15px rgba(11, 19, 32, 0.05);
}

.brand-header.theme-dark {
  background: rgba(11, 19, 32, 0.90);
  border-bottom: 1px solid var(--hairline-dark);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  gap: 16px;
  position: relative;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  text-decoration: none;
}

.brand-header.theme-light .header-logo {
  color: var(--text-strong);
}

.brand-header.theme-dark .header-logo {
  color: var(--white);
}

.header-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--brand-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
}

.brand-header.theme-dark .header-logo-mark {
  background: var(--white);
  color: var(--brand-dark);
}

.header-logo-text {
  font-weight: 800;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color var(--t-fast);
}

.brand-header.theme-light .header-nav a {
  color: var(--text-main);
}
.brand-header.theme-light .header-nav a:hover,
.brand-header.theme-light .header-nav a.active {
  color: var(--brand-orange);
}

.brand-header.theme-dark .header-nav a {
  color: var(--muted-on-dark);
}
.brand-header.theme-dark .header-nav a:hover,
.brand-header.theme-dark .header-nav a.active {
  color: var(--white);
}

.header-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--brand-orange);
  border-radius: var(--r-pill);
}

/* Services Dropdown Menu Styles */
.nav-dropdown-item {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.nav-dropdown-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

/* Specific theme and hover colors using clean hierarchy overrides */
.brand-header.theme-light .header-nav .nav-dropdown a {
  color: var(--text-main);
  padding: 10px 20px;
  display: block;
  text-align: left;
}

.brand-header.theme-light .header-nav .nav-dropdown a:hover,
.brand-header.theme-light .header-nav .nav-dropdown a.active-sub {
  color: var(--brand-orange);
  background: var(--blue-bg-soft);
}

.brand-header.theme-light .header-nav .nav-dropdown a::after {
  display: none;
}

/* Dark theme overrides */
.brand-header.theme-dark .header-nav .nav-dropdown {
  background: var(--brand-dark);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card-deep);
}

.brand-header.theme-dark .header-nav .nav-dropdown a {
  color: var(--muted-on-dark);
  padding: 10px 20px;
  display: block;
  text-align: left;
}

.brand-header.theme-dark .header-nav .nav-dropdown a:hover,
.brand-header.theme-dark .header-nav .nav-dropdown a.active-sub {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.brand-header.theme-dark .header-nav .nav-dropdown a::after {
  display: none;
}


/* Center Section: Unified Search Pill */
.header-search-pill {
  display: flex;
  align-items: center;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  padding: 4px;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-fast);
  max-width: 440px;
  width: 100%;
  position: relative;
}

.header-search-pill:focus-within {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.header-loc-select {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  height: 100%;
  cursor: pointer;
  color: var(--text-strong);
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: color var(--t-fast);
  user-select: none;
  min-width: 140px;
}

.header-loc-select svg.icon-sm {
  color: var(--brand-orange);
  width: 14px;
  height: 14px;
}

.header-loc-select svg.icon-chevron-down {
  width: 12px;
  height: 12px;
  opacity: 0.7;
  margin-left: auto;
}

.header-loc-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 12px;
  width: 200px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  z-index: 1001;
  overflow: hidden;
}

.brand-header.theme-dark .header-loc-dropdown {
  background: var(--brand-dark);
  border-color: rgba(255, 255, 255, 0.08);
}

.header-search-divider {
  width: 1px;
  height: 16px;
  background: var(--hairline);
  flex-shrink: 0;
}

.brand-header.theme-dark .header-search-divider {
  background: rgba(255, 255, 255, 0.08);
}

.header-query-input {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-grow: 1;
  padding: 0 12px;
  height: 100%;
}

.header-query-input svg.icon-search {
  width: 14px;
  height: 14px;
  color: var(--text-main);
  flex-shrink: 0;
}

.header-query-input input {
  border: 0;
  outline: 0;
  width: 100%;
  height: 100%;
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--text-strong);
  background: transparent;
}

.brand-header.theme-dark .header-query-input input {
  color: var(--white);
}

.brand-header.theme-dark .header-query-input input::placeholder {
  color: var(--muted-on-dark);
}

.brand-header.theme-dark .header-search-pill {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.brand-header.theme-dark .header-loc-select {
  color: var(--white);
}

/* Right Section: Circular Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-action-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--hairline);
  background: var(--white);
  color: var(--text-strong);
  position: relative;
  transition: all var(--t-fast);
  outline: none;
  flex-shrink: 0;
}

.header-action-btn:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  background: var(--blue-bg-soft);
  transform: translateY(-1px);
}

.header-action-btn svg {
  width: 16px;
  height: 16px;
}

.brand-header.theme-dark .header-action-btn {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.brand-header.theme-dark .header-action-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--brand-orange);
  color: var(--white);
}

.cart-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: #000000;
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--white);
}

.brand-header.theme-dark .cart-badge {
  background: #ffffff;
  color: var(--brand-dark);
  border-color: var(--brand-dark);
}

/* Responsive Rules for Header */
@media (max-width: 991px) {
  .header-nav {
    display: none;
  }
  .header-search-pill {
    max-width: 360px;
  }
}

@media (max-width: 767px) {
  .header-inner {
    display: grid;
    grid-template-areas: 
      "logo actions"
      "search search";
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 12px;
  }
  
  .header-left {
    grid-area: logo;
  }
  
  .header-search-pill {
    grid-area: search;
    max-width: 100%;
    margin: 0;
  }
  
  .header-actions {
    grid-area: actions;
    justify-content: flex-end;
  }
}



/* ── 02. Variant 4 split hero section styles ── */
.v4-hero-section {
  background: var(--white);
  padding: 80px 24px;
  font-family: var(--font-sans);
}
.v4-hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1024px) {
  .v4-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.v4-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.v4-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-bg-soft);
  color: var(--brand-orange);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  font-family: var(--font-display);
}
.v4-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--brand-orange);
  border-radius: 50%;
  animation: pulse-indigo 2s infinite;
}
@keyframes pulse-indigo {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}
.v4-heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  color: var(--text-strong);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.v4-heading span {
  color: var(--brand-orange);
}
.v4-desc {
  font-size: 16px;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 520px;
}

/* Search box styling */
.v4-search-box {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 6px;
  width: 100%;
  max-width: 540px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.v4-search-box:focus-within {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}
.v4-loc-select {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-right: 1px solid var(--hairline);
  cursor: pointer;
  color: var(--text-strong);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  min-width: 160px;
  height: 44px;
}
.v4-loc-select svg {
  color: var(--brand-orange);
  flex-shrink: 0;
}
.v4-loc-select svg.icon-sm:last-of-type {
  width: 12px;
  height: 12px;
  opacity: 0.7;
  margin-left: auto;
}
.v4-loc-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  margin-top: 8px;
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  z-index: 15;
  overflow: hidden;
}
.loc-dropdown-item {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-strong);
  cursor: pointer;
  transition: background var(--t-fast);
  text-align: left;
}
.loc-dropdown-item:hover {
  background: var(--surface-light);
  color: var(--brand-orange);
}
.v4-query-input {
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding: 0 14px;
  height: 44px;
}
.v4-query-input input {
  border: 0;
  outline: 0;
  width: 100%;
  height: 100%;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-strong);
}
/* Custom Services Select Dropdown */
.v4-services-select-wrapper {
  position: relative;
  flex-grow: 1;
  height: 44px;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.v4-services-select-trigger {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 14px;
  font-size: 13px;
  color: var(--text-strong);
  font-family: var(--font-sans);
}
.v4-services-select-trigger span {
  flex-grow: 1;
  text-align: left;
}
.v4-services-select-trigger svg.icon-chevron-down {
  width: 14px;
  height: 14px;
  color: var(--text-main);
  transition: transform var(--t-fast);
}
.v4-services-select-wrapper.open .v4-services-select-trigger svg.icon-chevron-down {
  transform: rotate(180deg);
}
.v4-services-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--hairline);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(11, 19, 32, 0.1);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  overflow: hidden;
}
.v4-services-dropdown-item {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-strong);
  cursor: pointer;
  transition: all var(--t-fast);
  text-align: left;
}
.v4-services-dropdown-item:hover {
  background: var(--blue-bg-soft);
  color: var(--brand-orange);
}
.v4-services-dropdown-item.selected {
  background: var(--blue-bg-soft);
  color: var(--brand-orange);
  font-weight: 600;
}

/* Header Search Dropdown Styles */
.header-query-select-wrapper {
  position: relative;
  flex-grow: 1;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.header-query-select-trigger {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 12px;
  font-size: 12.5px;
  color: var(--text-strong);
  font-family: var(--font-sans);
  font-weight: 600;
}
.header-query-select-trigger span {
  flex-grow: 1;
  text-align: left;
}
.header-query-select-trigger svg.icon-search {
  margin-right: 8px;
  width: 14px;
  height: 14px;
  color: var(--text-main);
  flex-shrink: 0;
}
.header-query-select-trigger svg.icon-chevron-down {
  margin-left: auto;
  width: 12px;
  height: 12px;
  opacity: 0.7;
}
.header-query-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 220px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  z-index: 1001;
  overflow: hidden;
}
.header-query-dropdown-item {
  padding: 10px 14px;
  font-size: 12.5px;
  color: var(--text-strong);
  cursor: pointer;
  transition: all var(--t-fast);
  text-align: left;
}
.header-query-dropdown-item:hover {
  background: var(--blue-bg-soft);
  color: var(--brand-orange);
}
.header-query-dropdown-item.selected {
  background: var(--blue-bg-soft);
  color: var(--brand-orange);
  font-weight: 600;
}

/* Dark mode overrides for Header query select */
.brand-header.theme-dark .header-query-select-trigger {
  color: var(--white);
}
.brand-header.theme-dark .header-query-dropdown {
  background: var(--brand-dark);
  border-color: rgba(255, 255, 255, 0.08);
}
.brand-header.theme-dark .header-query-dropdown-item {
  color: var(--white);
}
.brand-header.theme-dark .header-query-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--brand-orange);
}
.brand-header.theme-dark .header-query-dropdown-item.selected {
  background: rgba(255, 255, 255, 0.05);
  color: var(--brand-orange);
}
.v4-search-btn {
  background: var(--brand-dark);
  color: var(--white);
  border: 0;
  outline: 0;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.v4-search-btn:hover {
  background: var(--brand-orange);
  transform: translateY(-1px);
}

/* Category Slider inside Variant 4 */
.v4-slider-container {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 540px;
  margin-top: 28px;
  gap: 8px;
}

/* Authority Badges */
.v4-authority-badges {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  align-items: center;
}
.v4-authority-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}
.v4-authority-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue-bg-soft);
  color: var(--brand-orange);
  flex-shrink: 0;
}
.v4-authority-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}
.v4-authority-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.v4-authority-val {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-strong);
}
.v4-authority-lbl {
  font-size: 12px;
  color: var(--text-main);
}
.theme-dark .v4-authority-val {
  color: var(--white);
}
.theme-dark .v4-authority-lbl {
  color: var(--muted-on-dark);
}
.theme-dark .v4-authority-icon {
  background: rgba(255, 255, 255, 0.05);
  color: var(--brand-orange);
}
@media (max-width: 480px) {
  .v4-authority-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.v4-slider-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  width: 100%;
  padding: 6px 2px;
}
.v4-slider-track::-webkit-scrollbar {
  display: none;
}
.v4-slider-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-strong);
  width: 76px;
  flex-shrink: 0;
  transition: transform var(--t-fast);
}
.v4-slider-item:hover {
  transform: translateY(-2px);
}
.v4-slider-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-fast);
  color: var(--brand-dark);
}
.v4-slider-item:hover .v4-slider-circle {
  border-color: var(--brand-orange);
  background: var(--blue-bg-soft);
  color: var(--brand-orange);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.12);
}
.v4-slider-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.v4-slider-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}
.v4-slider-title {
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  color: var(--text-strong);
  word-break: break-word;
}
.v4-slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--hairline);
  color: var(--text-strong);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-fast);
  flex-shrink: 0;
  z-index: 10;
}
.v4-slider-btn:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  background: var(--blue-bg-soft);
  transform: scale(1.05);
}
.v4-slider-btn.prev {
  margin-right: -4px;
}
.v4-slider-btn.next {
  margin-left: -4px;
}

/* 4-Image Staggered Collage */
.v4-collage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.v4-collage-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.v4-collage-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-sm);
}
.v4-collage-col:first-child .v4-collage-item:first-child {
  border-top-left-radius: 24px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.v4-collage-col:first-child .v4-collage-item:last-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 0;
}
.v4-collage-col:last-child .v4-collage-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 24px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.v4-collage-col:last-child .v4-collage-item:last-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 24px;
}
.v4-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform var(--t-slow);
}
.v4-collage-item:hover img {
  transform: scale(1.04);
}
.v4-collage-item.vertical {
  aspect-ratio: 1 / 1.15;
}
.v4-collage-item.horizontal {
  aspect-ratio: 1.5 / 1;
}
.v4-collage-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(11, 19, 32, 0.85);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 2;
}


/* ── 03. Sliders 1, 2, 3 general styling for library ── */
.slider-style-1 {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  gap: 8px;
}
.slider-style-1 .slider-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  width: 100%;
  padding: 4px 0;
}
.slider-style-1 .slider-track::-webkit-scrollbar {
  display: none;
}
.slider-style-1 .slider-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--hairline);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  color: var(--text-strong);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--t-fast);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.slider-style-1 .slider-item:hover {
  border-color: var(--brand-orange);
  background: var(--blue-bg-soft);
  color: var(--brand-orange);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.08);
}
.slider-style-1 .slider-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-style-1 .slider-icon svg {
  width: 16px;
  height: 16px;
}
.slider-style-1 .slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--hairline);
  color: var(--text-strong);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-fast);
  flex-shrink: 0;
  z-index: 10;
}
.slider-style-1 .slider-btn:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  background: var(--blue-bg-soft);
  transform: scale(1.05);
}
.slider-style-1 .slider-btn.prev { margin-right: -4px; }
.slider-style-1 .slider-btn.next { margin-left: -4px; }

/* Style 2 */
.slider-style-2 {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.slider-style-2 .slider-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  width: 100%;
  padding: 6px 0;
}
.slider-style-2 .slider-track::-webkit-scrollbar {
  display: none;
}
.slider-style-2 .slider-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100px;
  height: 100px;
  background: var(--white);
  border: 1px solid var(--hairline);
  padding: 14px;
  border-radius: 12px;
  color: var(--text-strong);
  text-decoration: none;
  transition: all var(--t-fast);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.slider-style-2 .slider-item:hover {
  border-color: var(--brand-orange);
  background: var(--blue-bg-soft);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.10);
}
.slider-style-2 .slider-icon {
  display: block;
  color: var(--brand-orange);
  transition: color var(--t-fast);
}
.slider-style-2 .slider-icon svg {
  width: 24px;
  height: 24px;
}
.slider-style-2 .slider-title {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-strong);
  letter-spacing: -0.01em;
}
.slider-style-2 .slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--hairline);
  color: var(--text-strong);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-fast);
  flex-shrink: 0;
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.slider-style-2 .slider-btn.prev {
  left: 6px;
}
.slider-style-2 .slider-btn.next {
  right: 6px;
}
.slider-style-2 .slider-btn:hover {
  border-color: var(--brand-orange);
  background: var(--blue-bg-soft);
  color: var(--brand-orange);
  transform: translateY(-50%) scale(1.05);
}

/* Style 3 */
.slider-style-3 {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  gap: 10px;
}
.slider-style-3 .slider-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  width: 100%;
  padding: 6px 0;
}
.slider-style-3 .slider-track::-webkit-scrollbar {
  display: none;
}
.slider-style-3 .slider-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-strong);
  width: 80px;
  flex-shrink: 0;
  transition: transform var(--t-fast);
}
.slider-style-3 .slider-item:hover {
  transform: translateY(-2px);
}
.slider-style-3 .slider-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface-light);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-fast);
}
.slider-style-3 .slider-circle svg {
  width: 22px;
  height: 22px;
}
.slider-style-3 .slider-item:hover .slider-circle {
  border-color: var(--brand-orange);
  background: var(--blue-bg-soft);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.12);
}
.slider-style-3 .slider-title {
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  color: var(--text-strong);
  word-break: break-word;
}
.slider-style-3 .slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--hairline);
  color: var(--text-strong);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-fast);
  flex-shrink: 0;
  z-index: 10;
}
.slider-style-3 .slider-btn:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  background: var(--blue-bg-soft);
}


/* ── 04. Vertical Image Category Slider ── */
.vertical-slider-section {
  padding: 60px 0;
  position: relative;
}

.vertical-slider-section.theme-light {
  background: var(--white);
}

.vertical-slider-section.theme-dark {
  background: var(--brand-dark);
  color: var(--white);
}

.vertical-slider-container {
  position: relative;
  width: 100%;
}

.vertical-slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  width: 100%;
  padding: 10px 0;
}

.vertical-slider-track::-webkit-scrollbar {
  display: none;
}

.vertical-slider-card {
  width: 220px;
  height: 275px; /* 4:5 aspect ratio roughly */
  border-radius: var(--r-image);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-default);
}

.vertical-slider-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.vertical-slider-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform var(--t-slow);
}

.vertical-slider-card:hover img {
  transform: scale(1.06);
}

.vertical-slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 19, 32, 0.95) 0%, rgba(11, 19, 32, 0.4) 55%, rgba(11, 19, 32, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  box-sizing: border-box;
}

.vertical-slider-category {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.vertical-slider-caption {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
}

.vertical-slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid var(--hairline);
  color: var(--text-strong);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--t-fast);
  flex-shrink: 0;
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.vertical-slider-btn:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  background: rgba(245, 243, 255, 0.95);
  transform: translateY(-50%) scale(1.05);
}

.vertical-slider-btn.prev {
  left: 16px;
}

.vertical-slider-btn.next {
  right: 16px;
}

.vertical-slider-section.theme-dark .vertical-slider-btn {
  background: rgba(11, 19, 32, 0.85);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.vertical-slider-section.theme-dark .vertical-slider-btn:hover {
  background: rgba(11, 19, 32, 0.95);
  border-color: var(--brand-orange);
}

.v4-hero-section + .vertical-slider-section {
  padding-top: 0;
}


/* ── 05. Service Grid Cards ── */
.services-section {
  padding: 80px 0;
}

.services-section.theme-light {
  background: var(--surface-light);
}

.services-section.theme-dark {
  background: var(--brand-dark);
  color: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap);
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--t-default);
}

.services-section.theme-light .service-card {
  background: var(--white);
  border: 1px solid var(--hairline);
}

.services-section.theme-dark .service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card:hover {
  transform: translateY(-6px);
}

.services-section.theme-light .service-card:hover {
  border-color: var(--brand-orange);
  box-shadow: var(--shadow-card-hover);
}

.services-section.theme-dark .service-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.service-card-img {
  aspect-ratio: 16/11;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform var(--t-slow);
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-price {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--white);
  color: var(--text-strong);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  box-shadow: var(--shadow-sm);
}

.service-card-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--brand-orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 4px;
}

.service-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.services-section.theme-light .service-card-title { color: var(--text-strong); }
.services-section.theme-dark .service-card-title { color: var(--white); }

.service-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.services-section.theme-light .service-card-rating { color: var(--text-main); }
.services-section.theme-dark .service-card-rating { color: var(--muted-on-dark); }

.service-card-rating svg {
  color: var(--accent-rating);
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.service-card-features {
  list-style: none;
  display: grid;
  gap: 8px;
  padding-top: 16px;
  margin-bottom: 24px;
}

.services-section.theme-light .service-card-features {
  border-top: 1px solid var(--hairline);
}

.services-section.theme-dark .service-card-features {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}

.services-section.theme-light .service-card-features li { color: var(--text-main); }
.services-section.theme-dark .service-card-features li { color: var(--muted-on-dark); }

.service-card-features li svg {
  width: 15px;
  height: 15px;
  color: var(--brand-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.service-card-actions .btn {
  padding: 10px 12px;
  font-size: 13px;
  border-radius: 8px;
  gap: 6px;
}

.service-card-actions .btn svg {
  width: 14px;
  height: 14px;
}


/* ── 06. Why Choose Us — Feature Grid Section ── */
.wcu-section {
  background: var(--surface-light);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle radial tint behind the section */
.wcu-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(79,70,229,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.wcu-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 1;
}

/* Section header */
.wcu-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.wcu-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-orange);
  background: rgba(79, 70, 229, 0.12);
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(79, 70, 229, 0.28);
  margin-bottom: 20px;
}

.wcu-eyebrow svg { flex-shrink: 0; }

.wcu-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text-strong);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}

.wcu-heading span { color: var(--brand-orange); }

.wcu-subhead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-main);
  margin: 0;
}

/* Two-column layout: features left, image right */
.wcu-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Feature list column */
.wcu-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wcu-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--t-fast);
  cursor: default;
}

.wcu-feature:first-child { padding-top: 0; }
.wcu-feature:last-child  { border-bottom: none; padding-bottom: 0; }

.wcu-feature:hover .wcu-feature-icon { background: var(--brand-orange); color: #fff; transform: scale(1.08); }
.wcu-feature:hover .wcu-feature-title { color: var(--brand-orange); }

.wcu-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(79, 70, 229, 0.14);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}

.wcu-feature-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.wcu-feature-body { display: flex; flex-direction: column; gap: 6px; }

.wcu-feature-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-strong);
  margin: 0;
  transition: color var(--t-fast);
}

.wcu-feature-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-main);
  margin: 0;
}

/* Image + stats column */
.wcu-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wcu-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: rgba(255,255,255,0.04);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.wcu-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating stats bar at the bottom of the image */
.wcu-stats-bar {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(11,19,32,0.12);
}

.wcu-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.wcu-stat-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: -0.02em;
  line-height: 1;
}

.wcu-stat-lbl {
  font-size: 11px;
  color: var(--text-main);
  font-weight: 500;
  white-space: nowrap;
}

.wcu-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--hairline);
}

/* Responsive */
@media (max-width: 1024px) {
  .wcu-body {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .wcu-visual { order: -1; }
  .wcu-image-frame { aspect-ratio: 16 / 9; }
}

@media (max-width: 640px) {
  .wcu-section { padding: 72px 0; }
  .wcu-header { margin-bottom: 48px; }
  .wcu-feature { gap: 16px; padding: 24px 0; }
  .wcu-feature-icon { width: 44px; height: 44px; border-radius: 12px; }
  .wcu-stats-bar { flex-wrap: wrap; gap: 12px; }
}

/* ─ Two-column inner ─ */
.why-parallax-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ─ LEFT: scrollable quality list ─ */
.why-parallax-left {
  padding: 100px 64px 100px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ─ quality card row ─ */
.why-quality-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 36px 0;
}

/* ─ icon wrap ─ */
.why-quality-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(79, 70, 229, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  flex-shrink: 0;
  transition: background var(--t-fast), transform var(--t-fast);
}

.why-quality-item:hover .why-quality-icon-wrap {
  background: var(--brand-orange);
  color: #fff;
  transform: translateY(-2px);
}

.why-quality-icon-wrap svg {
  width: 26px;
  height: 26px;
  display: block;
}

/* ─ text ─ */
.why-quality-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-quality-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

.why-quality-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-on-dark);
  margin: 0;
  max-width: 420px;
}

/* ─ divider between items ─ */
.why-quality-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  width: 100%;
}

/* ─ RIGHT: sticky panel ─ */
.why-parallax-right {
  position: sticky;
  top: 80px;            /* below the 64px header + breathing room */
  align-self: start;
  padding: 100px 0 100px 64px;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.why-sticky-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* eyebrow badge */
.why-sticky-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-orange);
  background: rgba(79, 70, 229, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(79, 70, 229, 0.25);
  width: fit-content;
  margin-bottom: 24px;
}

/* heading */
.why-sticky-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}

/* description */
.why-sticky-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-on-dark);
  margin: 0 0 36px;
  max-width: 420px;
}

/* image frame */
.why-sticky-image {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,0.04);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.why-sticky-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--r-card);
}

/* floating count badge over image */
.why-sticky-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(11, 19, 32, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.why-sticky-img-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.why-sticky-img-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* ─ Responsive: stack on tablets/mobile ─ */
@media (max-width: 1024px) {
  .why-parallax-inner {
    grid-template-columns: 1fr;
  }
  .why-parallax-left {
    padding: 64px 0 0;
  }
  .why-parallax-right {
    position: relative;
    top: auto;
    padding: 0 0 64px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }
}

@media (max-width: 640px) {
  .why-parallax-left {
    padding: 48px 0 0;
  }
  .why-quality-item {
    gap: 16px;
    padding: 28px 0;
  }
  .why-quality-icon-wrap {
    width: 48px;
    height: 48px;
  }
  .why-quality-icon-wrap svg {
    width: 22px;
    height: 22px;
  }
  .why-quality-title {
    font-size: 16px;
  }
}


/* ── 07. About Us Split Section ── */
.about-section {
  padding: 90px 0;
}

.about-section.theme-light {
  background: var(--white);
}

.about-section.theme-dark {
  background: var(--brand-dark);
  color: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.about-image-col {
  position: relative;
  min-width: 0;
  width: 100%;
}

.about-image-frame {
  position: relative;
  border-radius: var(--r-section);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-section);
  display: block;
}

/* Floating Rating Badge over the image */
.about-float-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(11, 19, 32, 0.12);
  min-width: 210px;
  z-index: 2;
}

@media (max-width: 1024px) {
  .about-float-badge {
    right: 20px;
    bottom: 20px;
  }
}

.about-float-icon {
  width: 42px;
  height: 42px;
  background: var(--blue-bg-soft);
  color: var(--brand-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-float-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--brand-orange);
  stroke: none;
}

.about-float-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.about-float-val {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: -0.02em;
}

.about-float-lbl {
  font-size: 11.5px;
  color: var(--text-main);
  font-weight: 500;
}

/* Content Column */
.about-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  width: 100%;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 20px;
}

.about-eyebrow svg {
  fill: var(--brand-orange);
}

.about-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: var(--text-strong);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.about-section.theme-dark .about-heading {
  color: var(--white);
}

.about-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 32px;
  max-width: 520px;
}

.about-section.theme-dark .about-desc {
  color: var(--muted-on-dark);
}

/* Checklist */
.about-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
  width: 100%;
}

.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-strong);
  line-height: 1.5;
}

.about-section.theme-dark .about-checklist li {
  color: var(--white);
}

.about-check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand-dark);
  flex-shrink: 0;
  margin-top: 1px;
}

.about-check-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--white);
  stroke-width: 3;
}

.about-section.theme-dark .about-check-icon {
  background: var(--brand-orange);
}

/* CTA Row */
.about-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.about-cta-row .btn {
  font-size: 14px;
  padding: 12px 28px;
  gap: 8px;
}

.about-cta-row .btn .icon-sm {
  width: 14px;
  height: 14px;
}

@media (max-width: 480px) {
  .about-cta-row {
    flex-direction: column;
    width: 100%;
  }
  .about-cta-row .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ── 08. Site Footer ── */
.footer-section {
  padding: 80px 0 40px;
}

.footer-section.theme-light {
  background: var(--surface-light);
  border-top: 1px solid var(--hairline);
  color: var(--text-main);
}

.footer-section.theme-dark {
  background: var(--brand-dark);
  color: var(--muted-on-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
  max-width: var(--container-max);
  margin: 0 auto 50px;
  padding: 0 var(--container-padding);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-section.theme-light .footer-col-logo { color: var(--text-strong); }
.footer-section.theme-dark .footer-col-logo { color: var(--white); }

.footer-col-desc {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-section.theme-light .footer-col h5 { color: var(--text-strong); }
.footer-section.theme-dark .footer-col h5 { color: var(--white); }

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  text-decoration: none;
  transition: all var(--t-fast);
}

.footer-section.theme-light .footer-col a { color: var(--text-main); }
.footer-section.theme-light .footer-col a:hover { color: var(--brand-orange); padding-left: 4px; }

.footer-section.theme-dark .footer-col a { color: var(--muted-on-dark); }
.footer-section.theme-dark .footer-col a:hover { color: var(--brand-orange); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13.5px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.footer-section.theme-dark .footer-bottom {
  border-top-color: var(--hairline-dark);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  text-decoration: none;
  transition: color var(--t-fast);
}

.footer-section.theme-light .footer-bottom-links a { color: var(--text-main); }
.footer-section.theme-light .footer-bottom-links a:hover { color: var(--text-strong); }

.footer-section.theme-dark .footer-bottom-links a { color: var(--muted-on-dark); }
.footer-section.theme-dark .footer-bottom-links a:hover { color: var(--white); }

.star-icon {
  animation: spin 16s linear infinite;
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── 09. FAQ — Split-Panel Section ── */
.faq-section {
  background: var(--white);
  padding: 100px 0;
}

.faq-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

/* LEFT side — sticky heading + CTA */
.faq-left {
  position: sticky;
  top: 90px;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-orange);
  background: var(--blue-bg-soft);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(79, 70, 229, 0.2);
  margin-bottom: 20px;
}

.faq-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text-strong);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}

.faq-subhead {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-main);
  margin: 0 0 32px;
}

.faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-dark);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: all var(--t-fast);
}

.faq-cta:hover {
  background: var(--brand-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79,70,229,0.35);
}

.faq-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

/* RIGHT side — accordion list */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid var(--hairline);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.faq-item:hover {
  border-color: rgba(79, 70, 229, 0.3);
}

.faq-item.active {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.07);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 24px;
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-strong);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: color var(--t-fast);
}

.faq-item.active .faq-question {
  color: var(--brand-orange);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  flex-shrink: 0;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}

.faq-icon svg { width: 16px; height: 16px; display: block; }

.faq-item.active .faq-icon {
  background: var(--brand-orange);
  color: #fff;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 24px;
}

.faq-answer-inner {
  padding: 0 0 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-main);
  border-top: 1px solid var(--hairline);
  padding-top: 16px;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

/* Responsive */
@media (max-width: 1024px) {
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .faq-left { position: relative; top: auto; }
}

@media (max-width: 640px) {
  .faq-section { padding: 72px 0; }
  .faq-question { padding: 18px 20px; font-size: 14.5px; }
  .faq-answer { padding: 0 20px; }
}

/* ── Custom Brand Active Accordion Styles (Dark Slate bg, White text) ── */
.faq-item.faq-brand-active.active {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.faq-item.faq-brand-active.active .faq-question {
  color: var(--white);
}

.faq-item.faq-brand-active.active .faq-icon {
  background: var(--white);
  color: var(--brand-dark);
}

.faq-item.faq-brand-active.active .faq-answer-inner {
  border-top-color: rgba(255, 255, 255, 0.12);
  color: var(--muted-on-dark);
}

/* ==========================================================
   18. OVERLAPPING WAVE SERVICE CARD SLIDER
   ========================================================== */
.v4-wave-slider-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.v4-wave-slider-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  padding: 24px 0;
}
.v4-wave-slider-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.v4-wave-slide {
  flex: 0 0 calc(25% - 22.5px); /* 4 cards fully visible on large desktop */
  scroll-snap-align: start;
  min-width: 250px;
  box-sizing: border-box;
}
@media(max-width: 991px) {
  .v4-wave-slide {
    flex: 0 0 calc(50% - 15px); /* 2 cards visible on tablet */
  }
}
@media(max-width: 640px) {
  .v4-wave-slide {
    flex: 0 0 100%; /* 1 card visible on mobile */
  }
}

/* Card Layout */
.card-wave {
  background: var(--white);
  border: 1.5px solid var(--hairline);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  text-align: center;
  transition: all var(--t-default);
  box-shadow: var(--shadow-sm);
}
.card-wave:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--brand-orange);
}

.card-wave-media {
  aspect-ratio: 3/3.8; /* Tall vertical format to perfectly match reference */
  overflow: hidden;
  position: relative;
  background: var(--surface-light);
}
.card-wave-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) cubic-bezier(0.16, 1, 0.3, 1);
}
.card-wave:hover .card-wave-img {
  transform: scale(1.08);
  filter: brightness(0.9);
}

/* Wave curve divider overlay */
.card-wave-curve {
  position: absolute;
  bottom: -1.5px; /* slight overlap to prevent 1px transparent gaps */
  left: 0;
  width: 100%;
  height: 32px; /* pronounced wave curve */
  fill: var(--brand-dark); /* matches the details block background */
  z-index: 5;
  transition: fill 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}
.card-wave:hover .card-wave-curve {
  fill: var(--brand-orange); /* morphs to indigo on hover! */
}

/* Details Panel */
.card-wave-body {
  background: var(--brand-dark);
  padding: 36px 20px 28px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 4;
  transition: background-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card-wave:hover .card-wave-body {
  background-color: var(--brand-orange); /* morphs to indigo on hover! */
}

/* Overlapping plus action button */
.card-wave-plus-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand-orange); /* Production-grade Brand Orange */
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -23px; /* half of height */
  left: 50%;
  transform: translate(-50%, 0) scale(1);
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px rgba(11, 19, 32, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* elastic spring bounce */
  cursor: pointer;
  z-index: 10;
}
.card-wave:hover .card-wave-plus-btn {
  background: var(--white);
  color: var(--brand-orange);
  transform: translate(-50%, -2px) rotate(180deg) scale(1.1); /* spring pop & rotate */
  border-color: var(--brand-orange);
  box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.4);
}
.card-wave-plus-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 3.5;
}

/* Text */
.card-wave-title {
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}
.card-wave-loc {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted-on-dark); /* Refined Brand Subtext */
  margin: 0;
  letter-spacing: 0.02em;
  transition: color 0.4s ease;
}
.card-wave:hover .card-wave-loc {
  color: rgba(255, 255, 255, 0.9);
}

/* Slider Navigation buttons */
.v4-wave-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: var(--shadow-lg);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-strong);
}
.v4-wave-nav-btn:hover {
  background: var(--brand-orange);
  color: #fff;
  border-color: var(--brand-orange);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.4);
}
.v4-wave-nav-btn.prev {
  left: -23px;
}
.v4-wave-nav-btn.next {
  right: -23px;
}
@media(max-width: 1160px) {
  .v4-wave-nav-btn.prev { left: 10px; }
  .v4-wave-nav-btn.next { right: 10px; }
}

/* ==========================================================
   19. GLOBAL PAGE TITLE SECTION
   ========================================================== */
/* Base Structure */
.global-page-header {
  position: relative;
  width: 100%;
  height: auto;
  min-height: max-content;
  padding: 110px 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* ── VARIANT A: Left-to-Right Faded Vignette Banner (Reference Aligned) ── */
.page-header-variant-a {
  text-align: center;
}
.page-header-variant-a::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Strong primary forest green on the left, fading to transparent on the right */
  background: linear-gradient(to right, rgba(11, 19, 32, 0.98) 0%, rgba(11, 19, 32, 0.85) 40%, rgba(11, 19, 32, 0.3) 75%, rgba(11, 19, 32, 0) 100%); /* Brand Slate Navy Left-to-Right Faded Vignette */
  z-index: 1;
}
.page-header-variant-a .global-page-header-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.page-header-variant-a .global-page-header-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 46px);
  font-weight: 600; /* refined, not too bold */
  color: var(--white);
  margin: 0;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.page-header-variant-a .global-page-header-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--white);
  margin-top: 4px;
}
.page-header-variant-a .global-page-header-breadcrumbs a {
  color: var(--white);
  opacity: 0.85;
  transition: opacity var(--t-fast);
}
.page-header-variant-a .global-page-header-breadcrumbs a:hover {
  opacity: 1;
}
.page-header-variant-a .global-page-header-breadcrumbs .chevron {
  color: var(--brand-orange);
  font-weight: 700;
}
.page-header-variant-a .global-page-header-breadcrumbs span.active {
  color: var(--brand-orange);
  font-weight: 600;
}

/* ── VARIANT B: Left-Aligned Split Banner (Slate Navy) ── */
.page-header-variant-b {
  align-items: flex-start;
  padding: 120px 24px 100px;
}
.page-header-variant-b::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Premium brand slate navy fading left-to-right */
  background: linear-gradient(to right, rgba(11, 19, 32, 0.98) 0%, rgba(11, 19, 32, 0.85) 45%, rgba(11, 19, 32, 0.2) 80%, rgba(11, 19, 32, 0) 100%);
  z-index: 1;
}
.page-header-variant-b .global-page-header-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border-left: 4px solid var(--brand-orange); /* side branding bar */
  padding-left: 24px;
  box-sizing: border-box;
}
.page-header-variant-b .global-page-header-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.8vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.02em;
}
.page-header-variant-b .global-page-header-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}
.page-header-variant-b .global-page-header-breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--t-fast);
}
.page-header-variant-b .global-page-header-breadcrumbs a:hover {
  color: var(--white);
}
.page-header-variant-b .global-page-header-breadcrumbs .chevron {
  color: var(--brand-orange);
  font-weight: 700;
}
.page-header-variant-b .global-page-header-breadcrumbs span.active {
  color: var(--white);
  font-weight: 600;
}

/* ── VARIANT C: Center Glassmorphic Card Overlay ── */
.page-header-variant-c {
  text-align: center;
  padding: 130px 24px;
}
.page-header-variant-c::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 19, 32, 0.45); /* soft darkened vignette overlay */
  z-index: 1;
}
.page-header-variant-c .global-page-header-content {
  position: relative;
  z-index: 2;
  background: rgba(11, 19, 32, 0.72); /* rich dark slate card */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 40px 60px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card-deep);
  max-width: 500px;
  width: calc(100% - 48px);
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .page-header-variant-c .global-page-header-content {
    padding: 30px 24px;
  }
}
.page-header-variant-c .global-page-header-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
}
.page-header-variant-c .global-page-header-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
.page-header-variant-c .global-page-header-breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
  transition: opacity var(--t-fast);
}
.page-header-variant-c .global-page-header-breadcrumbs a:hover {
  opacity: 0.8;
}
.page-header-variant-c .global-page-header-breadcrumbs .chevron {
  color: var(--brand-orange);
  font-weight: 700;
}
.page-header-variant-c .global-page-header-breadcrumbs span.active {
  color: var(--brand-orange);
  font-weight: 600;
}


/* ── About Us Credibility Grid ── */
.about-credibility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}
@media (max-width: 480px) {
  .about-credibility-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.about-credibility-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--surface-light);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  transition: all var(--t-default);
  box-shadow: var(--shadow-sm);
  cursor: default;
}
.about-credibility-card:hover {
  background: var(--white);
  border-color: var(--brand-orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.about-credibility-icon {
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-credibility-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
}
.about-credibility-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-credibility-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--text-strong);
  line-height: 1.25;
}
.about-credibility-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-main);
}

/* ── Service Hero Quality Stats Row ── */
.v4-hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: 800px;
  margin: 40px auto 0 auto;
  border: 1.5px solid var(--hairline);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
}

.v4-hero-stat-card {
  background: var(--white);
  padding: 20px 24px;
  text-align: left;
  transition: background-color var(--t-fast);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 105px;
}

/* Cell dividing borders in 4-column desktop layout */
.v4-hero-stat-card:not(:last-child) {
  border-right: 1.5px solid var(--hairline);
}

/* First element styling - Dark Slate */
.v4-hero-stat-card:first-child {
  background: var(--brand-dark);
}

.v4-hero-stat-card:first-child .v4-hero-stat-num {
  color: var(--white);
}

.v4-hero-stat-card:first-child .v4-hero-stat-lbl {
  color: var(--muted-on-dark);
}

/* Hover effect on white card cells */
.v4-hero-stat-card:not(:first-child):hover {
  background: var(--surface-light);
}

.v4-hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  color: var(--text-strong);
  line-height: 1.15;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.v4-hero-stat-num .accent-star {
  color: var(--brand-orange); /* Indigo accent for star */
  font-size: 0.9em;
}

.v4-hero-stat-num .accent-percent {
  color: var(--brand-orange); /* Indigo accent for % */
}

.v4-hero-stat-lbl {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.35;
}

/* Responsive breakdowns */
@media (max-width: 768px) {
  .v4-hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin-top: 32px;
  }
  
  .v4-hero-stat-card {
    padding: 16px 20px;
    min-height: 95px;
    border-right: none !important;
    border-bottom: none !important;
  }
  
  /* 2x2 grid dividing lines */
  .v4-hero-stat-card:nth-child(odd) {
    border-right: 1.5px solid var(--hairline) !important;
  }
  .v4-hero-stat-card:nth-child(1),
  .v4-hero-stat-card:nth-child(2) {
    border-bottom: 1.5px solid var(--hairline) !important;
  }
}

@media (max-width: 480px) {
  .v4-hero-stats-row {
    grid-template-columns: 1fr;
    margin-top: 24px;
    max-width: 320px;
  }
  
  .v4-hero-stat-card {
    align-items: center;
    text-align: center;
    padding: 14px 18px;
    min-height: auto;
    border-right: none !important;
    border-bottom: none !important;
  }
  
  /* 1-column dividing lines */
  .v4-hero-stat-card:not(:last-child) {
    border-bottom: 1.5px solid var(--hairline) !important;
  }
  
  .v4-hero-stat-num {
    justify-content: center;
  }
}

/* ── 08. Contact Us Page Styles ── */
.contact-section {
  background: var(--white);
  padding: 80px 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  max-width: var(--container-max);
  margin: 0 auto;
  align-items: flex-start;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--text-strong);
  line-height: 1.2;
  margin: 10px 0 20px 0;
  letter-spacing: -0.02em;
}

.contact-info-desc {
  font-size: 16px;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 520px;
  text-align: left;
}

/* 2x2 Grid for Contact Details Cards */
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}

.contact-info-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border: 1.5px solid var(--hairline);
  border-radius: var(--r-card);
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-orange);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-bg-soft);
  color: var(--brand-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-info-details h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-strong);
  margin: 0 0 6px 0;
}

.contact-info-details .val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--brand-dark);
  margin: 0 0 8px 0;
}

.contact-info-details .badge-sub {
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--surface-light);
  color: var(--text-main);
  display: inline-block;
}

/* Contact Lead Form Styling - Dark Slate Background */
.contact-form-column {
  background: var(--brand-dark);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-section);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.contact-form-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--white);
  margin: 0 0 28px 0;
  letter-spacing: -0.01em;
}

.contact-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  text-align: left;
}

.contact-field label {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: #f1f5f9; /* Off-white label text */
  margin-bottom: 8px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--hairline);
  border-radius: var(--r-image);
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--text-strong);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--brand-orange);
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.25);
}

.contact-field input.input-error,
.contact-field textarea.input-error {
  border-color: #ef4444 !important;
}

.contact-field .error-text {
  font-size: 12px;
  color: #f87171; /* Lighter red for accessibility on dark background */
  font-weight: 500;
  margin-top: 6px;
}

/* Submit Button - Brand Indigo */
.contact-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--brand-orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  border: 1.5px solid var(--brand-orange);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all var(--t-default);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-submit-btn:hover {
  background: var(--brand-orange-hover);
  border-color: var(--brand-orange-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Success Modal Styles */
.contact-success-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 19, 32, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}

.contact-success-modal {
  background: var(--white);
  border: 1.5px solid var(--hairline);
  border-radius: var(--r-section);
  max-width: 480px;
  width: 100%;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: scaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-icon-wrap {
  width: 64px;
  height: 64px;
  background: #e8f8f0;
  color: var(--brand-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.success-icon-wrap svg {
  width: 32px;
  height: 32px;
}

.contact-success-modal h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-strong);
  margin: 0 0 12px 0;
}

.contact-success-modal p {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.6;
  margin: 0 0 28px 0;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.modal-btn-primary {
  width: 100%;
  padding: 14px;
  background: var(--brand-green);
  border: 1.5px solid var(--brand-green);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all var(--t-default);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.modal-btn-primary:hover {
  background: var(--white);
  color: var(--brand-green);
  transform: translateY(-2px);
}

.modal-btn-secondary {
  width: 100%;
  padding: 14px;
  background: var(--white);
  border: 1.5px solid var(--hairline);
  color: var(--text-strong);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all var(--t-default);
}

.modal-btn-secondary:hover {
  border-color: var(--brand-dark);
  background: var(--surface-light);
  transform: translateY(-2px);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleUp {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Responsive breakdowns for Contact Us */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-form-column {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .contact-info-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 60px 16px;
  }
  .contact-form-column {
    padding: 24px 16px;
  }
}

/* ==========================================================
   ORA HOME SOLUTIONS — BLOG ARCHIVE & POST DETAILS STYLING
   Aesthetic layouts & components for blogging platform.
   ========================================================== */

.blog-archive-section {
  padding: var(--section-y-desktop) 0;
  background: var(--surface-light);
  min-height: 60vh;
}

.blog-archive-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.blog-archive-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.blog-archive-title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--text-strong);
  line-height: var(--lh-heading);
  letter-spacing: -0.02em;
}

.blog-archive-subtitle {
  font-size: 16px;
  color: var(--text-main);
  line-height: var(--lh-body);
  max-width: 600px;
}

.blog-search-container {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.blog-search-box {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 580px;
  background: var(--white);
  border: 1.5px solid var(--hairline);
  border-radius: var(--r-pill);
  padding: 6px 18px;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-fast);
}

.blog-search-box:focus-within {
  border-color: var(--brand-orange);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.08);
}

.blog-search-box .icon-search {
  width: 20px;
  height: 20px;
  color: var(--text-main);
  margin-right: 12px;
  flex-shrink: 0;
}

.blog-search-box input {
  border: 0;
  outline: 0;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-strong);
  background: transparent;
  padding: 10px 0;
}

.blog-filter-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.blog-filter-pill {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  border: 1px solid var(--hairline);
  background: var(--white);
  color: var(--text-main);
  cursor: pointer;
  transition: all var(--t-fast);
  box-shadow: var(--shadow-sm);
}

.blog-filter-pill:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  background: var(--blue-bg-soft);
  transform: translateY(-1px);
}

.blog-filter-pill.is-active {
  background: var(--brand-orange);
  color: var(--white);
  border-color: var(--brand-orange);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.blog-state-msg {
  text-align: center;
  font-size: 16px;
  color: var(--text-main);
  padding: 40px 0;
}

.blog-state-msg.error {
  color: var(--danger);
  font-weight: 600;
}

.blog-empty-state {
  text-align: center;
  padding: 60px 20px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  max-width: 580px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.blog-empty-state h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 8px;
}

.blog-empty-state p {
  font-size: 14px;
  color: var(--text-main);
}

.blog-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .blog-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-archive-grid {
    grid-template-columns: 1fr;
  }
  .blog-archive-section {
    padding: var(--section-y-mobile) 0;
  }
}

.blog-archive-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all var(--t-default);
  box-shadow: var(--shadow-sm);
}

.blog-archive-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--brand-orange);
}

.blog-card-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e2e8f0;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.blog-archive-card:hover .blog-card-media img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.blog-card-cat-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--blue-bg-soft);
  color: var(--brand-orange);
  padding: 4px 8px;
  border-radius: 4px;
}

.blog-card-date {
  font-size: 12px;
  color: var(--text-main);
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-strong);
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color var(--t-fast);
}

.blog-archive-card:hover .blog-card-title {
  color: var(--brand-orange);
}

.blog-card-excerpt {
  font-size: 13.5px;
  color: var(--text-main);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-read-link {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brand-orange);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: transform var(--t-fast);
}

.blog-archive-card:hover .blog-card-read-link {
  transform: translateX(3px);
}

/* Single Post Page Details Layout */
.single-post-section {
  padding: var(--section-y-desktop) 0;
  background: var(--white);
}

.single-post-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
}

@media (max-width: 991px) {
  .single-post-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .single-post-section {
    padding: var(--section-y-mobile) 0;
  }
}

.post-main-column {
  min-width: 0;
}

.post-meta-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
  flex-wrap: wrap;
}

.post-cat-badge {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--blue-bg-soft);
  color: var(--brand-orange);
  padding: 6px 12px;
  border-radius: var(--r-pill);
}

.post-meta-date {
  font-size: 14px;
  color: var(--text-main);
}

.post-likes-trigger {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  background: var(--surface-light);
  border: 1px solid var(--hairline);
  color: var(--text-strong);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
}

.post-likes-trigger:hover {
  background: var(--blue-bg-soft);
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

.post-lead-excerpt {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-strong);
  font-weight: 500;
  margin-bottom: 28px;
  border-left: 3px solid var(--brand-orange);
  padding-left: 18px;
}

.post-html-content {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-main);
}

.post-html-content p {
  margin-bottom: 24px;
}

.post-html-content h2,
.post-html-content h3 {
  font-family: var(--font-display);
  color: var(--text-strong);
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 16px;
}

.post-html-content h2 { font-size: 24px; }
.post-html-content h3 { font-size: 20px; }

.post-html-content ul,
.post-html-content ol {
  margin-bottom: 24px;
  padding-left: 20px;
}

.post-html-content li {
  margin-bottom: 8px;
}

.post-html-content strong {
  color: var(--text-strong);
}

.post-html-content a {
  color: var(--brand-orange);
  text-decoration: underline;
  font-weight: 500;
}

.post-html-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--r-card);
  margin: 28px 0;
  box-shadow: var(--shadow-sm);
}

/* Discussion Comments Block */
.post-comments-area {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--hairline);
}

.comments-heading {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 24px;
}

.comments-empty-text {
  font-size: 14.5px;
  color: var(--text-main);
  margin-bottom: 32px;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.comment-bubble {
  background: var(--surface-light);
  border: 1px solid var(--hairline);
  padding: 20px;
  border-radius: var(--r-card);
}

.comment-bubble-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.comment-bubble-head strong {
  font-size: 14.5px;
  color: var(--text-strong);
}

.comment-date {
  font-size: 12.5px;
  color: var(--text-main);
}

.comment-bubble-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-main);
}

/* Comment Form composing */
.comment-compose-form {
  background: var(--white);
  border: 1px solid var(--hairline);
  padding: 32px;
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
}

.comment-form-heading {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 20px;
}

.comment-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 576px) {
  .comment-form-grid {
    grid-template-columns: 1fr;
  }
  .comment-compose-form {
    padding: 20px;
  }
}

.comment-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.comment-field.full-width {
  grid-column: 1 / -1;
  margin-bottom: 20px;
}

.comment-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comment-field input,
.comment-field textarea {
  padding: 12px 16px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-input);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-strong);
  background: var(--surface-light);
  outline: 0;
  transition: all var(--t-fast);
}

.comment-field input:focus,
.comment-field textarea:focus {
  border-color: var(--brand-orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.comment-submit-btn {
  background: var(--brand-dark);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 0;
  transition: all var(--t-default);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.comment-submit-btn:hover {
  background: var(--brand-orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.comment-status-notice {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--brand-green);
  font-weight: 500;
}

/* Sidebar Columns */
.post-sidebar-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-promo-card {
  background: var(--brand-dark);
  color: var(--white);
  padding: 30px;
  border-radius: var(--r-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-lg);
}

.sidebar-promo-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.sidebar-promo-card p {
  font-size: 14px;
  color: var(--muted-on-dark);
  line-height: 1.6;
}

.sidebar-promo-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.promo-btn-primary {
  width: 100%;
  padding: 12px;
  background: var(--brand-orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--r-pill);
  cursor: pointer;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all var(--t-default);
}

.promo-btn-primary:hover {
  background: var(--brand-orange-hover);
  transform: translateY(-2px);
}

.promo-btn-secondary {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--r-pill);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--t-default);
}

.promo-btn-secondary:hover {
  background: var(--white);
  color: var(--brand-dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.sidebar-related-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  padding: 24px;
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
}

.sidebar-related-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--hairline);
}

.related-links-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.related-link-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.related-link-item h5 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-strong);
  line-height: 1.35;
  transition: color var(--t-fast);
}

.related-link-item:hover h5 {
  color: var(--brand-orange);
}

.related-item-tag {
  font-size: 11px;
  color: var(--muted-on-dark);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.blog-state-container {
  padding: 100px 20px;
  text-align: center;
  background: var(--surface-light);
}

.blog-back-btn {
  margin-top: 18px;
  background: var(--brand-dark);
  color: var(--white);
  border: 0;
  border-radius: var(--r-pill);
  padding: 10px 24px;
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  transition: all var(--t-fast);
}

.blog-back-btn:hover {
  background: var(--brand-orange);
}

