/* ============================================================
   DIY Hire Services – Global Stylesheet
   Color Palette:
     Primary:    #1a2e3b  (deep navy)
     Accent:     #f5c842  (warm yellow)
     Light bg:   #f7f8fa
     White:      #ffffff
     Text:       #333333
     Muted:      #6b7280
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: #1a2e3b;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: #444; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f5c842;
  margin-bottom: 0.6rem;
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

.text-center { text-align: center; }
.text-white { color: #fff !important; }
.text-accent { color: #f5c842; }
.bg-light { background: #f7f8fa; }
.bg-dark  { background: #1a2e3b; }
.bg-accent { background: #f5c842; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #f5c842;
  color: #1a2e3b;
  border-color: #f5c842;
}
.btn-primary:hover {
  background: #e0b430;
  border-color: #e0b430;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,200,66,.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: #1a2e3b;
  transform: translateY(-2px);
}

.btn-dark {
  background: #1a2e3b;
  color: #fff;
  border-color: #1a2e3b;
}
.btn-dark:hover {
  background: #14242f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,46,59,.3);
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: #1a2e3b;
  color: #cdd9e0;
  font-size: 0.82rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: #f5c842; }
.top-bar a:hover { text-decoration: underline; }
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar i { margin-right: 4px; }

/* ---------- Header / Navbar ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.nav-logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu li a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a2e3b;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-menu li a:hover,
.nav-menu li a.active {
  color: #f5c842;
  background: rgba(245,200,66,.08);
}

.nav-menu .dropdown { position: relative; }
.nav-menu .dropdown > a::after {
  content: ' ▾';
  font-size: 0.7rem;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  min-width: 200px;
  padding: 8px 0;
  z-index: 200;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #1a2e3b;
  border-radius: 0;
}
.dropdown-menu li a:hover { background: #f7f8fa; color: #f5c842; }
.dropdown:hover .dropdown-menu { display: block; }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #1a2e3b;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1a2e3b 55%, #243c4e 100%);
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=70') center/cover no-repeat;
  opacity: 0.12;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-text { color: #fff; }
.hero-text .eyebrow { color: #f5c842; }
.hero-text h1 { color: #fff; margin-bottom: 1.2rem; }
.hero-text p { color: #c8d8e2; font-size: 1.05rem; margin-bottom: 1.8rem; }

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.hero-image-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ---------- Booking Strip ---------- */
.booking-strip {
  background: #f5c842;
  padding: 30px 0;
}
.booking-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.booking-strip h3 { color: #1a2e3b; margin-bottom: 0.25rem; }
.booking-strip p { color: #3a3000; margin: 0; }
.booking-strip .btn-dark { flex-shrink: 0; }

/* ---------- Section Headers ---------- */
.section-header { margin-bottom: 50px; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 620px; color: #555; font-size: 1.05rem; }
.section-header.text-center p { margin: 0 auto; }

/* ---------- Feature Cards ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  border: 1px solid #edf0f4;
  transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,.12);
}
.feature-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff8e1;
  color: #f5c842;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.feature-card h4 { margin-bottom: 0.6rem; color: #1a2e3b; }
.feature-card p { font-size: 0.9rem; color: #666; margin: 0; }

/* ---------- Two-Column Split ---------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.12);
}
.split-image img { width: 100%; height: 380px; object-fit: cover; }
.split-content .btn { margin-top: 0.8rem; }
.split-content ul { margin: 1rem 0 1.4rem; }
.split-content ul li {
  padding: 7px 0 7px 28px;
  position: relative;
  color: #444;
  font-size: 0.95rem;
}
.split-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #f5c842;
  font-weight: 700;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: #1a2e3b;
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}
.stat-item h3 {
  font-size: 2.6rem;
  color: #f5c842;
  margin-bottom: 0.3rem;
}
.stat-item p { color: #a8c0cc; margin: 0; font-size: 0.9rem; }

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

.service-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  border: 1px solid #edf0f4;
  transition: transform 0.25s, box-shadow 0.25s;
  background: #fff;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,.13);
}
.service-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover .service-card-image img { transform: scale(1.06); }
.service-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #f5c842;
  color: #1a2e3b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.service-card-body { padding: 28px; }
.service-card-body h3 { margin-bottom: 0.6rem; font-size: 1.2rem; }
.service-card-body p { font-size: 0.9rem; color: #666; margin-bottom: 1.2rem; }
.service-card-body .btn { font-size: 0.82rem; padding: 0.65rem 1.4rem; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  border: 1px solid #edf0f4;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  color: #f5c842;
  opacity: 0.3;
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 20px;
}
.testimonial-stars { color: #f5c842; margin-bottom: 0.8rem; }
.testimonial-text { font-style: italic; color: #555; margin-bottom: 1.2rem; }
.testimonial-author strong { color: #1a2e3b; display: block; }
.testimonial-author span { font-size: 0.82rem; color: #888; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, #f5c842, #e0b430);
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 { color: #1a2e3b; margin-bottom: 1rem; }
.cta-banner p { color: #3a3000; max-width: 560px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-banner .btn-dark { margin: 0 8px; }
.cta-banner .btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid #1a2e3b;
  background: transparent;
  color: #1a2e3b;
  transition: all 0.25s;
}
.cta-banner .btn-outline-dark:hover {
  background: #1a2e3b;
  color: #f5c842;
  transform: translateY(-2px);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #111c25;
  color: #a8c0cc;
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo img { height: 56px; margin-bottom: 1.2rem; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-about p { font-size: 0.88rem; line-height: 1.7; }
.footer-heading {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 0.88rem;
  color: #8fa8b4;
  transition: color 0.2s;
}
.footer-links a:hover { color: #f5c842; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}
.footer-contact-item i { color: #f5c842; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: #8fa8b4; }
.footer-contact-item a:hover { color: #f5c842; }

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #a8c0cc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s;
}
.social-links a:hover { background: #f5c842; color: #1a2e3b; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: #5a7080;
}
.footer-bottom a { color: #8fa8b4; }
.footer-bottom a:hover { color: #f5c842; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, #1a2e3b 60%, #243c4e 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=60') center/cover no-repeat;
  opacity: 0.08;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero p { color: #c0d4de; font-size: 1.1rem; max-width: 620px; margin-bottom: 0; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #7a9aaa;
  margin-bottom: 1rem;
}
.breadcrumb a { color: #f5c842; }
.breadcrumb span { color: #5a7a8a; }

/* ---------- Content Sections ---------- */
.content-section h2 { margin-bottom: 1rem; }
.content-section h3 { margin: 1.8rem 0 0.8rem; color: #1a2e3b; }
.content-section p { color: #555; }
.content-section ul { margin: 0.6rem 0 1.2rem; }
.content-section ul li {
  padding: 6px 0 6px 26px;
  position: relative;
  color: #555;
  font-size: 0.95rem;
}
.content-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #f5c842;
  font-weight: 700;
}

/* ---------- Info Cards (service pages) ---------- */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin: 2rem 0;
}
.info-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  border-left: 4px solid #f5c842;
}
.info-card i { font-size: 1.5rem; color: #f5c842; margin-bottom: 0.8rem; }
.info-card h4 { margin-bottom: 0.4rem; }
.info-card p { margin: 0; font-size: 0.88rem; color: #666; }

/* ---------- Process Steps ---------- */
.steps-list { counter-reset: step; }
.step-item {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  align-items: flex-start;
}
.step-number {
  counter-increment: step;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f5c842;
  color: #1a2e3b;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content h4 { margin-bottom: 0.3rem; }
.step-content p { margin: 0; font-size: 0.92rem; color: #555; }

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid #e5e9ee;
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #1a2e3b;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-question:hover { background: #fafbfc; }
.faq-question i { color: #f5c842; transition: transform 0.3s; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: #555;
  line-height: 1.7;
}

/* ---------- About Page ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.team-card {
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5c842, #e0b430);
  color: #1a2e3b;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.team-card h4 { margin-bottom: 0.2rem; }
.team-card p { font-size: 0.85rem; color: #888; margin: 0; }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff8e1;
  color: #f5c842;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item h4 { margin-bottom: 0.25rem; }
.contact-info-item p, .contact-info-item a { color: #555; font-size: 0.92rem; }
.contact-info-item a:hover { color: #f5c842; }

.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,.09);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a2e3b;
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #dee3ea;
  border-radius: 10px;
  font-size: 0.92rem;
  color: #333;
  font-family: inherit;
  background: #fafbfc;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #f5c842;
  box-shadow: 0 0 0 3px rgba(245,200,66,.15);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; }

/* ---------- Map Section ---------- */
.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}
.map-container iframe { width: 100%; height: 400px; display: block; border: 0; }

/* ---------- Alert / Success ---------- */
.alert {
  padding: 14px 20px;
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  display: none;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert.show { display: block; }

/* ---------- Waste Types (service pages) ---------- */
.waste-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.waste-box {
  border-radius: 14px;
  padding: 24px;
}
.waste-box.accepted { background: #f0faf4; border: 1px solid #b7e4c7; }
.waste-box.rejected { background: #fff5f5; border: 1px solid #fcc2c2; }
.waste-box h4 { margin-bottom: 0.8rem; }
.waste-box.accepted h4 { color: #1a7a3e; }
.waste-box.rejected h4 { color: #c0392b; }
.waste-box ul li {
  padding: 5px 0 5px 22px;
  position: relative;
  font-size: 0.88rem;
  color: #444;
}
.waste-box.accepted ul li::before { content: '✓'; position: absolute; left: 0; color: #27ae60; font-weight: 700; }
.waste-box.rejected ul li::before { content: '✗'; position: absolute; left: 0; color: #e74c3c; font-weight: 700; }

/* ---------- External Link Style ---------- */
.ext-link {
  color: #1a2e3b;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #f5c842;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.ext-link:hover { color: #f5c842; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section-pad { padding: 55px 0; }
  .section-pad-sm { padding: 36px 0; }

  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-image-wrap { display: none; }
  .hero-buttons { justify-content: center; }

  .split-section { grid-template-columns: 1fr; }
  .split-section.reverse { direction: ltr; }
  .split-image { order: -1; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .waste-grid { grid-template-columns: 1fr; }

  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 2000;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .nav-menu.open .dropdown-menu {
    display: block;
    position: static;
    box-shadow: none;
    padding: 4px 0;
  }
  .nav-menu.open .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #1a2e3b;
  }

  .booking-strip .container { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .contact-form { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .top-bar .top-bar-left { display: none; }
}
