/* ============================
   YDE SAVVY — MASTER STYLESHEET
   Luxury Industrial Aesthetic
   Dark + Gold + Sage Green
   Font: Cormorant Garamond + Montserrat
   Version: 2026-04-09-V6
   ============================ */

:root {
  --ink: #24408E;
  /* Brand Primary Navy */
  --ink-2: #1A3066;
  /* Deep Contrast Navy */
  --ink-3: #162447;
  /* Ultra Deep Navy */
  --sky: #22A6D3;
  /* Vibrant Sky Blue */
  --sky-pale: rgba(34, 166, 211, 0.1);
  --gold: #22A6D3;
  /* Keeping Sky Blue as the primary accent */
  --gold-light: #5CC8EA;
  --gold-pale: rgba(34, 166, 211, 0.1);
  --white: #FFFFFF;
  --white-dim: rgba(255, 255, 255, 0.85);
  --white-faint: rgba(255, 255, 255, 0.08);
  --neutral-bg: #F8FAFC;
  --border: rgba(34, 166, 211, 0.2);
  --border-dim: rgba(255, 255, 255, 0.1);
  --nav-bg-scrolled: rgba(255, 255, 255, 1);
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Outfit', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius-lg: 50px;
  --radius-md: 20px;
}

[data-theme="light"] {
  --ink: #F8FAFC;
  --ink-2: #FFFFFF;
  --ink-3: #F1F5F9;
  --white: #0F172A;
  --white-dim: rgba(15, 23, 42, 0.75);
  --white-faint: rgba(15, 23, 42, 0.05);
  --border: rgba(15, 23, 42, 0.15);
  --border-dim: rgba(15, 23, 42, 0.08);
  --nav-bg-scrolled: rgba(248, 250, 252, 0.95);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  /* cursor: none; */
}

/* ---- CUSTOM CURSOR ---- */
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999999 !important;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999998 !important;
  transform: translate(-50%, -50%);
  transition: transform 0.08s var(--ease), width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.8;
}

[data-theme="light"] .cursor-dot {
  background: var(--sky);
}

[data-theme="light"] .cursor-ring {
  border-color: rgba(34, 166, 211, 0.4);
}

.cursor-ring.hover {
  width: 50px;
  height: 50px;
  background: rgba(34, 166, 211, 0.1);
  border-color: var(--sky);
}

[data-theme="light"] .cursor-ring.hover {
  background: rgba(34, 166, 211, 0.05);
  border-color: var(--sky);
}

.cursor-ring.active-click {
  transform: translate(-50%, -50%) scale(0.85);
  background: rgba(34, 166, 211, 0.15);
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--ink);
}

::-webkit-scrollbar-thumb {
  background: var(--sky);
  border-radius: 4px;
}

/* ---- TYPOGRAPHY ---- */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.01em;
}

h3 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

h4 {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--white-dim);
}

a {
  color: inherit;
  text-decoration: none;
}

em {
  font-style: italic;
  color: var(--gold);
}

.label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}

.label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}


/* ---- UTILITY ---- */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

.gold {
  color: var(--gold);
}

.sage {
  color: var(--sage);
}

section {
  padding: 100px 0;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

/* ==============================
   TOP BAR & NAVIGATION
   ============================== */
.top-bar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #1A3066;
  padding: 10px 0;
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1001;
}


.top-bar-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.top-info {
  display: flex;
  gap: 25px;
}

.top-info span {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 1;
  font-size: 0.85rem;
}

.top-social {
  display: flex;
  gap: 15px;
}

.top-social a {
  color: #333333;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.top-social a:hover {
  opacity: 1;
}

@media (max-width: 768px) {

  .top-bar-inner {
    display: flex;
    flex-direction: column !important;
    gap: 6px !important;
    padding: 8px 20px !important;
    text-align: center;
  }

  .top-info {
    display: flex !important;
    width: 100%;
    justify-content: center !important;
    gap: 8px 20px;
    flex-wrap: wrap;
    flex-direction: row !important;
  }

  .top-bar {
    background: #FFFFFF !important;
    color: #333333 !important;
  }

  .top-social {
    display: none !important;
  }

  .hide-mobile {
    display: none !important;
  }

  .top-info span {
    color: #333333 !important;
    font-size: 0.85rem;
    gap: 10px;
    opacity: 0.9;
    white-space: nowrap;
  }

  .nav {
    top: 115px !important;
    background: #FFFFFF !important;
    /* User wants white color */
    width: calc(100% - 20px);
    /* Widened from -30px to provide more room */
    padding: 0 !important;
    /* Reset padding to use nav-inner padding */
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    overflow: visible !important;
  }


  /* Ensure elements inside white nav are dark */
  .nav-link,
  .nav-links li a {
    color: #1A3066 !important;
  }

  .site-logo {
    filter: none !important;
    /* Standard logo for white bg */
  }

  .nav-inner {
    height: 65px;
    padding: 0 10px !important;
    /* Reduced from 15px to absolute minimum */
  }

  .nav-wing-left {
    justify-content: flex-start !important;
  }

  .nav-wing-right {
    justify-content: flex-end !important;
  }
}

.nav {
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1400px;
  z-index: 1000;
  padding: 0 28px !important;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s var(--ease-out);
}

.nav-inner {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: height 0.3s var(--ease);
}

.nav-wing-left {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.nav-wing-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  height: 44px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.footer-logo-img {
  height: 100px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 22px;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
}

.nav-links li {
  display: flex;
  align-items: center;
}

@media (min-width: 1201px) and (max-width: 1350px) {
  .nav {
    padding: 0 20px !important;
  }
  .nav-links {
    gap: 14px;
  }
  .nav-link {
    font-size: 0.86rem !important;
  }
  .nav-cta {
    padding: 9px 18px !important;
    font-size: 0.8rem !important;
  }
  .site-logo {
    height: 40px;
  }
}

@media (max-width: 1200px) {
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex !important;
  }

  .nav-wing-right .nav-cta {
    display: none;
    /* Hide CTA in nav on mobile, use mobile menu */
  }

  .nav-inner {
    height: 68px;
    display: flex;
    align-items: center;
  }

  .site-logo {
    height: 42px;
    margin-top: 0;
  }
}

.nav-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: #1A3066 !important;
  position: relative;
  padding: 6px 0;
  line-height: 1.2;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sky);
  transition: width 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: #22A6D3 !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff !important;
  background: #22A6D3;
  padding: 10px 22px;
  border-radius: 50px;
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 14px rgba(34, 166, 211, 0.35);
}

.nav-cta:hover {
  background: #1A3066 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 48, 102, 0.35);
}

.theme-toggle-btn {
  background: transparent;
  border: none !important;
  color: var(--white);
  font-size: 1.2rem;
  line-height: 0;
  /* cursor: none; */
  transition: color 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  /* Extra hit area */
  margin-left: auto;
}

.theme-toggle-btn:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  /* cursor: none; */
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 25px;
  height: 2px;
  background: #1A3066;
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center center;
}

.mobile-menu {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 30px 40px;
}


.mobile-menu ul {
  list-style: none;
}

.mobile-menu ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu ul li a {
  display: block;
  padding: 16px 0;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1A3066 !important;
  font-weight: 600;
  transition: color 0.3s;
}

.mobile-menu ul li a:hover {
  color: var(--sky) !important;
  -webkit-text-fill-color: var(--sky);
  padding-left: 10px;
}


.mobile-menu.open {
  display: block;
}

/* ==============================
   HOME — HERO
============================== */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #162447;
  /* Fallback deep navy */
}


/* Grid BG */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-dim) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-dim) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

/* Gold glow */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  text-align: left; /* Image shows left-aligned content */
  position: relative;
  z-index: 20;
}

/* Specific Hero Banner Branding Overlay */
.hero-branding-logo {
  max-width: 200px;
  margin-bottom: 40px;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.1));
}

.hero-products-highlight {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  padding: 30px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hero-product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  min-width: 120px;
  text-align: center;
}

.hero-product-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
  transition: transform 0.3s var(--ease-out);
}

.hero-product-item:hover .hero-product-icon {
  transform: translateY(-5px);
}

.hero-product-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  text-transform: uppercase;
}

.hero-product-sep {
  width: 1px;
  height: 60px;
  background: rgba(0,0,0,0.1);
  align-self: center;
}

.hero-content h1 {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #1A3066; /* Image shows dark navy */
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-align: left;
}

.hero-content h1 span.accent {
  color: var(--sky);
}

.hero-content p {
  font-size: 1.1rem;
  color: #444 !important; /* Image shows dark gray on light/clear bg */
  margin: 0 0 40px 0;
  max-width: 650px;
  line-height: 1.7;
  text-align: left;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.8s var(--ease-out);
  z-index: 1;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  /* Removed for clear image */
  z-index: 6;
  pointer-events: none;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  /* Removed base dimming */
  z-index: 2;
}


.hero-carousel.grabbing {
  cursor: grabbing;
}

/* Carousel Nav Arrows (PC Only) */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: all 0.4s var(--ease-out);
  opacity: 0;
  cursor: pointer;
}

.hero:hover .carousel-control {
  opacity: 1;
}

.carousel-control:hover {
  background: var(--sky);
  border-color: var(--sky);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 25px rgba(34, 166, 211, 0.4);
}

.carousel-control.prev {
  left: 50px;
}

.carousel-control.next {
  right: 50px;
}

@media (max-width: 1200px) {
  .carousel-control {
    display: none !important;
  }
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 5;
  /* Above base dimming but below gradient overlay */
  transition: transform 1.2s var(--ease-out);
  user-select: none;
  touch-action: pan-y;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  /* Allow hero-inner to center content */
}

/* Removed dimming overlay because banner image has embedded text */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 2;
  pointer-events: none;
}

.hero-slide.active .hero-img {
  transform: scale(1.05);
}

/* CAROUSEL CONTROLS */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13, 13, 13, 0.5);
  border: 1px solid var(--border);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s, color 0.3s;
}

.carousel-control:hover {
  background: var(--gold);
  color: var(--ink);
}

.carousel-control.prev {
  left: 20px;
}

.carousel-control.next {
  right: 20px;
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white-dim);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.indicator-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-text {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .hero {
    height: 60vh !important;
    min-height: 420px !important;
  }
  .hero-img {
    object-position: left center !important;
  }
}

.hero-label {
  margin-bottom: 32px;
  animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}

.hero-heading {
  margin-bottom: 32px;
  animation: fadeUp 0.9s var(--ease-out) 0.35s both;
}

.hero-heading .line-1 {
  display: block;
  color: var(--white);
}

.hero-heading .line-2 {
  display: block;
  color: var(--gold);
  font-style: italic;
}

.hero-heading .line-3 {
  display: block;
  color: var(--white-dim);
  font-size: 0.65em;
}

.hero-desc {
  max-width: 560px;
  font-size: 1rem;
  margin-bottom: 48px;
  animation: fadeUp 1s var(--ease-out) 0.5s both;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 1s var(--ease-out) 0.65s both;
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #22A6D3 !important;
  color: #fff !important;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.25);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(56, 189, 248, 0.4);
  filter: brightness(1.1);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--white-dim);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.hero .btn-outline {
  color: #ffffff !important;
  border-color: var(--sky) !important;
}


.hero .btn-outline:hover {
  background: #FFFFFF;
  color: #1A3066 !important;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  transform: translateY(-3px) scale(1.02);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: fadeIn 1s var(--ease-out) 1.2s both;
}

.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 2px;
  height: 50px;
  background: var(--gold-gradient);
  border-radius: 2px;
  animation: scrollPulse 2s ease-in-out infinite;
}

@media (max-width: 768px) {
  .hero-img {
    /* Brightness booster removed - relying on raw image brightness */
  }

  .hero-content h1 {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 0, 0, 0.5);
  }

  .hero-content p {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    opacity: 1;
  }
}

/* Feature Bar (Trust Bar) */
.hero-feature-bar {
  background: #1A3066;
  padding: 30px 40px;
  position: relative;
  z-index: 20;
}

.feature-bar-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #FFFFFF;
}

.feature-icon-wrap {
  font-size: 1.8rem;
  color: var(--sky);
  opacity: 0.9;
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.feature-sub {
  font-size: 0.75rem;
  opacity: 0.7;
}

@media (max-width: 1200px) {
  .feature-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .hero-feature-bar {
    padding: 20px 15px;
  }
  .feature-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .feature-item i {
    font-size: 1.4rem;
    width: 35px;
  }
  .feature-title {
    font-size: 0.7rem;
  }
  .feature-sub {
    font-size: 0.65rem;
  }
}

/* Services Preview */
.services-preview {
  padding: 120px 40px;
}

.services-preview-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 72px;
}

.section-header-split {
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.section-header .label {
  margin-bottom: 20px;
}

.section-header h2 {
  margin-bottom: 20px;
}

.section-header p {
  max-width: 540px;
}

.section-header-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  transition: all 0.6s var(--ease-out);
}

.section-header-img:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--sky);
  box-shadow: 0 20px 50px rgba(34, 166, 211, 0.3);
}



@media (max-width: 960px) {
  .section-header-split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .section-header-text {
    order: 2;
    padding: 0 10px;
  }

  .section-header-visual {
    order: 1;
  }

  .section-header-split p {
    margin-left: auto;
    margin-right: auto;
  }
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: transparent;
  border: none;
}


/* Removed individual grid column media queries as services-grid is now a flex-column */


.service-card {
  background: var(--ink-2);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  border-radius: 32px;
  border: 1px solid var(--border-dim);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  align-items: center;
}


@media (max-width: 960px) {
  .service-card {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    padding: 24px 15px;
  }
}



[data-theme="light"] .service-card {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--sky);
  box-shadow: 0 30px 60px rgba(34, 166, 211, 0.35), 0 0 25px rgba(34, 166, 211, 0.2);
}



.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--sky-pale), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card-icon {
  font-size: 2.2rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
  display: block;
  transition: transform 0.5s var(--ease-out);
}


.service-card-image-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 20px;
  background: var(--ink-2);
  border: 1px solid var(--border);
  position: relative;
  z-index: 2;
}


.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.service-card:hover .service-card-image {
  transform: scale(1.05);
}

.service-card:hover .service-card-icon {
  transform: scale(1.1);
}

.service-card-content {
  position: relative;
  z-index: 2;
}


.service-card h3 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--white);
}

.service-card p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.service-card-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--border);
  letter-spacing: 0.1em;
}

.services-accent-wrap {
  grid-column: 1 / -1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-dim);
  margin-top: 16px;
}

.services-accent-img {
  width: 100%;
  height: 100%;
  max-height: 450px;
  object-fit: cover;
  display: block;
  filter: brightness(0.9) contrast(1.1);
  transition: transform 0.6s var(--ease-out);
}

.services-accent-wrap:hover .services-accent-img {
  transform: scale(1.02);
}

/* Partnership Band */
.partnership {
  padding: 80px 40px;
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partnership-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 60px;
  align-items: center;
}

.partnership-divider {
  background: var(--border);
  height: 100%;
  min-height: 80px;
}

.partner-item {
  text-align: center;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 6px 16px;
  margin-bottom: 16px;
}

.partner-badge span {
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.partner-item h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.partner-item p {
  font-size: 1rem;
}

/* Location Highlight */
.location-band {
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  position: relative;
  overflow: hidden;
}

.location-band::before {
  content: 'AMBATTUR';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 8rem);
  color: rgba(200, 169, 110, 0.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.2em;
}

.location-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.location-text h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 8px;
}

.location-text p {
  font-size: 1rem;
}

.location-details {
  display: flex;
  gap: 40px;
}

.loc-detail {
  text-align: center;
}

.loc-detail .loc-icon {
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.loc-detail span {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.4;
  display: block;
}

/* CTA Section */
.cta-section {
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(200, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-inner .label {
  justify-content: center;
  margin-bottom: 24px;
}

.cta-inner h2 {
  margin-bottom: 20px;
}

.cta-inner p {
  margin-bottom: 48px;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==============================
   ABOUT PAGE
============================== */
.page-hero {
  padding: 160px 40px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-dim) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-dim) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 20% 50%, black 30%, transparent 100%);
}

.page-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

@media (max-width: 992px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 15px !important;
  }

  .page-hero-visual {
    text-align: center !important;
  }

  .page-hero-img {
    max-width: 100% !important;
  }
}

.page-hero .label {
  margin-bottom: 24px;
}

.page-hero h1 {
  margin-bottom: 24px;
}

.page-hero .desc {
  max-width: 600px;
  font-size: 1.05rem;
}

.page-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}


.page-hero-img:hover {
  transform: translateY(-8px);
}

@media (max-width: 960px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .page-hero-text {
    order: 1;
  }

  .page-hero-visual {
    order: 2;
  }

  .page-hero .desc {
    margin-left: auto;
    margin-right: auto;
  }

  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stat-item:nth-child(even) {
    border-right: none;
  }
}

@media (max-width: 480px) {
  .stats-bar-inner {
    grid-template-columns: 1fr;
  }
}

.about-story {
  padding: 120px 40px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.about-story::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--white-faint));
  pointer-events: none;
}

.about-story-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.58fr 0.42fr;
  gap: 100px;
  align-items: start;
}

.story-lead {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 40px;
  font-family: var(--font-serif);
  font-style: italic;
  opacity: 0.9;
}

.story-chapter {
  margin-bottom: 40px;
}

.chapter-title {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--sky);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chapter-title::after {
  content: '';
  height: 1px;
  flex: 1;
  background: var(--border);
}

/* Compact Mobile Styles for About Story */
@media (max-width: 992px) {
  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .about-story {
    padding: 80px 20px;
  }

  .about-story-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .story-lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.5;
  }

  .about-story-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  /* Compact Card Slider */
  .about-visual {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    padding: 10px 5px 30px;
    gap: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .about-visual::-webkit-scrollbar {
    display: none;
  }

  .about-card, .about-card-big {
    min-width: 260px;
    flex-shrink: 0;
    scroll-snap-align: center;
    margin-bottom: 0;
    padding: 24px;
    border-radius: 20px;
  }

  .about-card:hover {
    transform: none;
  }

  .about-card-big .big-num {
    font-size: 4rem;
    margin-bottom: 8px;
  }

  .about-card-big p {
    font-size: 0.95rem;
  }

  .about-highlight {
    padding: 24px;
    margin: 32px 0;
  }

  .about-highlight p {
    font-size: 1.15rem;
  }
  
  .chapter-title {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }
}

.about-story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--white-dim);
  margin-bottom: 24px;
}

.about-highlight {
  background: var(--white-faint);
  border-left: 3px solid var(--sky);
  padding: 40px;
  margin: 48px 0;
  border-radius: 0 20px 20px 0;
}

.about-highlight p {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--white);
  font-style: italic;
  margin-bottom: 0;
}

.about-visual {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-card {
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.about-card:hover {
  transform: translateX(10px);
  border-color: var(--sky);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--sky);
  transition: height 0.5s var(--ease-out);
}

.about-card:hover::before {
  height: 100%;
}

.about-card h4 {
  color: var(--sky);
  margin-bottom: 12px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--white-dim);
  margin-bottom: 0;
}

.about-card-big {
  background: linear-gradient(135deg, var(--ink-3) 0%, var(--ink-2) 100%);
  border: 1px solid var(--sky);
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(34, 166, 211, 0.15);
}

.about-card-big .big-num {
  font-family: var(--font-serif);
  font-size: 6rem;
  background: linear-gradient(to bottom, var(--sky), var(--white));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 700;
}

.about-card-big p {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 500;
  max-width: 250px;
  margin: 0 auto;
}

/* Timeline */
.timeline-section {
  padding: 100px 40px;
}

.timeline-inner {
  max-width: 900px;
  margin: 0 auto;
}

.timeline-inner .section-header {
  margin-bottom: 60px;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), var(--border), transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  padding: 40px 0 40px 40px;
  position: relative;
  border-bottom: 1px solid var(--border-dim);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 48px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--ink);
}

.timeline-year {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  padding-top: 4px;
  font-weight: 700;
}

.timeline-content h3 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.timeline-content p {
  font-size: 1.1rem;
}

/* Values */
.values-section {
  padding: 100px 40px;
  background: var(--ink-2);
}

.values-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.value-card {
  background: var(--ink-2);
  border: 1px solid var(--border-dim);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  gap: 28px;
  align-items: center;
  transition: all 0.4s var(--ease-out);
}



.value-card:hover {
  border-color: var(--sky);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(34, 166, 211, 0.25);
}


.value-icon {
  font-size: 2rem;
  color: var(--sky);
  flex-shrink: 0;
}

.value-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.value-card h3 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.value-card p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Awards Section */
.awards-section {
  padding: 100px 40px;
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.awards-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.award-card {
  background: var(--ink);
  border: 1px solid var(--border-dim);
  border-top: 2px solid var(--gold);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  position: relative;
  cursor: pointer;
}

.award-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(200, 169, 110, 0.1);
}

.award-visual {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--ink-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 10px;
}

.award-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--ease-out);
  z-index: 2;
}

.award-card:hover .award-img {
  transform: scale(1.05);
}

.award-placeholder {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
}

.award-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 36, 71, 0.85);
  /* Dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  z-index: 3;
}

.award-overlay i {
  color: var(--gold);
  font-size: 2.5rem;
  transform: translateY(20px) scale(0.8);
  transition: all 0.4s var(--ease-out);
}

.award-card:hover .award-overlay {
  opacity: 1;
}

.award-card:hover .award-overlay i {
  transform: translateY(0) scale(1);
}

/* Award Modal */
.award-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.award-modal.active {
  opacity: 1;
  pointer-events: all;
  cursor: zoom-out;
}

.award-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transform: scale(0.95) translateY(20px);
  transition: all 0.4s var(--ease-out);
  cursor: default;
}

.award-modal.active .award-modal-content {
  transform: scale(1) translateY(0);
}

.award-modal-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-dim);
}

.award-modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-dim);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s;
}

.award-modal-close:hover {
  background: var(--gold);
  color: var(--ink-3);
  transform: rotate(90deg);
}

.award-modal-details {
  text-align: center;
  color: var(--white);
}

.award-modal-year {
  font-family: var(--font-mono);
  color: var(--gold);
  letter-spacing: 0.2rem;
  font-size: 1rem;
  margin-bottom: 8px;
}

.award-modal-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 4px;
}

.award-modal-org {
  font-size: 1.1rem;
  color: var(--white-dim);
}

@media (max-width: 768px) {
  .award-modal-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .award-modal-title {
    font-size: 1.5rem;
  }
}

.award-content {
  padding: 24px;
  text-align: center;
}

.award-year {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.2rem;
  margin-bottom: 8px;
}

.award-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 6px;
}

.award-org {
  font-size: 1rem;
  color: var(--white-dim);
  font-weight: 500;
}

/* Team */
.team-section {
  padding: 100px 40px;
}

.team-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.team-fact {
  background: var(--ink-2);
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  padding: 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: border-color 0.3s;
}

.team-fact:hover {
  border-color: var(--sky);
  box-shadow: 0 15px 30px rgba(34, 166, 211, 0.2);
  transform: translateY(-5px);
}


.team-fact-icon {
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
}

.team-fact h4 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--gold);
}

.team-fact p {
  font-size: 1.15rem;
  line-height: 1.7;
}

/* ==============================
   SERVICES PAGE
============================== */
.services-hero {
  padding: 180px 40px 100px;
  position: relative;
  overflow: hidden;
}



.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-dim) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-dim) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 20% 50%, black 30%, transparent 100%);
}

.services-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.services-hero-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border);
  transition: transform 0.5s var(--ease-out);
}

.services-hero-img:hover {
  transform: translateY(-8px);
}

@media (max-width: 960px) {
  .services-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .services-hero-text {
    order: 1;
  }

  .services-hero-visual {
    order: 2;
  }

  .services-hero-inner p {
    margin-left: auto;
    margin-right: auto;
  }
}

.services-list {
  padding: 80px 40px;
}

@media (max-width: 768px) {
  .services-list {
    padding: 60px 20px;
  }
}

.services-list-inner {
  max-width: 1600px;
  margin: 0 auto;
}

.service-detail {
  background: var(--ink-2);
  border: 1px solid var(--border-dim);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  min-height: 500px;
  margin-bottom: 80px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.service-detail:hover {
  transform: translateY(-8px);
  border-color: var(--sky);
  box-shadow: 0 30px 60px rgba(34, 166, 211, 0.15);
}

.service-detail-content {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.service-detail:nth-child(even) .service-detail-content {
  order: 2;
}

.service-detail:last-child {
  margin-bottom: 0;
}

.service-detail:nth-child(even) .service-detail-visual {
  order: 1;
}

.service-detail:nth-child(even) .service-detail-content {
  order: 2;
}

@media (max-width: 960px) {
  .service-detail {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }

  .service-detail-content,
  .service-detail:nth-child(even) .service-detail-content {
    order: 2;
    padding: 20px 15px;
    border-radius: 20px;
    text-align: left;
  }

  .service-detail-visual,
  .service-detail:nth-child(even) .service-detail-visual {
    order: 1;
    position: relative;
    top: 0;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

.service-detail-label {
  margin-bottom: 16px;
}

.service-detail h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 12px;
}

.service-tagline {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sky);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.service-detail>div p {
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.6;
}

.service-features li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}

.service-detail-visual {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-visual-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .service-detail {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-detail-content {
    padding: 40px 25px;
    order: 2 !important;
  }

  .service-detail-visual {
    order: 1 !important;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .service-detail:nth-child(even) .service-detail-content {
    order: 2 !important;
  }

  .service-detail:nth-child(even) .service-detail-visual {
    order: 1 !important;
  }
}



.service-visual-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -40%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.08), transparent 70%);
  pointer-events: none;
}

.service-visual-icon {
  font-size: 5.5rem;
  color: var(--sky);
  display: block;
  margin-bottom: 24px;
}



.service-visual-card h4 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--white);
}

.service-visual-card p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ==============================
   CONTACT PAGE
============================== */
.contact-hero {
  padding: 180px 40px 100px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-dim) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-dim) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 20% 50%, black 30%, transparent 100%);
  z-index: 0;
}

.contact-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.contact-hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.contact-hero-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border);
  transition: transform 0.5s var(--ease-out);
}

.contact-hero-img:hover {
  transform: translateY(-8px);
}

@media (max-width: 960px) {
  .contact-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .contact-hero-text {
    order: 1;
  }

  .contact-hero-visual {
    order: 2;
    justify-content: center;
  }

  .contact-hero-inner p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 960px) {
  .contact-body-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.contact-body {
  padding: 60px 40px 120px;
}

.contact-body-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.contact-info>p {
  margin-bottom: 48px;
  font-size: 1.1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.contact-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  background: var(--gold-pale);
  box-shadow: 0 4px 15px rgba(250, 204, 21, 0.1);
}


.contact-detail-text h4 {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-detail-text p {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.6;
}

.global-partners {
  padding: 32px;
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.global-partners h4 {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.partner-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-dim);
}

.partner-tag:last-child {
  border-bottom: none;
}

.partner-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

.partner-tag p {
  font-size: 1.05rem;
  margin: 0;
  color: var(--white);
}

/* FORM */
.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.contact-form-wrap>p {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-family: var(--font-sans);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  padding: 16px 20px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  outline: none;
  transition: border-color 0.3s;
  /* cursor: none; */
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 240, 232, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group select option {
  background: var(--ink-2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Complex Form Sections */
.form-section {
  background: var(--ink);
  border: 1px solid var(--border);
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 4px;
}

.form-section-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-dim);
}

.form-subsection-title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 32px 0 16px;
}

.form-subsection-title:first-of-type {
  margin-top: 16px;
}

/* File Upload Display */
.file-upload-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--ink-2);
  border: 1px dashed var(--border);
  border-radius: 2px;
  padding: 16px;
  transition: border-color 0.3s;
}

.file-upload-wrap:hover {
  border-color: var(--gold);
}

.file-upload-wrap input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
}

.file-upload-text {
  display: flex;
  align-items: center;
  width: 100%;
}


.form-submit {
  margin-top: 8px;
}

.form-submit .btn-primary {
  width: 100%;
  justify-content: center;
}

.form-message {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 1.05rem;
  display: none;
}

.form-message.success {
  background: rgba(143, 190, 170, 0.15);
  border: 1px solid var(--sage);
  color: var(--sage);
}

.form-message.error {
  background: rgba(200, 100, 100, 0.1);
  border: 1px solid rgba(200, 100, 100, 0.4);
  color: #E08080;
}

/* ==============================
   FOOTER
============================== */
.footer {
  background: var(--ink-2);
  border-top: 1px solid var(--border);
}

.footer-top {
  max-width: 1800px;
  margin: 0 auto;
  padding: 80px 40px 60px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 12px;
}

.footer-sub {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex !important;
  gap: 20px;
  margin-top: 24px;
}

.footer-social a {
  color: var(--white);
  font-size: 1.4rem;
  opacity: 0.85;
  transition: all 0.3s var(--ease-out);
}

.footer-social a:hover {
  opacity: 1;
  color: var(--sky);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .footer-social {
    justify-content: center;
  }
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-family: var(--font-sans);
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.95rem;
  color: var(--white);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.fc-icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  padding-top: 2px;
}

.footer-contact p {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.7;
  margin: 0;
}

.footer-contact a {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-dim);
  padding: 24px 40px;
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.footer-credit {
  font-family: var(--font-mono);
  color: var(--gold) !important;
}

/* ==============================
   ANIMATIONS
============================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    padding: 30px;
    gap: 20px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-right: 1px solid var(--border);
  }
}

@media (max-width: 900px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-inner {
    justify-content: flex-start;
    gap: 16px;
  }

  .theme-toggle-btn {
    margin-left: auto;
    margin-right: 8px;
  }

  .nav-burger {
    display: flex;
    flex-shrink: 0;
  }

  /* Refined Mobile Navigation */
  .nav-inner {
    height: 70px;
    gap: 8px;
  }

  .site-logo {
    height: 46px;
  }

  .footer-logo-img {
    height: 72px;
  }

  .nav-cta {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .hero {
    padding-top: 70px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .about-story-inner,
  .contact-body-inner,
  .partnership-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual,
  .service-detail-visual {
    position: static;
  }

  .partnership-divider {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service-detail:nth-child(even) .service-detail-content,
  .service-detail:nth-child(even) .service-detail-visual {
    order: unset;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 100px 1fr;
    gap: 24px;
  }

  .location-inner {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-heading {
    font-size: clamp(2.5rem, 8vw, 5rem);
  }

  .hero {
    height: 100vh;
    /* Full screen for mobile vertical banners */
    min-height: 600px;
  }

  .hero-visual {
    height: 100%;
    max-height: 100%;
  }

  .hero-img {
    object-fit: cover;
    object-position: left center;
    filter: none; /* Removed the 0.6 brightness filter that was darkening the banner on mobile */
  }

  .stats-bar-inner {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-item {
    padding: 20px 10px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.6rem;
    max-width: 120px;
    margin: 0 auto;
  }

  .btn-primary,
  .btn-outline {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .site-logo {
    height: 38px;
  }

  .footer-top {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-logo-img {
    height: 56px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .top-bar-inner {
    font-size: 0.6rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }
}

/* ==============================
   COMPANIES WE SERVE  TICKER
   ============================== */
.companies-serve {
  padding: 100px 0;
  background: var(--ink-2);
  overflow: hidden;
  border-top: 1px solid var(--border-dim);
}

.companies-serve h2 {
  text-align: center;
  margin-bottom: 60px;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--white);
}

.companies-inner {
  width: 100%;
  max-width: 100%;
}

.companies-carousel-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

.companies-carousel {
  display: flex;
  width: 100%;
}

.companies-track {
  display: flex;
  gap: 120px;
  width: max-content;
  animation: companiesScroll 30s linear infinite;
  align-items: center;
}

.companies-track:hover {
  animation-play-state: paused;
}

.comp-slide {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  color: var(--white-dim);
  transition: all 0.4s var(--ease-out);
}

.comp-slide svg {
  transition: all 0.4s var(--ease-out);
  color: var(--white-dim);
  opacity: 0.6;
}

.comp-slide h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  opacity: 0.5;
  transition: all 0.4s var(--ease-out);
}

.comp-slide:hover {
  color: var(--sky);
  transform: translateY(-8px) scale(1.05);
}

.comp-slide:hover svg {
  color: var(--sky);
  opacity: 1;
}

.comp-slide:hover h4 {
  opacity: 1;
  color: var(--white);
}

@keyframes companiesScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .companies-track {
    gap: 40px;
  }

  .comp-slide {
    flex: 0 0 140px;
  }

  @keyframes companiesScroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-50% - 20px));
    }
  }
}

/* ==============================
   OUR METHODOLOGY
   ============================== */
.methodology-section {
  padding: 120px 5%;
  background: var(--ink);
  position: relative;
  border-top: 1px solid var(--border-dim);
}

.methodology-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
  position: relative;
}

.methodology-item {
  padding: 40px;
  background: var(--ink-2);
  border-radius: 24px;
  border: 1px solid var(--border-dim);
  transition: all 0.5s var(--ease-out);
  position: relative;
  z-index: 1;
  text-align: center;
}


.methodology-item:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--sky);
  box-shadow: 0 30px 60px rgba(34, 166, 211, 0.3);
}


.method-step-num {
  position: absolute;
  top: 20px;
  right: 25px;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--sky);
  opacity: 0.15;
  transition: opacity 0.3s;
}


.methodology-item:hover .method-step-num {
  opacity: 0.3;
}

.method-icon-wrap {
  width: 70px;
  height: 70px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: transform 0.4s var(--ease);
}

.methodology-item:hover .method-icon-wrap {
  transform: scale(1.1) rotate(5deg);
  background: var(--gold);
  color: var(--ink);
}

.method-icon {
  font-size: 2rem;
}

.methodology-item h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--white);
}

.methodology-item p {
  color: var(--white-dim);
  font-size: 1.1rem;
  line-height: 1.6;
}

.method-connector {
  display: none;
  /* Hidden by default, can be used for desktop lines */
}

@media (min-width: 1201px) {
  .method-connector {
    display: block;
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 1px;
    background: var(--border-dim);
    z-index: 1;
  }
}

@media (max-width: 992px) {
  .methodology-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .method-connector {
    display: none;
  }
}


/* ==============================
   ENHANCED PRODUCT CARDS
   ============================== */
.products-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 40px;
}

.product-card-enhanced {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--white);
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(34, 166, 211, 0.1);
  margin-bottom: 60px;
  transition: all 0.6s var(--ease-out);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}


.product-card-enhanced:hover {
  transform: translateY(-12px) scale(1.01);
  border-color: var(--sky);
  box-shadow: 0 40px 80px rgba(34, 166, 211, 0.35);
}



.product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}

.product-num {
  position: absolute;
  top: 40px;
  right: 40px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.6;
}

.product-icon-accent {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 24px;
}

.product-card-enhanced h3 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: var(--ink-2);
  text-transform: none;
  letter-spacing: 0;
}

.product-card-enhanced p {
  color: #444;
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 90%;
}

.product-features-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-features-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #333;
  font-size: 1rem;
}

.feat-bullet {
  color: var(--gold);
  font-size: 0.8rem;
}

.product-image-wrap {
  width: 100%;
  height: 450px;
  overflow: hidden;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--ease-out);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.card-img-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.product-card-enhanced:hover .product-img,
.product-card-enhanced:hover .card-img-full {
  transform: scale(1.05) translateY(-10px);
}

/* Alternating layout */
.product-card-enhanced:nth-child(even) .product-info {
  grid-column: 2;
}

.product-card-enhanced:nth-child(even) .product-image-wrap {
  grid-column: 1;
  grid-row: 1;
}

/* Small screens */
@media (max-width: 992px) {
  .product-card-enhanced {
    grid-template-columns: 1fr;
    padding: 20px 15px;
    gap: 30px;
  }

  .product-image-wrap {
    height: auto;
    aspect-ratio: 16 / 9;
    order: 1;
  }

  .product-info {
    padding: 15px;
    order: 2;
  }

  .product-card-enhanced p {
    max-width: 100%;
  }

  .product-card-enhanced:nth-child(even) .product-info {
    grid-column: 1;
    order: 2;
  }

  .product-card-enhanced:nth-child(even) .product-image-wrap {
    grid-column: 1;
    order: 1;
  }

  .product-num {
    top: 20px;
    right: 20px;
  }
}

/* ==============================
   PRODUCT VIDEO CARD
   ============================== */
.product-card-video {
  background: var(--ink-2);
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid var(--border-dim);
  margin-bottom: 60px;
  transition: all 0.6s var(--ease-out);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
  padding: 80px 60px 60px;
  position: relative;
  width: 100%;
}

.product-card-video .product-num {
  position: absolute;
  top: 30px;
  right: 40px;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 1rem;
  color: var(--sky);
  opacity: 0.5;
}

.product-video-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.product-video-main {
  text-align: left;
}

.product-card-video h3 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 30px;
}

.product-card-video h3 em {
  font-size: 0.5em;
  color: var(--sky);
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-style: normal;
  display: block;
  margin-top: 15px;
}

.video-placeholder-wrap {
  width: 100%;
}

.video-placeholder {
  width: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-video-player {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  background: transparent;
  border-radius: 24px;
  pointer-events: none; /* Disables all user interaction including controls */
}

/* Side Info */
.product-video-side {
  background: var(--white-faint);
  padding: 40px;
  border-radius: 30px;
  border: 1px solid var(--border);
}

.video-info-points h4 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 15px;
}

.video-info-points ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.video-info-points li {
  font-family: var(--font-sans);
  color: var(--white-dim);
  font-size: 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.4;
}

.video-info-points .feat-bullet {
  color: var(--sky);
  font-size: 0.9rem;
  margin-top: 4px;
}

.video-info-actions {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--border);
}

.btn-accessories {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--sky);
  color: var(--white);
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out);
  width: 100%;
  justify-content: center;
}

.btn-accessories:hover {
  background: var(--white);
  color: var(--sky);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(34, 166, 211, 0.3);
}

.btn-accessories i {
  font-size: 0.8rem;
  transition: transform 0.4s var(--ease-out);
}

.btn-accessories:hover i {
  transform: rotate(90deg);
}

@media (max-width: 1100px) {
  .product-video-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .product-video-main {
    text-align: center;
  }
  
  .product-card-video h3 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .product-card-video {
    padding: 60px 20px 40px;
  }
}


/* ==============================
   PRODUCT IMAGE CAROUSEL
   ============================== */
.product-carousel {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.product-carousel-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: productScroll 20s linear infinite;
}

.product-carousel:hover .product-carousel-track {
  animation-play-state: paused;
}

.product-img-slide {
  height: 100%;
  width: auto;
  object-fit: contain;
  padding: 0 10px;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

@keyframes productScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #F4FAFD 0%, #E6F3FA 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(34, 166, 211, 0.15);
}

.testimonials-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(34, 166, 211, 0.2) !important;
  border-radius: 24px;
  padding: 36px 44px;
  transition: all 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
  animation-delay: calc(var(--testimonial-delay, 0) * 100ms);
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--sky) !important;
  box-shadow: 0 20px 40px rgba(34, 166, 211, 0.2) !important;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  right: 28px;
  font-size: 7rem;
  font-family: var(--font-serif);
  color: var(--sky);
  opacity: 0.18;
  line-height: 1;
  pointer-events: none;
}

.testimonial-rating {
  margin-bottom: 18px;
}

.star {
  color: var(--sky) !important;
  font-size: 1.15rem;
  margin-right: 4px;
}

.star.empty {
  color: rgba(34, 166, 211, 0.2) !important;
}

.testimonial-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #1A3066 !important;
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 18px;
}

.author-image {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sky);
}

.author-initials {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(34, 166, 211, 0.12);
  color: var(--sky);
  border: 2px solid var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1A3066 !important;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.author-company {
  font-size: 0.85rem;
  color: var(--sky) !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Mobile Adjustments for Testimonials */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 0;
  }

  .testimonials-inner {
    padding: 0 24px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 32px;
  }
}

/* ========== TESTIMONIALS CAROUSEL ========== */
.testimonials-carousel-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0 60px 0;
}

.testimonials-carousel-container {
  overflow: hidden;
  width: 100%;
  padding: 30px 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.testimonial-slide {
  flex-shrink: 0;
  width: 680px; /* Wide horizontal rectangle box for superior UI presence */
  padding: 0 18px;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.7s ease;
  opacity: 0.4;
  transform: scale(0.92);
}

/* Active slide highlight - fitting of feedbacks is unique */
.testimonial-slide.active {
  opacity: 1;
  transform: scale(1.03);
}

.testimonial-slide.active .testimonial-card {
  border: 2px solid var(--sky) !important;
  box-shadow: 0 20px 45px rgba(34, 166, 211, 0.22) !important;
  background: #FFFFFF !important;
}

.testimonial-slide .testimonial-card {
  height: 100%;
  margin: 0;
  opacity: 1;
  transform: none !important;
}

.testimonial-slide .testimonial-card:hover {
  transform: none;
  box-shadow: none;
}

.testimonial-slide.active .testimonial-card:hover {
  transform: scale(1.01);
  border-color: var(--sky) !important;
  box-shadow: 0 25px 50px rgba(34, 166, 211, 0.3) !important;
}

/* Carousel buttons styling */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(34, 166, 211, 0.2);
  color: #1A3066;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.carousel-control:hover {
  background: var(--sky);
  border-color: var(--sky);
  color: #FFFFFF;
  box-shadow: 0 8px 25px rgba(34, 166, 211, 0.4);
  transform: translateY(-50%) scale(1.08);
}

.carousel-control.prev {
  left: -20px;
}

.carousel-control.next {
  right: -20px;
}

/* Pagination Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(34, 166, 211, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--sky);
  width: 32px;
  border-radius: 6px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .testimonial-slide {
    width: 560px;
  }
  .carousel-control.prev {
    left: 0;
  }
  .carousel-control.next {
    right: 0;
  }
}

@media (max-width: 768px) {
  .testimonials-carousel-wrapper {
    padding: 10px 0 40px 0;
  }
  .testimonial-slide {
    width: calc(100vw - 48px);
    padding: 0 8px;
  }
  .carousel-control {
    display: none;
  }
  .testimonial-slide.active {
    transform: scale(1.01);
  }
}

/* ========== SCAFFOLDING BLOG ========== */
.blog-headline-banner {
  width: 100%;
  height: 300px;
  position: relative;
  background: var(--ink-2);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--border-dim);
}

.blog-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.2);
}

.blog-banner-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.blog-banner-content h1 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.blog-banner-content h1 em {
  font-family: var(--font-serif);
  font-weight: 400;
  text-transform: none;
}

.blog-breadcrumbs {
  background: var(--ink);
  padding: 20px 40px;
  border-bottom: 1px solid var(--border-dim);
}

.breadcrumbs-inner {
  max-width: 1400px;
  margin: 0 auto;
  font-size: 0.8rem;
  font-family: var(--font-sans);
  font-weight: 500;
}

.breadcrumbs-inner a {
  color: var(--gold);
  text-decoration: none;
}

.breadcrumbs-inner span {
  color: var(--white-dim);
  margin: 0 8px;
}

.blog-section-main {
  padding: 80px 40px;
  background: var(--ink);
}

.blog-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ========== LUXURY BLOG CARDS ========== */
.blog-list-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.luxury-blog-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: all 0.4s var(--ease-out);
}

.luxury-blog-card:hover {
  border-color: var(--sky);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.luxury-blog-card.alt {
  grid-template-columns: 1fr 1fr;
}

.luxury-blog-card.alt .blog-card-visual {
  grid-column: 1;
}

.luxury-blog-card.alt .blog-card-details {
  grid-column: 2;
}

.blog-card-visual {
  position: relative;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  background: var(--ink);
}

.blog-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.luxury-blog-card:hover .blog-card-visual img {
  transform: scale(1.05);
}

.blog-card-details {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-meta {
  display: flex;
  gap: 15px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sky);
  margin-bottom: 24px;
}

.blog-meta .date {
  color: var(--white-dim);
}

.blog-card-h {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-card-h:hover {
  color: var(--sky);
}

.blog-card-p {
  color: var(--white-dim);
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 90%;
}

.blog-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.luxury-tag-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.luxury-tag {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
}

/* Row reversing logic handled in template */
@media (max-width: 992px) {

  .luxury-blog-card,
  .luxury-blog-card.alt {
    grid-template-columns: 1fr;
  }

  .luxury-blog-card.alt .blog-card-visual {
    grid-column: 1;
    grid-row: 1;
  }

  .luxury-blog-card.alt .blog-card-details {
    grid-column: 1;
    grid-row: 2;
  }

  .blog-card-details {
    padding: 40px;
  }

  .blog-card-h {
    font-size: 2rem;
  }
}

/* Floating WhatsApp Button Wrapper */
.whatsapp-container {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  /* Put icon on right, tooltip on left */
  gap: 15px;
}

.whatsapp-float {
  width: 65px;
  height: 65px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  background-color: #128C7E;
  color: #FFF;
}

.whatsapp-tooltip {
  background-color: var(--ink-2);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-dim);
}

/* Tooltip Arrow */
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--ink-2);
}

.whatsapp-container:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .whatsapp-container {
    bottom: 25px;
    right: 25px;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  /* On mobile, usually no hover, but we can hide it or make it smaller */
  .whatsapp-tooltip {
    display: none;
  }
}

/* ---- DECORATIVE PATTERNS & UTILITIES ---- */
.dot-pattern {
  background-image: radial-gradient(var(--border) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
}

/* Shimmer Effect */
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.shimmer-wrap {
  position: relative;
  overflow: hidden;
}

.shimmer-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      transparent,
      rgba(255, 255, 255, 0.08),
      transparent);
  transform: translateX(-100%);
  transition: 0.8s;
  pointer-events: none;
}

.shimmer-wrap:hover::after {
  animation: shimmer 1s var(--ease-out);
}

/* Entrance Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Modern Card Glow */
.glow-on-hover:hover {
  box-shadow: 0 20px 50px rgba(34, 166, 211, 0.2);
}

/* --- Responsive Inner Pages Fixes --- */
@media (max-width: 992px) {
  .location-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    padding: 40px 20px !important;
  }
}

@media (max-width: 768px) {
  .location-section {
    padding: 0 20px 80px !important;
  }

  .location-grid>div:last-child {
    padding: 32px 24px !important;
  }

  .location-grid h2 {
    font-size: 1.5rem !important;
  }

  .location-grid h3 {
    font-size: 0.9rem !important;
  }
}

/* ==============================
   TOAST NOTIFICATIONS
   ============================== */
#toast-container {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast {
  min-width: 320px;
  max-width: 420px;
  background: #1A3066;
  /* Deep Navy */
  border-left: 4px solid var(--sky);
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 16px;
  pointer-events: auto;
  transform: translateX(120%);
  transition: transform 0.6s var(--ease-out), opacity 0.4s;
  opacity: 0;
}

.toast.visible {
  transform: translateX(0);
  opacity: 1;
}

.toast.success {
  border-left-color: #4ADE80;
}

.toast.error {
  border-left-color: #F87171;
}

.toast-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.toast.success .toast-icon {
  color: #4ADE80;
}

.toast.error .toast-icon {
  color: #F87171;
}

.toast-content {
  flex: 1;
}

.toast-title {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
  color: #FFFFFF;
}


@media (max-width: 600px) {
  #toast-container {
    top: auto;
    bottom: 20px;
    right: 20px;
    left: 20px;
  }

  .toast {
    min-width: 0;
    width: 100%;
  }
}

/* ============================================================
   MOBILE ALIGNMENT & NAVBAR POLISHING (FINAL OVERRIDES)
   Ensures centering and proper spacing on small screens.
   ============================================================ */
@media (max-width: 960px) {
  .label {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 auto 20px !important;
    text-align: center !important;
  }

  .nav.scrolled {
    top: 30px !important;
    /* Increased gap from 25px for perfect float */
    background: #FFFFFF !important;
  }

  .page-hero-img {
    transform: translateX(-15px) !important;
    /* Optical centering shift */
  }

  .page-hero-inner,
  .services-hero-inner,
  .contact-hero-inner {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-hero-text,
  .services-hero-text,
  .contact-hero-text {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .page-hero .desc,
  .services-hero .desc,
  .contact-hero p {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .section-header,
  .cta-inner {
    text-align: center !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
}

/* ==============================
   TRANSPORT PAGE
   ============================== */

/* --- HERO --- */
.transport-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #FFFFFF;
  padding-top: 160px;
  padding-bottom: 60px;
}

.transport-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 166, 211, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 166, 211, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.transport-hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 166, 211, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.transport-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 30px;
}

.transport-hero-inner h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #1A3066;
  margin: 16px 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.transport-hero-inner p {
  font-size: 1.15rem;
  color: rgba(26, 48, 102, 0.7);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- MAIN SECTION LAYOUT --- */
.transport-section {
  background: #FFFFFF;
  padding: 80px 0;
}

.transport-layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

/* --- LEFT SIDEBAR --- */
.transport-sidebar {
  flex: 0 0 340px;
  position: sticky;
  top: 180px;
  background: #FFFFFF;
  border: 1px solid rgba(34, 166, 211, 0.15);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(22, 36, 71, 0.05);
  overflow: hidden;
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(34, 166, 211, 0.1);
}

.sidebar-header h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1A3066;
}

.sidebar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(34, 166, 211, 0.12);
  color: #22A6D3;
}

.transport-list {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 520px;
  overflow-y: auto;
}

.transport-list::-webkit-scrollbar {
  width: 3px;
}

.transport-list::-webkit-scrollbar-thumb {
  background: rgba(34, 166, 211, 0.3);
  border-radius: 3px;
}

/* --- TRANSPORT CARD (Left sidebar item) --- */
.transport-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.transport-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  border-radius: 0 3px 3px 0;
  transition: background 0.3s;
}

.transport-card:hover {
  background: rgba(34, 166, 211, 0.06);
  border-color: rgba(34, 166, 211, 0.15);
  transform: translateX(4px);
}

.transport-card.active {
  background: rgba(34, 166, 211, 0.1);
  border-color: rgba(34, 166, 211, 0.3);
  box-shadow: 0 4px 20px rgba(34, 166, 211, 0.15);
}

.transport-card.active::before {
  background: linear-gradient(180deg, #22A6D3, #1580A1);
}

.tc-number {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(34, 166, 211, 0.25);
  min-width: 40px;
  text-align: center;
  transition: color 0.3s;
}

.transport-card.active .tc-number {
  color: #22A6D3;
}

.tc-info {
  flex: 1;
}

.tc-info h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: #1A3066;
  text-transform: none;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

.tc-subtitle {
  font-size: 0.78rem;
  color: rgba(26, 48, 102, 0.5);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tc-meta {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.tc-km,
.tc-time {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 5px;
}

.tc-km i,
.tc-time i {
  color: rgba(34, 166, 211, 0.6);
  font-size: 0.7rem;
}

.tc-arrow {
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.3s, transform 0.3s;
}

.transport-card.active .tc-arrow {
  color: #22A6D3;
  transform: translateX(3px);
}

/* --- RIGHT DETAIL PANEL --- */
.transport-detail {
  flex: 1;
  min-height: 600px;
}

.route-panel {
  display: none;
  animation: routeFadeIn 0.5s var(--ease-out);
}

.route-panel.active {
  display: block;
}

@keyframes routeFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- ROUTE TITLE BAR --- */
.route-title-bar {
  margin-bottom: 36px;
}

.route-title-bar h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #1A3066;
}

.route-num {
  font-family: var(--font-mono);
  font-weight: 700;
  color: #22A6D3;
  margin-right: 6px;
}

/* --- ROUTE VISUALIZATION --- */
.route-visualization {
  display: flex;
  align-items: flex-start;
  gap: 0;
  background: #FFFFFF;
  border: 1px solid rgba(34, 166, 211, 0.15);
  border-radius: 24px;
  padding: 45px 35px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(22, 36, 71, 0.08);
}

.route-visualization::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #22A6D3, transparent 40%, transparent 60%, #E74C3C);
  opacity: 0.5;
}

/* Route Node (Pickup / Destination) */
.route-node {
  flex: 1;
  text-align: center;
  padding: 10px;
  position: relative;
  z-index: 2;
}

.node-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  transition: transform 0.3s;
}

.pickup-icon {
  background: rgba(34, 166, 211, 0.08);
  border: 2px solid rgba(34, 166, 211, 0.25);
  box-shadow: 0 0 30px rgba(34, 166, 211, 0.1);
}

.pickup-icon:hover {
  transform: scale(1.08);
  box-shadow: 0 0 40px rgba(34, 166, 211, 0.2);
}

.destination-icon {
  background: rgba(231, 76, 60, 0.08);
  border: 2px solid rgba(231, 76, 60, 0.25);
  box-shadow: 0 0 30px rgba(231, 76, 60, 0.1);
}

.destination-icon:hover {
  transform: scale(1.08);
  box-shadow: 0 0 40px rgba(231, 76, 60, 0.2);
}

/* Pulsing ring animation for icons */
.node-icon-wrap::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid;
  animation: nodePulse 2.5s ease-in-out infinite;
  opacity: 0;
}

.pickup-icon::after {
  border-color: rgba(34, 166, 211, 0.3);
}

.destination-icon::after {
  border-color: rgba(231, 76, 60, 0.3);
}

@keyframes nodePulse {

  0%,
  100% {
    opacity: 0;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

.node-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #22A6D3;
  margin-bottom: 8px;
}

.destination-label {
  color: #E74C3C;
}

.node-name {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: #1A3066;
  margin-bottom: 6px;
  text-transform: none;
  letter-spacing: 0;
}

.node-address {
  font-size: 0.85rem;
  color: rgba(26, 48, 102, 0.6);
  line-height: 1.5;
}

/* --- ANIMATED ROUTE PATH --- */
.route-path {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 36px;
  position: relative;
  z-index: 2;
}

.route-path-line {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  position: relative;
  margin: 30px 0 20px;
  overflow: visible;
}

.route-path-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #22A6D3, #5CC8EA, #E74C3C);
  animation: pathGrow 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  width: 0;
}

@keyframes pathGrow {
  0% {
    width: 0;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    width: 100%;
    opacity: 0;
  }
}

.route-dot {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.route-dot-start {
  left: -6px;
  background: #22A6D3;
  box-shadow: 0 0 12px rgba(34, 166, 211, 0.5);
}

.route-dot-end {
  right: -6px;
  background: #E74C3C;
  box-shadow: 0 0 12px rgba(231, 76, 60, 0.5);
}

.route-vehicle-icon {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateX(-12px);
  z-index: 4;
  animation: vehicleMove 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  filter: drop-shadow(0 2px 8px rgba(34, 166, 211, 0.4));
}

.route-vehicle-icon svg circle {
  animation: wheelSpin 0.4s infinite linear;
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes wheelSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes vehicleMove {
  0% {
    left: 0;
    opacity: 0;
    transform: translateY(-50%) translateX(-12px) scale(0.9);
  }

  10% {
    opacity: 1;
    transform: translateY(-50%) translateX(-12px) scale(1);
  }

  45% {
    transform: translateY(-51%) translateX(-12px);
  }

  50% {
    transform: translateY(-49%) translateX(-12px);
  }

  55% {
    transform: translateY(-51%) translateX(-12px);
  }

  90% {
    opacity: 1;
    transform: translateY(-50%) translateX(-12px) scale(1);
  }

  100% {
    left: calc(100% - 12px);
    opacity: 0;
    transform: translateY(-50%) translateX(-12px) scale(0.9);
  }
}

/* Route Stats Badges */
.route-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.route-stat-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.distance-badge {
  background: rgba(34, 166, 211, 0.12);
  color: #22A6D3;
  border: 1px solid rgba(34, 166, 211, 0.2);
}

.time-badge {
  background: rgba(26, 48, 102, 0.05);
  color: #1A3066;
  border: 1px solid rgba(26, 48, 102, 0.1);
}

.distance-badge i,
.time-badge i {
  font-size: 0.8rem;
}

/* --- DRIVERS SECTION --- */
.drivers-section {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(34, 166, 211, 0.1);
  border-radius: 20px;
  padding: 36px 30px;
}

.drivers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 12px;
}

.drivers-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.drivers-header h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: #1A3066;
  text-transform: none;
  letter-spacing: 0;
}

.drivers-count {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: #22A6D3;
  background: rgba(34, 166, 211, 0.1);
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(34, 166, 211, 0.15);
}

.drivers-subtitle {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 28px;
  line-height: 1.6;
}

.drivers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* --- DRIVER CARD --- */
.driver-card {
  background: #FFFFFF;
  border: 1px solid rgba(22, 36, 71, 0.08);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.driver-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 166, 211, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.driver-card:hover {
  border-color: rgba(34, 166, 211, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(34, 166, 211, 0.1);
}

.driver-card:hover::before {
  opacity: 1;
}

.driver-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22A6D3, #1580A1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.avatar-letter {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.driver-info {
  text-align: center;
  position: relative;
  z-index: 1;
}

.driver-name {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: #1A3066;
  margin-bottom: 4px;
  text-transform: none;
  letter-spacing: 0;
}

.driver-vehicle {
  font-size: 0.82rem;
  color: rgba(26, 48, 102, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.driver-vehicle i {
  color: rgba(34, 166, 211, 0.5);
  font-size: 0.75rem;
}

.driver-rating {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.driver-rating .star {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
}

.driver-rating .star.filled {
  color: #F7B731;
}

.driver-rating .star.half {
  color: #F7B731;
  opacity: 0.6;
}

.rating-num {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 6px;
}

/* Price Section */
.driver-price-section {
  text-align: center;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
  position: relative;
  z-index: 1;
}

.price-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 48, 102, 0.4);
  margin-bottom: 4px;
}

.driver-price {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 800;
  color: #22A6D3;
  letter-spacing: -0.01em;
}

/* --- FINALIZE BUTTON --- */
.finalize-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.35s var(--ease-out);
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.finalize-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #128C7E, #075E54);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.finalize-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  color: #fff;
}

.finalize-btn:hover::before {
  opacity: 1;
}

.finalize-btn svg {
  flex-shrink: 0;
}

/* ==============================
   TRANSPORT — RESPONSIVE
   ============================== */
@media (max-width: 1100px) {
  .transport-layout {
    gap: 20px;
  }

  .transport-sidebar {
    flex: 0 0 280px;
  }

  .route-path {
    flex: 0 0 160px;
  }
}

@media (max-width: 900px) {
  .transport-layout {
    flex-direction: column;
  }

  .transport-sidebar {
    position: static;
    flex: none;
    width: 100%;
  }

  .transport-list {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    max-height: none;
    gap: 10px;
    padding: 12px;
    scroll-snap-type: x mandatory;
  }

  .transport-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
  }

  .transport-detail {
    min-height: auto;
  }

  .route-visualization {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    gap: 10px;
  }

  .route-path {
    flex: none;
    width: 100%;
    padding-top: 10px;
  }

  .route-path-line {
    margin: 20px 0 16px;
  }

  .drivers-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .transport-hero {
    padding-top: 140px;
    padding-bottom: 40px;
    min-height: 280px;
  }

  .transport-hero-inner h1 {
    font-size: 1.8rem;
  }

  .transport-section {
    padding-bottom: 60px;
  }

  .transport-layout {
    padding: 0 15px;
  }

  .route-visualization {
    padding: 20px 15px;
    border-radius: 14px;
  }

  .drivers-section {
    padding: 24px 16px;
    border-radius: 14px;
  }

  .driver-card {
    padding: 20px 16px;
  }

  .route-title-bar h2 {
    font-size: 1.3rem;
  }
}

/* ==============================
   TRANSPORT — PRODUCT DETAILS
   ============================== */
.product-detail-section {
  margin-top: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(34, 166, 211, 0.1);
  border-radius: 18px;
  padding: 28px 28px;
}

.product-detail-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.product-detail-header h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: #1A3066;
  text-transform: none;
  letter-spacing: 0;
}

.product-detail-grid {
  display: flex;
  gap: 28px;
  align-items: center;
}

.product-detail-img-wrap {
  flex: 0 0 180px;
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(34, 166, 211, 0.15);
  background: rgba(255, 255, 255, 0.02);
}

.product-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-specs {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(34, 166, 211, 0.06);
  border: 1px solid rgba(34, 166, 211, 0.1);
  border-radius: 12px;
  transition: all 0.3s;
}

.spec-item:hover {
  background: rgba(34, 166, 211, 0.1);
  border-color: rgba(34, 166, 211, 0.2);
}

.spec-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(34, 166, 211, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22A6D3;
  font-size: 1rem;
  flex-shrink: 0;
}

.spec-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(26, 48, 102, 0.5);
  margin-bottom: 2px;
}

.spec-value {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: #1A3066;
}

@media (max-width: 600px) {
  .product-detail-grid {
    flex-direction: column;
  }

  .product-detail-img-wrap {
    flex: none;
    width: 100%;
    height: 160px;
  }

  .product-detail-section {
    padding: 20px 16px;
  }
}

/* --- Clickable Image + Zoom Hint --- */
.product-img-clickable {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.product-img-clickable:hover .product-detail-img {
  transform: scale(1.05);
  filter: brightness(0.7);
}

.product-img-clickable .product-detail-img {
  transition: all 0.35s ease;
}

.img-zoom-hint {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 2;
}

.img-zoom-hint i {
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.img-zoom-hint span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.product-img-clickable:hover .img-zoom-hint {
  opacity: 1;
}

/* --- Image Lightbox Overlay --- */
.img-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  cursor: pointer;
}

.img-lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.img-lightbox-overlay.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  line-height: 1;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: rotate(90deg);
}

@media (max-width: 600px) {
  .lightbox-img {
    max-width: 95vw;
    max-height: 75vh;
    border-radius: 8px;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
}

/* ==============================
   TRANSPORT — SHARE SECTION
   ============================== */
.share-section {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(34, 166, 211, 0.1);
  border-radius: 20px;
  padding: 36px 30px;
}

.share-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.share-header h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: #1A3066;
  text-transform: none;
  letter-spacing: 0;
}

.share-desc {
  font-size: 0.92rem;
  color: rgba(26, 48, 102, 0.6);
  margin-bottom: 24px;
  line-height: 1.6;
}

.share-link-box {
  display: flex;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(34, 166, 211, 0.2);
  margin-bottom: 20px;
}

.share-link-input {
  flex: 1;
  background: #F8FAFC;
  border: none;
  color: #1A3066;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 14px 20px;
  outline: none;
  cursor: text;
}

.share-copy-btn {
  background: rgba(34, 166, 211, 0.15);
  border: none;
  color: #22A6D3;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 14px 24px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.share-copy-btn:hover {
  background: rgba(34, 166, 211, 0.25);
}

.share-copy-btn.copied {
  background: rgba(37, 211, 102, 0.2);
  color: #25D366;
}

.share-actions {
  display: flex;
  gap: 12px;
}

.share-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s var(--ease-out);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.share-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  color: #fff;
}

/* ==============================
   TRANSPORT DETAIL PAGE — DRIVER VIEW
   ============================== */

/* --- FLOATING LANGUAGE SWITCHER --- */
.lang-switcher {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(34, 166, 211, 0.2);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.lang-btn {
  background: transparent;
  border: 1px solid transparent;
  color: rgba(26, 48, 102, 0.5);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  font-family: var(--font-sans);
}

.lang-btn:hover {
  color: #1A3066;
  background: rgba(34, 166, 211, 0.1);
}

.lang-btn.active {
  background: #22A6D3;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(34, 166, 211, 0.3);
}

/* --- DETAIL PAGE WRAPPER --- */
.transport-detail-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
}

.transport-detail-hero {
  padding-top: 170px;
  padding-bottom: 50px;
}

/* Route viz on detail page — slightly larger */
.route-viz-detail {
  padding: 48px 36px;
}

.route-path-detail {
  flex: 0 0 260px;
}

.distance-badge-lg,
.time-badge-lg {
  font-size: 0.95rem;
  padding: 10px 22px;
}

/* --- DRIVER FORM SECTION --- */
.driver-form-section {
  margin-top: 40px;
  background: #FFFFFF;
  border: 1px solid rgba(34, 166, 211, 0.15);
  border-radius: 22px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(22, 36, 71, 0.08);
}

.driver-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #22A6D3, #5CC8EA, #25D366);
  opacity: 0.6;
}

.form-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.form-header-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(34, 166, 211, 0.1);
  border: 1px solid rgba(34, 166, 211, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-header h3 {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 700;
  color: #1A3066;
  margin-bottom: 6px;
  text-transform: none;
  letter-spacing: 0;
}

.form-subtitle {
  font-size: 0.9rem;
  color: rgba(26, 48, 102, 0.6);
  line-height: 1.5;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 48, 102, 0.6);
  margin-bottom: 8px;
}

.input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F8FAFC;
  border: 1px solid rgba(22, 36, 71, 0.15);
  border-radius: 12px;
  padding: 0 16px;
  transition: all 0.3s;
}

.input-wrap:focus-within {
  border-color: rgba(34, 166, 211, 0.4);
  background: rgba(34, 166, 211, 0.04);
  box-shadow: 0 0 20px rgba(34, 166, 211, 0.08);
}

.input-wrap i {
  color: rgba(34, 166, 211, 0.5);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  color: #1A3066;
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 15px 0;
  outline: none;
  width: 100%;
}

.input-wrap input::placeholder {
  color: rgba(26, 48, 102, 0.4);
}

.input-price-wrap {
  gap: 8px;
}

.price-symbol {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 700;
  color: #22A6D3;
  flex-shrink: 0;
}

/* Hide number input arrows */
.input-wrap input[type="number"]::-webkit-outer-spin-button,
.input-wrap input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-wrap input[type="number"] {
  -moz-appearance: textfield;
}

/* Large finalize button */
.finalize-btn-lg {
  font-size: 1.05rem;
  padding: 18px 32px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
}

.finalize-btn-lg:active {
  transform: scale(0.98);
}

/* ==============================
   TRANSPORT DETAIL — RESPONSIVE
   ============================== */
@media (max-width: 900px) {
  .lang-switcher {
    top: auto;
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
    flex-direction: row;
    border-radius: 30px;
    padding: 6px 10px;
  }

  .lang-btn {
    padding: 6px 10px;
    font-size: 0.68rem;
  }

  .transport-detail-wrapper {
    padding: 0 15px;
  }

  .route-viz-detail {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
  }

  .route-path-detail {
    flex: none;
    width: 100%;
  }

  .driver-form-section {
    padding: 28px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-header {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .transport-detail-hero {
    padding-top: 140px;
    padding-bottom: 36px;
  }

  .transport-detail-hero h1 {
    font-size: 1.5rem;
  }

  .route-viz-detail {
    padding: 20px 15px;
    border-radius: 14px;
  }

  .driver-form-section {
    padding: 22px 16px;
    border-radius: 14px;
  }

  .finalize-btn-lg {
    font-size: 0.95rem;
    padding: 16px 24px;
  }

  .lang-switcher {
    bottom: 12px;
    padding: 4px 6px;
    gap: 3px;
  }

  .lang-btn {
    padding: 5px 8px;
    font-size: 0.62rem;
  }

  .share-section {
    padding: 24px 16px;
    border-radius: 14px;
  }

  .share-link-box {
    flex-direction: column;
  }

  .share-copy-btn {
    justify-content: center;
  }
}

/* ==========================================================================
   DOUBLE-ROW INFINITE PRODUCT SHOWCASE CAROUSEL (MARQUEE)
   ========================================================================== */
.product-marquee-section {
  padding: 80px 0;
  position: relative;
  background: var(--ink);
  overflow: hidden;
}

.marquee-container {
  position: relative;
  width: 100%;
  padding: 20px 0;
  overflow: hidden;
}

/* Shaded / Faded Ends */
.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  z-index: 10;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--ink) 0%, transparent 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--ink) 0%, transparent 100%);
}

.marquee-row {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  margin-bottom: 30px;
}

.marquee-row:last-child {
  margin-bottom: 0;
}

.marquee-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  padding: 10px;
  will-change: transform;
}

/* Animation directions */
.marquee-row:not(.reverse) .marquee-track {
  animation: marquee-scroll-left 45s linear infinite;
}

.marquee-row.reverse .marquee-track {
  animation: marquee-scroll-right 45s linear infinite;
}

/* Pause scroll on hover for ease of reading/clicking */
.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  display: block;
  width: 360px;
  height: 270px;
  flex-shrink: 0;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: var(--white-faint);
  border: 1px solid var(--border);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s var(--ease-out), border-color 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  cursor: pointer;
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

/* Item hover effects */
.marquee-item:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--sky);
  box-shadow: 0 25px 50px rgba(34, 166, 211, 0.25);
}

.marquee-item:hover img {
  transform: scale(1.08);
}

/* Glassmorphic Overlay on Hover */
.marquee-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 22, 45, 0.9) 0%, rgba(13, 22, 45, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 5;
}

.marquee-item:hover .marquee-item-overlay {
  opacity: 1;
  visibility: visible;
}

.marquee-item-tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 8px;
  background: rgba(34, 166, 211, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(34, 166, 211, 0.2);
}

.marquee-item-action {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
}

.marquee-item-action .arrow {
  transition: transform 0.3s ease;
}

.marquee-item:hover .marquee-item-action .arrow {
  transform: translateX(5px);
}

/* KEYFRAME ANIMATIONS */
@keyframes marquee-scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes marquee-scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes marquee-scroll-down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .services-preview {
    padding: 60px 0; /* Remove left/right padding so columns can use the full width */
  }

  .services-preview-inner {
    padding: 0;
  }

  .product-marquee-section {
    padding: 60px 0;
  }

  .marquee-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 520px;
    gap: 12px;
    padding: 0 8px; /* Safe padding to align layout without clipping */
    width: 100%;
  }

  /* Shaded / Faded Ends (Top and Bottom on Mobile) */
  .marquee-container::before,
  .marquee-container::after {
    width: 100%;
    height: 100px;
    left: 0;
    right: 0;
  }

  .marquee-container::before {
    top: 0;
    bottom: auto;
    background: linear-gradient(to bottom, var(--ink) 0%, transparent 100%);
  }

  .marquee-container::after {
    top: auto;
    bottom: 0;
    background: linear-gradient(to top, var(--ink) 0%, transparent 100%);
  }

  .marquee-row {
    flex-direction: column;
    width: auto;
    height: max-content;
    margin-bottom: 0;
  }

  .marquee-track {
    flex-direction: column;
    gap: 12px;
    padding: 10px 0;
  }

  /* Vertical Animation directions on Mobile */
  .marquee-row:not(.reverse) .marquee-track {
    animation: marquee-scroll-down 35s linear infinite;
  }

  .marquee-row.reverse .marquee-track {
    animation: marquee-scroll-up 35s linear infinite;
  }

  .marquee-item {
    width: calc(50vw - 16px); /* Fit exactly half screen width minus margins/gaps */
    height: 220px;
    border-radius: 16px;
  }

  /* Hide overlays on mobile by default (to keep photos clean), show on active touch click */
  .marquee-item-overlay {
    opacity: 0;
    visibility: hidden;
    background: linear-gradient(to top, rgba(13, 22, 45, 0.9) 0%, rgba(13, 22, 45, 0.3) 70%, transparent 100%);
    padding: 12px; /* Tight padding to prevent truncation */
  }

  .marquee-item:active .marquee-item-overlay {
    opacity: 1;
    visibility: visible;
  }

  .marquee-item-tag {
    font-size: 0.62rem;
    padding: 2px 8px;
    margin-bottom: 4px;
  }

  .marquee-item-action {
    font-size: 0.72rem;
  }
}