/* ===== CUSTOM PROPERTIES ===== */
:root {
  --navy: #0b1d3a;
  --navy-deep: #060d1f;
  --navy-light: #112548;
  --gold: #c9a84c;
  --gold-light: #e0c474;
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; margin: 0; }

/* ===== TYPOGRAPHY ===== */
.font-heading { font-family: 'Space Grotesk', sans-serif; }
.font-body { font-family: 'Inter', sans-serif; }

/* ===== CUSTOM COLORS (Tailwind CDN doesn't have these) ===== */
.bg-navy { background-color: var(--navy); }
.bg-navy-deep { background-color: var(--navy-deep); }
.bg-navy-light { background-color: var(--navy-light); }
.bg-gold { background-color: var(--gold); }
.bg-gold-light { background-color: var(--gold-light); }
.bg-gold\/5 { background-color: rgba(201,168,76,0.05); }
.bg-gold\/10 { background-color: rgba(201,168,76,0.1); }
.bg-gold\/15 { background-color: rgba(201,168,76,0.15); }
.bg-gold\/20 { background-color: rgba(201,168,76,0.2); }
.bg-navy\/5 { background-color: rgba(11,29,58,0.05); }
.bg-navy\/85 { background-color: rgba(11,29,58,0.85); }
.bg-navy\/90 { background-color: rgba(11,29,58,0.9); }

.text-navy { color: var(--navy); }
.text-navy-deep { color: var(--navy-deep); }
.text-gold { color: var(--gold); }
.text-gold-light { color: var(--gold-light); }

.border-navy { border-color: var(--navy); }
.border-gold { border-color: var(--gold); }
.border-gold\/20 { border-color: rgba(201,168,76,0.2); }
.border-gold\/30 { border-color: rgba(201,168,76,0.3); }
.border-gold\/40 { border-color: rgba(201,168,76,0.4); }

.from-navy-deep\/60 { --tw-gradient-from: rgba(6,13,31,0.6); }
.from-navy-deep\/70 { --tw-gradient-from: rgba(6,13,31,0.7); }
.from-navy-deep\/95 { --tw-gradient-from: rgba(6,13,31,0.95); }
.via-navy-deep\/40 { --tw-gradient-via: rgba(6,13,31,0.4); }
.via-navy-deep\/80 { --tw-gradient-via: rgba(6,13,31,0.8); }
.to-navy-deep { --tw-gradient-to: var(--navy-deep); }

/* Hover variants */
.hover\:bg-gold:hover { background-color: var(--gold); }
.hover\:bg-gold-light:hover { background-color: var(--gold-light); }
.hover\:bg-gold\/10:hover { background-color: rgba(201,168,76,0.1); }
.hover\:bg-gold\/90:hover { background-color: rgba(201,168,76,0.9); }
.hover\:bg-navy:hover { background-color: var(--navy); }
.hover\:bg-navy-deep:hover { background-color: var(--navy-deep); }
.hover\:bg-navy-light:hover { background-color: var(--navy-light); }
.hover\:bg-navy\/10:hover { background-color: rgba(11,29,58,0.1); }
.hover\:text-gold:hover { color: var(--gold); }
.hover\:text-navy:hover { color: var(--navy); }
.hover\:text-navy-deep:hover { color: var(--navy-deep); }
.hover\:border-gold:hover { border-color: var(--gold); }
.hover\:border-gold\/30:hover { border-color: rgba(201,168,76,0.3); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.navbar:not(.scrolled) {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.navbar:not(.scrolled) .nav-link { color: var(--navy); }
.navbar:not(.scrolled) .nav-link:hover { color: var(--gold); }
.navbar:not(.scrolled) .nav-link.active { color: var(--gold); }
.navbar.scrolled .nav-link { color: var(--navy); }
.navbar.scrolled .nav-link:hover { color: var(--gold); }
.navbar.scrolled .nav-link.active { color: var(--gold); }

/* ===== HERO SECTIONS ===== */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,13,31,0.7), rgba(6,13,31,0.95));
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 9rem 0 5rem;
}
.page-hero .hero-overlay {
  background: linear-gradient(to bottom, rgba(6,13,31,0.6), rgba(6,13,31,0.95));
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.7s, transform 0.7s;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CARDS ===== */
.service-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s;
}
.service-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  border-color: rgba(201,168,76,0.3);
}

.portfolio-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
}
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.portfolio-card:hover img {
  transform: scale(1.05);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 20, 8, 0.92) 0%, rgba(30, 20, 8, 0.75) 40%, rgba(30, 20, 8, 0.15) 70%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

/* ===== TESTIMONIAL SLIDER ===== */
.testimonial-slider {
  overflow: hidden;
  position: relative;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

/* ===== STAT COUNTER ===== */
.stat-item {
  text-align: center;
}
.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--gold);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.open {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 0.5rem;
}
.mobile-nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 500;
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--gold); }

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(201,168,76,0.3);
}
.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.35rem;
  top: 0.25rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--navy-deep);
}

/* ===== FORM ===== */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  transition: border-color 0.2s;
  outline: none;
  box-sizing: border-box;
}
.form-input:focus {
  border-color: var(--gold);
}

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-size: 0.875rem;
}
.btn-gold:hover {
  background: var(--gold-light);
}
.btn-navy {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-size: 0.875rem;
}
.btn-navy:hover {
  background: var(--navy-deep);
}
.btn-outline {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  padding: 0.625rem 1.75rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  background: transparent;
  font-size: 0.875rem;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ===== PRICING ===== */
.pricing-card {
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid #e5e7eb;
  background: white;
  transition: all 0.3s;
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
  position: relative;
}
.pricing-badge {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  white-space: nowrap;
}

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid #e5e7eb;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--navy);
}
.faq-question i {
  transition: transform 0.3s;
  color: var(--gold);
}
.faq-item.open .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 1.25rem;
}

/* ===== BADGE ROW ===== */
.badge-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
}

/* ===== SECTION SPACING ===== */
.section { padding: 5rem 0; }
.container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

/* ===== VALUE CARDS ===== */
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  transition: all 0.3s;
}
.value-card:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.05);
}

/* ===== PROCESS STEPS ===== */
.process-step {
  position: relative;
  padding: 2rem;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 1rem;
  background: rgba(201,168,76,0.05);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* ===== TEAM ===== */
.team-card {
  text-align: center;
}
.team-card img {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid rgba(201,168,76,0.3);
}

.grecaptcha-badge {
    visibility: hidden !important;
}