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

:root {
  --navy: #1B3A5C;
  --navy-dark: #122843;
  --gold: #C5A55A;
  --gold-light: #D4BA7A;
  --cream: #FDF6E3;
  --cream-dark: #F5ECDA;
  --white: #FFFFFF;
  --text: #2D3748;
  --text-light: #6B7B8D;
  --shadow: 0 4px 30px rgba(27,58,92,0.12);
  --shadow-lg: 0 12px 40px rgba(27,58,92,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* === NAV === */
body.nav-open { overflow: hidden; }
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,10,20,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 900;
}
.nav-overlay.show { opacity: 1; pointer-events: auto; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(27,58,92,0.95);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 12px 20px;
}
.nav-logo { display: block; padding: 5px 0; }
.nav-logo img { height: 70px; width: auto; border-radius: 4px; display: block; object-fit: contain; }
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links > a,
.nav-links > .nav-dropdown > a { color: var(--cream); }
.nav-links a {
  color: var(--cream); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.5px; transition: color 0.3s;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--navy-dark) !important;
  padding: 10px 22px; border-radius: 50px; font-weight: 700;
  transition: all 0.3s; font-size: 0.82rem !important; white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Dropdown */
.nav-dropdown { position: relative; display: inline-block; height: 100%; }
.nav-dropdown > a { 
  cursor: pointer; 
  padding: 24px 15px 24px 0; /* Large hit area vertically */
  display: inline-block;
  margin-top: -4px; /* Align text visually */
}
.nav-dropdown > a::after {
  content: ' ▾'; font-size: 0.8em; margin-left: 4px;
}
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--navy-dark); border-radius: 8px; padding: 10px 0;
  min-width: 240px; box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  margin-top: -10px; /* Overlap the anchor */
  z-index: 1000;
  opacity: 0; transform: translateY(10px); transition: all 0.2s ease;
  pointer-events: none; /* Prevent clicks while hidden/animating */
}

/* Show on hover (desktop) OR when .active class is added (mobile/click) */
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
  display: block; opacity: 1; transform: translateY(0);
  pointer-events: auto; /* Enable clicks when visible */
}

/* Invisible bridge to absolutely ensure mouse catch */
.nav-dropdown::after {
  content: ''; position: absolute; top: 70%; left: 0; width: 100%; height: 40px;
  background: transparent; z-index: 999;
}


.nav-dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 0.9rem;
  color: var(--cream); white-space: nowrap; transition: background 0.2s;
}
.nav-dropdown-menu a:hover {
  background: rgba(197,165,90,0.15); color: var(--gold); padding-left: 25px;
}

/* Mobile Menu Button */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; background: none; border: none; z-index: 1001; }
.hamburger span { width: 26px; height: 2.5px; background: var(--cream); border-radius: 3px; transition: 0.3s; display: block; }


/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: 50px; font-weight: 700;
  font-size: 1rem; transition: all 0.3s; cursor: pointer; border: none;
  font-family: 'Montserrat', sans-serif;
}
.btn-gold { background: var(--gold); color: var(--navy-dark); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(197,165,90,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(27,58,92,0.4); }
.btn-submit { width: 100%; justify-content: center; font-size: 1rem; }

/* === HERO === */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.hero-bg {
  position: absolute; inset: 0; background-position: center; background-size: cover;
  background-repeat: no-repeat; opacity: 0.2;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,58,92,0.92) 0%, rgba(18,40,67,0.85) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 120px 20px 80px; max-width: 850px;
}
.hero-badge {
  display: inline-block; background: rgba(197,165,90,0.15);
  border: 1px solid rgba(197,165,90,0.3); color: var(--gold);
  padding: 8px 24px; border-radius: 50px; font-size: 0.8rem;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem); color: var(--white);
  line-height: 1.15; margin-bottom: 24px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(253,246,227,0.8);
  max-width: 620px; margin: 0 auto 40px; line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; justify-content: center; gap: 50px;
  margin-top: 60px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat { text-align: center; }
.hero-stat .num { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold); font-weight: 800; }
.hero-stat .label { font-size: 0.8rem; color: rgba(253,246,227,0.6); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: 160px 20px 80px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.page-hero .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.15; }
.page-hero .hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(27,58,92,0.93) 0%, rgba(18,40,67,0.88) 100%); }
.page-hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--white); margin-bottom: 16px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: rgba(253,246,227,0.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* === BREADCRUMBS === */
.breadcrumbs {
  background: var(--cream-dark); padding: 14px 0; border-bottom: 1px solid #E8E0D0;
}
.breadcrumbs-inner {
  display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-light);
  max-width: 1200px; margin: 0 auto; padding: 0 20px; flex-wrap: wrap;
}
.breadcrumbs a { color: var(--navy); font-weight: 500; transition: color 0.3s; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span.sep { color: var(--gold); }

/* === SECTIONS === */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-block; color: var(--gold); font-weight: 700;
  font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--navy);
  margin-bottom: 16px;
}
.section-header p { color: var(--text-light); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* === SERVICES GRID === */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.service-card {
  background: var(--cream); border-radius: 16px; padding: 0;
  text-align: center; transition: all 0.4s; position: relative; overflow: hidden;
}
.service-card-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.service-card-body { padding: 28px 24px 36px; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--gold); transform: scaleX(0); transition: transform 0.4s;
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 72px; height: 72px; border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 1.6rem; color: var(--gold);
}
.service-card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }
.service-card .btn { margin-top: 16px; padding: 10px 24px; font-size: 0.85rem; }

/* === WHY US === */
.why-us { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-image { border-radius: 20px; overflow: hidden; position: relative; box-shadow: var(--shadow-lg); }
.why-image img { width: 100%; height: 450px; object-fit: cover; display: block; }
.why-image-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--gold); color: var(--navy-dark);
  padding: 14px 24px; border-radius: 12px; font-weight: 800; font-size: 1.1rem;
}
.why-content h2 { font-size: 2.2rem; color: var(--navy); margin-bottom: 20px; }
.why-content > p { color: var(--text-light); margin-bottom: 32px; font-size: 1.05rem; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
  background: rgba(27,58,92,0.08); display: flex;
  align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem;
}
.why-item h3 { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-item p { font-size: 0.88rem; color: var(--text-light); }

/* === AREAS === */
.areas { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.areas::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?w=1600&q=80') center/cover;
  opacity: 0.08;
}
.areas .section-header h2 { color: var(--white); }
.areas .section-header p { color: rgba(253,246,227,0.6); }
.areas .section-label { color: var(--gold); }
.areas-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; position: relative; z-index: 1;
}
.area-item {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 24px; text-align: center; transition: all 0.3s;
}
.area-item:hover { background: rgba(197,165,90,0.1); border-color: rgba(197,165,90,0.3); transform: translateY(-4px); }
.area-item i { font-size: 1.4rem; color: var(--gold); margin-bottom: 10px; display: block; }
.area-item h3 { font-family: 'Montserrat', sans-serif; font-size: 0.95rem; font-weight: 600; }
.area-item a { color: inherit; }
.area-item a:hover { color: var(--gold); }

/* === TESTIMONIALS === */
.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.testimonial-card {
  background: var(--cream); border-radius: 16px; padding: 36px;
  position: relative; transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.testimonial-stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 0.98rem; color: var(--text); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center;
  justify-content: center; color: var(--gold); font-weight: 800; font-size: 1.1rem;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.testimonial-loc { font-size: 0.8rem; color: var(--text-light); }

/* === FINANCING === */
.financing { background: var(--navy); color: var(--white); }
.financing-content { text-align: center; max-width: 700px; margin: 0 auto; }
.financing-icon { font-size: 3rem; color: var(--gold); margin-bottom: 16px; }
.financing .section-label { color: var(--gold); }
.financing h2 { color: var(--white); }
.financing p { color: rgba(255,255,255,0.8); font-size: 1.1rem; line-height: 1.7; margin-bottom: 32px; }
.financing-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; text-align: left; }
.financing-feature { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; color: rgba(255,255,255,0.9); }
.financing-feature i { color: var(--gold); font-size: 1.2rem; }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #D4BA7A 100%);
  padding: 70px 20px; text-align: center;
}
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--navy-dark); margin-bottom: 16px; }
.cta-banner p { color: rgba(27,58,92,0.7); font-size: 1.1rem; margin-bottom: 32px; }

/* === CONTACT === */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h3 { font-family: 'Montserrat', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.contact-info > p { color: var(--text-light); margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: center; margin-bottom: 24px; }
.contact-item-icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: var(--navy); display: flex; align-items: center;
  justify-content: center; color: var(--gold); font-size: 1.1rem;
}
.contact-item a { color: var(--navy); font-weight: 600; transition: color 0.3s; }
.contact-item a:hover { color: var(--gold); }
.contact-item span { display: block; font-size: 0.8rem; color: var(--text-light); margin-bottom: 2px; }
.contact-form {
  background: var(--white); border-radius: 20px; padding: 40px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; border: 2px solid #E8E0D0;
  border-radius: 12px; font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem; background: var(--cream); transition: border-color 0.3s; color: var(--text);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* === FOOTER === */
.footer { background: var(--navy-dark); color: rgba(253,246,227,0.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 50px; border-radius: 4px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; }
.footer h4 { color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 20px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 0.88rem; transition: color 0.3s; }
.footer ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0; text-align: center; font-size: 0.82rem;
}

/* === CONTENT SECTIONS (inner pages) === */
.content-section { padding: 80px 0; }
.content-section:nth-child(even) { background: var(--white); }
.content-section:nth-child(odd) { background: var(--cream); }

.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.content-text h2 { font-size: 2rem; color: var(--navy); margin-bottom: 16px; }
.content-text h3 { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; margin-top: 24px; }
.content-text p { color: var(--text-light); font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }
.content-text ul { list-style: none; margin-bottom: 20px; }
.content-text ul li { padding: 8px 0; padding-left: 28px; position: relative; color: var(--text); font-size: 0.95rem; }
.content-text ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--gold); font-size: 0.85rem; }

.content-image { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.content-image img { width: 100%; height: 400px; object-fit: cover; display: block; }

/* === PROCESS / STEPS === */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.process-step {
  text-align: center; padding: 40px 28px; background: var(--white);
  border-radius: 16px; position: relative; transition: all 0.3s;
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step-number {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--gold); font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.process-step h3 { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; color: var(--text-light); }

/* === GALLERY === */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.gallery-item { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 250px; object-fit: cover; display: block; }

/* === FEATURES GRID === */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.feature-card {
  background: var(--white); border-radius: 16px; padding: 36px;
  text-align: center; transition: all 0.3s; border: 1px solid rgba(27,58,92,0.06);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-card i { font-size: 2.4rem; color: var(--gold); margin-bottom: 20px; display: block; }
.feature-card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* === EMERGENCY BANNER === */
.emergency-banner {
  background: linear-gradient(135deg, #C0392B, #E74C3C);
  color: var(--white); padding: 30px 20px; text-align: center;
}
.emergency-banner h3 { font-family: 'Montserrat', sans-serif; font-size: 1.3rem; margin-bottom: 8px; }
.emergency-banner p { font-size: 1rem; opacity: 0.9; margin-bottom: 16px; }
.emergency-banner .btn { background: var(--white); color: #C0392B; }

/* === SERVICE AREAS PAGE === */
.area-detail { padding: 40px 0; }
.area-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 28px; }
.area-detail-card {
  background: var(--white); border-radius: 16px; padding: 32px;
  border-left: 4px solid var(--gold); transition: all 0.3s;
}
.area-detail-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.area-detail-card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.area-detail-card h3 i { color: var(--gold); margin-right: 8px; }
.area-detail-card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }

/* === MAP PLACEHOLDER === */
.map-container {
  width: 100%; height: 400px; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow); margin-top: 30px;
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* === RELATED SERVICES === */
.related-services { background: var(--cream-dark); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.related-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  transition: all 0.3s; text-align: center;
}
.related-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.related-card img { width: 100%; height: 160px; object-fit: cover; }
.related-card-body { padding: 24px; }
.related-card h3 { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.related-card p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 16px; }
.related-card .btn { padding: 10px 20px; font-size: 0.82rem; }

/* === FOOTER === */
footer {
  background: var(--navy-dark); color: var(--white); padding: 80px 0 30px;
  border-top: 4px solid var(--gold);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-brand img { height: 80px; width: auto; margin-bottom: 20px; display: block; object-fit: contain; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.7); max-width: 320px; }
.footer-grid h4 { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; margin-bottom: 24px; color: var(--gold); }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 12px; }
.footer-grid ul li a { color: rgba(255,255,255,0.8); font-size: 0.95rem; transition: color 0.3s; display: flex; align-items: center; gap: 10px; }
.footer-grid ul li a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center; border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px; font-size: 0.85rem; color: rgba(255,255,255,0.5);
}

/* === ANIMATIONS === */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* === MOBILE === */
@media (max-width: 900px) {
  .nav-links {
    position: fixed; inset: 0; z-index: 1002;
    background: linear-gradient(180deg, rgba(7,15,28,0.98) 0%, rgba(5,10,20,0.98) 100%);
    display: flex; flex-direction: column; align-items: stretch;
    padding: 100px 24px 40px; gap: 18px; transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a, .nav-dropdown > a {
    font-size: 1.08rem; color: var(--cream); font-weight: 600;
    padding: 18px 20px; display: flex; justify-content: space-between; align-items: center;
    width: 100%; border-radius: 14px; border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
  }
  .nav-links a:first-child { margin-top: 0; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown > a { display: flex; justify-content: space-between; align-items: center; }
  .nav-dropdown > a::after {
    content: '+'; font-size: 1.1rem; transition: transform 0.3s; color: var(--gold);
  }
  .nav-dropdown.active > a::after { transform: rotate(45deg); }
  .nav-dropdown-menu {
    background: rgba(5,12,24,0.95); border: 1px solid rgba(255,255,255,0.08);
    padding: 10px 20px 10px 20px; margin: 0; border-radius: 12px; display: none;
  }
  .nav-dropdown.active .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a {
    padding: 10px 0; font-size: 1rem; color: rgba(255,255,255,0.92); font-weight: 500;
    border: none; border-left: 2px solid transparent;
  }
  .nav-dropdown-menu a::before {
    content: '•'; color: var(--gold); margin-right: 8px;
  }
  .nav-dropdown-menu a:hover { border-left-color: var(--gold); }
  .hamburger { display: flex; }
  .hero-stats { gap: 30px; flex-wrap: wrap; }
  .why-grid, .content-grid, .content-grid.reverse { grid-template-columns: 1fr; direction: ltr; }
  .why-image, .content-image { order: -1; }
  .why-image img, .content-image img { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .financing-features { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-stats { flex-direction: column; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn { padding: 14px 28px; font-size: 0.9rem; }
  .page-hero { padding: 140px 20px 60px; }
}
