/* ============================================================
   IZZOT MEDIA — PREMIUM UI STYLESHEET
   Brand Primary: #253147 (Deep Navy)
   Color Theory:  Analogous + Split-Complementary palette
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

:root {
  /* ── BRAND PALETTE ─────────────────────────────── */
  --navy:          #253147;   /* Logo / Primary */
  --navy-dark:     #1A2438;   /* Deeper navy for headings */
  --navy-mid:      #2E3E58;   /* Mid-tone navy */
  --navy-light:    #3D5275;   /* Lighter navy */

  --sky:           #4A90D9;   /* Accent — analogous cool blue */
  --sky-light:     #72ADE8;   /* Lighter sky blue */

  --gold:          #C9A84C;   /* Premium gold accent */
  --gold-light:    #E2C97A;   /* Lighter gold */

  --surface:       #F4F7FC;   /* Page background — soft cool white */
  --surface-alt:   #EBF0F9;   /* Card/section alt background */
  --white:         #FFFFFF;

  /* ── GRADIENTS ─────────────────────────────────── */
  --gradient-primary:  linear-gradient(135deg, #253147 0%, #3D5275 100%);
  --gradient-accent:   linear-gradient(135deg, #4A90D9 0%, #253147 100%);
  --gradient-gold:     linear-gradient(135deg, #C9A84C 0%, #E2C97A 60%, #C9A84C 100%);
  --gradient-hero:     linear-gradient(135deg, #1A2438 0%, #253147 50%, #2E3E58 100%);
  --gradient-card:     linear-gradient(145deg, #FFFFFF 0%, #F4F7FC 100%);

  /* ── TYPOGRAPHY ─────────────────────────────────── */
  --text-dark:   #1A2438;
  --text-body:   #3A4A62;
  --text-muted:  #7B90B0;
  --text-white:  #FFFFFF;

  /* ── SHADOWS ────────────────────────────────────── */
  --shadow-xs:  0 2px 8px rgba(37, 49, 71, 0.08);
  --shadow-sm:  0 6px 20px rgba(37, 49, 71, 0.10);
  --shadow-md:  0 16px 40px rgba(37, 49, 71, 0.14);
  --shadow-lg:  0 24px 60px rgba(37, 49, 71, 0.18);
  --shadow-xl:  0 40px 80px rgba(37, 49, 71, 0.22);
  --shadow-glow: 0 0 30px rgba(74, 144, 217, 0.25);
  --shadow-gold: 0 8px 24px rgba(201, 168, 76, 0.30);

  /* ── MOTION ─────────────────────────────────────── */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  all 0.32s var(--ease);
  --transition-fast: all 0.18s var(--ease);

  /* ── RADII ──────────────────────────────────────── */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-pill: 999px;
}

/* ──────────────────────────────────────────────────
   RESET & BASE
────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--surface);
  color: var(--text-body);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ──────────────────────────────────────────────────
   TYPOGRAPHY
────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy-dark);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.35rem; }

p {
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  transition: var(--transition-fast);
}

/* ──────────────────────────────────────────────────
   SCROLLBAR
────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface-alt); }
::-webkit-scrollbar-thumb {
  background: var(--navy-light);
  border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover { background: var(--navy); }

/* ──────────────────────────────────────────────────
   NAVIGATION
────────────────────────────────────────────────── */
.navbar {
  background: rgba(26, 36, 56, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 0;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(37, 49, 71, 0.20);
}

.navbar.scrolled {
  padding: 0.7rem 0;
  background: rgba(26, 36, 56, 0.98);
}

/* Brand */
.brand-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* Nav Links */
.nav-link {
  color: rgba(255, 255, 255, 0.75) !important;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem 1.1rem !important;
  transition: var(--transition-fast);
  position: relative;
  letter-spacing: 0.01em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1.1rem;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: var(--radius-pill);
  transition: width 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 2.2rem);
}

.nav-cta {
  background: var(--gradient-gold) !important;
  color: var(--navy-dark) !important;
  font-weight: 700 !important;
  padding: 0.55rem 1.6rem !important;
  border-radius: var(--radius-pill) !important;
  font-size: 0.9rem !important;
  margin-left: 0.5rem;
  box-shadow: var(--shadow-gold);
  transition: var(--transition) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(201,168,76,0.45) !important;
  color: var(--navy-dark) !important;
}

.navbar-toggler {
  border-color: rgba(255,255,255,0.3);
}
.navbar-toggler-icon {
  filter: brightness(2);
}

/* ──────────────────────────────────────────────────
   BUTTONS
────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn:hover::before { opacity: 1; }

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* Primary */
.btn-primary {
  background: var(--gradient-accent);
  color: var(--white) !important;
  box-shadow: 0 8px 24px rgba(74, 144, 217, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(74, 144, 217, 0.4);
  color: var(--white) !important;
}

/* Gold */
.btn-gold {
  background: var(--gradient-gold);
  color: var(--navy-dark) !important;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201,168,76,0.45);
}

/* Outline */
.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--white) !important;
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.65);
  transform: translateY(-3px);
  color: var(--white) !important;
}

/* Light */
.btn-light {
  background: var(--white);
  color: var(--navy) !important;
  box-shadow: var(--shadow-sm);
}

.btn-light:hover {
  background: var(--surface-alt);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Navy */
.btn-navy {
  background: var(--gradient-primary);
  color: var(--white) !important;
  box-shadow: var(--shadow-sm);
}

.btn-navy:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ──────────────────────────────────────────────────
   GRADIENT TEXT & UTILITIES
────────────────────────────────────────────────── */
.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-sky {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ──────────────────────────────────────────────────
   HERO SECTION
────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

/* Animated mesh background */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,144,217,0.14) 0%, transparent 65%);
  top: -20vw;
  right: -20vw;
  animation: bgFloat 12s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 65%);
  bottom: -15vw;
  left: -10vw;
  animation: bgFloat 16s ease-in-out infinite reverse;
}

/* Geometric grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}

@keyframes bgFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(3%, 3%) scale(1.05); }
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.25rem;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.8;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Hero Illustration */
.hero-illustration {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Central orb */
.hero-orb {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(74,144,217,0.25) 0%, rgba(37,49,71,0.6) 70%);
  border: 1px solid rgba(74,144,217,0.20);
  box-shadow:
    0 0 80px rgba(74,144,217,0.15),
    inset 0 0 60px rgba(255,255,255,0.03);
  animation: orbPulse 6s ease-in-out infinite;
}

@keyframes orbPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 80px rgba(74,144,217,0.15), inset 0 0 60px rgba(255,255,255,0.03); }
  50% { transform: scale(1.04); box-shadow: 0 0 120px rgba(74,144,217,0.25), inset 0 0 80px rgba(255,255,255,0.05); }
}

.hero-image-placeholder {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pulse-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(74,144,217,0.3);
  animation: orbPulse 4s ease-in-out infinite;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  animation: float 5s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  min-width: 130px;
}

.floating-card i {
  font-size: 1.6rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.4rem;
  display: block;
}

.floating-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.floating-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-1 { top: 8%; left: 2%; animation-delay: 0s; }
.card-2 { top: 45%; right: 0%; animation-delay: 1.5s; }
.card-3 { bottom: 10%; left: 8%; animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-14px) rotate(0.5deg); }
  66% { transform: translateY(-6px) rotate(-0.5deg); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
}

.scroll-indicator .scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ──────────────────────────────────────────────────
   SECTION BASE
────────────────────────────────────────────────── */
section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: rgba(37,49,71,0.08);
  border: 1px solid rgba(37,49,71,0.15);
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-badge-light {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.30);
  color: var(--gold);
}

.section-title {
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

/* ──────────────────────────────────────────────────
   SERVICE CARDS
────────────────────────────────────────────────── */
.services-preview {
  background: var(--white);
}

.service-card {
  background: var(--gradient-card);
  border: 1px solid rgba(37,49,71,0.08);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  position: relative;
  transition: var(--transition);
  height: 100%;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(37,49,71,0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37,49,71,0.14);
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 68px;
  height: 68px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(37,49,71,0.25);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gradient-accent);
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-link {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.service-link i {
  transition: transform 0.25s var(--ease);
}

.service-link:hover {
  color: var(--sky);
  gap: 0.8rem;
}

.service-link:hover i {
  transform: translateX(4px);
}

/* ──────────────────────────────────────────────────
   WHY CHOOSE US
────────────────────────────────────────────────── */
.why-choose-us {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,144,217,0.12) 0%, transparent 70%);
}

.why-choose-us::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -8%;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 70%);
}

.why-choose-us .container { position: relative; z-index: 1; }

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.feature-item:hover {
  background: rgba(255,255,255,0.09);
  transform: translateX(6px);
  border-color: rgba(201,168,76,0.2);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}

.feature-icon i {
  color: var(--navy-dark);
  font-size: 1.15rem;
}

.feature-content h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: 0;
}

.feature-content p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin: 0;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-box {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 2.2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.stat-box:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(201,168,76,0.20);
  box-shadow: var(--shadow-glow);
}

.stat-box:hover::before { transform: scaleX(1); }

.stat-box i {
  font-size: 2.2rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.9rem;
  display: block;
}

.stat-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.stat-box p {
  color: rgba(255,255,255,0.5);
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ──────────────────────────────────────────────────
   PORTFOLIO
────────────────────────────────────────────────── */
.portfolio-preview {
  background: var(--surface);
}

.portfolio-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(37,49,71,0.08);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37,49,71,0.14);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.85);
  transition: transform 0.5s var(--ease);
  position: relative;
}

.portfolio-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3) 100%);
}

.portfolio-item:hover .portfolio-placeholder {
  transform: scale(1.08);
}

.portfolio-content {
  padding: 1.8rem 2rem;
}

.portfolio-category {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  background: rgba(37,49,71,0.07);
  color: var(--navy);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  font-family: 'Inter', sans-serif;
}

.portfolio-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.portfolio-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.portfolio-link {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.portfolio-link:hover {
  color: var(--sky);
  gap: 0.9rem;
}

/* ──────────────────────────────────────────────────
   TESTIMONIALS
────────────────────────────────────────────────── */
.testimonials {
  background: var(--surface-alt);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(37,49,71,0.08);
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  color: var(--navy);
  opacity: 0.05;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.25);
}

.testimonial-rating {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1.25rem;
}

.testimonial-rating i {
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.975rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(37,49,71,0.08);
}

.author-avatar {
  width: 52px;
  height: 52px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  border: 2px solid rgba(201,168,76,0.25);
}

.author-info h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--navy-dark);
}

.author-info p {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin: 0;
}

/* ──────────────────────────────────────────────────
   CTA SECTION
────────────────────────────────────────────────── */
.cta-section {
  padding: 80px 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,144,217,0.12) 0%, transparent 65%);
}

.cta-box {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 4rem;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.cta-box h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.8rem;
}

.cta-box p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* ──────────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding-top: 70px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-about p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gradient-gold);
  border-color: transparent;
  color: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 24px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: var(--radius-pill);
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 0.85rem;
}

.footer-links ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links ul li a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
  transition: transform 0.2s;
}

.footer-links ul li a:hover {
  color: var(--white);
  padding-left: 3px;
}

.footer-links ul li a:hover::before {
  transform: translateX(3px);
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.footer-contact ul li i {
  color: var(--gold);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-contact ul li span {
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 4rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.footer-bottom a:hover { color: var(--gold); }

.footer-bottom span {
  margin: 0 0.5rem;
  color: rgba(255,255,255,0.2);
}

/* ──────────────────────────────────────────────────
   PAGE HEADER (inner pages)
────────────────────────────────────────────────── */
.page-header {
  padding: 170px 0 90px;
  background: var(--gradient-hero);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  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: 50px 50px;
}

.page-header::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,144,217,0.12) 0%, transparent 65%);
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin-top: 1.5rem;
  justify-content: center;
}

.breadcrumb-item {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
}

.breadcrumb-item.active { color: var(--gold-light); }

.breadcrumb-item a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: var(--transition-fast);
}

.breadcrumb-item a:hover { color: var(--gold-light); }

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.3);
}

/* ──────────────────────────────────────────────────
   FORM ELEMENTS
────────────────────────────────────────────────── */
.form-control,
.form-select {
  border: 1.5px solid rgba(37,49,71,0.15);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
  background: var(--white);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(37,49,71,0.10);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

/* ──────────────────────────────────────────────────
   MISC UTILITY CLASSES
────────────────────────────────────────────────── */
.text-navy       { color: var(--navy) !important; }
.text-sky        { color: var(--sky) !important; }
.text-gold       { color: var(--gold) !important; }
.bg-navy         { background-color: var(--navy) !important; }
.bg-navy-dark    { background-color: var(--navy-dark) !important; }
.bg-surface      { background-color: var(--surface) !important; }
.border-gold     { border-color: var(--gold) !important; }

/* Divider */
.divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: var(--radius-pill);
  margin: 1rem 0 1.5rem;
}

.divider-center {
  margin: 1rem auto 1.5rem;
}

/* Reveal animation */
[data-aos] {
  will-change: transform, opacity;
}

/* ──────────────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────────────── */
@media (max-width: 991px) {
  h1 { font-size: clamp(2rem, 5vw, 2.8rem); }
  h2 { font-size: clamp(1.7rem, 4vw, 2.2rem); }

  .hero-title   { font-size: clamp(2.2rem, 5.5vw, 3.5rem); }
  .hero-stats   { grid-template-columns: 1fr; gap: 1.2rem; }
  .hero-illustration { height: 380px; margin-top: 3rem; }
  .floating-card { display: none; }
  .stats-grid   { grid-template-columns: 1fr; }
  .cta-box      { padding: 2.5rem 2rem; text-align: center; }
  .cta-box .col-lg-4 { margin-top: 1.5rem; }
  section       { padding: 80px 0; }
}

@media (max-width: 767px) {
  .hero-title   { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .hero-stats   { grid-template-columns: repeat(3,1fr); }
  section       { padding: 60px 0; }
  .section-header { margin-bottom: 2.5rem; }
  .service-card,
  .testimonial-card,
  .cta-box      { padding: 1.5rem; }
  .page-header  { padding: 130px 0 70px; }
  .stats-grid   { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 480px) {
  .hero-stats   { grid-template-columns: 1fr; }
  .stat-number  { font-size: 2rem; }
  .stats-grid   { grid-template-columns: 1fr; }
}