/* ════════════════════════════════════════════
   ASH HAVEN GLOBAL LTD — style.css
   ════════════════════════════════════════════ */

/* ── RESET & VARIABLES ── */
:root {
  --navy:        #0b2060;
  --navy-mid:    #0d2a75;
  --navy-deep:   #071440;
  --orange:      #f07c1e;
  --orange-lt:   #f5a04a;
  --orange-dk:   #c8620f;
  --white:       #ffffff;
  --off-white:   #f7f8fc;
  --gray-100:    #f0f2f8;
  --gray-200:    #e0e5f0;
  --gray-400:    #8a96b0;
  --gray-600:    #4a5470;
  --text:        #1a2340;

  --shadow-sm:   0 2px 12px rgba(11,32,96,0.08);
  --shadow-md:   0 8px 32px rgba(11,32,96,0.13);
  --shadow-lg:   0 20px 60px rgba(11,32,96,0.18);
  --shadow-xl:   0 32px 80px rgba(11,32,96,0.22);

  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  --nav-h:       76px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  cursor: none;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 112px 0; }
.section-dark { background: var(--navy-deep); }
.section-alt  { background: var(--off-white); }

/* ── CUSTOM CURSOR ── */
.cursor-dot, .cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.3s;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 2px solid var(--orange);
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear, width 0.2s, height 0.2s, opacity 0.3s;
  opacity: 0.5;
}
.cursor-ring.hovering {
  width: 54px; height: 54px;
  opacity: 0.8;
  background: rgba(240,124,30,0.06);
}

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }

.preloader-logo {
  width: 80px; height: 90px;
  animation: preloaderSpin 1.5s ease-in-out infinite alternate;
}
.shield-path { fill: none; stroke: var(--orange); stroke-width: 3; stroke-dasharray: 300; stroke-dashoffset: 300; animation: drawShield 1.2s ease forwards 0.2s; }
.globe-eq, .globe-me { fill: none; stroke: rgba(255,255,255,0.3); stroke-width: 1.5; }
.globe-line { stroke: rgba(255,255,255,0.2); stroke-width: 1.5; }
.arrow-path { fill: none; stroke: #f07c1e; stroke-width: 4; stroke-linecap: round; }
.arrow-head { fill: #f07c1e; }
.swash { fill: none; stroke: #f07c1e; stroke-width: 3; stroke-linecap: round; opacity: 0.7; }

@keyframes drawShield {
  to { stroke-dashoffset: 0; }
}
@keyframes preloaderSpin {
  0%   { transform: translateY(0) scale(1); }
  100% { transform: translateY(-10px) scale(1.05); }
}

.preloader-bar {
  width: 160px; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px; overflow: hidden;
}
.preloader-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt));
  border-radius: 99px;
  animation: fillBar 1.8s ease forwards 0.3s;
}
@keyframes fillBar { to { width: 100%; } }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(7, 20, 64, 0.97);
  backdrop-filter: blur(18px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
  border-bottom-color: rgba(240,124,30,0.25);
}
.nav-container {
  max-width: 1220px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo-svg { width: 44px; height: 50px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-size: 14px; font-weight: 800; letter-spacing: 1.5px;
  color: var(--white); text-transform: uppercase;
}
.brand-tagline {
  font-size: 9.5px; font-weight: 400; letter-spacing: 2px;
  color: var(--orange); margin-top: 3px; text-transform: uppercase;
}

.nav-menu {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}
.nav-link {
  font-size: 13.5px; font-weight: 500; letter-spacing: 0.3px;
  color: rgba(255,255,255,0.75);
  padding: 6px 14px; border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-link.active { color: var(--orange); }

.nav-btn {
  font-size: 13px; font-weight: 600; letter-spacing: 0.4px;
  background: var(--orange); color: var(--white);
  padding: 9px 22px; border-radius: 8px;
  transition: background var(--transition), transform 0.2s;
  margin-left: 8px;
}
.nav-btn:hover { background: var(--orange-lt); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; border-radius: 6px;
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--navy-deep);
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.shape {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.25;
}
.shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #1a4aaa 0%, transparent 70%);
  top: -200px; left: -200px;
  animation: shapeDrift1 12s ease-in-out infinite alternate;
}
.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  bottom: -150px; right: 10%;
  animation: shapeDrift2 10s ease-in-out infinite alternate;
}
.shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #2860cc 0%, transparent 70%);
  top: 40%; right: 30%;
  animation: shapeDrift3 14s ease-in-out infinite alternate;
}
@keyframes shapeDrift1 { to { transform: translate(60px, 80px); } }
@keyframes shapeDrift2 { to { transform: translate(-40px, -60px); } }
@keyframes shapeDrift3 { to { transform: translate(30px, -50px) scale(1.2); } }

/* Particles */
.particles { position: absolute; inset: 0; }
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-120vh) scale(0.5); opacity: 0; }
}

.hero-container {
  max-width: 1180px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 2;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(240,124,30,0.12);
  border: 1px solid rgba(240,124,30,0.3);
  color: var(--orange); font-size: 13px; font-weight: 500;
  padding: 7px 18px; border-radius: 99px;
  margin-bottom: 28px; width: fit-content;
}
.pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.05; color: var(--white);
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--orange); }
.title-highlight { color: var(--orange-lt); }

.hero-desc {
  font-size: 17px; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,0.62);
  max-width: 480px; margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.3px;
  padding: 14px 28px; border-radius: 10px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(240,124,30,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(240,124,30,0.45); }

.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

.btn-full { width: 100%; justify-content: center; }

.mt-btn { margin-top: 36px; }

.hero-stats {
  display: flex; align-items: center; gap: 32px;
  padding: 24px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  width: fit-content;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 36px; font-weight: 800; color: var(--white); line-height: 1;
}
.stat-label {
  font-size: 11px; font-weight: 400; letter-spacing: 0.8px;
  color: rgba(255,255,255,0.45); margin-top: 4px; display: block;
}
.stat-divider {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.12);
}

/* Hero visual */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.visual-card-wrap {
  position: relative; width: 440px; height: 440px;
  display: flex; align-items: center; justify-content: center;
}
.visual-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(240,124,30,0.15);
  animation: ringPulse 3s ease-in-out infinite;
}
.ring-1 { inset: 0; }
.ring-2 { inset: 30px; animation-delay: 0.5s; border-color: rgba(255,255,255,0.07); }
.ring-3 { inset: 60px; animation-delay: 1s; border-color: rgba(240,124,30,0.08); }

@keyframes ringPulse {
  0%,100% { transform: scale(1); opacity: 0.8; }
  50%      { transform: scale(1.03); opacity: 0.4; }
}

.visual-center {
  position: relative; z-index: 2;
  animation: heroFloat 4.5s ease-in-out infinite;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-16px) rotate(1deg); }
}
.big-logo { width: 240px; filter: drop-shadow(0 0 48px rgba(240,124,30,0.45)); }

/* Floating badges */
.float-badge {
  position: absolute; display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 16px;
  color: var(--white); font-size: 13px; font-weight: 500;
  white-space: nowrap;
  animation: badgeFloat 3s ease-in-out infinite;
}
.badge-icon { font-size: 18px; }
.badge-import { top: 12%; left: -5%; animation-delay: 0s; }
.badge-export { bottom: 18%; right: -8%; animation-delay: 1s; }
.badge-mining { top: 62%; left: -8%; animation-delay: 2s; }
@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--orange));
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--navy);
  padding: 14px 0;
  border-top: 1px solid rgba(240,124,30,0.3);
  border-bottom: 1px solid rgba(240,124,30,0.3);
  overflow: hidden;
}
.ticker-track {
  display: flex; gap: 28px; align-items: center;
  width: max-content;
  animation: tickerScroll 22s linear infinite;
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.ticker-track .sep { color: var(--orange); font-size: 8px; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION HEADERS ── */
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 12px;
}
.section-label.light { color: var(--orange-lt); }

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1; color: var(--text);
  margin-bottom: 16px;
}
.section-title span { color: var(--orange); }
.section-title.light { color: var(--white); }
.section-title.light span { color: var(--orange-lt); }

.section-sub {
  font-size: 16px; font-weight: 300; line-height: 1.7;
  color: var(--gray-400); max-width: 560px;
  margin-bottom: 56px;
}

/* ── SERVICES ── */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--orange));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  background: linear-gradient(145deg, var(--navy-deep), var(--navy-mid));
  border-color: var(--navy);
}
.service-card.featured .service-num,
.service-card.featured .service-name,
.service-card.featured .service-desc { color: var(--white); }
.service-card.featured .service-features li { color: rgba(255,255,255,0.7); }
.service-card.featured .service-features li::before { background: var(--orange); }
.service-card.featured .service-cta { color: var(--orange-lt); }
.service-card.featured::before { background: linear-gradient(90deg, var(--orange), var(--orange-lt)); transform: scaleX(1); }

.featured-tag {
  position: absolute; top: 18px; right: 18px;
  background: var(--orange); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 99px;
}

.service-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.service-num {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  color: var(--gray-400);
}
.service-icon-wrap { font-size: 30px; }
.service-name {
  font-size: 19px; font-weight: 700; color: var(--text);
  margin-bottom: 12px; line-height: 1.3;
}
.service-desc {
  font-size: 14px; font-weight: 300; line-height: 1.7;
  color: var(--gray-600); margin-bottom: 20px;
}
.service-features {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 24px;
}
.service-features li {
  font-size: 13px; color: var(--gray-600);
  display: flex; align-items: center; gap: 8px;
}
.service-features li::before {
  content: '✓';
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gray-100);
  color: var(--navy); font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-cta {
  font-size: 13px; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.service-cta:hover { gap: 12px; color: var(--orange); }
.service-cta span { transition: transform 0.2s; }
.service-cta:hover span { transform: translateX(4px); }

/* ── ABOUT ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img-block {
  position: relative; aspect-ratio: 3/4;
  border-radius: var(--radius-xl); overflow: visible;
}
.about-logo-frame {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, var(--navy-mid) 0%, #0a1c50 100%);
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
  border: 1px solid rgba(255,255,255,0.07);
}
.about-logo-frame::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 30px,
    rgba(255,255,255,0.015) 30px, rgba(255,255,255,0.015) 60px
  );
}
.about-logo-frame svg { width: 70%; filter: drop-shadow(0 0 36px rgba(240,124,30,0.35)); position: relative; z-index: 1; }

.about-card-stat {
  position: absolute; z-index: 10;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; align-items: center;
  gap: 2px;
}
.about-card-stat strong {
  font-size: 22px; font-weight: 800; color: var(--navy); line-height: 1;
}
.about-card-stat span {
  font-size: 11px; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gray-400);
}
.about-card-stat { top: -20px; right: -20px; }
.about-card-stat.stat-bottom { top: auto; right: auto; bottom: -20px; left: -20px; }

.about-para {
  font-size: 16px; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.62); margin-bottom: 18px;
}

.about-checks {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 28px;
}
.check-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 14.5px; color: rgba(255,255,255,0.8);
}
.check-icon {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: var(--white); font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(240,124,30,0.3);
}

/* ── SECTORS ── */
.sectors-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 56px;
}
.sector-card {
  background: var(--navy-deep);
  border-radius: var(--radius-lg); padding: 44px 32px;
  position: relative; overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.06);
  cursor: default;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.sector-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: rgba(240,124,30,0.25); }
.sector-card.orange { background: linear-gradient(135deg, var(--orange), var(--orange-dk)); border-color: transparent; }
.sector-card.orange:hover { box-shadow: 0 20px 60px rgba(240,124,30,0.35); }
.sector-card.orange .sector-num-big { color: rgba(255,255,255,0.15); }
.sector-card.orange h3 { color: var(--white); }
.sector-card.orange p { color: rgba(255,255,255,0.85); }

.sector-num-big {
  font-family: 'DM Serif Display', serif;
  font-size: 72px; color: rgba(255,255,255,0.05);
  line-height: 1; position: absolute;
  top: 10px; right: 16px;
  transition: opacity 0.3s;
}
.sector-card:hover .sector-num-big { opacity: 0.12; }

.sector-emoji { font-size: 36px; margin-bottom: 18px; position: relative; z-index: 1; }
.sector-card h3 {
  font-size: 20px; font-weight: 700; color: var(--white);
  margin-bottom: 12px; position: relative; z-index: 1;
}
.sector-card p {
  font-size: 14px; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.5); position: relative; z-index: 1;
}

/* ── WHY US ── */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.why-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1.5px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.why-card:hover .why-icon-wrap { background: linear-gradient(135deg, var(--orange), var(--orange-dk)); }

.why-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
  transition: background var(--transition);
}
.why-card h4 {
  font-size: 17px; font-weight: 700; color: var(--text);
  margin-bottom: 10px;
}
.why-card p { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--gray-600); }

/* ── QUOTE FORM ── */
.quote-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 80px; align-items: start;
}
.contact-list { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.contact-row {
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-icon-box {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: rgba(240,124,30,0.15);
  border: 1px solid rgba(240,124,30,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-row > div:last-child { display: flex; flex-direction: column; gap: 3px; }
.contact-row strong { font-size: 13px; font-weight: 600; color: var(--white); }
.contact-row span   { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.6); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-xl);
}
.form-title {
  font-size: 22px; font-weight: 700; color: var(--text);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--gray-600);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-200);
  border-radius: 8px; padding: 12px 16px;
  font-family: 'Outfit', sans-serif; font-size: 14.5px;
  color: var(--text); background: var(--off-white);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  outline: none; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(240,124,30,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.select-wrap { position: relative; }
.select-wrap select { appearance: none; padding-right: 36px; cursor: pointer; }
.select-arrow {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none; color: var(--gray-400); font-size: 12px;
}

.field-error { font-size: 12px; color: #e53935; margin-top: 2px; display: none; }
.field-error.show { display: block; }
.form-group input.error,
.form-group select.error { border-color: #e53935; }

.btn-spinner {
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  text-align: center; padding: 40px 20px;
}
.success-icon { font-size: 48px; margin-bottom: 16px; display: block; }
.form-success strong { font-size: 20px; color: var(--text); display: block; margin-bottom: 8px; }
.form-success p { font-size: 15px; color: var(--gray-600); }

.hidden { display: none !important; }

/* ── CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin-top: 56px; align-items: start;
}
.contact-details-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-detail-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.contact-detail-card:hover { box-shadow: var(--shadow-md); border-color: var(--orange); }
.contact-detail-card.full-width { grid-column: 1 / -1; }
.cdc-icon {
  font-size: 22px; flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
}
.contact-detail-card h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 6px;
}
.contact-detail-card p {
  font-size: 13.5px; line-height: 1.6; color: var(--gray-600);
}
.contact-detail-card a { color: var(--navy); transition: color var(--transition); }
.contact-detail-card a:hover { color: var(--orange); }

.map-frame {
  height: 400px; border-radius: var(--radius-lg);
  overflow: hidden; border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}
.map-frame iframe { width: 100%; height: 100%; border: none; }

/* ── FOOTER ── */
footer { background: var(--navy-deep); }
.footer-top { padding: 72px 0 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-inner {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.footer-desc {
  font-size: 13.5px; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.4); max-width: 260px;
}
.footer-col h5 {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a {
  font-size: 13.5px; color: rgba(255,255,255,0.45);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-col ul a:hover { color: var(--white); padding-left: 6px; }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.28); }
.footer-bottom p:last-child { color: rgba(240,124,30,0.5); }

.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: var(--white); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(240,124,30,0.4);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s;
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(240,124,30,0.5); }

/* ── AOS (scroll reveal) ── */
[data-aos] { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos="fade-up"]    { transform: translateY(36px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"]  { transform: translateX(40px); }
[data-aos="zoom-in"]    { transform: scale(0.92); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

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

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-visual    { display: none; }
  .about-grid     { grid-template-columns: 1fr; }
  .about-left     { display: none; }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .quote-grid     { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .footer-inner   { grid-template-columns: 1fr 1fr; }
  .nav-menu       { display: none; }
  .hamburger      { display: flex; }
  body            { cursor: auto; }
  .cursor-dot,
  .cursor-ring    { display: none; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .sectors-grid  { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .contact-details-grid { grid-template-columns: 1fr; }
  .form-row-2    { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr; }
  .hero-stats    { flex-direction: column; gap: 16px; width: 100%; }
  .stat-divider  { width: 80px; height: 1px; }
  .section { padding: 72px 0; }
}

/* Mobile nav open state */
@media (max-width: 900px) {
  #navMenu {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(7, 20, 64, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column; gap: 0;
    padding: 16px 24px 24px;
    border-bottom: 2px solid rgba(240,124,30,0.3);
    transform: translateY(-8px); opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  #navMenu.open { display: flex; transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); border-radius: 0; }
  .nav-btn  { margin: 16px 0 0; width: 100%; text-align: center; }
}
