/* ═══════════════════════════════════════════════════════════
   HERO & SERVICES SECTIONS
   ═══════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────────────
   1. HERO SECTION
   ────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-navy);
  margin-bottom: var(--space-32);
}

/* HERO BACKGROUND */
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212, 167, 106, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(30, 91, 168, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* HERO VIDEO (sits above the gradient fallback, below the overlay) */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Reduced motion: hide video, keep the gradient .hero-bg as fallback */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

/* HERO OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 62, 0.5);
  z-index: 1;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HERO BADGE */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: rgba(212, 167, 106, 0.15);
  border: 1px solid rgba(212, 167, 106, 0.3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(10px);
  animation: slideInDown 0.6s ease-out;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary-gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

.hero-badge-text {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--color-primary-gold);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

/* HERO TITLE */
.hero-title {
  font-size: var(--text-6xl);
  font-weight: var(--weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-6);
  color: var(--color-white);
  animation: slideInDown 0.7s ease-out 0.1s both;
}

/* HERO SUBTITLE */
.hero-subtitle {
  font-size: var(--text-xl);
  line-height: var(--line-height-relaxed);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-bottom: var(--space-10);
  animation: slideInDown 0.7s ease-out 0.2s both;
}

/* HERO CTA */
.hero-cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-16);
  animation: slideInDown 0.7s ease-out 0.3s both;
}

/* HERO STATS */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 500px;
  padding-top: var(--space-12);
  border-top: 1px solid rgba(212, 167, 106, 0.2);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.stat-number {
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  color: var(--color-primary-gold);
  line-height: 1;
}

.stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--line-height-normal);
}

/* HERO RESPONSIVE */
@media (max-width: 1024px) {
  .hero {
    min-height: 80vh;
  }

  .hero-title {
    font-size: var(--text-5xl);
  }

  .hero-subtitle {
    font-size: var(--text-lg);
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: var(--space-12) 0;
  }

  .hero-title {
    font-size: var(--text-3xl);
  }

  .hero-subtitle {
    font-size: var(--text-base);
    max-width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    max-width: 100%;
  }

  .stat-number {
    font-size: var(--text-2xl);
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 60vh;
    padding: var(--space-8) 0;
  }

  .hero-title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
  }

  .hero-badge {
    font-size: var(--text-xs);
  }

  .hero-cta {
    margin-bottom: var(--space-8);
  }

  .hero-stats {
    display: none;
  }
}

/* ──────────────────────────────────────────────────────────────
   2. SERVICES SECTION
   ────────────────────────────────────────────────────────────── */

.services-preview {
  background-color: var(--color-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-16);
}

/* SERVICE CARD */
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-base);
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--color-primary-gold);
  box-shadow: 0 20px 40px rgba(212, 167, 106, 0.15);
  transform: translateY(-8px);
}

/* SERVICE ICON */
.service-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-4);
  display: block;
  transition: transform var(--transition-base);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

/* SERVICE TITLE */
.service-title {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

/* SERVICE DESCRIPTION */
.service-desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* SECTION CTA */
.section-cta {
  text-align: center;
}

/* SERVICES RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .service-card {
    padding: var(--space-6);
  }
}

@media (max-width: 640px) {
  .service-icon {
    font-size: 3rem;
  }

  .service-card {
    padding: var(--space-4);
  }

  .service-title {
    font-size: var(--text-lg);
  }
}

/* ──────────────────────────────────────────────────────────────
   3. SECTION HEADERS
   ────────────────────────────────────────────────────────────── */

.section-header {
  text-align: center;
  margin-bottom: var(--space-20);
}

.section-title {
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin: 0 auto;
}

/* ──────────────────────────────────────────────────────────────
   4. CTA SECTION
   ────────────────────────────────────────────────────────────── */

.cta-section {
  text-align: center;
  padding: var(--space-20) 0;
}

.cta-content h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-6);
}

.cta-content p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════════════════════════════ */
