/* ============================================================
   PBS INTL FZE — style.css
   Fonts: Lexend (titles) | Kodchasan (body)
   Primary: #E84E0F  Navy: #0D0D2B
============================================================ */

/* --- TOKENS --- */
:root {
  --orange:      #ff4b00; /* Vivid electric red-leaning brand orange */
  --orange-dark: #cc3c00;
  --navy:        #0D0D2B;
  --navy-mid:    #141452;
  --white:       #ffffff;
  --gray-light:  #EDECE8;
  --font-title:  'Lexend', sans-serif;
  --font-body:   'Kodchasan', sans-serif;
  --nav-h:       80px;
  --nav-h-sm:    60px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--gray-light);
  color: var(--navy);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }

/* ============================================================
   LOADER
============================================================ */
#loader {
  position: fixed; inset: 0;
  z-index: 9999;
  pointer-events: all;
}
.loader-columns {
  position: absolute; inset: 0;
  display: flex;
}
.loader-col {
  flex: 1;
  background: var(--orange);
  border-right: 1px solid rgba(255,255,255,0.1);
  transform-origin: top center;
}
.loader-col:last-child { border-right: none; }
.loader-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; z-index: 2;
  pointer-events: none;
}
.loader-logo-wrap {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}
.loader-logo-img { width: 80px; height: auto; }
.loader-brand-name {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}
.loader-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  color: var(--white);
  text-align: center;
  line-height: 1.6;
}

/* ============================================================
   FIXED CONTAINER HERO (sections 1-3)
============================================================ */
#container-hero {
  position: fixed;
  top: 0; left: 50%;
  /* GSAP owns: xPercent, y. CSS owns: left, top, width */
  width: clamp(550px, 60vw, 950px); /* Cinema-scale width matching Figma designs perfectly */
  max-width: 85vw;
  z-index: 10;
  pointer-events: none;
  will-change: transform;
  /* Starts invisible — GSAP makes visible */
  visibility: hidden;
}
#container-hero img { width: 100%; height: auto; display: block; }

/* ============================================================
   NAVBAR
   Default (hero): full-width, transparent, no radius
   Compressed (on scroll): glass bg, narrowed, still no radius
============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  height: var(--nav-h);
  z-index: 100;
  border-radius: 0;          /* always square — no rounded corners */
  background: transparent;
  box-shadow: none;
  transition: max-width 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
              top 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
              background 0.5s ease, height 0.35s ease, box-shadow 0.35s ease;
  /* opacity controlled by GSAP on load */
}
.navbar-inner {
  display: flex; align-items: center;
  width: 100%; height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.navbar-brand {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-img { width: 36px; height: auto; }
.nav-logo-light { display: none; }
.nav-logo-dark  { display: block; }
.nav-brand-text {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
}
.brand-fze { color: var(--orange); }

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 6px;
  transition: color 0.2s;
}
.navbar-nav .nav-link:hover { color: var(--orange); }

.nav-contact-btn {
  background: #000000 !important; /* Pure black instead of blue */
  color: var(--white) !important;
  padding: 8px 18px !important;    /* Compact padding */
  border-radius: 0 !important;     /* Pointy edges */
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.8rem;               /* Reduced text size */
  transition: transform 0.25s, box-shadow 0.25s, color 0.25s;
}
.nav-contact-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--orange); /* Vibrant sliding orange */
  transform: scaleX(0);
  transform-origin: left;
  z-index: -1;
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}
.nav-contact-btn:hover {
  color: var(--white) !important;
}
.nav-contact-btn:hover::before {
  transform: scaleX(1);
}

/* Navbar — glass compressed state (applied via JS on scroll past hero) */
#navbar.navbar-glass {
  background: rgba(13, 13, 43, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
  /* Compression via CSS for buttery smooth transitions */
  max-width: clamp(300px, 60%, 800px);
  top: 14px;
}
#navbar.navbar-glass .nav-brand-text { color: var(--white); }
#navbar.navbar-glass .nav-link { color: rgba(255,255,255,0.85); }
#navbar.navbar-glass .nav-link:hover { color: var(--orange); }
#navbar.navbar-glass .nav-logo-dark  { display: none; }
#navbar.navbar-glass .nav-logo-light { display: block; }

/* Navbar — hero (transparent) text colour */
#navbar:not(.navbar-glass) .nav-brand-text { color: var(--navy); }
#navbar:not(.navbar-glass) .nav-link { color: var(--navy); }

/* Navbar — scrolled/shrunk */
#navbar.navbar-scrolled { height: var(--nav-h-sm); }

/* Toggler */
.navbar-toggler { border: none; background: none; padding: 6px; }
.toggler-bar {
  display: block; width: 24px; height: 2px;
  background: var(--navy); margin: 5px 0;
  border-radius: 2px; transition: background 0.3s;
}
#navbar.navbar-glass .toggler-bar { background: var(--white); }

/* ============================================================
   SHARED BUTTONS
============================================================ */
.btn-cta {
  display: inline-block;
  align-self: flex-start; /* Stop stretching in flex column layouts */
  width: fit-content;     /* Keep width tight to text content */
  font-family: var(--font-body);
  font-size: 0.82rem;     /* Reduced text size */
  font-weight: 600;
  padding: 12px 28px;     /* More compact padding */
  border-radius: 0 !important; /* Sharp, pointy edges */
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden; /* Hide the sliding background */
  z-index: 1;
  letter-spacing: 0.02em;
  transition: transform 0.25s, box-shadow 0.25s, color 0.25s;
}
.btn-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  z-index: -1;
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  color: var(--white);
}
.btn-cta:hover::before {
  transform: scaleX(1);
}

.btn-cta--orange {
  background: var(--orange);
  color: var(--white);
}
.btn-cta--orange::before {
  background: var(--navy); /* Deep Navy slides over orange */
}

.btn-cta--dark {
  background: var(--navy);
  color: var(--white);
}
.btn-cta--dark::before {
  background: var(--orange); /* Vibrating orange slides over Navy */
}

/* ============================================================
   EYEBROW LABEL
============================================================ */
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}

/* ============================================================
   SECTION 1 — LANDING
   Using GSAP ScrollTrigger pinning (100vh tall normally)
============================================================ */
.section-landing {
  position: relative;
  width: 100%;
  height: 100vh;
  background: var(--gray-light);
  overflow: hidden;
}

/* Giant BG typography — positioned BEHIND the container (z-index 1) */
.landing-bg-text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 18vh 0 5vh;        /* push down from top, up from bottom */
  pointer-events: none;
  z-index: 1;                  /* behind container (z-index 10) */
}
.text-perfect-bulk,
.text-solutions {
  font-family: var(--font-title);
  font-size: clamp(70px, 11vw, 170px);
  font-weight: 600;
  color: var(--navy);
  line-height: 0.95;
  white-space: nowrap;
  letter-spacing: -2px;
}
.text-perfect-bulk { text-align: left;  padding-left: 2vw; }
.text-solutions     { text-align: right; padding-right: 2vw; }

/* Left content — lower-left quadrant */
.landing-left {
  position: absolute;
  left: clamp(20px, 4vw, 60px);
  bottom: 10%;
  z-index: 5;
  max-width: 220px;
}
.landing-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 24px;
}

/* Right stats — vertically centered on right edge */
.landing-stats {
  position: absolute;
  right: clamp(20px, 4vw, 60px);
  top: 50%; transform: translateY(-50%);
  z-index: 5;
  display: flex; flex-direction: column; gap: 32px;
  text-align: right;
}
/* .landing-stat opacity controlled by GSAP */
.stat-value {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-fraction {
  font-size: 0.6em;
  vertical-align: baseline;
  margin-left: 2px;
  color: rgba(13,13,43,0.7);
}
.stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(13,13,43,0.6);
  margin-top: 4px;
}

/* ============================================================
   SECTION 2 — ABOUT
============================================================ */
.section-about {
  position: relative;
  z-index: 20;               /* Scrolls OVER fixed container (z-index 10) */
  width: 100%; height: 100vh;
  margin-top: 150px;         /* Adds a beautiful gap of space BETWEEN landing and about! */
  background: var(--gray-light);
  overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: center;
}
/* Orange overlay */
.about-orange-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  height: 100%;              /* Stretches to the full height of the section */
  background: var(--orange);
  transform-origin: top;
  transform: scaleY(0);
  z-index: 1;
}
.about-content {
  position: relative;
  z-index: 5;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  height: 100%;              /* Spans the full height of the orange box */
  display: flex; flex-direction: column;
  justify-content: center;     /* Perfect vertical centering */
  align-items: center;
  padding-left: 20px; padding-right: 20px;
}
.about-content .section-eyebrow { color: rgba(255,255,255,0.8); }
.about-headline {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4.2vw, 3.2rem); /* Increased font size for a grand, cinematic statement */
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 36px;
  text-align: center;
}
#about-cta {
  align-self: center !important; /* Forces the CTA button to be centered horizontally in the flex layout */
}

/* ============================================================
   SECTION 3 — MISSION
============================================================ */
.section-mission {
  position: relative;
  z-index: 5;                /* Explicitly lower than container (z-index 10) */
  width: 100%; height: 100vh;
  background: var(--gray-light);
  overflow: hidden;
}
.mission-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between;
  padding: clamp(100px,12vh,140px) clamp(20px,4vw,60px) 0;
  z-index: 5;
  gap: 40px;
}
.mission-header-left {
  display: flex;
  align-items: baseline;
  gap: 24px;
  max-width: 540px;
}
.mission-header-left .section-eyebrow {
  color: var(--navy);
  margin-bottom: 0;
  white-space: nowrap;
}
.mission-header-right { max-width: 380px; text-align: right; }
.mission-primary-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(13,13,43,0.75);
  line-height: 1.6;
}
.mission-secondary-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(13,13,43,0.7);
  line-height: 1.65;
}
/* mission header opacity controlled by GSAP */

/* Hotspot connector layer */
.mission-connectors-wrap {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 6;
}
.mission-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  overflow: visible;
}
.conn-line {
  display: none !important; /* Hide connecting lines completely */
}
.hotspot-wrap {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  pointer-events: auto;
}
.hotspot-dot {
  display: block !important; /* Restore dot indicator */
  width: 10px; height: 10px;
  background: var(--orange);
  border: 2px solid var(--white);
  border-radius: 50%;
  outline: 2px solid var(--orange); /* Small orange outline indicator */
  outline-offset: 2px;
  flex-shrink: 0;
}
.hotspot-label {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.2vw, 1.05rem); /* Extremely crisp and legible size */
  font-weight: 600;
  line-height: 1.5;
  color: var(--navy);
}
/* Shifted outwards to 7vw / 8vw to prevent any occlusion by the giant centered container image */
.hl-tl { top: 32%; left: 7vw; }
.hl-tr { top: 32%; right: 7vw; text-align: right; }
.hl-bl { top: 64%; left: 8vw; }
.hl-br { top: 64%; right: 8vw; text-align: right; }

/* ============================================================
   SECTION 4 — SERVICES
============================================================ */
.section-services {
  position: relative;
  width: 100%; height: 100vh;
  overflow: hidden;
  display: flex; align-items: center;
  z-index: 25; /* Higher than fixed container and mission section to create a beautiful cover parallax scroll */
}
.services-bg {
  position: absolute; inset: 0;
  background-image: url('../img/service-1-bg.png');
  background-size: cover;
  background-position: center;
  transition: opacity 0.7s ease;
  z-index: 0;
}
.services-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(5,5,20,0.82) 0%, rgba(5,5,20,0.45) 60%, rgba(5,5,20,0.3) 100%);
  z-index: 1;
}
.services-body { position: relative; z-index: 2; }

/* Service items (left panel) */
.services-left { padding: clamp(20px,5vw,80px); }
.service-item {
  display: none;
  flex-direction: column; gap: 18px;
}
.service-item.active { display: flex; }

.service-number {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  color: var(--orange);
}
.service-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin: 0;
}
.service-underline {
  width: 50px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.service-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  max-width: 500px;
}

/* Service nav (right panel) */
.services-right {
  display: flex; flex-direction: column;
  align-items: flex-end;
  padding-right: clamp(20px,5vw,80px);
  gap: 0;
}
.services-eyebrow { color: rgba(255,255,255,0.6); }
.service-nav {
  display: flex; flex-direction: column;
  gap: 6px; margin-top: 8px;
}
.service-nav-item {
  display: flex; align-items: center; gap: 14px;
  background: none; border: none; cursor: pointer;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.service-nav-item.active { color: var(--white); }
.snav-dot {
  width: 12px; height: 12px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  flex-shrink: 0;
  background: transparent;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.service-nav-item.active .snav-dot {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.3);
}
.snav-label { font-size: 0.9rem; letter-spacing: 0.02em; }

/* ============================================================
   SECTION 5 — PRODUCTS
============================================================ */
.section-products {
  position: relative;
  width: 100%; height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 20px); /* Pushes the products accordion layout safely below the fixed transparent navbar */
  padding-bottom: 50px;                   /* Ensures bottom ctas have luxurious padding on the viewport bottom */
}
.products-inner { max-width: 1300px; margin: 0 auto; padding: 0 clamp(20px,5vw,80px); width: 100%; }
.products-accordion { display: flex; flex-direction: column; }

.product-item { overflow: hidden; }
.product-divider {
  border-top: 1px dashed rgba(255,255,255,0.15);
  margin: 0;
}
.product-header {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 18px 0; /* Reduced padding for vertical optimization */
  cursor: pointer;
  user-select: none;
  transition: opacity 0.25s;
}
.product-header:hover .product-title { color: var(--orange); }
.product-title {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  margin: 0;
  transition: color 0.3s;
}
.product-item.expanded .product-title { color: var(--white); }
.product-toggle-icon {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  transition: transform 0.4s, color 0.3s;
  line-height: 1;
}
.product-item.expanded .product-toggle-icon {
  transform: rotate(45deg);
  color: var(--orange);
}
.product-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.4,0,0.2,1);
}
.product-item.expanded .product-body { max-height: 500px; }
.product-body .row { padding-bottom: 30px; gap: 20px 0; }

.product-desc {
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-top: -8px; /* Snug text layout pulled tight to header */
  margin-bottom: 22px;
}
.product-img {
  width: 100%; max-height: 320px;
  object-fit: cover;
  border-radius: 10px;
}
.product-cta {
  background: #000000 !important; /* Pure black instead of blue */
  color: var(--white) !important;
}
.products-footer-cta { margin-top: 30px; }

/* ============================================================
   SECTION 6 — FOOTER
============================================================ */
.section-footer {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  background: #070718;
}
.footer-parallax-bg {
  position: absolute; inset: 0;
  background-image: url('../img/footer-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}
.footer-parallax-bg::after {
  display: none; /* Completely removed background tint */
}
/* Giant background text */
.footer-bg-text {
  position: absolute;
  top: clamp(20px, 4vh, 50px); left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-title);
  font-size: clamp(90px, 12vw, 190px); /* Increased size for high-contrast branding */
  font-weight: 800;
  color: rgba(255,255,255,0.95); /* Bright white like Figma */
  line-height: 0.9;
  letter-spacing: -0.03em;
  white-space: nowrap;
  text-align: center;
  z-index: 1;
  pointer-events: none;
}
/* Footer container image - restored to full width of the page */
.footer-container-wrap {
  position: absolute;
  left: 0; bottom: -60px; right: 0; /* Restored to full width, pushed down slightly */
  width: 100%;
  z-index: 2;
  pointer-events: none;
}
.footer-container-img { width: 100%; height: auto; display: block; }

/* Footer content */
.footer-content {
  position: relative; z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(120px, 20vh, 260px) clamp(20px, 5vw, 80px) clamp(40px, 6vh, 80px);
}
.footer-grid-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: clamp(40px, 7vw, 130px);
}
.footer-col {
  margin-bottom: 30px;
  flex-shrink: 0;
}
#footer-col-1 { width: clamp(280px, 25vw, 360px); }
#footer-col-2 { width: clamp(160px, 16vw, 220px); }
#footer-col-3 { width: clamp(160px, 16vw, 220px); }

.footer-col-title {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.footer-socials {
  display: flex; gap: 16px;
  margin-bottom: 32px;
}
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.25s, opacity 0.25s;
}
.social-link:hover { transform: scale(1.12); }
.social-link svg { width: 22px; height: 22px; }
.social-fb { background: #1877F2; }
.social-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-wa { background: #25D366; }

.footer-address {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.75;
}
.footer-address p { margin-bottom: 12px; }
.footer-address a { color: var(--white); text-decoration: none; transition: color 0.2s; font-weight: 500; }
.footer-address a:hover { color: var(--orange); }

.footer-links {
  list-style: none;
  font-family: var(--font-body);
  display: flex; flex-direction: column; gap: 16px;
}
.footer-links a {
  font-size: 0.95rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  margin-top: 40px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
  #navbar { width: calc(100% - 30px); }
  .landing-bg-text { padding-top: 60px; }
  .text-perfect-bulk,
  .text-solutions { font-size: clamp(50px, 11vw, 100px); }
  .mission-header { flex-direction: column; gap: 16px; padding-top: 100px; }
  .mission-header-right { text-align: left; }
  .services-right { align-items: flex-start; padding-left: clamp(20px,5vw,80px); }
  .footer-container-wrap { width: 100%; position: relative; }
}
@media (max-width: 767px) {
  #container-hero { width: 90vw; }
  .landing-stats { right: 16px; gap: 18px; }
  .landing-left  { left: 16px; }
  .section-services { height: auto; min-height: 100vh; }
  .services-body { padding-bottom: 40px; }
}

/* ============================================================
   CUSTOM CURSOR (Desktop Only)
============================================================ */
html.has-custom-cursor, html.has-custom-cursor body {
  cursor: none; /* Hide default cursor */
}
html.has-custom-cursor a,
html.has-custom-cursor button,
html.has-custom-cursor [role="button"],
html.has-custom-cursor .social-link,
html.has-custom-cursor .nav-link,
html.has-custom-cursor .btn-cta,
html.has-custom-cursor .hotspot-wrap,
html.has-custom-cursor .product-header {
  cursor: none !important; /* Force hide on interactive elements */
}

.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background-color: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1.5px solid rgba(255, 107, 0, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  will-change: transform;
}

/* Restore normal cursor on mobile/tablet */
@media (pointer: coarse) {
  .custom-cursor, .custom-cursor-ring { display: none !important; }
  html.has-custom-cursor, html.has-custom-cursor body,
  html.has-custom-cursor a,
  html.has-custom-cursor button,
  html.has-custom-cursor [role="button"],
  html.has-custom-cursor .social-link,
  html.has-custom-cursor .nav-link,
  html.has-custom-cursor .btn-cta,
  html.has-custom-cursor .hotspot-wrap,
  html.has-custom-cursor .product-header {
    cursor: auto !important;
  }
}

/* ============================================================
   SCROLL INDICATOR
============================================================ */
.scroll-indicator {
  position: absolute;
  bottom: 4vh;
  left: 0; right: 0;
  margin: 0 auto;
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10;
  pointer-events: none;
}
.mouse-icon {
  width: 24px;
  height: 40px;
  border: 2px solid var(--navy);
  border-radius: 12px;
  position: relative;
  background: rgba(13, 13, 43, 0.05);
}
.mouse-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--orange);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheelAnim 1.6s infinite ease-in-out;
}
.scroll-text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--navy);
  opacity: 0.8;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes scrollWheelAnim {
  0% { top: 6px; opacity: 0; }
  20% { opacity: 1; }
  80% { top: 20px; opacity: 0; }
  100% { top: 20px; opacity: 0; }
}
