/* =============================================
   ATMIYA ENGINEERING - Main Stylesheet
   Light Theme | Gold #C9A227 | Navy #1A2744
   ============================================= */
@import url('contact.css');

:root {
  --gold: #C9A227;
  --gold-light: #F0C040;
  --gold-dark: #A07D10;
  --navy: #1A2744;
  --navy-light: #243358;
  --white: #FFFFFF;
  --bg: #FAFAFA;
  --bg-gray: #F5F5F5;
  --bg-blue: #EEF2F7;
  --text-dark: #1A1A2E;
  --text-mid: #444455;
  --text-light: #777788;
  --border: #E0E0E0;
  --shadow: 0 4px 24px rgba(26,39,68,0.10);
  --shadow-lg: 0 8px 40px rgba(26,39,68,0.16);
  --radius: 12px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

html, body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

body {
  font-family: 'Segoe UI', 'Arial', sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-gray); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

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

/* ---- CUSTOM GLOWING GOLD CURSOR ---- */
@media (hover: hover) and (pointer: fine) {
  body {
    cursor: default;
  }
  a, button, input, select, textarea, .btn, [role="button"],
  .service-card, .promise-card, .strength-card, .value-card, .equip-card, .industry-card, .stat-item, .card, .quality-card {
    cursor: pointer;
  }

  .custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: #c9a227;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, background 0.2s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.85);
  }

  .custom-cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.35) 0%, rgba(201, 162, 39, 0.1) 60%, transparent 100%);
    border: 1.5px solid rgba(201, 162, 39, 0.55);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.35);
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), height 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    will-change: transform;
  }

  body.cursor-hover .custom-cursor-dot {
    width: 12px;
    height: 12px;
    background: #ffffff;
    box-shadow: 0 0 14px #c9a227;
  }

  body.cursor-hover .custom-cursor-glow {
    width: 58px;
    height: 58px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.45) 0%, rgba(201, 162, 39, 0.18) 70%, transparent 100%);
    border-color: rgba(201, 162, 39, 0.9);
    box-shadow: 0 0 32px rgba(201, 162, 39, 0.6), inset 0 0 14px rgba(201, 162, 39, 0.3);
  }

  body.cursor-click .custom-cursor-glow {
    transform: translate(-50%, -50%) scale(0.75);
    border-color: #ffffff;
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.8);
  }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(5deg); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes countUp {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes typewriter {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes blink {
  50% { border-color: transparent; }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ---- REVEAL ON SCROLL ---- */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left { opacity: 0; transform: translateX(-35px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(35px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* ---- NAVBAR SMART HIDE/SHOW ---- */
.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  padding: 16px 0 !important;
  background: rgba(13, 22, 41, 0.9) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease !important;
  transform: translateY(0);
}

.navbar.nav-hidden {
  transform: translateY(-100%) !important;
}

.navbar.scrolled {
  background: rgba(13, 22, 41, 0.96) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
  padding: 12px 0 !important;
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 0;
}

/* ── NAVBAR LOGO — transparent hero state ── */
/* Logo has a white bg. On dark hero we blend it away and keep only the gold mark. */
.logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  /* Blend white away on dark background: invert makes white→black,
     then sepia+saturate restores the gold colour, brightness brings it back */
  filter:
    invert(1)
    sepia(1)
    saturate(3)
    hue-rotate(5deg)
    brightness(1.15)
    drop-shadow(0 2px 10px rgba(0,0,0,0.35));
  transition: filter 0.35s ease, transform 0.35s ease;
}

/* ── SCROLLED (white navbar) state — show logo as-is, mix out white bg ── */
.navbar.scrolled .logo img {
  filter: none;
  mix-blend-mode: multiply;  /* white bg disappears on white navbar */
  border-radius: 10px;
  /* subtle shadow so it doesn't float formlessly */
  box-shadow: none;
}

.logo:hover img {
  transform: scale(1.07);
}

/* Keep old text vars intact for any residual references */
.logo-text { line-height: 1.1; }
.logo-text .brand { font-size: 1.2rem; font-weight: 800; color: var(--navy); letter-spacing: 2px; }
.logo-text .sub   { font-size: 0.65rem; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; }
.navbar:not(.scrolled) .logo-text .brand { color: #fff; }
.navbar:not(.scrolled) .logo-text .sub   { color: var(--gold-light); }

.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link {
  padding: 8px 16px; border-radius: 6px;
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.5px;
  color: #fff; transition: color var(--transition), background var(--transition);
  position: relative;
}
.navbar.scrolled .nav-link { color: var(--navy); }
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: var(--gold); border-radius: 2px;
  transition: left var(--transition), right var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { left: 16px; right: 16px; }
.nav-link:hover { color: var(--gold); }
.navbar.scrolled .nav-link:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  padding: 9px 22px !important; border-radius: 8px !important;
  font-weight: 700 !important;
  box-shadow: 0 2px 12px rgba(201,162,39,0.35);
}
.nav-cta:hover { background: var(--gold-dark) !important; }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span {
  width: 26px; height: 2.5px; background: #fff; border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  display: block;
}
.navbar.scrolled .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.5px;
  transition: all var(--transition); cursor: pointer; border: none;
}
.btn-primary {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 4px 16px rgba(201,162,39,0.4);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,162,39,0.5); }
.btn-secondary {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-outline {
  background: transparent; color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--navy); font-weight: 700; }
.btn-white:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; margin-bottom: 52px; }
.section-title {
  font-size: 2.2rem; font-weight: 800; color: var(--navy);
  letter-spacing: -0.5px; margin-bottom: 14px;
}
.section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }
.title-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px; margin: 12px auto 16px;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #0f1a35 60%, #1a2744 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 80px;
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.4;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,162,39,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.floating-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute; border-radius: 50%;
  background: rgba(201,162,39,0.08);
  animation: float 6s ease-in-out infinite;
}
.shape-1 { width: 300px; height: 300px; top: -80px; right: -80px; animation-delay: 0s; }
.shape-2 { width: 180px; height: 180px; bottom: 60px; left: 5%; animation-delay: 2s; }
.shape-3 { width: 120px; height: 120px; top: 40%; right: 25%; animation-delay: 4s; }
.shape-4 { width: 80px; height: 80px; top: 20%; left: 35%; animation-delay: 1s; background: rgba(201,162,39,0.05); }

.hero-container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 2; padding: 60px 24px;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,0.15); border: 1px solid rgba(201,162,39,0.4);
  color: var(--gold-light); padding: 6px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero-title {
  font-size: 3.2rem; font-weight: 900; color: #fff;
  line-height: 1.1; margin-bottom: 10px; letter-spacing: -1px;
}
.hero-title .gold-text {
  color: var(--gold);
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
.hero-tagline {
  font-size: 1.1rem; color: rgba(255,255,255,0.75);
  margin-bottom: 16px; font-weight: 500;
}
.hero-description {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  margin-bottom: 36px; line-height: 1.8; max-width: 500px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; }
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 1.6rem; font-weight: 800; color: var(--gold); }
.hero-stat .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,0.15); }

.hero-image-side { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-img-frame {
  position: relative; width: 100%; max-width: 520px;
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hero-img-frame img { width: 100%; height: 480px; object-fit: cover; display: block; }
.hero-img-frame::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(201,162,39,0.18) 0%, transparent 60%);
}
.hero-img-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 140px; height: 140px;
  border: 3px solid var(--gold); border-radius: 12px;
  background: var(--navy-light);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 16px;
  box-shadow: var(--shadow-lg);
}
.hero-img-accent .acc-num { font-size: 2rem; font-weight: 900; color: var(--gold); }
.hero-img-accent .acc-text { font-size: 0.7rem; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 1px; }
.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-dot {
  width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-dot::before {
  content: ''; width: 4px; height: 8px; background: var(--gold);
  border-radius: 2px; animation: float 1.5s ease-in-out infinite;
}

/* ---- STATS SECTION ---- */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
  text-align: center; padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-icon { margin: 0 auto 12px;
  width: 48px; height: 48px; color: var(--gold);
}
.stat-icon svg { width: 100%; height: 100%; }
.stat-number {
  font-size: 2.8rem; font-weight: 900; color: var(--gold);
  letter-spacing: -1px; line-height: 1;
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.stat-suffix { font-size: 1.8rem; }
.stat-label {
  font-size: 0.85rem; color: rgba(255,255,255,0.65);
  text-transform: uppercase; letter-spacing: 1.5px; margin-top: 8px;
}

/* ---- ABOUT SECTION ---- */
.about-section { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-content .section-title { text-align: left; }
.about-content .title-divider { margin-left: 0; }
.about-text { color: var(--text-mid); line-height: 1.85; margin-bottom: 18px; font-size: 1rem; }
.about-highlight {
  background: linear-gradient(135deg, #FFF8E7, #FFFDF4);
  border-left: 4px solid var(--gold);
  padding: 16px 20px; border-radius: 0 8px 8px 0;
  margin: 20px 0 24px; font-style: italic; color: var(--navy);
  font-weight: 600; font-size: 0.97rem;
}
.features-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.features-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--text-mid); font-size: 0.95rem;
}
.features-list li svg {
  width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); margin-top: 2px;
}
.about-images { position: relative; }
.about-img-grid {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto;
  gap: 12px;
}
.about-img-grid img {
  width: 100%; border-radius: var(--radius); object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.about-img-grid img:hover { transform: scale(1.03); }
.about-img-grid img:first-child { grid-column: 1 / -1; height: 220px; }
.about-img-grid img:nth-child(2) { height: 160px; }
.about-img-grid img:nth-child(3) { height: 160px; }
.about-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--navy); color: #fff;
  padding: 18px 22px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); text-align: center;
  border: 3px solid var(--gold);
}
.about-badge .num { font-size: 1.8rem; font-weight: 900; color: var(--gold); }
.about-badge .txt { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.8); }

/* ---- INDUSTRIES SECTION ---- */
.industries-section { padding: 70px 0; background: var(--bg-gray); }
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.industry-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 16px; text-align: center;
  box-shadow: var(--shadow); transition: all var(--transition);
  border: 2px solid transparent; cursor: default;
}
.industry-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.industry-icon { width: 48px; height: 48px; margin: 0 auto 14px; color: var(--gold); }
.industry-icon svg { width: 100%; height: 100%; }
.industry-card h4 { font-size: 0.85rem; font-weight: 700; color: var(--navy); letter-spacing: 0.3px; }

/* ---- SERVICES SECTION ---- */
.services-section { padding: 100px 0; background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 24px; box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,162,39,0.03), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover { border-top-color: var(--gold); transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px; background: linear-gradient(135deg, #FFF8E7, #FFF3CC);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--gold);
  transition: transform var(--transition);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }
.service-number {
  position: absolute; top: 16px; right: 20px;
  font-size: 2.5rem; font-weight: 900; color: rgba(201,162,39,0.08);
  font-family: 'Arial Black', sans-serif; line-height: 1;
}

/* ---- GALLERY SECTION ---- */
.gallery-section { padding: 100px 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 12px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 10px;
  cursor: pointer; box-shadow: var(--shadow);
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,39,68,0.7) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { width: 40px; height: 40px; color: #fff; }
.gallery-item .tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(7, 24, 50, 0.9);
  color: #ffffff;
  border: 1px solid rgba(201, 162, 39, 0.85);
  border-radius: 5px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 2;
}
.gallery-item:hover .tag {
  background: rgba(201, 162, 39, 0.95);
  color: #071832;
  border-color: #ffffff;
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.4);
}
.gallery-view-all { text-align: center; margin-top: 36px; }

/* ---- WHY CHOOSE SECTION ---- */
.why-section { padding: 100px 0; background: var(--bg-blue); }
.why-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 72px; align-items: start; }
.why-header .section-title { text-align: left; font-size: 2.4rem; }
.why-header .title-divider { margin-left: 0; }
.why-header p { color: var(--text-light); margin-top: 16px; line-height: 1.8; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.feature-item {
  background: var(--white); padding: 28px 24px; border-radius: var(--radius);
  box-shadow: var(--shadow); transition: all var(--transition);
  display: flex; gap: 16px; align-items: flex-start;
}
.feature-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-item h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.feature-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ---- CTA BANNER v2 — DYNAMIC ---- */

/* ── Wrapper ── */
.cta-v2-banner {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(140deg, #f0f4fa 0%, #e8eef8 40%, #eef2f9 70%, #f0f4fa 100%);
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

/* ── Animated wave rings ── */
.cta-v2-bg-waves {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.cta-v2-bg-waves::before,
.cta-v2-bg-waves::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.18);
  animation: ctaRingExpand 5s ease-out infinite;
}
.cta-v2-bg-waves::before {
  width: 600px; height: 600px;
  animation-delay: 0s;
}
.cta-v2-bg-waves::after {
  width: 900px; height: 900px;
  animation-delay: 1.8s;
}
@keyframes ctaRingExpand {
  0%   { transform: translate(-50%,-50%) scale(0.6); opacity: 0.5; }
  100% { transform: translate(-50%,-50%) scale(1.4); opacity: 0; }
}

/* ── Particle canvas ── */
.cta-v2-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ── Ambient orbs ── */
.cta-v2-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.cta-v2-orb-1 {
  width: 520px; height: 520px;
  top: -180px; left: -100px;
  background: radial-gradient(circle, rgba(201,162,39,0.18) 0%, transparent 70%);
  animation: ctaOrbDrift 14s ease-in-out infinite;
}
.cta-v2-orb-2 {
  width: 400px; height: 400px;
  bottom: -120px; right: -80px;
  background: radial-gradient(circle, rgba(26,39,68,0.06) 0%, transparent 70%);
  animation: ctaOrbDrift 18s ease-in-out infinite reverse;
}
@keyframes ctaOrbDrift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(40px,-30px) scale(1.06); }
  66%       { transform: translate(-25px,20px) scale(0.95); }
}

/* ── Inner content block ── */
.cta-v2-inner {
  position: relative;
  z-index: 3;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ── Eyebrow badge ── */
.cta-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,162,39,0.10);
  border: 1px solid rgba(201,162,39,0.40);
  color: var(--gold-dark);
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: ctaBadgePop 0.6s cubic-bezier(.22,.68,0,1.4) both;
}
@keyframes ctaBadgePop {
  from { opacity: 0; transform: scale(0.8) translateY(-10px); }
  to   { opacity: 1; transform: scale(1)   translateY(0);     }
}
.cta-v2-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--gold);
  border-radius: 50%;
  color: var(--navy);
  flex-shrink: 0;
}
.cta-v2-badge-icon svg { width: 12px; height: 12px; }

/* ── Main heading ── */
.cta-v2-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 18px;
  position: relative;
}
.cta-v2-typed {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ctaShimmer 3s linear infinite;
}
@keyframes ctaShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}
.cta-v2-cursor {
  display: inline-block;
  color: var(--gold);
  font-weight: 300;
  margin-left: 2px;
  animation: ctaCursorBlink 0.8s step-end infinite;
  -webkit-text-fill-color: var(--gold);
}
@keyframes ctaCursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Subtitle ── */
.cta-v2-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 38px;
}

/* ── Floating stat badges ── */
.cta-v2-stats {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 42px;
}
.cta-v2-stat-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 12px;
  padding: 12px 20px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 20px rgba(26,39,68,0.07);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  animation: ctaStatFloat 4s ease-in-out infinite;
}
.cta-v2-stat-1 { animation-delay: 0s; }
.cta-v2-stat-2 { animation-delay: 0.6s; }
.cta-v2-stat-3 { animation-delay: 1.2s; }
@keyframes ctaStatFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}
.cta-v2-stat-badge:hover {
  border-color: var(--gold);
  background: #fffbf0;
  box-shadow: 0 8px 28px rgba(201,162,39,0.18);
  transform: translateY(-8px) scale(1.04) !important;
}
.cta-v2-stat-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, rgba(201,162,39,0.2), rgba(201,162,39,0.08));
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.cta-v2-stat-icon svg { width: 18px; height: 18px; }
.cta-v2-stat-num {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.cta-v2-stat-lbl {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* ── CTA Buttons ── */
.cta-v2-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-v2-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.97rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(.22,.68,0,1.2),
              box-shadow 0.3s ease;
}
.cta-v2-btn:hover {
  transform: translateY(-4px) scale(1.03);
}

/* Primary button */
.cta-v2-btn-primary {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  box-shadow: 0 6px 28px rgba(201,162,39,0.40),
              0 0 0 0 rgba(201,162,39,0.3);
  animation: ctaBtnPulse 2.8s ease-in-out infinite;
}
@keyframes ctaBtnPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(201,162,39,0.40), 0 0 0 0   rgba(201,162,39,0.25); }
  50%       { box-shadow: 0 6px 36px rgba(201,162,39,0.55), 0 0 0 12px rgba(201,162,39,0);   }
}
.cta-v2-btn-primary:hover {
  animation: none;
  box-shadow: 0 12px 40px rgba(201,162,39,0.6);
}

/* Secondary button */
.cta-v2-btn-secondary {
  background: #ffffff;
  border: 2px solid rgba(26,39,68,0.15);
  box-shadow: 0 4px 16px rgba(26,39,68,0.10);
}
.cta-v2-btn-secondary:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(201,162,39,0.20);
}

/* Shared button bg layer (used for colour flip on hover) */
.cta-v2-btn-bg {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.cta-v2-btn:hover .cta-v2-btn-bg { opacity: 1; }

/* Button content */
.cta-v2-btn-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  color: inherit;
}
.cta-v2-btn-primary .cta-v2-btn-content   { color: var(--navy); }
.cta-v2-btn-secondary .cta-v2-btn-content { color: var(--navy); }
.cta-v2-btn-content svg { width: 18px; height: 18px; flex-shrink: 0; }
.cta-v2-btn-secondary:hover .cta-v2-btn-content { color: var(--gold-dark); }

/* Shine sweep */
.cta-v2-btn-shine {
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,0.22) 50%,
    transparent 80%
  );
  pointer-events: none;
  transition: left 0.55s ease;
}
.cta-v2-btn:hover .cta-v2-btn-shine { left: 140%; }

/* ── Trust indicators ── */
.cta-v2-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cta-v2-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
}
.cta-v2-trust-item svg {
  width: 15px; height: 15px;
  color: var(--gold);
  flex-shrink: 0;
}
.cta-v2-trust-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(201,162,39,0.50);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .cta-v2-banner { padding: 80px 0; }
  .cta-v2-stats  { gap: 12px; }
  .cta-v2-stat-badge { padding: 10px 14px; }
  .cta-v2-buttons { flex-direction: column; align-items: center; }
  .cta-v2-btn-content { padding: 14px 28px; }
  .cta-v2-trust { gap: 6px; }
}
@media (max-width: 480px) {
  .cta-v2-stats { flex-direction: column; align-items: center; }
  .cta-v2-stat-badge { width: 100%; max-width: 240px; justify-content: center; }
}

/* ---- CONTACT SECTION ---- */
.contact-section { padding: 100px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--bg-gray); padding: 24px; border-radius: var(--radius);
  border-left: 4px solid var(--gold); transition: box-shadow var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow); }
.contact-card-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 4px; }
.contact-card p { font-size: 0.95rem; color: var(--text-dark); font-weight: 600; }
.contact-card small { font-size: 0.82rem; color: var(--text-light); }

.contact-form-wrap {
  background: var(--white); padding: 40px; border-radius: 16px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.contact-form-wrap h3 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.contact-form-wrap p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 8px;
  border: 2px solid var(--border); background: var(--bg-gray);
  font-size: 0.95rem; color: var(--text-dark); transition: border-color var(--transition);
  font-family: inherit; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); background: #fff;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 14px; font-size: 1rem; }

/* ---- FOOTER STYLES (See Unified Footer Section below) ---- */

/* ---- LIGHTBOX ---- */
#lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.93);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
#lightbox.active { display: flex; }
#lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: 8px; object-fit: contain; }
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); border: none; color: #fff;
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.4rem;
  cursor: pointer; transition: background var(--transition); display: flex; align-items: center; justify-content: center;
}
.lb-btn:hover { background: var(--gold); color: var(--navy); }
#lb-prev { left: 20px; }
#lb-next { right: 20px; }
#lb-close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,0.12); border: none; color: #fff;
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.2rem;
  cursor: pointer; transition: background var(--transition); display: flex; align-items: center; justify-content: center;
}
#lb-close:hover { background: #e74c3c; }
#lb-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); font-size: 0.9rem; letter-spacing: 1px;
}

/* ---- TOAST ---- */
#toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 9998;
  background: var(--navy); color: #fff; padding: 14px 24px;
  border-radius: 10px; border-left: 4px solid var(--gold);
  font-weight: 600; font-size: 0.95rem;
  box-shadow: var(--shadow-lg);
  transform: translateX(120%); transition: transform 0.4s ease;
}
#toast.show { transform: translateX(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-description { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-img-frame { max-width: 420px; margin: 0 auto; }
  .hero-img-accent { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-header .section-title { text-align: center; }
  .why-header .title-divider { margin: 12px auto 16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 280px;
    background: var(--white); flex-direction: column; justify-content: center;
    gap: 8px; box-shadow: var(--shadow-lg); transition: right var(--transition);
    z-index: 999; padding: 80px 24px 24px;
  }
  .nav-menu.active { right: 0; }
  .nav-link { color: var(--navy) !important; font-size: 1rem; padding: 12px 16px; }
  .hamburger { display: flex; z-index: 1001; }
  .logo img { height: 60px; }             /* cap logo on mobile */
  .footer-brand .logo img { height: 70px; }
  .hero-title { font-size: 2.2rem; }
  .hero-tagline { font-size: 0.95rem; }
  .section-title { font-size: 1.8rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(6) { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat-divider { display: none; }
}
@media (max-width: 576px) {
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-title { font-size: 1.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .btn { padding: 11px 22px; font-size: 0.88rem; }
  .cta-v2-title { font-size: 1.8rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
}

/* ============================================
   HERO v2 — FULLSCREEN SLIDER + PARTICLES
   ============================================ */

/* Override old hero */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a1628;
}

/* ---- Background Slider ---- */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 7s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* ---- Overlays ---- */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(5, 12, 30, 0.90) 0%,
    rgba(10, 22, 50, 0.78) 45%,
    rgba(10, 22, 50, 0.55) 100%
  );
}

/* ---- Particle Canvas ---- */
#heroCanvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* ---- Gold diagonal accent bar ---- */
.hero-accent-bar {
  position: absolute;
  top: 0;
  left: -10%;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 30%, var(--gold-light) 60%, transparent 100%);
  z-index: 3;
  opacity: 0.6;
  transform: skewX(-8deg);
  box-shadow: 0 0 30px rgba(201,162,39,0.4);
  animation: accentPulse 3s ease-in-out infinite;
}
@keyframes accentPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

/* ---- Main content ---- */
.hero-inner {
  position: relative;
  z-index: 4;
  max-width: 820px;
  padding: 120px 60px 120px;
  margin: 0 auto 0 10%;
}

/* ---- Top label ---- */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.45);
  color: var(--gold-light);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: labelIn 0.8s ease 0.3s forwards;
}
@keyframes labelIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.label-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 4px var(--gold); }
  50%       { box-shadow: 0 0 14px var(--gold), 0 0 24px rgba(201,162,39,0.4); }
}

/* ---- Heading with word animation ---- */
.hero-heading {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hw {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hw.visible { opacity: 1; transform: translateY(0); }
.hw.gold {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* ---- Rotating subtitle ---- */
.hero-subtitle-wrap {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  min-height: 32px;
  opacity: 0;
  animation: labelIn 0.8s ease 1.2s forwards;
}
.hero-sub-prefix { flex-shrink: 0; }
.hero-rotating {
  position: relative;
  height: 28px;
  overflow: hidden;
  min-width: 280px;
}
.hr-item {
  position: absolute;
  top: 0; left: 0;
  color: var(--gold-light);
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hr-item.active {
  opacity: 1;
  transform: translateY(0);
}
.hr-item.exit {
  opacity: 0;
  transform: translateY(-100%);
}

/* ---- CTA Buttons ---- */
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  opacity: 0;
  animation: labelIn 0.8s ease 1.5s forwards;
}
.hbtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 8px;
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}
.hbtn svg { width: 18px; height: 18px; flex-shrink: 0; }
.hbtn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 6px 24px rgba(201,162,39,0.45);
  position: relative;
  overflow: hidden;
}
.hbtn-primary::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: rgba(255,255,255,0.25);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.hbtn-primary:hover::after { left: 120%; }
.hbtn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201,162,39,0.55);
}
.hbtn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.hbtn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-3px);
}

/* ---- Stats bar ---- */
.hero-stats-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 20px 28px;
  width: fit-content;
  opacity: 0;
  animation: labelIn 0.8s ease 1.8s forwards;
}
.hsb-item { text-align: center; padding: 0 24px; }
.hsb-num {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hsb-num span { font-size: 1.2rem; }
.hsb-lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hsb-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ---- Slide navigation dots ---- */
.hero-dots {
  position: absolute;
  bottom: 40px;
  right: 50px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hdot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.hdot.active {
  background: var(--gold);
  border-color: rgba(201,162,39,0.5);
  width: 10px; height: 30px;
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(201,162,39,0.6);
}

/* ---- Slide arrows ---- */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}
.hero-arrow svg { width: 22px; height: 22px; }
.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-50%) scale(1.1);
}
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

/* ---- Responsive hero v2 ---- */
@media (max-width: 768px) {
  .hero-inner { padding: 110px 24px 100px; margin: 0; }
  .hero-heading { font-size: 2.2rem; letter-spacing: -0.5px; }
  .hero-subtitle-wrap { font-size: 0.9rem; flex-wrap: wrap; }
  .hero-rotating { min-width: 200px; }
  .hero-ctas { gap: 12px; }
  .hbtn { padding: 12px 24px; font-size: 0.9rem; }
  .hero-stats-bar { padding: 14px 16px; }
  .hsb-item { padding: 0 12px; }
  .hsb-num { font-size: 1.3rem; }
  .hero-dots { right: 16px; bottom: 28px; }
  .hero-arrow { display: none; }
  .hero-accent-bar { display: none; }
}
@media (max-width: 480px) {
  .hero-stats-bar { flex-wrap: wrap; width: auto; gap: 8px; }
  .hsb-divider { display: none; }
  .hero-heading { font-size: 1.9rem; }
}

/* ============================================
   STATS v2 — CARDS WITH RINGS & PROGRESS BARS
   ============================================ */
.stats-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0f1a35 100%);
  overflow: hidden;
}
.stats-bg-mesh {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,162,39,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,162,39,0.04) 0%, transparent 40%);
  pointer-events: none;
}
.stats-bg-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.stats-bg-glow-1 {
  width: 400px; height: 400px;
  background: rgba(201,162,39,0.07);
  top: -100px; left: -100px;
}
.stats-bg-glow-2 {
  width: 300px; height: 300px;
  background: rgba(201,162,39,0.05);
  bottom: -80px; right: 5%;
}
.stats-eyebrow {
  text-align: center; margin-bottom: 40px;
}
.stats-eyebrow span {
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  padding: 6px 20px;
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 50px;
  background: rgba(201,162,39,0.08);
}

/* Grid */
.stats-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Each card */
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 20px 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
}
.stat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,162,39,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 30px rgba(201,162,39,0.08);
}
.stat-card:hover::before { transform: scaleX(1); }

.stat-card-inner {
  display: flex; align-items: center; gap: 16px; margin-bottom: 16px;
}

/* Animated ring */
.stat-ring {
  position: relative; width: 80px; height: 80px; flex-shrink: 0;
}
.ring-svg {
  width: 80px; height: 80px;
  transform: rotate(-90deg);
}
.ring-bg {
  fill: none;
  stroke: rgba(255,255,255,0.07);
  stroke-width: 5;
}
.ring-fill {
  fill: none;
  stroke: var(--gold);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 213;
  stroke-dashoffset: 213;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 4px rgba(201,162,39,0.5));
}
.ring-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.ring-icon svg { width: 24px; height: 24px; }

/* Number + label */
.stat-card-body { flex: 1; }
.stat-card-num {
  font-size: 2.2rem; font-weight: 900; color: #fff;
  line-height: 1; display: flex; align-items: baseline; gap: 2px;
}
.sc-suffix { font-size: 1.4rem; color: var(--gold); }
.stat-card-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 1px; margin: 4px 0 10px;
}

/* Mini progress bar inside card */
.stat-card-bar {
  height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden;
}
.scb-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 2px;
  width: 0;
  transition: width 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(201,162,39,0.5);
}

/* Tag badge */
.stat-card-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  color: var(--gold); background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.25);
  padding: 3px 10px; border-radius: 50px;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .stats-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-grid-v2 { grid-template-columns: 1fr; }
}

/* ============================================
   ABOUT v2 — MOSAIC + SKILLS + PILLS
   ============================================ */
.about-section {
  padding: 110px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about-deco-circle {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.about-deco-1 {
  width: 500px; height: 500px;
  border: 1px solid rgba(201,162,39,0.08);
  top: -200px; right: -200px;
}
.about-deco-2 {
  width: 300px; height: 300px;
  border: 1px solid rgba(26,39,68,0.06);
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(201,162,39,0.03), transparent);
}

/* Eyebrow */
.about-eyebrow {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 52px;
  color: var(--gold); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
}
.ae-line {
  flex: 1; max-width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ae-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* Grid */
.about-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ---- Left: Mosaic ---- */
.about-mosaic { position: relative; }

.mosaic-main {
  position: relative; border-radius: 16px; overflow: hidden;
  height: 360px; box-shadow: var(--shadow-lg);
  cursor: pointer;
}
.mosaic-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.mosaic-main:hover img { transform: scale(1.04); }
.mosaic-main-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,39,68,0.7) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 20px;
}
.mosaic-main-overlay span {
  color: #fff; font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.5px;
}

/* Thumbnails strip */
.mosaic-thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; margin-top: 10px;
}
.mosaic-thumb {
  border-radius: 8px; overflow: hidden; cursor: pointer;
  height: 70px; border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.mosaic-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mosaic-thumb:hover { transform: scale(1.05); }
.mosaic-thumb.active { border-color: var(--gold); }

/* Floating badge */
.mosaic-badge {
  position: absolute; top: 20px; left: -20px;
  background: var(--navy); border: 2px solid var(--gold);
  border-radius: 12px; padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}
.mb-icon { color: var(--gold); width: 28px; height: 28px; }
.mb-icon svg { width: 100%; height: 100%; }
.mb-num { font-size: 1.1rem; font-weight: 900; color: var(--gold); line-height: 1; }
.mb-sub { font-size: 0.65rem; color: rgba(255,255,255,0.7); letter-spacing: 0.5px; }

/* Ribbon */
.mosaic-ribbon {
  position: absolute; bottom: 100px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy); border-radius: 12px;
  padding: 14px 18px; text-align: center;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out 2s infinite;
}
.mr-num { font-size: 1.5rem; font-weight: 900; line-height: 1; }
.mr-text { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.3; }

/* ---- Right: Content ---- */
.about-content-v2 {}

.about-heading {
  font-size: 2rem; font-weight: 900; color: var(--navy);
  line-height: 1.2; margin-bottom: 18px; letter-spacing: -0.5px;
}
.ah-gold {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-lead {
  font-size: 1rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 22px;
}

/* Quote box */
.about-quote-box {
  display: flex; gap: 14px; align-items: flex-start;
  background: linear-gradient(135deg, #FFFBEE, #FFF8DC);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px; margin-bottom: 28px;
}
.aqb-icon { color: var(--gold); flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; }
.aqb-icon svg { width: 100%; height: 100%; }
.about-quote-box p {
  font-style: italic; color: var(--navy);
  font-weight: 600; font-size: 0.95rem; line-height: 1.6; margin: 0;
}

/* Skill rows */
.about-skills { margin-bottom: 28px; }
.skill-row { margin-bottom: 16px; }
.skill-top {
  display: flex; justify-content: space-between;
  margin-bottom: 6px;
}
.skill-name { font-size: 0.85rem; font-weight: 700; color: var(--navy); }
.skill-pct { font-size: 0.85rem; font-weight: 700; color: var(--gold); }
.skill-bar {
  height: 6px; background: var(--bg-gray);
  border-radius: 3px; overflow: hidden;
}
.skill-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  border-radius: 3px;
  transition: width 1.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.skill-fill::after {
  content: '';
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 12px;
  background: var(--gold); border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 6px rgba(201,162,39,0.6);
}

/* Feature pills */
.about-pills {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px;
}
.about-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--bg-blue);
  border: 1px solid rgba(26,39,68,0.1);
  color: var(--navy); font-size: 0.82rem; font-weight: 600;
  padding: 7px 14px; border-radius: 50px;
  transition: all 0.3s ease;
}
.about-pill svg { width: 14px; height: 14px; color: var(--gold); }
.about-pill:hover {
  background: var(--navy); color: #fff;
  border-color: var(--navy);
}
.about-pill:hover svg { color: var(--gold-light); }

/* Responsive about v2 */
@media (max-width: 992px) {
  .about-grid-v2 { grid-template-columns: 1fr; gap: 48px; }
  .mosaic-badge { left: 10px; top: 10px; }
  .mosaic-ribbon { right: 10px; }
}
@media (max-width: 576px) {
  .about-heading { font-size: 1.6rem; }
  .mosaic-thumbs { grid-template-columns: repeat(4, 1fr); }
  .mosaic-badge, .mosaic-ribbon { display: none; }
}

/* ============================================
   INDUSTRIES v2 — HOVER IMAGE CARDS
   ============================================ */
.industries-section {
  padding: 100px 0;
  background: var(--bg-gray);
  position: relative;
  overflow: hidden;
}
.ind-bg-anim {
  position: absolute; inset: 0;
  pointer-events: none;
}
.ind-orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px);
}
.ind-orb-1 {
  width: 400px; height: 400px;
  background: rgba(201,162,39,0.04);
  top: -150px; left: 10%;
}
.ind-orb-2 {
  width: 300px; height: 300px;
  background: rgba(26,39,68,0.04);
  bottom: -100px; right: 15%;
}
.ind-grid-lines {
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(to right, rgba(26,39,68,0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(26,39,68,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Header */
.ind-header { text-align: center; margin-bottom: 52px; }
.ind-eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  padding: 6px 18px; border: 1px solid rgba(201,162,39,0.3);
  border-radius: 50px; background: rgba(201,162,39,0.06);
  margin-bottom: 16px;
}
.ind-title {
  font-size: 2.4rem; font-weight: 900; color: var(--navy);
  line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.5px;
}
.ind-title-gold {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ind-subtitle {
  font-size: 1rem; color: var(--text-light);
  max-width: 500px; margin: 0 auto;
}

/* Cards grid */
.ind-cards-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Each card */
.ind-card {
  position: relative;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ind-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* BG image */
.ind-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
  filter: grayscale(0.3);
}
.ind-card:hover .ind-card-bg {
  transform: scale(1.08);
  filter: grayscale(0);
}

/* Overlay gradient */
.ind-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,39,68,0.90) 0%, rgba(26,39,68,0.4) 60%, transparent 100%);
}

/* Content */
.ind-card-content {
  position: relative; z-index: 2;
  height: 100%; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 26px 22px;
}
.ind-card-icon {
  display: none;
}
.ind-card h3 {
  font-size: 1.15rem; font-weight: 800; color: #fff;
  margin-bottom: 8px; letter-spacing: -0.3px;
}
.ind-card p {
  font-size: 0.82rem; color: rgba(255,255,255,0.7);
  line-height: 1.5; margin-bottom: 14px;
}

/* Arrow icon */
.ind-card-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff; transition: all 0.3s ease;
}
.ind-card-arrow svg { width: 16px; height: 16px; }
.ind-card:hover .ind-card-arrow {
  background: var(--gold);
  color: var(--navy);
  transform: translateX(4px);
}

/* Big number watermark */
.ind-card-num {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-size: 3rem; font-weight: 900;
  color: rgba(255,255,255,0.08);
  font-family: 'Arial Black', sans-serif;
  line-height: 1;
}

@media (max-width: 992px) {
  .ind-cards-wrap { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .ind-cards-wrap { grid-template-columns: 1fr; }
  .ind-card { height: 260px; }
}

/* ============================================
   SERVICES v2 — FILTERABLE CARDS WITH GLOW
   ============================================ */
.services-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.svc-bg-strip {
  position: absolute;
  top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}

/* Header */
.svc-header { text-align: center; margin-bottom: 40px; }
.svc-eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  padding: 6px 18px; border: 1px solid rgba(201,162,39,0.3);
  border-radius: 50px; background: rgba(201,162,39,0.06);
  margin-bottom: 14px;
}
.svc-title {
  font-size: 2.4rem; font-weight: 900; color: var(--navy);
  line-height: 1.2; margin-bottom: 12px; letter-spacing: -0.5px;
}
.svc-title-gold {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.svc-subtitle { font-size: 1rem; color: var(--text-light); max-width: 540px; margin: 0 auto; }

/* Filter tabs */
.svc-tabs {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 44px; flex-wrap: wrap;
}
.svc-tab {
  padding: 9px 22px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 700; cursor: pointer;
  border: 2px solid var(--border);
  background: transparent; color: var(--text-mid);
  transition: all 0.3s ease;
}
.svc-tab:hover { border-color: var(--gold); color: var(--gold); }
.svc-tab.active {
  background: var(--navy); color: #fff;
  border-color: var(--navy);
  box-shadow: 0 4px 16px rgba(26,39,68,0.25);
}

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

/* Card */
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px 22px;
  position: relative; overflow: hidden;
  transition: all 0.3s ease;
  display: flex; flex-direction: column;
}
.svc-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.4s ease;
}
.svc-card:hover {
  border-color: rgba(201,162,39,0.25);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26,39,68,0.12), 0 0 0 1px rgba(201,162,39,0.1);
}
.svc-card:hover::before { transform: scaleY(1); }

/* Card top row */
.svc-card-top {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 20px;
}
.svc-icon-wrap {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, #FFF8E7, #FFF3CC);
  border-radius: 12px; display: flex;
  align-items: center; justify-content: center;
  color: var(--gold);
  transition: transform 0.3s ease, background 0.3s ease;
}
.svc-icon-wrap svg { width: 24px; height: 24px; }
.svc-card:hover .svc-icon-wrap {
  background: var(--navy);
  color: var(--gold);
  transform: rotate(-8deg) scale(1.1);
}

/* Category tag */
.svc-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; padding: 3px 10px;
  border-radius: 50px; background: var(--bg-blue);
  color: var(--navy); border: 1px solid rgba(26,39,68,0.1);
  transition: background 0.3s ease;
}
.svc-card:hover .svc-tag {
  background: rgba(201,162,39,0.1);
  color: var(--gold);
  border-color: rgba(201,162,39,0.3);
}

/* Large number */
.svc-num {
  font-size: 2.8rem; font-weight: 900;
  color: rgba(26,39,68,0.05);
  font-family: 'Arial Black', sans-serif;
  line-height: 1; margin-bottom: 8px;
  transition: color 0.3s ease;
}
.svc-card:hover .svc-num { color: rgba(201,162,39,0.1); }

.svc-card h3 {
  font-size: 0.97rem; font-weight: 800; color: var(--navy);
  margin-bottom: 10px; line-height: 1.3;
}
.svc-card p {
  font-size: 0.84rem; color: var(--text-light);
  line-height: 1.7; flex: 1;
}

/* Footer with link */
.svc-card-footer { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--border); }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 700; color: var(--text-light);
  transition: color 0.3s ease, gap 0.3s ease;
}
.svc-link svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.svc-card:hover .svc-link { color: var(--gold); }
.svc-card:hover .svc-link svg { transform: translateX(4px); }

/* Glow effect */
.svc-card-glow {
  position: absolute; inset: 0; border-radius: 16px;
  background: radial-gradient(circle at 50% 0%, rgba(201,162,39,0.05), transparent 70%);
  opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
}
.svc-card:hover .svc-card-glow { opacity: 1; }

/* Hidden state for filter */
.svc-card.hidden {
  opacity: 0; transform: scale(0.95);
  pointer-events: none; position: absolute;
  visibility: hidden;
}

@media (max-width: 1200px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-title { font-size: 1.8rem; }
}


/* ============================================
   WHY CHOOSE v2 — DYNAMIC SECTION
   ============================================ */

/* ---- Section wrapper ---- */
.why-v2-section {
  position: relative;
  padding: 110px 0 80px;
  background: linear-gradient(150deg, #0d1826 0%, #1a2744 50%, #0d1826 100%);
  overflow: hidden;
}

/* ---- Animated background grid ---- */
.wv2-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: wv2GridMove 20s linear infinite;
  z-index: 0;
}
@keyframes wv2GridMove {
  0%   { transform: translateY(0); }
  100% { transform: translateY(60px); }
}

/* ---- Floating orbs ---- */
.wv2-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: wv2OrbFloat 10s ease-in-out infinite;
}
.wv2-orb-1 {
  width: 500px; height: 500px;
  top: -150px; left: -100px;
  background: radial-gradient(circle, rgba(201,162,39,0.12) 0%, transparent 70%);
  animation-duration: 12s;
}
.wv2-orb-2 {
  width: 400px; height: 400px;
  bottom: -100px; right: -80px;
  background: radial-gradient(circle, rgba(201,162,39,0.10) 0%, transparent 70%);
  animation-duration: 15s;
  animation-delay: -5s;
}
.wv2-orb-3 {
  width: 300px; height: 300px;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(26,39,68,0.6) 0%, transparent 70%);
  animation-duration: 18s;
  animation-delay: -8s;
}
@keyframes wv2OrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 15px) scale(0.97); }
}

/* ---- Particle canvas ---- */
.wv2-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

/* ---- Section header ---- */
.wv2-header {
  text-align: center;
  margin-bottom: 48px;
}
.wv2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.wv2-eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
  border-radius: 2px;
}
.wv2-eyebrow-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.wv2-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.wv2-title-gold {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: wv2Shimmer 3s linear infinite;
}
@keyframes wv2Shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.wv2-subtitle {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---- Counter bar ---- */
.wv2-counter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.18);
  border-radius: 16px;
  padding: 24px 40px;
  margin: 0 auto 64px;
  max-width: 700px;
  backdrop-filter: blur(8px);
}
.wv2-counter-item {
  text-align: center;
  flex: 1;
}
.wv2-counter-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -1px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.wv2-counter-num span:last-child {
  font-size: 1.3rem;
  color: var(--gold-light);
}
.wv2-counter-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
}
.wv2-counter-sep {
  width: 1px;
  height: 48px;
  background: rgba(201,162,39,0.25);
  margin: 0 8px;
}

/* ---- Cards grid ---- */
.wv2-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* ---- Individual card ---- */
.wv2-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.14);
  border-radius: 18px;
  padding: 36px 28px 28px;
  overflow: hidden;
  cursor: default;
  transition: transform 0.4s cubic-bezier(.22,.68,0,1.2),
              border-color 0.35s ease,
              box-shadow 0.35s ease,
              background 0.35s ease;
  /* Stagger the reveal animation */
  transition-delay: var(--delay, 0s);
  backdrop-filter: blur(6px);
}
.wv2-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(201,162,39,0.5);
  background: rgba(201,162,39,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4),
              0 0 40px rgba(201,162,39,0.08);
}

/* Top accent bar */
.wv2-card-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  border-radius: 18px 18px 0 0;
}
.wv2-card:hover .wv2-card-top-bar {
  transform: scaleX(1);
}

/* Icon wrapper */
.wv2-card-icon-wrap {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 22px;
}
.wv2-card-icon-ring {
  position: absolute;
  inset: -6px;
  border: 1.5px solid rgba(201,162,39,0.2);
  border-radius: 50%;
  animation: wv2RingPulse 3s ease-in-out infinite;
}
@keyframes wv2RingPulse {
  0%, 100% { transform: scale(1);   opacity: 0.3; }
  50%       { transform: scale(1.15); opacity: 0.7; }
}
.wv2-card:hover .wv2-card-icon-ring {
  animation: none;
  transform: scale(1.15);
  opacity: 0.9;
  border-color: var(--gold);
}
.wv2-card-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(201,162,39,0.18), rgba(201,162,39,0.06));
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.35s ease;
}
.wv2-card-icon svg {
  width: 26px; height: 26px;
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.4);
}
.wv2-card:hover .wv2-card-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(201,162,39,0.4);
}
.wv2-card:hover .wv2-card-icon svg {
  transform: rotate(-10deg) scale(1.15);
}

/* Card number */
.wv2-card-num {
  position: absolute;
  top: 20px; right: 22px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(201,162,39,0.06);
  line-height: 1;
  font-family: 'Arial Black', sans-serif;
  transition: color 0.35s ease, transform 0.35s ease;
  user-select: none;
}
.wv2-card:hover .wv2-card-num {
  color: rgba(201,162,39,0.12);
  transform: scale(1.1);
}

/* Card text */
.wv2-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.wv2-card:hover .wv2-card-title {
  color: var(--gold-light);
}
.wv2-card-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.75;
  margin-bottom: 22px;
  transition: color 0.3s ease;
}
.wv2-card:hover .wv2-card-desc {
  color: rgba(255,255,255,0.72);
}

/* Progress bar */
.wv2-card-progress {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wv2-progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.wv2-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 4px;
  width: 0%;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.wv2-progress-fill::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 20px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5));
  border-radius: 4px;
  animation: wv2ProgressShine 1.8s ease-in-out infinite;
}
@keyframes wv2ProgressShine {
  0%   { opacity: 0; }
  50%  { opacity: 1; }
  100% { opacity: 0; }
}
.wv2-progress-label {
  font-size: 0.72rem;
  color: rgba(201,162,39,0.7);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Card hover shine sweep */
.wv2-card-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,0.04) 50%,
    transparent 80%
  );
  pointer-events: none;
  transition: left 0.6s ease;
}
.wv2-card:hover .wv2-card-shine {
  left: 150%;
}

/* Card glow background */
.wv2-card-glow {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,162,39,0.07) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.wv2-card:hover .wv2-card-glow {
  opacity: 1;
}

/* ---- Bottom CTA strip ---- */
.wv2-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 14px;
  padding: 22px 32px;
  gap: 20px;
  flex-wrap: wrap;
}
.wv2-cta-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}
.wv2-cta-text svg {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}
.wv2-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 10px;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(201,162,39,0.3);
  white-space: nowrap;
}
.wv2-cta-btn svg {
  width: 18px; height: 18px;
  transition: transform 0.3s ease;
}
.wv2-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,162,39,0.5);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}
.wv2-cta-btn:hover svg {
  transform: translateX(4px);
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .wv2-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .wv2-counter-bar { padding: 20px 20px; flex-wrap: wrap; gap: 16px; }
  .wv2-counter-sep { display: none; }
  .wv2-counter-item { min-width: 40%; }
  .wv2-cta-strip { flex-direction: column; text-align: center; }
  .wv2-cta-text { justify-content: center; }
}
@media (max-width: 576px) {
  .wv2-cards-grid { grid-template-columns: 1fr; }
  .why-v2-section { padding: 80px 0 60px; }
}

/* =============================================
   UNIFIED FOOTER STYLES (Exact Match to Design)
   ============================================= */
.footer {
  background: #0a1628 !important;
  color: #ffffff !important;
  padding: 60px 0 25px !important;
  position: relative !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  font-family: 'Segoe UI', Arial, sans-serif !important;
}

.footer-grid {
  display: grid !important;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr !important;
  gap: 40px !important;
  margin-bottom: 40px !important;
  align-items: start !important;
}

.footer-logo {
  display: inline-block !important;
  margin-bottom: 18px !important;
  text-decoration: none !important;
  overflow: visible !important;
}

.footer-logo img {
  height: 95px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.35s ease !important;
  transform-origin: left center !important;
}

.footer-logo:hover img {
  transform: scale(1.18) !important;
  filter: drop-shadow(0 8px 24px rgba(201, 162, 39, 0.45)) !important;
}

.footer-brand p {
  font-size: 0.88rem !important;
  color: #94a3b8 !important;
  line-height: 1.65 !important;
  margin-bottom: 22px !important;
  font-weight: 400 !important;
  max-width: 320px !important;
}

.social-links {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.social-links a {
  width: 38px !important;
  height: 38px !important;
  border-radius: 6px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #e2e8f0 !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.social-links a:hover {
  background: #c9a227 !important;
  color: #0a1628 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3) !important;
}

.social-links a svg {
  width: 18px !important;
  height: 18px !important;
}

.footer-col h4 {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 22px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.footer-col ul {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-col ul li {
  margin: 0 !important;
  padding: 0 !important;
}

.footer-col ul li a {
  font-size: 0.88rem !important;
  color: #cbd5e1 !important;
  font-weight: 400 !important;
  transition: all 0.25s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
}

.footer-col ul li a .chevron {
  color: #c9a227 !important;
  font-weight: 700 !important;
  margin-right: 10px !important;
  font-size: 0.82rem !important;
  transition: transform 0.25s ease !important;
}

.footer-col ul li a:hover {
  color: #ffffff !important;
  transform: translateX(4px) !important;
}

.footer-col ul li a:hover .chevron {
  color: #f0c040 !important;
}

.footer-contact {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.footer-contact li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
  font-size: 0.88rem !important;
  color: #cbd5e1 !important;
  line-height: 1.5 !important;
}

.footer-contact li a {
  color: #cbd5e1 !important;
  transition: color 0.25s ease !important;
  text-decoration: none !important;
}

.footer-contact li a:hover {
  color: #c9a227 !important;
}

.footer-contact li svg {
  width: 18px !important;
  height: 18px !important;
  color: #c9a227 !important;
  flex-shrink: 0 !important;
  margin-top: 3px !important;
}

.footer-contact li svg.contact-pin-icon {
  margin-top: 4px !important;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  padding-top: 22px !important;
  margin-top: 10px !important;
  text-align: center !important;
  font-size: 0.85rem !important;
  color: #94a3b8 !important;
}

.copyright p {
  margin: 0 !important;
  font-size: 0.85rem !important;
  color: #94a3b8 !important;
}

.footer-gold-brand {
  color: #c9a227 !important;
  font-weight: 700 !important;
}

.foot-sep {
  color: rgba(255, 255, 255, 0.25) !important;
  margin: 0 10px !important;
}

.copyright a {
  color: #94a3b8 !important;
  transition: color 0.25s ease !important;
  text-decoration: none !important;
}

.copyright a:hover {
  color: #ffffff !important;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 36px !important;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .copyright {
    text-align: center !important;
  }
  .foot-sep {
    display: inline-block !important;
    margin: 0 5px !important;
  }
}

/* ============================================================
   GET A FREE QUOTE — POPUP MODAL
   ============================================================ */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s ease, visibility .3s ease;
}
.quote-modal.open {
  visibility: visible;
  opacity: 1;
}
.quote-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 15, 50, .72);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.quote-modal-dialog {
  position: relative;
  width: min(580px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(3, 0, 28, .45);
  transform: translateY(36px) scale(.96);
  opacity: 0;
  transition: transform .38s cubic-bezier(.22, .68, .36, 1.25), opacity .3s ease;
}
.quote-modal.open .quote-modal-dialog {
  transform: none;
  opacity: 1;
}
.quote-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.quote-modal-close:hover {
  background: #c9a227;
  color: #071832;
  transform: rotate(90deg);
}
.quote-modal-close svg {
  width: 18px;
  height: 18px;
}

.quote-modal-body {
  padding: 40px 38px 32px;
}

/* Header */
.quote-modal-header {
  text-align: center;
  margin-bottom: 28px;
}
.quote-modal-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #c9a227, #ffd970);
  color: #071832;
  box-shadow: 0 12px 26px rgba(201, 162, 39, .4);
}
.quote-modal-icon svg {
  width: 28px;
  height: 28px;
}
.quote-modal-header h3 {
  font-size: 26px;
  font-weight: 800;
  color: #071832;
  margin-bottom: 6px;
  letter-spacing: -.3px;
}
.quote-modal-header p {
  font-size: 14px;
  color: #66738a;
  line-height: 1.6;
  margin: 0;
}

/* Form */
.quote-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.quote-form-group {
  margin-bottom: 16px;
}
.quote-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #17243d;
  margin-bottom: 7px;
}
.quote-req { color: #c9a227; }
.quote-form-group input,
.quote-form-group select,
.quote-form-group textarea {
  width: 100%;
  border: 1.5px solid #e3e8f0;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: #17243d;
  background: #f8fafd;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.quote-form-group textarea {
  resize: vertical;
  min-height: 78px;
}
.quote-form-group input:focus,
.quote-form-group select:focus,
.quote-form-group textarea:focus {
  border-color: #c9a227;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(201, 162, 39, .15);
}
.quote-form-group input.error-field,
.quote-form-group textarea.error-field {
  border-color: #e23c3c;
  box-shadow: 0 0 0 4px rgba(226, 60, 60, .12);
}

.quote-submit-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  padding: 14px 24px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #c9a227, #efc64d);
  color: #071832;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .3px;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(201, 162, 39, .38);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.quote-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(201, 162, 39, .45);
  filter: brightness(1.03);
}
.quote-submit-btn svg {
  width: 17px;
  height: 17px;
}

/* Footer links */
.quote-modal-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #f0f3f8;
  font-size: 13px;
  color: #66738a;
}
.quote-foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.quote-foot-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #071832;
  font-weight: 700;
  transition: color .2s ease;
}
.quote-foot-links a:hover { color: #c9a227; }
.quote-foot-links svg {
  width: 16px;
  height: 16px;
  color: #c9a227;
}

/* Success state */
.quote-success {
  text-align: center;
  padding: 28px 8px 12px;
}
.quote-success-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef9f0;
  color: #1c9c4b;
  animation: quoteSuccessPop .5s cubic-bezier(.22, 1.4, .36, 1) both;
}
.quote-success-icon svg {
  width: 38px;
  height: 38px;
}
.quote-success h3 {
  font-size: 24px;
  font-weight: 800;
  color: #071832;
  margin-bottom: 8px;
}
.quote-success p {
  font-size: 14.5px;
  color: #66738a;
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto 22px;
}
.quote-success .quote-submit-btn {
  max-width: 180px;
  margin: 0 auto;
}

@keyframes quoteSuccessPop {
  from { transform: scale(.6); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

@media (max-width: 720px) {
  .quote-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .quote-modal-body {
    padding: 34px 22px 24px;
  }
  .quote-modal-dialog {
    border-radius: 12px;
  }
}
