/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* Color Variables and Core Theme */
:root {
  --primary-navy: #0A1128;
  --dark-navy: #001F3F;
  --deep-navy: #050B1E;
  --card-bg: rgba(23, 42, 69, 0.7);
  --card-bg-hover: rgba(28, 49, 78, 0.85);
  
  /* Gold Accents (Luxury Styling) */
  --gold-light: #F3E5AB;
  --gold-base: #D4AF37;
  --gold-deep: #AA7C11;
  --gold-gradient: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #AA7C11 100%);
  --gold-glow: 0 0 20px rgba(212, 175, 55, 0.3);
  --gold-border: rgba(212, 175, 55, 0.15);
  --gold-border-hover: rgba(212, 175, 55, 0.5);

  /* Neutrals */
  --text-white: #FFFFFF;
  --text-light: #E6F1FF;
  --text-slate: #8D99AE;
  --text-muted: #64748B;
  
  /* Layout & Animation Defaults */
  --max-width: 1280px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius: 12px;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--primary-navy);
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Customizations */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-white);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--deep-navy);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-deep);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-base);
}

/* Layout Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: 8rem 0;
}

.text-center {
  text-align: center;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Section Header Styles */
.section-header {
  max-width: 700px;
  margin: 0 auto 5rem auto;
  text-align: center;
}

.section-header h2 {
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.section-header p {
  color: var(--text-slate);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.03em;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--deep-navy);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--gold-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: var(--gold-base);
  color: var(--gold-light);
  transform: translateY(-3px);
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.glass-card:hover {
  border-color: var(--gold-border-hover);
  background: var(--card-bg-hover);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.1);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 17, 40, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: rgba(5, 11, 30, 0.95);
  padding: 0.5rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
}

.logo-text span.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--gold-base);
  font-weight: 500;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--text-white);
  border-radius: 10px;
  transition: all 0.3s linear;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--deep-navy);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 17, 40, 0.94) 0%,
    rgba(5, 11, 30, 0.88) 50%,
    rgba(10, 17, 40, 0.94) 100%
  );
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.hero-content {
  max-width: 700px;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-content p.hero-sub {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
}

.badge-icon {
  color: var(--gold-base);
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
}

.conditions-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Quick Lead Form Card */
.lead-card {
  padding: 2.5rem;
  border-radius: var(--border-radius);
  background: rgba(10, 20, 42, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.lead-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
}

.lead-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.lead-card p.form-subtitle {
  color: var(--text-slate);
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-slate);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(5, 11, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--gold-base);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
  background: rgba(5, 11, 30, 0.8);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

/* Range Calculator Slider */
.calc-wrapper {
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(212, 175, 55, 0.2);
  padding: 1rem;
  border-radius: 6px;
}

.calc-output {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-slate);
}

.calc-value {
  color: var(--gold-light);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-base);
  cursor: pointer;
  box-shadow: var(--gold-glow);
  transition: transform 0.1s;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}

.live-estimate {
  margin-top: 1rem;
  text-align: center;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 6px;
  padding: 0.75rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.live-val {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold-base);
  font-family: 'Montserrat', sans-serif;
}

.form-error {
  font-size: 0.75rem;
  color: #FF4D4D;
  margin-top: 0.25rem;
  display: none;
}

.btn-form {
  width: 100%;
  margin-top: 1rem;
  border: none;
}

.form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--deep-navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 10;
}

.form-success-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.success-icon-wrap {
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--gold-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-base);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--gold-glow);
}

.success-ref {
  font-family: 'Montserrat', sans-serif;
  color: var(--gold-light);
  font-weight: 700;
  margin-top: 1rem;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-icon-container {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--gold-base);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-container {
  background: var(--gold-gradient);
  color: var(--deep-navy);
  box-shadow: var(--gold-glow);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-slate);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-base);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

.service-link svg {
  transition: transform 0.3s;
}

.service-card:hover .service-link svg {
  transform: translateX(5px);
}

/* Why Choose Us Section */
.why-section {
  background: radial-gradient(circle at 10% 20%, rgba(10, 25, 47, 1) 0%, rgba(5, 11, 30, 1) 90.2%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.why-card {
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  transition: var(--transition-smooth);
}

.why-card:hover {
  background: rgba(212, 175, 55, 0.03);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-5px);
}

.why-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.why-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.15);
  transition: var(--transition-smooth);
}

.why-card:hover .why-num {
  color: var(--gold-base);
  text-shadow: var(--gold-glow);
}

.why-card h3 {
  font-size: 1.25rem;
}

.why-card p {
  color: var(--text-slate);
  font-size: 0.95rem;
}

/* Mortgage Programs */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.program-card {
  background: rgba(10, 20, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.program-icon {
  font-size: 2rem;
  color: var(--gold-base);
  margin-bottom: 1.25rem;
  transition: var(--transition-smooth);
}

.program-card p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.3;
}

.program-card:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--gold-base);
  box-shadow: var(--gold-glow);
}

.program-card:hover .program-icon {
  transform: translateY(-5px);
}

/* Process Section */
.process-section {
  background: var(--deep-navy);
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 5rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.process-timeline-progress {
  position: absolute;
  top: 40px;
  left: 5%;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  z-index: 2;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 3;
  padding: 0 1.5rem;
}

.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-navy);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-slate);
  position: relative;
  transition: var(--transition-smooth);
}

.step-num::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 1px solid transparent;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.process-step.active .step-num {
  color: var(--deep-navy);
  background: var(--gold-gradient);
  border-color: transparent;
  box-shadow: var(--gold-glow);
}

.process-step.active .step-num::after {
  border-color: var(--gold-base);
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.process-step p {
  color: var(--text-slate);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.stats-sidebar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-box {
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--gold-base);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-slate);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-track-wrapper {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide {
  min-width: 100%;
  padding: 0.5rem;
}

.testimonial-card {
  padding: 3rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  color: var(--gold-base);
}

.testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-navy);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.client-name {
  font-weight: 700;
  color: var(--text-white);
}

.client-loc {
  font-size: 0.85rem;
  color: var(--text-slate);
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.carousel-btn:hover {
  background: var(--gold-gradient);
  color: var(--deep-navy);
  border-color: transparent;
  box-shadow: var(--gold-glow);
}

.carousel-indicators {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-dot.active {
  background: var(--gold-base);
  width: 24px;
  border-radius: 4px;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.01);
  transition: var(--transition-smooth);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(212, 175, 55, 0.15);
}

.faq-item.active {
  background: rgba(23, 42, 69, 0.3);
  border-color: rgba(212, 175, 55, 0.3);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 2rem;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
}

.faq-question {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  text-align: left;
}

.faq-icon {
  color: var(--gold-base);
  transition: transform 0.4s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 2rem;
}

.faq-panel-content {
  padding-bottom: 1.75rem;
  color: var(--text-slate);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
  position: relative;
  background: var(--deep-navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
}

.contact-info-card {
  padding: 3.5rem;
}

.contact-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold-base);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.contact-info-card h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-info-card p.contact-desc {
  color: var(--text-slate);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.method-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-base);
  flex-shrink: 0;
}

.method-details h4 {
  font-size: 0.9rem;
  color: var(--text-slate);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.method-details p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
}

.contact-form {
  padding: 3.5rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Footer styling */
.footer {
  background: var(--deep-navy);
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  padding: 5rem 0 2.5rem 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-slate);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-links h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: var(--gold-base);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links-list a {
  color: var(--text-slate);
}

.footer-links-list a:hover {
  color: var(--gold-base);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.disclaimer-box {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.5rem;
  border-radius: 6px;
  max-width: 900px;
  margin-bottom: 2rem;
}

.disclaimer-box p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* SEO Subfooter keywords strip */
.seo-keywords-strip {
  width: 100%;
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.03);
  text-align: center;
}

.seo-keywords-strip span {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0 0.5rem;
  display: inline-block;
}

/* Animations Trigger Classes */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Overrides */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .programs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(5, 11, 30, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: left 0.4s ease;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .nav-cta {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 2.75rem;
  }
  .section-header h2 {
    font-size: 2.25rem;
  }
  
  .process-timeline {
    flex-direction: column;
    gap: 3rem;
  }
  .process-timeline::before {
    top: 0;
    left: 40px;
    width: 2px;
    height: 90%;
  }
  .process-timeline-progress {
    top: 0;
    left: 40px;
    width: 2px;
    height: 0%;
  }
  .process-step {
    display: flex;
    text-align: left;
    align-items: flex-start;
    padding: 0;
  }
  .step-num {
    margin: 0 1.5rem 0 0;
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .trust-badges-grid {
    grid-template-columns: 1fr;
  }
  .programs-grid {
    grid-template-columns: 1fr;
  }
  .hero-ctas {
    flex-direction: column;
  }
}
