/* ═══════════════════════════════════════════════════════
   SEAMLESS SOLUTIONS — Website Stylesheet
   Matching Coming Soon page design system exactly.
   
   Color Palette:
   Primary Blue:    #1565C0
   Deep Navy:       #0A1628 / #060D18
   Bright Blue:     #1E88E5
   Light Blue:      #42A5F5
   Ice Blue:        #E8F0FE
   White:           #FFFFFF
   
   Fonts:
   Headings:  Playfair Display (serif)
   Body:      Outfit (sans-serif)
═══════════════════════════════════════════════════════ */

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

:root {
  --deep: #040d1a;
  --dark: #0A1628;
  --dark-deep: #060D18;
  --blue-dark: #0a2e5c;
  --primary: #1565C0;
  --accent: #1E88E5;
  --blue-light: #42A5F5;
  --blue-bright: #64B5F6;
  --ice: #E8F0FE;
  --white: #FFFFFF;
  --neon-glow: rgba(30, 136, 229, 0.6);
  --text-primary: rgba(255,255,255,0.94);
  --text-secondary: rgba(255,255,255,0.55);
  --text-muted: rgba(255,255,255,0.30);
  --text-dim: rgba(255,255,255,0.18);
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(30,136,229,0.25);
  --glass: rgba(255,255,255,0.03);
  --glass-border: rgba(255,255,255,0.06);
  --card-bg: rgba(255,255,255,0.03);
  --blue-glow-sm: rgba(30,136,229,0.08);
  --blue-glow-md: rgba(30,136,229,0.12);
  --shadow: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-blue: 0 8px 30px rgba(30,136,229,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark-deep);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  font-weight: 400;
}

::selection { background: var(--accent); color: var(--white); }
a { text-decoration: none; color: inherit; transition: color .3s; }
button { font-family: 'Outfit', sans-serif; }
img { max-width: 100%; display: block; }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.25); }

/* ═══════ TYPOGRAPHY ═══════ */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--text-primary);
}

/* ═══════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 40px; transition: all .4s ease;
}
.site-header.scrolled {
  background: rgba(6,13,24,0.92);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.header-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}

.logo-link { display: flex; align-items: center; gap: 0; cursor: pointer; }
.logo-link img {
  height: 50px; width: auto;
  filter: brightness(1.1);
  transition: transform .3s, filter .4s;
}
.logo-link:hover img { transform: scale(1.04); filter: brightness(1.2) drop-shadow(0 0 12px var(--neon-glow)); }

.desktop-nav { display: flex; align-items: center; gap: 6px; }
.nav-btn {
  background: none; border: none;
  color: rgba(255,255,255,0.6); font-size: 14px; font-weight: 500;
  cursor: pointer; padding: 8px 16px; border-radius: 8px;
  display: flex; align-items: center; gap: 5px;
  transition: color .3s, background .3s;
  font-family: 'Outfit', sans-serif;
}
.nav-btn:hover, .nav-btn.active { color: var(--blue-light); background: var(--blue-glow-sm); }

.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 260px;
  background: rgba(10,22,40,0.98); backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border); border-radius: 14px;
  padding: 8px; margin-top: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: none; opacity: 0; transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.nav-dropdown:hover .dropdown-menu { display: block; opacity: 1; transform: translateY(0); }
.dropdown-item {
  display: block; width: 100%; text-align: left;
  background: none; border: none; color: rgba(255,255,255,0.55);
  font-size: 13px; padding: 10px 16px; border-radius: 10px;
  cursor: pointer; font-family: 'Outfit', sans-serif;
  transition: all .2s;
}
.dropdown-item:hover, .dropdown-item.active {
  background: var(--blue-glow-sm); color: var(--blue-light);
}

/* CTA Button — Blue gradient matching Coming Soon */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none; border-radius: 10px;
  padding: 12px 28px; font-size: 14px; font-weight: 600;
  font-family: 'Outfit', sans-serif; color: var(--white);
  cursor: pointer; transition: transform .2s, box-shadow .2s;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 20px rgba(21,101,192,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(21,101,192,0.4);
}
.btn-primary.lg { padding: 16px 36px; font-size: 15px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; padding: 12px 28px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all .3s;
}
.btn-outline:hover {
  border-color: var(--blue-light); color: var(--blue-light);
  box-shadow: 0 4px 20px rgba(30,136,229,0.15);
  transform: translateY(-2px);
}
.btn-outline.lg { padding: 16px 36px; font-size: 15px; }

/* Mobile */
.mobile-toggle { display: none; background: none; border: none; color: var(--white); cursor: pointer; padding: 8px; }
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(6,13,24,0.98); backdrop-filter: blur(24px);
  padding: 90px 28px 28px; overflow-y: auto; display: none;
}
.mobile-menu.open { display: block; }
.mobile-link {
  display: block; width: 100%; text-align: left;
  background: none; border: none; color: var(--white);
  font-size: 20px; font-weight: 600; padding: 16px 0;
  cursor: pointer; font-family: 'Outfit', sans-serif;
  border-bottom: 1px solid var(--border); transition: color .3s;
}
.mobile-link:hover, .mobile-link.active { color: var(--blue-light); }
.mobile-sub {
  display: block; width: 100%; text-align: left;
  background: none; border: none; color: rgba(255,255,255,0.4);
  font-size: 15px; padding: 12px 0 12px 20px;
  cursor: pointer; font-family: 'Outfit', sans-serif; transition: color .3s;
}
.mobile-sub:hover { color: var(--blue-light); }
@media (max-width: 768px) {
  .desktop-nav { display: none !important; }
  .mobile-toggle { display: block !important; }
  .site-header { padding: 0 20px; }
}

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 120px 40px 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.35); transition: transform 10s ease;
}
.hero:hover .hero-bg { transform: scale(1.03); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(6,13,24,0.60) 0%,
    rgba(10,22,40,0.70) 40%,
    rgba(6,13,24,0.88) 75%,
    rgba(6,13,24,1) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center; max-width: 1000px; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 22px; border-radius: 50px;
  background: rgba(30,136,229,0.08);
  border: 1px solid rgba(30,136,229,0.2);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px; background: var(--accent);
  border-radius: 50%; display: block;
  animation: pulseDot 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--neon-glow);
}
@keyframes pulseDot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.35; transform:scale(0.7); }
}
.hero h1 {
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 600; letter-spacing: -2px;
  line-height: 1.08; margin-bottom: 12px;
}
.hero-sub {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--text-secondary); font-weight: 400;
  margin-bottom: 28px;
}
.hero-sub em { font-style: normal; color: var(--text-primary); font-weight: 600; }
.hero-text {
  font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.8;
  margin-bottom: 16px; max-width: 800px; margin-left: auto; margin-right: auto;
}
.hero-text-sm {
  font-size: 15px; color: rgba(255,255,255,0.38); line-height: 1.8;
  max-width: 800px; margin: 0 auto 16px;
}
.hero-italic {
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
  max-width: 700px; margin: 0 auto 40px; font-style: italic;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Inner page hero (shorter) */
.hero-inner {
  position: relative; min-height: 50vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 110px 40px 70px;
}
.hero-inner .hero-bg { filter: brightness(0.28); }
.hero-inner .hero-overlay {
  background: linear-gradient(180deg,
    rgba(6,13,24,0.55) 0%, rgba(10,22,40,0.75) 50%, rgba(6,13,24,0.95) 100%
  );
}
.hero-inner .hero-content { max-width: 900px; }
.hero-inner h1 { font-size: clamp(34px, 5.5vw, 62px); letter-spacing: -1.5px; }
.hero-inner .hero-sub { font-size: clamp(15px, 2.2vw, 20px); }

/* ═══════════════════════════════════════════════════════
   HERO SERVICE SLIDER — Centered Single Column
═══════════════════════════════════════════════════════ */
.hero-slider-wrap { position: relative; }

/* Sliding backgrounds */
.hero-slide-bgs { position: absolute; inset: 0; }
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.3);
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide-bg.active { opacity: 1; }

/* Slider container — centered */
.hero-service-slider {
  max-width: 800px; margin: 0 auto 36px;
  position: relative; overflow: hidden;
}

/* Track */
.hero-slider-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Individual slide — no card, clean centered text */
.hero-slide {
  min-width: 100%; flex-shrink: 0;
  padding: 0; text-align: center;
  background: none; border: none;
}
.hero-slide h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600; color: var(--white);
  margin-bottom: 12px; letter-spacing: -0.5px;
  line-height: 1.15;
}
.hero-slide-tagline {
  font-size: 18px; color: var(--accent);
  font-weight: 500; font-style: italic;
  margin-bottom: 16px;
}
.hero-slide-desc {
  font-size: 17px; color: rgba(255,255,255,0.50);
  line-height: 1.8; margin-bottom: 20px;
  max-width: 650px; margin-left: auto; margin-right: auto;
}
.hero-slide-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 16px; font-weight: 600; color: var(--blue-light);
  transition: color .3s, gap .3s;
}
.hero-slide-link:hover { color: var(--accent); gap: 10px; }

/* Slider controls — centered */
.hero-slider-controls {
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  margin-top: 28px;
}
.hero-slider-dots { display: flex; gap: 10px; }
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent; cursor: pointer;
  padding: 0; transition: all .4s ease;
}
.hero-dot.active {
  background: var(--accent); border-color: var(--accent);
  box-shadow: 0 0 10px var(--neon-glow); transform: scale(1.2);
}
.hero-dot:hover:not(.active) { border-color: rgba(255,255,255,0.4); }

.hero-slider-progress {
  width: 180px; height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px; overflow: hidden;
}
.hero-slider-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px; transition: width 0.1s linear;
}

@media (max-width: 768px) {
  .hero-slide h3 { font-size: 24px; }
  .hero-slide-tagline { font-size: 16px; }
  .hero-slide-desc { font-size: 15px; }
  .hero-slider-progress { width: 140px; }
}
@media (max-width: 520px) {
  .hero-slide h3 { font-size: 22px; }
}

/* ═══════════════════════════════════════════════════════
   BACKGROUND DECORATIONS
═══════════════════════════════════════════════════════ */
.grid-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(30,136,229,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,136,229,0.025) 1px, transparent 1px);
  background-size: 70px 70px;
}

.img-divider { position: relative; height: 220px; overflow: hidden; }
.img-divider-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed; filter: brightness(0.30);
}
.img-divider-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(6,13,24,0.88) 0%, rgba(6,13,24,0.45) 50%, rgba(6,13,24,0.88) 100%
  );
}

.section-bg { position: relative; overflow: hidden; }
.section-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.18); transition: transform 12s ease;
}
.section-bg:hover .section-bg-img { transform: scale(1.02); }
.section-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(6,13,24,0.82) 0%, rgba(10,22,40,0.85) 50%, rgba(6,13,24,0.92) 100%
  );
}

.accent-line-hr {
  height: 1px; border: none; margin: 0;
  background: linear-gradient(90deg, transparent, rgba(30,136,229,0.3), transparent);
}

/* ═══════════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════════ */
.section { padding: 90px 40px; position: relative; }
.section-dark { background: var(--dark-deep); }
.section-navy { background: var(--dark); }
.section-inner { max-width: 1400px; margin: 0 auto; position: relative; }
.section-narrow { max-width: 900px; margin: 0 auto; }
.section-mid { max-width: 1100px; margin: 0 auto; position: relative; }
.section-sm { max-width: 680px; margin: 0 auto; position: relative; }

.section-title { text-align: center; margin-bottom: 52px; }
.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4.5vw, 48px); font-weight: 600;
  color: var(--text-primary); margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.section-title p {
  font-family: 'Outfit', sans-serif;
  font-size: 16px; color: var(--accent);
  font-weight: 500; letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════
   GLASS CARDS
═══════════════════════════════════════════════════════ */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 14px; padding: 30px;
  transition: all .4s ease;
}
.glass-card:hover {
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.05);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}
.glass-card.no-hover:hover {
  transform: none; background: var(--card-bg);
  border-color: var(--glass-border); box-shadow: none;
}
.glass-card h3, .glass-card h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600; color: var(--text-primary);
}
.glass-card p { color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.75; }

.icon-box {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue-glow-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; transition: transform .3s, box-shadow .3s;
}
.glass-card:hover .icon-box { transform: scale(1.08); box-shadow: 0 0 20px var(--blue-glow-sm); }
.icon-box.sm { width: 44px; height: 44px; border-radius: 10px; }
.icon-box svg { color: var(--blue-light); }

/* ═══════════════════════════════════════════════════════
   GRIDS — wider to fill space
═══════════════════════════════════════════════════════ */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 26px; }
.grid-2-sm { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.grid-5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; }

/* Stats */
.grid-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 54px); font-weight: 600;
  color: var(--blue-light);
}
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 6px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   PROCESS TIMELINE
═══════════════════════════════════════════════════════ */
.process-step { display: flex; gap: 22px; margin-bottom: 36px; }
.process-step:last-child { margin-bottom: 0; }
.process-col { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.process-num {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--white);
  box-shadow: 0 4px 15px rgba(21,101,192,0.3);
}
.process-line {
  width: 2px; flex: 1; min-height: 40px;
  background: linear-gradient(to bottom, rgba(30,136,229,0.3), transparent);
  margin-top: 8px;
}
.process-step h4 { font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--text-secondary); line-height: 1.75; }

/* ═══════════════════════════════════════════════════════
   SERVICE CARDS
═══════════════════════════════════════════════════════ */
.svc-card h3 { font-family: 'Outfit', sans-serif; font-size: 19px; font-weight: 600; color: var(--text-primary); margin-bottom: 10px; }
.svc-card p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.75; }
.svc-link {
  background: none; border: none; color: var(--blue-light);
  font-size: 14px; font-weight: 600; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; padding: 0; font-family: 'Outfit', sans-serif;
  transition: color .3s, gap .3s;
}
.svc-link:hover { color: var(--accent); gap: 10px; }
.svc-num { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 600; color: rgba(30,136,229,0.15); }
.svc-tag { font-size: 14px; color: var(--accent); font-weight: 500; margin-bottom: 12px; font-style: italic; }

/* Why card */
.why-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 15px rgba(21,101,192,0.3);
}

/* Tags / Pills */
.tag-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.tag {
  padding: 10px 22px; border-radius: 50px;
  border: 1px solid var(--glass-border); background: var(--glass);
  font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 500;
  transition: all .3s;
}
.tag:hover { border-color: var(--border-hover); color: var(--blue-light); background: var(--blue-glow-sm); }

.country-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 44px; }
.country-pill {
  padding: 12px 26px; border-radius: 50px;
  border: 1px solid var(--glass-border); background: var(--glass);
  display: flex; align-items: center; gap: 10px;
  transition: all .3s;
}
.country-pill:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: var(--shadow-blue); }
.country-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--neon-glow); }
.country-pill span { font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 500; }

/* ═══════════════════════════════════════════════════════
   VISIBLE IMAGE COMPONENTS (EY-style)
═══════════════════════════════════════════════════════ */

/* Image Card — photo on top, text below */
.img-card {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--card-bg);
  transition: all .4s ease;
}
.img-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}
.img-card-photo {
  width: 100%; height: 220px;
  object-fit: cover; display: block;
  transition: transform .6s ease;
}
.img-card:hover .img-card-photo { transform: scale(1.04); }
.img-card-photo-wrap { overflow: hidden; }
.img-card-body { padding: 24px 28px 28px; }
.img-card-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 17px; font-weight: 600;
  color: var(--text-primary); margin-bottom: 10px;
  line-height: 1.4;
}
.img-card-body p {
  font-size: 14px; color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* Split Section — image left/right + text */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img {
  width: 100%; height: 380px;
  object-fit: cover; border-radius: 14px;
  transition: transform .6s ease;
}
.split-img:hover { transform: scale(1.02); }
.split-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600; margin-bottom: 18px;
  color: var(--text-primary); letter-spacing: -0.5px;
}
.split-text p {
  font-size: 15px; color: rgba(255,255,255,0.55);
  line-height: 1.8; margin-bottom: 14px;
}

/* Featured Image Banner — wide image with text overlay */
.featured-banner {
  position: relative; border-radius: 16px;
  overflow: hidden; min-height: 320px;
  display: flex; align-items: flex-end;
}
.featured-banner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.featured-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(6,13,24,0.92) 0%,
    rgba(6,13,24,0.5) 50%,
    rgba(6,13,24,0.15) 100%
  );
}
.featured-banner-content {
  position: relative; z-index: 1;
  padding: 36px 40px; width: 100%;
}
.featured-banner h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600; margin-bottom: 10px;
}
.featured-banner p {
  font-size: 15px; color: rgba(255,255,255,0.7);
  max-width: 600px; line-height: 1.7;
}

/* Photo Strip — 3 visible images in a row */
.photo-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.photo-strip img {
  width: 100%; height: 200px;
  object-fit: cover; border-radius: 12px;
  transition: transform .4s ease;
}
.photo-strip img:hover { transform: scale(1.03); }

@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; gap: 24px; }
  .split.reverse { direction: ltr; }
  .split-img { height: 260px; }
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip img { height: 180px; }
  .img-card-photo { height: 180px; }
}

/* ═══════════════════════════════════════════════════════
   ACCORDION
═══════════════════════════════════════════════════════ */
.accordion { cursor: pointer; }
.accordion-header { display: flex; justify-content: space-between; align-items: center; }
.accordion-body {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border);
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .4s ease, opacity .3s;
}
.accordion.open .accordion-body { max-height: 300px; opacity: 1; }
.accordion .chevron { transition: transform .3s; }
.accordion.open .chevron { transform: rotate(180deg); }

/* ═══════════════════════════════════════════════════════
   FORMS — matching Coming Soon email box style
═══════════════════════════════════════════════════════ */
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.form-label { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.5); margin-bottom: 6px; display: block; }
.form-input {
  width: 100%; padding: 14px 18px; border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  color: var(--white); font-size: 14px; font-family: 'Outfit', sans-serif;
  outline: none; transition: border-color .3s, box-shadow .3s;
  box-sizing: border-box;
}
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(30,136,229,0.1), 0 0 8px rgba(30,136,229,0.15);
}
.form-input.error { border-color: #ef5350; }
.form-error { font-size: 12px; color: #ef5350; margin-top: 4px; display: block; }
.form-radio { display: flex; gap: 20px; flex-wrap: wrap; }
.form-radio label { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 14px; color: rgba(255,255,255,0.55); }
.form-radio input { accent-color: var(--accent); }
.upload-zone {
  padding: 32px; border-radius: 12px;
  border: 2px dashed var(--glass-border);
  text-align: center; cursor: pointer; transition: border-color .3s, background .3s;
}
.upload-zone:hover { border-color: var(--accent); background: var(--blue-glow-sm); }
select.form-input { appearance: auto; }
select.form-input option { background: var(--dark); color: var(--white); }

/* ═══════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════ */
.cta-banner { position: relative; padding: 100px 40px; overflow: hidden; }
.cta-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.22);
}
.cta-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,13,24,0.80), rgba(30,136,229,0.06));
}
.cta-banner-content {
  position: relative; z-index: 1;
  max-width: 800px; margin: 0 auto; text-align: center;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4.5vw, 44px); font-weight: 600;
  color: var(--text-primary); margin-bottom: 18px;
}
.cta-banner p { font-size: 16px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 36px; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--deep); border-top: 1px solid var(--border);
  padding: 64px 40px 0;
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 44px; margin-bottom: 52px; }
.footer-head { font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.5); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1.5px; }
.footer-link {
  display: block; background: none; border: none;
  color: rgba(255,255,255,0.35); font-size: 14px;
  padding: 7px 0; cursor: pointer; font-family: 'Outfit', sans-serif;
  transition: color .3s, padding-left .3s;
}
.footer-link:hover { color: var(--blue-light); padding-left: 4px; }
.footer-contact { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-contact svg { flex-shrink: 0; color: var(--accent); }
.footer-contact span { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 22px 0;
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-logo { height: 42px; width: auto; filter: brightness(1.1); opacity: 0.7; }

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════ */
.fade-in {
  opacity: 0; transform: translateY(25px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.visible { opacity: 1; transform: none; }
.fade-in.d1 { transition-delay:.1s }
.fade-in.d2 { transition-delay:.2s }
.fade-in.d3 { transition-delay:.3s }
.fade-in.d4 { transition-delay:.4s }
.fade-in.d5 { transition-delay:.5s }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-2-sm, .grid-5 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 100px 24px 60px; }
  .hero-inner { min-height: 40vh; padding: 100px 24px 50px; }
  .section { padding: 70px 24px; }
  .img-divider { height: 150px; }
  .site-footer { padding: 50px 24px 0; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: 34px; letter-spacing: -1px; }
  .hero-inner h1 { font-size: 28px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary.lg, .btn-outline.lg { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 50px 18px; }
}
