/* =========================================================
   ILTS — Inspire Luxury Technical Services
   Main Stylesheet
   Colors:
     --navy:    #152033  (primary dark from logo)
     --navy-mid:#1e3a5f
     --navy-lt: #2b4f82
     --white:   #ffffff
     --off-white:#f7f8fa
     --gray:    #e8eaed
     --text:    #1a1d23
     --text-lt: #5a6375
     --gold:    #c49a3c  (luxury accent)
   ========================================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: #ffffff;
  color: #1a1d23;
  overflow-x: hidden;
  line-height: 1.6;
}

:root {
  --navy:      #0a4a82;
  --navy-mid:  #1e3a5f;
  --navy-lt:   #2b4f82;
  --white:     #ffffff;
  --off-white: #f7f8fa;
  --gray:      #e8eaed;
  --text:      #1a1d23;
  --text-lt:   #5a6375;
  --gold:      #c49a3c;
  --gold-lt:   #ddb96e;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow-sm: 0 2px 12px rgba(21,32,51,0.08);
  --shadow-md: 0 8px 30px rgba(21,32,51,0.12);
  --shadow-lg: 0 20px 60px rgba(21,32,51,0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 100px 0; }

/* ---- TYPOGRAPHY HELPERS ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px; height: 2px;
  background: var(--gold);
}
.section-label.light { color: var(--gold-lt); }
.section-label.light::before { background: var(--gold-lt); }

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.accent-text { color: var(--navy-mid); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-sub {
  color: var(--text-lt);
  font-size: 17px;
  line-height: 1.7;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  border: 2px solid var(--navy);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000000;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--navy);
  transition: var(--transition);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 36px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--navy);
  transition: var(--transition);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--white);
  transition: var(--transition);
}
.btn-white:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  padding: 8px 0;
  position: relative;
  z-index: 200;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.top-bar span, .top-bar a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.top-bar a:hover { color: var(--gold); }
.top-bar i { font-size: 12px; color: var(--gold); }

/* ---- DESKTOP NAVBAR ---- */
.desktop-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray);
  transition: box-shadow 0.3s;
}
.desktop-nav.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
  height: 76px;
}

.nav-logo .logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--navy-mid); }

.nav-link i { font-size: 11px; transition: transform 0.2s; }
.has-dropdown:hover .nav-link i { transform: rotate(180deg); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  border: 1px solid var(--gray);
  overflow: hidden;
  z-index: 50;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}
.dropdown li a i {
  width: 16px;
  color: var(--gold);
  font-size: 13px;
}
.dropdown li a:hover { background: var(--off-white); color: var(--navy); }

.btn-nav {
  background: var(--navy);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--navy);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-nav:hover { background: var(--gold); border-color: var(--gold); }

/* ---- MOBILE NAVBAR ---- */
.mobile-nav {
  display: none;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray);
  box-shadow: var(--shadow-sm);
}
.mobile-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
.mobile-nav .logo-img { height: 44px; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  width: 38px;
}
.hamburger span {
  display: block;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
  background: var(--white);
}
.mobile-menu.open { max-height: 600px; }

.mobile-links {
  padding: 12px 0 20px;
  border-top: 1px solid var(--gray);
}
.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  border-bottom: 1px solid var(--gray);
  transition: color 0.2s, background 0.2s;
}
.mobile-link:hover { background: var(--off-white); color: var(--navy-mid); }

.mobile-dropdown {
  background: var(--off-white);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}
.mobile-dropdown.open { max-height: 400px; }
.mobile-dropdown li a {
  display: block;
  padding: 10px 32px;
  font-size: 14px;
  color: var(--text-lt);
  border-bottom: 1px solid var(--gray);
  transition: color 0.2s;
}
.mobile-dropdown li a:hover { color: var(--navy); }

.mobile-quote-btn {
  display: block;
  margin: 16px 20px 0;
  background: var(--navy);
  color: var(--white) !important;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}
.mobile-quote-btn:hover { background: var(--gold); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: calc(100vh - 114px);
  display: flex;
  align-items: center;
  background: #ffffff;
  overflow: hidden;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.06;
  background: var(--navy);
}
.hero-shape-1 { width: 700px; height: 700px; right: -150px; top: -150px; opacity: 0.08; }
.hero-shape-2 { width: 400px; height: 400px; left: -100px; bottom: -100px; }
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21,32,51,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,32,51,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}

.hero-content { max-width: 580px; }

.hero-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.tag-line { display: block; width: 28px; height: 1.5px; background: var(--gold); }

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--navy-mid);
}

.hero-desc {
  color: var(--text-lt);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid var(--gray);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 28px;
}
.stat-item:first-child { padding-left: 0; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.stat-plus {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--text-lt);
  margin-top: 4px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--gray);
  flex-shrink: 0;
}

/* Hero Visual */
.hero-visual { display: flex; align-items: center; justify-content: flex-end; }
.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-img-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}
.hero-img-inner:hover .hero-img { transform: scale(1.03); }
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(21,32,51,0.4) 100%);
}

.hero-badge {
  position: absolute;
  left: -30px;
  top: 50px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 3px solid var(--gold);
  animation: floatY 4s ease-in-out infinite;
}
.badge-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}
.badge-text strong { display: block; font-size: 14px; color: var(--navy); font-weight: 700; }
.badge-text span { font-size: 12px; color: var(--text-lt); }

.hero-card-float {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  animation: floatY 4s ease-in-out infinite 2s;
}
.hero-card-float i { color: var(--gold); font-size: 16px; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-lt);
  font-weight: 600;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--navy), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- MARQUEE ---- */
.marquee-strip {
  background: var(--navy);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}
.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
}
.marquee-strip::before { left: 0; background: linear-gradient(to right, var(--navy), transparent); }
.marquee-strip::after  { right: 0; background: linear-gradient(to left, var(--navy), transparent); }

.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.marquee-track .sep { color: var(--gold); font-size: 12px; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- ABOUT SECTION ---- */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
}
.about-main-img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.exp-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.exp-text {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  line-height: 1.4;
  margin-top: 4px;
}
.about-img-accent {
  position: absolute;
  top: -16px; left: -16px;
  width: 120px; height: 120px;
  border: 3px solid var(--gold);
  border-radius: var(--radius-md);
  opacity: 0.3;
  z-index: -1;
}

.about-content-col .section-title { margin-bottom: 20px; }
.about-lead {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.6;
}
.about-body {
  color: var(--text-lt);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(21,32,51,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 16px;
  flex-shrink: 0;
  transition: var(--transition);
}
.feature-item:hover .feature-icon {
  background: var(--navy);
  color: var(--gold);
}
.feature-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.feature-text span { font-size: 14px; color: var(--text-lt); }

/* ---- SERVICES SECTION ---- */
.services-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.services-bg-accent {
  position: absolute;
  top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(21,32,51,0.03), transparent 70%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

/* ---- CARD ---- */
.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8eaed;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(21,32,51,0.13);
  border-color: transparent;
}

/* ---- IMAGE ---- */
.service-card-img-wrap {
  width: 100%;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  background: #e8eaed;
}
.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img {
  transform: scale(1.07);
}

/* dark overlay on image */
.service-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(21,32,51,0.55) 100%);
  transition: opacity 0.35s;
  opacity: 0;
}
.service-card:hover .service-card-img-wrap::after {
  opacity: 1;
}

/* ---- BODY ---- */
.service-card-body {
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--white);
}

/* ---- ICON ---- */
.service-icon-wrap {
  width: 50px;
  height: 50px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 19px;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
}
.service-card:hover .service-icon-wrap {
  background: var(--gold);
  color: #ffffff;
  transform: rotate(-6deg) scale(1.05);
}

/* ---- TITLE ---- */
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  line-height: 1.2;
}

/* ---- TEXT ---- */
.service-card p {
  font-size: 14px;
  color: var(--text-lt);
  line-height: 1.75;
  margin-bottom: 22px;
  flex: 1;
}

/* ---- DIVIDER ---- */
.service-card-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 18px;
  border-radius: 2px;
  transition: width 0.35s ease;
}
.service-card:hover .service-card-divider {
  width: 70px;
}

/* ---- LINK ---- */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.25s, gap 0.25s;
  margin-top: auto;
}
.service-link i {
  font-size: 11px;
  transition: transform 0.25s;
}
.service-link:hover {
  color: var(--gold);
  gap: 12px;
}
.service-link:hover i {
  transform: translateX(3px);
}

.services-cta {
  text-align: center;
  margin-top: 10px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card-img-wrap {
    height: 200px;
  }
}
/* ---- WHY SECTION ---- */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-list { margin-bottom: 36px; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray);
}
.why-item:first-child { padding-top: 0; }
.why-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--gray);
  line-height: 1;
  flex-shrink: 0;
  width: 46px;
  transition: color 0.3s;
}
.why-item:hover .why-num { color: var(--gold); }
.why-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-text span { font-size: 14px; color: var(--text-lt); line-height: 1.6; }

.why-img-stack {
  position: relative;
  height: 500px;
}
.why-img-top {
  width: 65%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: absolute;
  top: 0; right: 0;
}
.why-img-bottom {
  width: 65%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: absolute;
  bottom: 0; left: 0;
}
.why-overlap-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  min-width: 130px;
}
.why-overlap-card i {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 8px;
  display: block;
}
.why-overlap-card strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.why-overlap-card span { font-size: 12px; color: rgba(255,255,255,0.7); }

/* ---- PROCESS SECTION ---- */
.process-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.process-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21,32,51,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,32,51,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 2;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.process-step:not(:last-child) .step-connector {
  position: absolute;
  top: 40px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--navy), rgba(21,32,51,0.1));
  z-index: 0;
}

.step-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(21,32,51,0.2);
}
.process-step:hover .step-circle { background: var(--gold); transform: scale(1.1); }
.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: rgba(255,255,255,0.2);
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}
.step-icon {
  font-size: 26px;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.process-step:hover .step-icon { color: var(--white); }

.process-step h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px;
  color: var(--text-lt);
  line-height: 1.7;
}

/* ---- COUNTER SECTION ---- */
.counter-section {
  background: var(--navy);
  padding: 70px 0;
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.counter-item {
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.counter-item:last-child { border-right: none; }
.counter-icon {
  width: 54px; height: 54px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  margin: 0 auto 16px;
}
.counter-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.counter-plus {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
}
.counter-label {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.cta-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-content .section-title { color: var(--white); margin-bottom: 18px; }
.cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.cta-content p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.cta-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255,255,255,0.1);
}
.cta-img-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* ---- FOOTER ---- */
.footer { background: #0d1622; color: rgba(255,255,255,0.7); }

.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 50px;
}

.footer-logo {
  height: 75px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 22px;
  max-width: 280px;
}

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--white); }

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 6px; }

.footer-contact-list { gap: 14px !important; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer-contact-list li i {
  color: var(--gold);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-list li span,
.footer-contact-list li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.footer-contact-list li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom i { color: var(--gold); }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 54px; height: 54px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px; height: 46px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--gold); }

/* ---- AOS ANIMATION BASE ---- */
[data-aos] { opacity: 0; transition-property: opacity, transform !important; }
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="zoom-in"] { transform: scale(0.95); }
[data-aos].aos-animate { opacity: 1; transform: none; }
[data-aos] { transition-duration: 0.7s; transition-timing-function: cubic-bezier(0.4,0,0.2,1); }
[data-aos-delay="60"].aos-animate  { transition-delay: 0.06s; }
[data-aos-delay="100"].aos-animate { transition-delay: 0.1s; }
[data-aos-delay="120"].aos-animate { transition-delay: 0.12s; }
[data-aos-delay="180"].aos-animate { transition-delay: 0.18s; }
[data-aos-delay="200"].aos-animate { transition-delay: 0.2s; }
[data-aos-delay="240"].aos-animate { transition-delay: 0.24s; }
[data-aos-delay="300"].aos-animate { transition-delay: 0.3s; }
[data-aos-delay="360"].aos-animate { transition-delay: 0.36s; }
[data-aos-delay="400"].aos-animate { transition-delay: 0.4s; }
[data-aos-delay="420"].aos-animate { transition-delay: 0.42s; }
[data-aos-delay="480"].aos-animate { transition-delay: 0.48s; }

/* ========================================================
   RESPONSIVE — TABLET (max 1024px)
   ======================================================== */
@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .mobile-nav  { display: block; }
  .top-bar { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  .hero-content { max-width: 100%; }
  .hero-title { font-size: clamp(42px, 7vw, 70px); }
  .hero-tag { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { justify-content: center; }
  .hero-img { height: 380px; }
  .hero-badge { left: 0; }
  .hero-card-float { right: 0; }
  .hero-scroll-indicator { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-img-col { order: 2; }
  .about-content-col { order: 1; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .why-grid { grid-template-columns: 1fr; gap: 50px; }
  .why-visual { order: -1; }
  .why-img-stack { height: 360px; }

  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .step-connector { display: none; }

  .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .counter-item:nth-child(2) { border-right: none; }
  .counter-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.1); border-top: 1px solid rgba(255,255,255,0.1); }
  .counter-item:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,0.1); }

  .cta-inner { grid-template-columns: 1fr; }
  .cta-visual { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ========================================================
   RESPONSIVE — MOBILE (max 640px)
   ======================================================== */
@media (max-width: 640px) {
  .section-pad { padding: 70px 0; }

  .hero { min-height: auto; padding: 50px 0; }
  .hero-inner { padding-top: 0; padding-bottom: 0; }
  .hero-title { font-size: 42px; }
  .hero-desc { font-size: 15px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas a { width: 100%; text-align: center; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .stat-item { padding: 0; min-width: 45%; }
  .hero-img { height: 300px; }
  .hero-badge { display: none; }
  .hero-card-float { right: 0; bottom: 20px; }

  .services-grid { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr; }

  .counter-grid { grid-template-columns: 1fr 1fr; }
  .counter-item { border: none !important; border-bottom: 1px solid rgba(255,255,255,0.08) !important; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: 1; }

  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .cta-actions { flex-direction: column; }
  .cta-actions a { text-align: center; justify-content: center; }

  .about-main-img { height: 360px; }
  .about-exp-badge { right: 0; bottom: -10px; }

  .why-img-stack { height: 280px; }
  .why-img-top { width: 60%; height: 200px; }
  .why-img-bottom { width: 60%; height: 175px; }
}