/* ═══════════════════════════════════════════════════════════
   AJS DYNAMIC IMPEX PVT LTD — Professional Navy × White Design System
   Mixed light + dark sections · Navy · Cobalt · Gold · White
   ═══════════════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────────────── */
:root {
  /* Navy palette (dark sections) */
  --navy-deep:  #061332;
  --navy:       #0C1F4A;
  --navy-mid:   #163366;
  --navy-light: #1B4080;

  /* Brand blue */
  --cobalt:     #1A56DB;
  --cobalt-mid: #2563EB;
  --cobalt-light:#3B82F6;
  --blue-pale:  #DBEAFE;
  --blue-glow:  rgba(26,86,219,0.20);

  /* Gold accent */
  --gold:       #C17D0A;
  --gold-mid:   #D97706;
  --gold-bright:#F59E0B;
  --gold-glow:  rgba(217,119,6,0.18);

  /* Light backgrounds */
  --white:      #FFFFFF;
  --ice:        #EEF4FF;
  --gray-50:    #F8FAFC;
  --gray-100:   #F1F5F9;

  /* Text — light sections */
  --text-dark:  #0F172A;
  --text-body:  #334155;
  --text-muted: #64748B;
  --text-dim:   #94A3B8;

  /* Text — dark sections */
  --text-white:  rgba(255,255,255,0.92);
  --text-silver: rgba(255,255,255,0.65);
  --text-ghost:  rgba(255,255,255,0.38);

  /* Borders */
  --border-light: rgba(0,0,0,0.08);
  --border-mid:   rgba(0,0,0,0.14);
  --border-dark:  rgba(255,255,255,0.10);

  /* Glass (dark sections) */
  --glass:        rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.10);

  /* Radius */
  --r-sm:  8px;
  --r:     14px;
  --r-lg:  20px;
  --r-xl:  28px;

  /* Transitions */
  --t:        0.28s cubic-bezier(0.4,0,0.2,1);
  --t-spring: 0.5s cubic-bezier(0.34,1.56,0.64,1);

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.07);
  --shadow:    0 6px 28px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.14);
  --shadow-xl: 0 28px 72px rgba(0,0,0,0.18);

  /* Compat aliases */
  --black:       var(--navy-deep);
  --black-2:     var(--navy);
  --card-bg:     var(--navy-mid);
  --text:        var(--text-dark);
  --muted:       var(--text-muted);
  --border:      var(--border-light);
  --border-2:    var(--border-mid);
  --blue:        var(--cobalt);
  --purple:      #6D28D9;
  --green:       #059669;
  --cyan:        #0891B2;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-50); }
::-webkit-scrollbar-thumb { background: rgba(26,86,219,0.30); border-radius: 3px; }

/* ── Noise overlay ── */
.noise { display: none; }

/* ── Custom Cursor ───────────────────────────────────────── */
#cursor {
  position: fixed; width: 30px; height: 30px;
  border: 1.5px solid rgba(26,86,219,0.55);
  border-radius: 50%; pointer-events: none;
  z-index: 10000; transform: translate(-50%,-50%);
  transition: width var(--t), height var(--t), border-color var(--t);
}
#cursorDot {
  position: fixed; width: 5px; height: 5px;
  background: var(--cobalt); border-radius: 50%;
  pointer-events: none; z-index: 10001;
  transform: translate(-50%,-50%); transition: transform 0.1s ease;
}
body.cursor-hover #cursor { width: 50px; height: 50px; border-color: rgba(193,125,10,0.65); }
@media (hover: none) { #cursor, #cursorDot { display: none; } }

/* ── Container ───────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }

/* ═══════════════════════════════════════════════════════════
   SHARED SECTION ELEMENTS
   ═══════════════════════════════════════════════════════════ */

/* Section label */
.sec-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cobalt); margin-bottom: 0.85rem;
}
.sec-label::before {
  content:''; display:inline-block; width:18px; height:2px;
  background: var(--cobalt); border-radius: 2px;
}

/* Section heading */
.sec-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700; color: var(--text-dark);
  line-height: 1.15; margin-bottom: 1rem;
}
.sec-heading em { font-style: italic; color: var(--cobalt); }

.sec-sub { color: var(--text-muted); font-size: 1rem; max-width: 580px; }
.sec-header { text-align: center; margin-bottom: 3.5rem; }
.sec-header .sec-label  { display: block; text-align: center; }
.sec-header .sec-label::before { display: none; }
.sec-header .sec-sub { margin: 0 auto; }

/* Dark section overrides */
.dark-section .sec-label  { color: #60A5FA; }
.dark-section .sec-label::before { background: #60A5FA; }
.dark-section .sec-heading { color: #FFFFFF; }
.dark-section .sec-heading em { color: #93C5FD; }
.dark-section .sec-sub { color: rgba(255,255,255,0.60); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.82rem 1.8rem; border-radius: var(--r-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  cursor: pointer; border: none;
  transition: all var(--t); position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--cobalt); color: #fff;
  box-shadow: 0 4px 18px rgba(26,86,219,0.28);
}
.btn-primary:hover {
  background: var(--cobalt-mid);
  box-shadow: 0 8px 32px rgba(26,86,219,0.40);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--text-dark);
  border: 1.5px solid var(--border-mid);
}
.btn-outline:hover {
  border-color: var(--cobalt); color: var(--cobalt);
  background: rgba(26,86,219,0.06); transform: translateY(-2px);
}
/* Outline on dark bg */
.dark-section .btn-outline {
  color: #fff; border-color: rgba(255,255,255,0.35);
}
.dark-section .btn-outline:hover {
  border-color: #93C5FD; color: #93C5FD;
  background: rgba(147,197,253,0.08);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Card base ───────────────────────────────────────────── */
/* Light card (default — white bg) */
.glass-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  border-radius: var(--r-lg);
}
.glass-card-sm {
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  border-radius: var(--r);
}

/* Dark glass variant (used in dark sections) */
.glass-card-dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--r-lg);
}

/* ── Ambient glow orbs (shared) ─────────────────────────── */
.sec-glow {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(120px); opacity: 0.45;
}
.glow-blue   { width:550px; height:550px; background:rgba(26,86,219,0.10); }
.glow-gold   { width:480px; height:480px; background:rgba(217,119,6,0.08); }
.glow-purple { width:500px; height:500px; background:rgba(109,40,217,0.07); }

/* ── GSAP reveal (initial hidden states) ────────────────── */
.reveal-up, .reveal-left, .reveal-right { opacity: 0; }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  padding: 0.80rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px);
  transition: all var(--t);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: rgba(0,0,0,0.10);
  box-shadow: 0 4px 28px rgba(0,0,0,0.08);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
}

/* ── Navbar transparent state — glass pill on light hero ──── */
#navbar:not(.scrolled) { border-bottom-color: rgba(0,0,0,0.06); }
#navbar:not(.scrolled) .hamburger span { background: #475569; }

/* Nav links: glass pill container */
#navbar:not(.scrolled) .nav-links {
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 100px;
  padding: 0.28rem 0.28rem;
  gap: 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
/* Each link — pill shape */
#navbar:not(.scrolled) .nav-links > li > a {
  color: #475569;
  border-radius: 100px;
  padding: 0.38rem 1.0rem;
  font-size: 0.84rem;
}
#navbar:not(.scrolled) .nav-links > li > a:hover {
  color: #0F172A;
  background: rgba(255,255,255,0.85);
}
/* Active link — solid pill + bullet */
#navbar:not(.scrolled) .nav-links > li > a.nav-active {
  background: #FFFFFF;
  color: #0F172A !important;
  font-weight: 700;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
#navbar:not(.scrolled) .nav-links > li > a.nav-active::before {
  content: '• ';
  color: var(--cobalt);
}

/* Scrolled state active link */
#navbar.scrolled .nav-links > li > a.nav-active {
  background: rgba(26,86,219,0.10);
  color: var(--cobalt) !important;
  border-radius: 100px;
  font-weight: 700;
}
#navbar.scrolled .nav-links > li > a.nav-active::before {
  content: '• ';
  color: var(--cobalt);
}

/* Brochure CTA — filled pill */
#navbar:not(.scrolled) .btn-brochure {
  color: #fff;
  background: var(--cobalt);
  border-color: transparent;
  border-radius: 100px;
}
#navbar:not(.scrolled) .btn-brochure:hover {
  background: var(--cobalt-mid);
  color: #fff;
}

/* Translate pill */
#navbar:not(.scrolled) .translate-btn {
  color: #475569;
  background: rgba(255,255,255,0.60);
  border-color: rgba(0,0,0,0.10);
}
#navbar:not(.scrolled) .translate-btn:hover {
  background: rgba(255,255,255,0.85);
  border-color: rgba(0,0,0,0.18);
  color: #0F172A;
}
.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.nav-logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 0;
  transition: opacity var(--t);
}
/* On transparent navbar: white pill behind the entire logo anchor */

#navbar:not(.scrolled) .nav-logo {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 5px 14px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.15);
}
/* Sidebar logo */
.sidebar-logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
  padding: 4px 8px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
}
/* Legacy — keep for footer logo compat */
.logo-svg  { width: 44px; height: 38px; flex-shrink: 0; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.06em; color: var(--navy); line-height: 1.15; }
.logo-tag  { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; color: var(--gold-mid); font-family: 'Space Grotesk', sans-serif; }

/* Nav links */
.nav-links { display: flex; align-items: center; }
.nav-links > li > a {
  padding: 0.45rem 0.85rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-body); border-radius: 6px;
  transition: all var(--t);
  display: flex; align-items: center; gap: 0.3rem; white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--cobalt); background: rgba(26,86,219,0.07); }

/* Dropdown */
.has-dropdown { position: relative; }
.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 10px); left: 0;
  background: rgba(255,255,255,0.98);
  border: 1px solid var(--border-light);
  border-radius: var(--r); padding: 0.5rem 0;
  min-width: 192px; z-index: 1100;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  backdrop-filter: blur(20px);
}
.has-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown li a {
  display: block; padding: 0.5rem 1.1rem;
  font-size: 0.855rem; color: var(--text-muted); transition: all var(--t);
}
.nav-dropdown li a:hover { color: var(--cobalt); background: rgba(26,86,219,0.05); }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.btn-brochure {
  padding: 0.46rem 1.2rem;
  border: 1.5px solid var(--border-mid);
  border-radius: 50px; color: var(--text-body);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.84rem; font-weight: 600;
  background: transparent; transition: all var(--t); white-space: nowrap;
}
.btn-brochure:hover { background: var(--cobalt); border-color: var(--cobalt); color: #fff; }

/* Hamburger */
.hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-body); border-radius: 2px; transition: all var(--t); }

/* Google Translate */
#google_translate_element .goog-te-gadget-simple {
  background: rgba(0,0,0,0.04) !important; border: 1px solid var(--border-light) !important;
  border-radius: 6px !important; padding: 0.28rem 0.6rem !important;
}
#google_translate_element .goog-te-gadget-simple span,
#google_translate_element .goog-te-gadget-simple a {
  color: var(--text-body) !important; font-size: 0.82rem !important;
}
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }

/* ═══════════════════════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════════════════════ */
.sidebar-overlay {
  position: fixed; inset: 0; background: rgba(8,20,60,0.50);
  z-index: 1100; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease; backdrop-filter: blur(4px);
}
.sidebar-overlay.open { opacity: 1; pointer-events: auto; }
.sidebar {
  position: fixed; top: 0; right: 0;
  width: 380px; max-width: 92vw; height: 100vh;
  background: #FFFFFF;
  border-left: 1px solid var(--border-light);
  z-index: 1200; transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto; box-shadow: -8px 0 60px rgba(0,0,0,0.12);
}
.sidebar.open { transform: translateX(0); }
.sidebar-header { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1.5rem; border-bottom: 1px solid var(--border-light); }
.sidebar-logo { display: flex; align-items: center; gap: 0.75rem; }
.sidebar-close { background: none; border: none; color: var(--text-muted); font-size: 1.2rem; cursor: pointer; padding: 0.3rem 0.5rem; border-radius: 6px; transition: all var(--t); }
.sidebar-close:hover { color: var(--text-dark); background: var(--gray-100); }
.sidebar-divider { height: 1px; background: var(--border-light); }
.sidebar-section { padding: 1.4rem 1.5rem; }
.sidebar-section-title { font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cobalt); margin-bottom: 1rem; }
.sidebar-product-list { display: flex; flex-direction: column; gap: 0.6rem; }
.sidebar-product-list li { display: flex; align-items: center; gap: 0.75rem; }
.sidebar-product-list li i { color: var(--cobalt); font-size: 0.78rem; flex-shrink: 0; }
.sidebar-product-list li span { font-size: 0.9rem; color: var(--text-body); }
.sidebar-contact-list { display: flex; flex-direction: column; gap: 0.85rem; }
.sidebar-contact-list li { display: flex; align-items: flex-start; gap: 0.85rem; }
.sidebar-contact-list li i { color: var(--text-muted); font-size: 0.88rem; flex-shrink: 0; margin-top: 0.15rem; }
.sidebar-contact-list li span { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; }
.sidebar-about-text { font-size: 0.875rem; color: var(--text-dim); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   HERO  —  dark teal/navy GIF background
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  overflow: hidden;
  background:
    linear-gradient(
      160deg,
      #f5f8ff 0%,
      #edf2f9 25%,
      #f0f5fe 50%,
      #e8eef8 75%,
      #f2f6fd 100%
    );
}

/* Atmospheric bottom-glow edge */
.hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background:
    radial-gradient(ellipse 80% 30% at 50% 100%, rgba(26,86,219,0.04) 0%, transparent 60%);
}



.hero-split {
  flex: 1; position: relative; z-index: 3;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1280px; margin: 0 auto; width: 100%;
  padding: 7rem 2rem 2rem;
  gap: 1rem;
}
.hero-left { display: flex; align-items: center; justify-content: center; }
.hero-content { max-width: 560px; text-align: left; padding-top: 1rem; }
.hero-right {
  display: flex; flex-direction: column; align-items: center;
  position: relative;
}
#globe-container {
  width: 100%; max-width: 480px;
  aspect-ratio: 1;
  cursor: grab;
}
#globe-container:active { cursor: grabbing; }

/* Country selector */
.country-selector {
  margin-top: 0;
  text-align: left;
  width: 100%;
}
.country-selector label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  color: #64748B;
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
}
#countrySelect {
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  border: 1.5px solid #E2E8F0;
  background: #FFFFFF;
  color: #0F172A;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#countrySelect:hover { border-color: #94A3B8; }
#countrySelect:focus { border-color: #1A56DB; box-shadow: 0 0 0 3px rgba(26,86,219,0.10); }
#countrySelect option { background: #FFFFFF; color: #0F172A; }

/* Company name input */
.company-input-wrap {
  width: 100%;
}
.company-input-wrap label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  color: #64748B;
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
}
#heroCompany {
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  border: 1.5px solid #E2E8F0;
  background: #FFFFFF;
  color: #0F172A;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#heroCompany::placeholder {
  color: #94A3B8;
}
#heroCompany:hover { border-color: #94A3B8; }
#heroCompany:focus { border-color: #1A56DB; box-shadow: 0 0 0 3px rgba(26,86,219,0.10); }

/* Input row — company input + Go button */
.input-row {
  display: flex; gap: 0.5rem; align-items: stretch;
}
.input-row #heroCompany {
  flex: 1; border-radius: 8px 0 0 8px;
}
.go-btn {
  padding: 0.65rem 1.2rem;
  background: linear-gradient(135deg, #1A56DB, #2563EB);
  color: #fff; border: none; border-radius: 0 8px 8px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  transition: all var(--t);
  letter-spacing: 0.04em;
}
.go-btn:hover {
  background: linear-gradient(135deg, #2563EB, #3B82F6);
  box-shadow: 0 4px 16px rgba(26,86,219,0.35);
}

/* ═══ CONTACT MODAL ═══ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(5,10,30,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}
.modal-overlay.open {
  opacity: 1; pointer-events: auto;
}
.modal-content {
  background: #FFFFFF;
  border-radius: 20px;
  width: 100%; max-width: 540px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 32px 80px rgba(5,10,30,0.35);
  padding: 2rem 2.25rem;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.modal-overlay.open .modal-content {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 32px; height: 32px; border-radius: 50%;
  border: none; background: #F1F5F9;
  color: #64748B; font-size: 1.2rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all var(--t);
}
.modal-close:hover {
  background: #E2E8F0; color: #0F172A;
}
.modal-header {
  margin-bottom: 1.75rem;
}
.modal-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700;
  color: #0F172A; margin-bottom: 0.3rem;
}
.modal-header p {
  font-size: 0.9rem; color: #64748B;
}
.modal-form .form-group {
  margin-bottom: 1rem;
}
.modal-form .form-group label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  color: #64748B; letter-spacing: 0.04em;
  margin-bottom: 0.4rem; display: block;
}
.modal-form .form-group input,
.modal-form .form-group textarea {
  width: 100%;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #0F172A;
  outline: none;
  transition: all var(--t);
}
.modal-form .form-group input:focus,
.modal-form .form-group textarea:focus {
  border-color: #1A56DB;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(26,86,219,0.10);
}
.modal-form .form-group input[readonly] {
  background: #F1F5F9;
  color: #334155;
  cursor: default;
}
.modal-form .form-group textarea {
  resize: vertical; min-height: 80px;
}
.modal-form .form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.modal-submit {
  margin-top: 0.5rem;
}
.modal-form .form-success {
  text-align: center; padding: 0.9rem;
  font-size: 0.85rem; font-weight: 600;
  background: rgba(5,150,105,0.08);
  border: 1px solid rgba(5,150,105,0.22);
  border-radius: 10px; margin-top: 1rem;
  color: #059669;
}

@media (max-width: 520px) {
  .modal-content { padding: 1.5rem; }
  .modal-form .form-row { grid-template-columns: 1fr; }
}

/* Title */
.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 800; color: #0F172A;
  line-height: 1.05; margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.hero-line-1, .hero-title em {
  display: block;
  white-space: nowrap;
}
.hero-title em {
  font-style: normal;
  font-size: 0.82em;
  background: linear-gradient(135deg, #1A56DB, #2563EB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1rem; color: #475569;
  margin-bottom: 1.8rem; line-height: 1.75;
}

.hero-actions {
  display: flex; flex-direction: column; gap: 0.85rem;
  margin-bottom: 1.5rem; max-width: 320px;
}
.hero .btn-outline {
  color: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
}
.hero .btn-outline:hover {
  border-color: #22D3EE; color: #22D3EE;
  background: rgba(34,211,238,0.08);
}

/* Trust bar (qualifications instead of numbers) */
.hero-trust {
  display: inline-flex; align-items: center; gap: 0; flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0.85rem 1rem;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.trust-item {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0 1.1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.80rem; font-weight: 600; color: #475569;
}
.trust-item:first-child { padding-left: 0; }
.trust-item i { color: #1A56DB; font-size: 0.88rem; }
.trust-sep { width: 1px; height: 20px; background: #E2E8F0; flex-shrink: 0; }

/* Scroll cue */
.hero-scroll-cue {
  position: relative; z-index: 6;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem; padding: 1.5rem 0 2.2rem;
  cursor: pointer; color: #94A3B8;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.70rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
}
.scroll-track { width: 2px; height: 40px; background: #CBD5E1; border-radius: 2px; overflow: hidden; }
.scroll-thumb { width: 2px; height: 14px; background: #1A56DB; border-radius: 2px; animation: scrollDown 2s ease-in-out infinite; }
@keyframes scrollDown { 0%{transform:translateY(-14px)} 100%{transform:translateY(40px)} }

/* ── Hero → white wave separator ─────────────────────────── */
.hero-wave-sep {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
  line-height: 0; pointer-events: none;
}
.hero-wave-sep svg {
  display: block; width: 100%; height: auto;
  transform-origin: center bottom;
}


/* ═══════════════════════════════════════════════════════════
   TICKER  —  dark navy strip
   ═══════════════════════════════════════════════════════════ */
.ticker-wrap {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden; padding: 0.85rem 0; position: relative;
  /* No top border — white wave from hero sits above, transition is seamless */
  margin-top: -2px;
}
.ticker-wrap::before, .ticker-wrap::after {
  content:''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2;
}
.ticker-wrap::before { left: 0;  background: linear-gradient(to right,  var(--navy), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left,   var(--navy), transparent); }
.ticker-track {
  display: flex; align-items: center;
  animation: ticker 40s linear infinite; width: max-content;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  padding: 0 1.4rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,0.65);
  white-space: nowrap; display: flex; align-items: center; gap: 0.5rem;
  transition: color var(--t);
}
.ticker-item i { color: #93C5FD; font-size: 0.75rem; }
.ticker-item:hover { color: rgba(255,255,255,0.90); }
.ticker-dot { color: var(--gold-bright); font-size: 0.5rem; opacity: 0.55; padding: 0 0.3rem; }

/* ═══════════════════════════════════════════════════════════
   PILLARS STRIP  —  light section
   ═══════════════════════════════════════════════════════════ */
.pillars-strip {
  background: var(--ice);
  border-bottom: 1px solid var(--border-light);
  padding: 1.6rem 0;
}
.pillars-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.pillar-item {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.5rem 2.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem; font-weight: 600;
  color: var(--text-body); transition: color var(--t);
}
.pillar-item:hover { color: var(--cobalt); }
.pillar-item i { color: var(--cobalt); font-size: 1rem; }
.pillar-divider { width: 1px; height: 24px; background: var(--border-mid); }

/* ═══════════════════════════════════════════════════════════
   ABOUT  —  light cobalt section
   ═══════════════════════════════════════════════════════════ */
.about-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #F0F6FF 0%, #E8F0FE 40%, #FFFFFF 100%);
}

/* Layered background: grid lines + globe rim arc + subtle blue atmosphere */
.about-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    /* Subtle grid lines */
    repeating-linear-gradient(0deg,   transparent 0, transparent 79px, rgba(26,86,219,0.04) 80px),
    repeating-linear-gradient(90deg,  transparent 0, transparent 79px, rgba(26,86,219,0.04) 80px),
    /* Globe rim — thin arc at ~30% from top */
    radial-gradient(ellipse 88% 4% at 50% 30%, rgba(26,86,219,0.20) 0%, rgba(59,130,246,0.10) 55%, transparent 100%),
    /* Upper ambient glow */
    radial-gradient(ellipse 65% 28% at 50% -5%, rgba(26,86,219,0.06) 0%, transparent 75%),
    /* Main globe atmosphere */
    radial-gradient(ellipse 115% 90% at 50% 110%, rgba(26,86,219,0.08) 0%, rgba(59,130,246,0.04) 20%, transparent 50%);
}

/* Particles SVG overlay */
.about-particles {
  position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.about-particles svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Particles — static, removed pulse animation (was causing repaint) */

/* Staggered delays for 40 dots */
.apd1 {animation-delay:0s}    .apd2 {animation-delay:.35s}  .apd3 {animation-delay:.70s}
.apd4 {animation-delay:1.05s} .apd5 {animation-delay:1.40s} .apd6 {animation-delay:1.75s}
.apd7 {animation-delay:2.10s} .apd8 {animation-delay:2.45s} .apd9 {animation-delay:2.80s}
.apd10{animation-delay:.18s}  .apd11{animation-delay:.55s}  .apd12{animation-delay:.90s}
.apd13{animation-delay:1.25s} .apd14{animation-delay:1.60s} .apd15{animation-delay:1.95s}
.apd16{animation-delay:2.30s} .apd17{animation-delay:2.65s} .apd18{animation-delay:3.00s}
.apd19{animation-delay:.42s}  .apd20{animation-delay:.78s}  .apd21{animation-delay:1.12s}
.apd22{animation-delay:1.48s} .apd23{animation-delay:1.83s} .apd24{animation-delay:2.18s}
.apd25{animation-delay:2.53s} .apd26{animation-delay:.62s}  .apd27{animation-delay:.97s}
.apd28{animation-delay:1.32s} .apd29{animation-delay:1.67s} .apd30{animation-delay:2.02s}
.apd31{animation-delay:2.37s} .apd32{animation-delay:2.72s} .apd33{animation-delay:.25s}
.apd34{animation-delay:.88s}  .apd35{animation-delay:1.55s} .apd36{animation-delay:2.22s}
.apd37{animation-delay:.48s}  .apd38{animation-delay:1.15s} .apd39{animation-delay:1.82s}
.apd40{animation-delay:2.49s}

/* No entrance animations in about section — elements visible immediately */
#about .reveal-up,
#about .reveal-left,
#about .reveal-right {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
.glow-blue { top: 50%; left: -200px; transform: translateY(-50%); }

.about-visual { position: relative; }
.about-card-wrap { position: relative; height: 440px; }
.about-ring {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  border: 1px solid rgba(26,86,219,0.14);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
  box-shadow: 0 0 60px rgba(26,86,219,0.06);
}
.about-ring::before {
  content: ''; position: absolute; inset: 30px; border-radius: 50%;
  border: 1px solid rgba(26,86,219,0.07);
}

.about-main-card {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: var(--r-lg); padding: 2.25rem;
  text-align: center; width: 285px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  overflow: hidden;
}
.about-globe-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.30; pointer-events: none; z-index: 0;
  border-radius: inherit;
}
.about-main-card > *:not(.about-globe-canvas) { position: relative; z-index: 1; }
.card-icon-wrap {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cobalt), #1443B0);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 1.2rem;
  box-shadow: 0 8px 28px rgba(26,86,219,0.30);
}
.about-main-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--text-dark); margin-bottom: 0.6rem; line-height: 1.3; }
.about-main-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.about-accent-card {
  position: absolute; border-radius: var(--r); padding: 0.85rem 1.1rem;
  display: flex; align-items: center; gap: 0.75rem;
  box-shadow: var(--shadow);
}
.about-accent-card i { font-size: 1.15rem; color: var(--cobalt); }
.about-accent-card strong { display: block; font-size: 0.85rem; color: var(--text-dark); font-weight: 600; }
.about-accent-card span  { font-size: 0.75rem; color: var(--text-muted); }
.a-acc-1 { top: 8%; left: 0; }
.a-acc-2 { bottom: 12%; right: 0; }

.about-lead { font-size: 1.05rem; color: var(--text-body); margin-bottom: 1rem; line-height: 1.75; font-weight: 500; }
.about-body { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.8; }

.value-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(26,86,219,0.07);
  border: 1px solid rgba(26,86,219,0.18);
  color: var(--cobalt); font-size: 0.8rem; font-weight: 600;
  padding: 0.35rem 0.9rem; border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif; transition: all var(--t);
}
.chip:hover { background: var(--cobalt); color: #fff; }
.chip i { font-size: 0.68rem; }

/* ─── About section light-mode overrides ────────────────── */
#about .about-grid { z-index: 1; }

/* Sec label & heading — use default light cobalt */
#about .sec-label         { color: var(--cobalt); }
#about .sec-label::before { background: var(--cobalt); }
#about .sec-heading       { color: var(--text-dark); }
#about .sec-heading em    { color: var(--cobalt); }

/* Body text — default light */
#about .about-lead { color: var(--text-body); }
#about .about-body { color: var(--text-muted); }

/* Main card — elevated white card */
#about .glass-card {
  background: #FFFFFF;
  border-color: rgba(26,86,219,0.12);
  box-shadow: 0 16px 48px rgba(26,86,219,0.10), 0 0 0 1px rgba(26,86,219,0.06);
}
#about .about-main-card h3 { color: var(--text-dark); }
#about .about-main-card p  { color: var(--text-muted); }

/* Accent cards — white */
#about .glass-card-sm {
  background: #FFFFFF;
  border-color: rgba(26,86,219,0.10);
  box-shadow: 0 4px 16px rgba(26,86,219,0.08);
}
#about .about-accent-card i      { color: var(--cobalt); }
#about .about-accent-card strong { color: var(--text-dark); }
#about .about-accent-card span   { color: var(--text-muted); }

/* Ring decoration — cobalt on light */
#about .about-ring         { border-color: rgba(26,86,219,0.10); box-shadow: 0 0 60px rgba(26,86,219,0.04); }
#about .about-ring::before { border-color: rgba(26,86,219,0.05); }

/* Value chips — default light cobalt */
#about .chip {
  background: rgba(26,86,219,0.07);
  border-color: rgba(26,86,219,0.18);
  color: var(--cobalt);
}
#about .chip:hover {
  background: var(--cobalt);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCTS  —  ice section
   ═══════════════════════════════════════════════════════════ */
.products-section { position: relative; overflow: hidden; background: var(--ice); }
.glow-gold { bottom: 0; right: -150px; }

.products-bento {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.1rem; margin-bottom: 2rem;
}
.products-bento .p-card:nth-child(1) { grid-column: span 2; }
.products-bento .p-card:nth-child(5) { grid-column: span 2; }
.products-bento .p-card:nth-child(9) { grid-column: span 2; }

.p-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border-light); min-height: 240px;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  cursor: default; transform-style: preserve-3d;
  box-shadow: var(--shadow-sm);
}
.p-card:hover {
  border-color: rgba(26,86,219,0.25);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 52px rgba(12,31,74,0.15);
}
.p-card-bg {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, var(--ca) 0%, var(--cb) 100%);
}
.p-card-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12) 0%, transparent 55%),
              repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(255,255,255,0.025) 20px, rgba(255,255,255,0.025) 21px);
}
.p-decor {
  position: absolute; right: -20px; bottom: -20px;
  font-size: 8rem; color: rgba(255,255,255,0.07);
  pointer-events: none; z-index: 1;
}
.p-inner {
  position: relative; z-index: 2; padding: 1.75rem;
  height: 100%; display: flex; flex-direction: column;
  transform-style: preserve-3d;
}
.p-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #fff; margin-bottom: 1rem;
  backdrop-filter: blur(8px); flex-shrink: 0;
  transform: translateZ(0px); transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
}
.p-card:hover .p-icon { transform: translateZ(22px); }
.p-card h3 {
  font-size: 1.1rem; font-weight: 700; color: #fff;
  margin-bottom: 0.6rem; line-height: 1.3;
  transform: translateZ(0); transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
}
.p-card:hover h3 { transform: translateZ(16px); }
.p-card p  { font-size: 0.85rem; color: rgba(255,255,255,0.68); line-height: 1.65; margin-bottom: 1.25rem; flex: 1; }
.p-tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: auto;
  transform: translateZ(0); transition: transform 0.30s cubic-bezier(.34,1.56,.64,1) 0.05s;
}
.p-card:hover .p-tags { transform: translateZ(10px); }
.p-tags span {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.70rem; font-weight: 600;
  color: rgba(255,255,255,0.80); background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20); padding: 0.22rem 0.65rem;
  border-radius: 100px; backdrop-filter: blur(4px);
}
.p-badge {
  display: inline-flex; font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.30);
  color: rgba(255,255,255,0.92); padding: 0.25rem 0.7rem; border-radius: 100px;
  margin-bottom: 0.85rem; backdrop-filter: blur(4px); width: fit-content;
}
.p-card-featured { border-color: rgba(26,86,219,0.32); }
.p-card-featured:hover { border-color: rgba(26,86,219,0.60); box-shadow: 0 20px 52px rgba(26,86,219,0.22); }
/* Holographic shine layer */
.p-card-shine {
  position: absolute; inset: 0; border-radius: inherit;
  pointer-events: none; z-index: 5; opacity: 0;
  mix-blend-mode: screen; transition: opacity 0.25s ease;
}
.products-note {
  text-align: center; background: var(--white);
  border: 1px dashed var(--border-mid); border-radius: var(--r);
  padding: 1.2rem 2rem; font-size: 0.9rem; color: var(--text-muted);
}
.products-note i { color: var(--cobalt); margin-right: 0.4rem; }
.products-note strong { color: var(--text-body); }
.products-note a { color: var(--cobalt); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ═══════════════════════════════════════════════════════════
   CERTIFICATE  —  dark navy section
   ═══════════════════════════════════════════════════════════ */
.cert-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  position: relative; overflow: hidden;
}
.cert-section .sec-label  { color: #93C5FD; }
.cert-section .sec-label::before { background: #93C5FD; }
.cert-section .sec-heading { color: #fff; }
.cert-section .sec-heading em { color: #93C5FD; }
.cert-section .sec-sub { color: rgba(255,255,255,0.55); }

.cert-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.cert-card {
  border-radius: var(--r-lg); padding: 2rem 1.5rem; text-align: center;
  position: relative; overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(20px);
  transition: all var(--t); box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  transform-style: preserve-3d;
}
.cert-card:hover { transform: translateY(-6px); box-shadow: 0 18px 52px rgba(0,0,0,0.40); border-color: rgba(255,255,255,0.20); }
.cert-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--gc) 18%, transparent) 0%, transparent 60%);
  pointer-events: none;
}
.cert-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: color-mix(in srgb, var(--ic, #3B82F6) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--ic, #3B82F6) 30%, transparent);
  color: var(--ic, #3B82F6);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  margin: 0 auto 1.2rem; position: relative; z-index: 1;
  transform: translateZ(0); transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
}
.cert-card:hover .cert-icon { transform: translateZ(18px); }
.cert-card h5 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.55rem; position: relative; z-index: 1; }
.cert-card p  { font-size: 0.84rem; color: rgba(255,255,255,0.55); line-height: 1.6; position: relative; z-index: 1; }

/* Cert 3D reveal animation */
@keyframes certReveal3D {
  0%   { opacity:0; transform:perspective(600px) rotateY(-18deg) translateX(-16px) scale(0.97); }
  100% { opacity:1; transform:none; }
}
.cert-card.anim-revealed { animation: certReveal3D 0.65s cubic-bezier(.22,1,.36,1) both; }

/* ═══════════════════════════════════════════════════════════
   GALLERY & BLOG  —  alternate white / ice
   ═══════════════════════════════════════════════════════════ */
.gallery-section { background: var(--white); padding: 5rem 0 !important; }
.blog-section    { background: var(--gray-50); padding: 5rem 0 !important; }

.coming-soon-card {
  max-width: 500px; margin: 0 auto;
  border-radius: var(--r-xl); padding: 3rem 2rem; text-align: center;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border-light);
}
.cs-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(26,86,219,0.09); border: 1px solid rgba(26,86,219,0.20);
  color: var(--cobalt); display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 1.2rem;
}
.coming-soon-card h4 { font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.coming-soon-card p  { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════════════
   PROCESS  —  dark navy section with route animation
   ═══════════════════════════════════════════════════════════ */
.process-section {
  position: relative; overflow: hidden;
  background: linear-gradient(140deg, var(--navy-deep) 0%, var(--navy) 45%, #0D2957 100%);
}
.route-bg { position: absolute; inset: 0; pointer-events: none; width: 100%; height: 100%; }
.route-bg svg { width: 100%; height: 100%; }

.proc-lbl  { color: #38BDF8 !important; }
.proc-lbl::before { background: #38BDF8 !important; }
.proc-hdg  { color: #fff !important; }
.proc-sub  { color: rgba(255,255,255,0.55) !important; }

.process-row { display: flex; align-items: stretch; gap: 0.5rem; }
.proc-card {
  flex: 1; border-radius: var(--r-lg); padding: 2rem 1.5rem; text-align: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(20px); transition: all var(--t);
  transform-style: preserve-3d;
}
.proc-card:hover { border-color: rgba(56,189,248,0.40); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.35); }
.proc-num { font-family: 'Space Grotesk', sans-serif; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; color: #38BDF8; text-transform: uppercase; margin-bottom: 1rem; }
.proc-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(56,189,248,0.10); border: 1px solid rgba(56,189,248,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #38BDF8; margin: 0 auto 1rem;
  transform: translateZ(0); transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
}
.proc-card:hover .proc-icon { transform: translateZ(16px); }
.proc-card h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; }
.proc-card p  { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
.proc-arrow {
  display: flex; align-items: center; flex-shrink: 0;
  padding-top: 3.8rem; color: rgba(56,189,248,0.38); font-size: 1.3rem;
  animation: arrowPulse3d 2s ease-in-out infinite;
}
@keyframes arrowPulse3d {
  0%,100% { transform: translateX(0) scale(1);    opacity: 0.38; }
  50%     { transform: translateX(5px) scale(1.1); opacity: 0.75; }
}

/* ═══════════════════════════════════════════════════════════
   WHY US  —  white section with Three.js network behind
   ═══════════════════════════════════════════════════════════ */
.why-section { position: relative; overflow: hidden; background: var(--white); }
#whyCanvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; pointer-events: none; }
.glow-purple { top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.35; }
.why-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.why-left > p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; }
.why-right { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.why-card {
  border-radius: var(--r); padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm); transition: all var(--t);
  transform-style: preserve-3d;
}
.why-card:hover { border-color: rgba(26,86,219,0.22); transform: translateY(-3px); box-shadow: var(--shadow); }
.why-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: color-mix(in srgb, var(--wc) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--wc) 22%, transparent);
  color: var(--wc); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  transform: translateZ(0); transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
}
.why-card:hover .why-icon { transform: translateZ(14px); }
.why-card h5 { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.35rem; }
.why-card p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   FAQ  —  ice section
   ═══════════════════════════════════════════════════════════ */
.faq-section { position: relative; overflow: hidden; background: var(--ice); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.65rem; }
.faq-item {
  border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t), box-shadow var(--t);
}
.faq-item.open { border-color: rgba(26,86,219,0.28); box-shadow: 0 4px 24px rgba(26,86,219,0.08); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.15rem 1.5rem;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600;
  color: var(--text-dark);
}
.faq-q i { color: var(--cobalt); font-size: 0.85rem; flex-shrink: 0; transition: transform var(--t); }
.faq-item.open .faq-q i { transform: rotate(45deg); color: var(--gold-mid); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.25s ease; padding: 0 1.5rem; }
.faq-item.open .faq-a { max-height: 250px; padding: 0 1.5rem 1.25rem; }
.faq-a p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════
   CONTACT  —  white section
   ═══════════════════════════════════════════════════════════ */
.contact-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/logo.png') center / 60% auto no-repeat;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-left > p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  border-radius: var(--r); padding: 1rem 1.25rem;
  background: var(--white); border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm); transition: all var(--t);
}
.contact-item:hover { border-color: rgba(26,86,219,0.22); transform: translateX(4px); box-shadow: var(--shadow); }
.cd-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(26,86,219,0.09); border: 1px solid rgba(26,86,219,0.18);
  color: var(--cobalt); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.78rem; color: var(--text-dark); font-weight: 700; }
.contact-item span   { font-size: 0.85rem; color: var(--text-muted); }
.contact-social { display: flex; gap: 0.6rem; }

/* Social buttons */
.social-btn {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: var(--white); border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 1rem; transition: all var(--t);
  box-shadow: var(--shadow-sm);
}
.social-btn:hover { background: var(--cobalt); color: #fff; border-color: var(--cobalt); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(26,86,219,0.30); }
.social-btn.sm { width: 36px; height: 36px; font-size: 0.9rem; }

/* Contact form */
.contact-form {
  border-radius: var(--r-xl); padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}
.form-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 1.75rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 0.76rem; font-weight: 700; color: var(--text-muted); margin-bottom: 0.5rem; letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--gray-50);
  border: 1.5px solid var(--border-light); border-radius: var(--r-sm);
  padding: 0.72rem 1rem; font-size: 0.9rem; font-family: 'Inter', sans-serif;
  color: var(--text-dark); outline: none; transition: all var(--t);
}
.form-group select option { background: var(--white); color: var(--text-dark); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--cobalt); background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.10), 0 4px 20px rgba(26,86,219,0.08);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-success {
  text-align: center; padding: 1rem; color: var(--green);
  font-size: 0.875rem; font-weight: 600;
  background: rgba(5,150,105,0.08); border: 1px solid rgba(5,150,105,0.22);
  border-radius: var(--r-sm); margin-top: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER  —  deep navy
   ═══════════════════════════════════════════════════════════ */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.65); position: relative; overflow: hidden; }
.footer-glow {
  position: absolute; width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(26,86,219,0.10) 0%, transparent 70%);
  top: 0; left: 50%; transform: translateX(-50%); pointer-events: none;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(93,165,253,0.35) 30%, rgba(217,119,6,0.28) 50%, rgba(93,165,253,0.35) 70%, transparent);
}
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; padding: 4.5rem 0; align-items: start; position: relative; z-index: 1; }
.footer-logo-link { display: inline-block; text-decoration: none; }
.footer-logo-img {
  height: 64px;
  width: auto;
  opacity: 0.55;
  filter: brightness(1.3);
  display: block;
  transition: opacity var(--t);
}
.footer-logo-img:hover { opacity: 0.85; }
.footer-brand > p { margin-top: 1.2rem; font-size: 0.875rem; line-height: 1.75; max-width: 300px; color: rgba(255,255,255,0.50); }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.footer .social-btn { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.55); }
.footer .social-btn:hover { background: var(--cobalt); border-color: var(--cobalt); color: #fff; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.footer-col h6 { font-family: 'Space Grotesk', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.40); transition: color var(--t); }
.footer-col ul li a:hover { color: #93C5FD; }
.footer-bar { border-top: 1px solid rgba(255,255,255,0.07); padding: 1.25rem 0; position: relative; z-index: 1; }
.footer-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bar-inner p { font-size: 0.8rem; color: rgba(255,255,255,0.30); }

/* ═══════════════════════════════════════════════════════════
   WHATSAPP & BACK-TOP
   ═══════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 5rem; right: 1.75rem; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  animation: waPulse3d 2.2s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.12); }
@keyframes waPulse3d {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,0.50), 0 0 0 0 rgba(37,211,102,0.28); }
  50%     { box-shadow: 0 8px 36px rgba(37,211,102,0.65), 0 0 0 8px rgba(37,211,102,0); }
}
.wa-ping { position: absolute; top: -3px; right: -3px; width: 15px; height: 15px; border-radius: 50%; background: #EF4444; border: 2px solid var(--navy-deep); animation: waPing 1.5s ease-in-out infinite; }
@keyframes waPing { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.7);opacity:0.4} }

.back-top {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 999;
  width: 42px; height: 42px; border-radius: var(--r-sm);
  background: var(--cobalt); color: #fff; border: none; cursor: pointer;
  font-size: 0.88rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(26,86,219,0.38);
  opacity: 0; pointer-events: none; transition: all var(--t);
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--cobalt-mid); transform: translateY(-3px); }

/* ═══════════════════════════════════════════════════════════
   3D ANIMATION SUPPORT
   ═══════════════════════════════════════════════════════════ */

/* Tilt card base */
.tilt-card { transform-style: preserve-3d; }

/* Floating process particles */
@keyframes floatParticle {
  0%   { transform:translateY(0); }
  50%  { transform:translateY(-18px); }
  100% { transform:translateY(0); }
}
.particle-3d { position:absolute; border-radius:50%; pointer-events:none; animation:floatParticle linear infinite; will-change: transform; }

/* Scrollbar glow */
::-webkit-scrollbar-thumb:hover { background: rgba(26,86,219,0.55); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-layout     { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .cert-grid      { grid-template-columns: repeat(2,1fr); }
  .products-bento { grid-template-columns: repeat(2,1fr); }
  .products-bento .p-card:nth-child(1) { grid-column: span 2; }
  .products-bento .p-card:nth-child(5) { grid-column: span 2; }
  .products-bento .p-card:nth-child(9) { grid-column: span 2; }
}
@media (max-width: 900px) {
  .hero-split  { grid-template-columns: 1fr; padding: 6rem 1.5rem 1.5rem; gap: 1rem; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  #globe-container { max-width: 360px; }
  .about-grid  { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .process-row { flex-direction: column; }
  .proc-arrow  { transform: rotate(90deg); margin: -1rem auto; padding-top: 0; animation: none; }
  .why-right   { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 860px) { .nav-links { display: none; } }
@media (max-width: 768px) {
  .hero-split { padding: 5.5rem 1.2rem 1rem; }
  .hero-title { font-size: 2rem; }
  .hero-line-1, .hero-title em { white-space: normal; }
  .nav-logo-img { height: 48px; }
  #globe-container { max-width: 280px; }
  .pillars-row  { flex-direction: column; gap: 1rem; }
  .pillar-divider { display: none; }
  .form-row     { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .cert-grid    { grid-template-columns: repeat(2,1fr); }
  #google_translate_element { display: none; }
  .btn-brochure { display: none; }
  .products-bento { grid-template-columns: 1fr; }
  .products-bento .p-card { grid-column: span 1 !important; }
  .hero-trust { flex-wrap: wrap; }
}
@media (max-width: 520px) {
  .hero-split { padding: 5rem 1rem 0.5rem; gap: 0.5rem; }
  .hero-title { font-size: 1.55rem; }
  .hero-line-1, .hero-title em { white-space: normal; }
  #globe-container { max-width: 220px; }
  .country-selector { max-width: 100%; }
  .footer-links { grid-template-columns: 1fr; }
  .why-right { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .hero-wave-sep svg { height: 50px; }
}

/* ═══════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .ticker-track { animation: none; }
}

/* ═══════════════════════════════════════════════════════════
   TRANSLATE BUTTON
   ═══════════════════════════════════════════════════════════ */
.translate-wrap { position: relative; }

.translate-btn {
  display: flex; align-items: center; gap: 0.4rem;
  background: rgba(26,86,219,0.07);
  border: 1.5px solid rgba(26,86,219,0.20);
  border-radius: 100px;
  padding: 0.40rem 0.9rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.80rem; font-weight: 600;
  color: var(--cobalt);
  cursor: pointer; white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.translate-btn:hover {
  background: rgba(26,86,219,0.12);
  border-color: rgba(26,86,219,0.38);
  box-shadow: 0 2px 12px rgba(26,86,219,0.14);
}
.translate-btn .fa-language { font-size: 1rem; }
.translate-label { display: inline; }
.translate-caret { font-size: 0.65rem; transition: transform 0.25s ease; }
.translate-wrap.open .translate-caret { transform: rotate(180deg); }

.translate-dropdown {
  display: none;
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--white);
  border: 1px solid rgba(26,86,219,0.12);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(12,31,74,0.16);
  min-width: 195px; padding: 0.45rem;
  z-index: 1200;
  max-height: 340px; overflow-y: auto;
  list-style: none;
}
.translate-wrap.open .translate-dropdown { display: block; }
.translate-dropdown li {
  padding: 0.50rem 0.9rem;
  border-radius: 9px; cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.84rem; font-weight: 500;
  color: var(--text-body);
  transition: background 0.15s, color 0.15s;
}
.translate-dropdown li:hover { background: rgba(26,86,219,0.07); color: var(--cobalt); }
.translate-dropdown li.tl-active {
  background: rgba(26,86,219,0.10); color: var(--cobalt); font-weight: 700;
}

/* Hide Google Translate toolbar injected at top of page */
.goog-te-banner-frame, #goog-gt-tt, .skiptranslate { display: none !important; }
body { top: 0 !important; }

@media (max-width: 900px) {
  .translate-label { display: none; }
  .translate-btn { padding: 0.40rem 0.72rem; gap: 0; }
  .translate-caret { display: none; }
}


/* Suppress Google Translate bar entirely */
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf { display: none !important; }
.VIpgJd-ZVi9od-aZ2wEe-OiiCO  { display: none !important; }

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION — SEA + CONTAINER SHIP ANIMATION
   ═══════════════════════════════════════════════════════════ */
.contact-section { position: relative; overflow: hidden; }

.contact-sea-bg {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}

/* Three wave layers */
.sea-layer {
  position: absolute; bottom: 0; left: -10%; right: -10%;
  border-radius: 50% 50% 0 0 / 28px 28px 0 0;
}
.sl1 {
  height: 90px;
  background: linear-gradient(180deg, transparent 0%, rgba(26,86,219,0.055) 60%, rgba(26,86,219,0.10) 100%);
  animation: waveRoll 9s ease-in-out infinite;
}
.sl2 {
  height: 72px;
  background: linear-gradient(180deg, transparent 0%, rgba(26,86,219,0.038) 60%, rgba(26,86,219,0.07) 100%);
  animation: waveRoll 11s ease-in-out infinite reverse;
  animation-delay: -3.5s;
}
.sl3 {
  height: 55px;
  background: linear-gradient(180deg, transparent 0%, rgba(26,86,219,0.025) 60%, rgba(26,86,219,0.05) 100%);
  animation: waveRoll 14s ease-in-out infinite;
  animation-delay: -7s;
}
@keyframes waveRoll {
  0%,100% { transform: translateX(0)   scaleY(1);   }
  33%      { transform: translateX(3%)  scaleY(1.08); }
  66%      { transform: translateX(-2%) scaleY(0.95); }
}

/* Ship wrapper travels left → right */
.ship-wrap {
  position: absolute;
  bottom: 18px; left: 0;
  animation: shipSail 30s linear infinite;
}
.contact-ship { width: 320px; height: 100px; display: block; }

@keyframes shipSail {
  0%   { transform: translateX(-360px); }
  100% { transform: translateX(calc(100vw + 360px)); }
}
