/* ===========================================
   Ndrit Cleaning — Luxury dark theme
   =========================================== */

:root {
  --bg: #0a0d10;
  --bg-2: #11151a;
  --bg-3: #161b22;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #e8ecef;
  --text-soft: #b6bcc4;
  --text-mute: #8a9099;
  --accent: #2dd4bf;        /* teal from logo */
  --accent-2: #14b8a6;
  --accent-soft: rgba(45, 212, 191, 0.15);
  --gold: #d4b88a;          /* warm luxury accent */
  --shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
  --radius: 14px;
  --radius-sm: 8px;
  --maxw: 1240px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ===========================================
   Typography
   =========================================== */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 14px;
  border: 1px solid var(--accent-soft);
  border-radius: 100px;
  background: var(--accent-soft);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  color: #fff;
}

.section-sub {
  font-size: 17px;
  color: var(--text-soft);
  max-width: 640px;
}

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ===========================================
   Buttons
   =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #0a0d10;
  font-weight: 600;
  box-shadow: 0 10px 30px -10px rgba(45, 212, 191, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px -10px rgba(45, 212, 191, 0.6);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: var(--border-strong);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent);
}

.btn-block { width: 100%; }

/* ===========================================
   Header / Nav
   =========================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(10, 13, 16, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

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

.logo-link { display: flex; align-items: center; }
.logo-img { height: 44px; width: auto; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-desktop a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  position: relative;
}

.nav-desktop a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-desktop a:not(.nav-cta):hover { color: #fff; }
.nav-desktop a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  padding: 10px 22px;
  border: 1px solid var(--accent);
  color: var(--accent) !important;
  border-radius: 100px;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--accent);
  color: #0a0d10 !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
}
.lang-btn {
  color: var(--text-mute);
  padding: 4px 6px;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.lang-btn.active { color: var(--accent); }
.lang-btn:hover { color: #fff; }
.lang-divider { color: var(--text-mute); opacity: 0.5; }

.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 20px 28px;
  background: rgba(10, 13, 16, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}
.nav-mobile a {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--text-soft);
}
.nav-mobile a:last-child { border-bottom: none; color: var(--accent); }
.nav-mobile.open { display: flex; }

/* ===========================================
   Hero
   =========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1920&q=80') center/cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 13, 16, 0.92) 0%, rgba(10, 13, 16, 0.7) 50%, rgba(10, 13, 16, 0.85) 100%),
    radial-gradient(ellipse at top right, rgba(45, 212, 191, 0.18), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(212, 184, 138, 0.08), transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding-bottom: 120px;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 24px 0 28px;
}
.hero-title .line-1 {
  display: block;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  color: #fff;
}
.hero-title .line-2 {
  display: block;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  margin-top: 8px;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-soft);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.feature-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.feature-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}
.feat svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ===========================================
   Sections base
   =========================================== */
.section {
  padding: 120px 0;
  position: relative;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ===========================================
   About
   =========================================== */
.about { background: var(--bg-2); }

.about p {
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 18px;
  line-height: 1.8;
}
.about strong { color: var(--text); font-weight: 500; }

.col-image {
  position: relative;
}
.image-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  z-index: 2;
  box-shadow: var(--shadow);
}
.image-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.image-frame-accent {
  position: absolute;
  top: 30px; right: -30px;
  width: 100%; height: 100%;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  z-index: 1;
}

.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-mute);
  letter-spacing: 0.02em;
}

/* ===========================================
   Services
   =========================================== */
.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-soft);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5), 0 0 30px -10px rgba(45, 212, 191, 0.2);
}

.service-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img img { transform: scale(1.06); }

.service-num {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(10, 13, 16, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.service-body {
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-body h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
}
.service-tag {
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}
.service-body > p {
  color: var(--text-soft);
  font-size: 15px;
  margin-bottom: 22px;
  line-height: 1.7;
}

.service-list {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: auto;
}
.service-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 14px;
  color: var(--text-soft);
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 12px; height: 1.5px;
  background: var(--accent);
}

.extra-services {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.extra-services h4 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 500;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.chip {
  padding: 10px 20px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-soft);
  background: var(--surface);
  transition: all 0.3s;
}
.chip:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

/* ===========================================
   Why Us
   =========================================== */
.why { background: var(--bg-2); }

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

.why-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.why-card:hover {
  border-color: var(--accent-soft);
  background: var(--bg-3);
  transform: translateY(-4px);
}
.why-card:hover::before { transform: translateX(0); }

.why-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.why-icon svg { width: 26px; height: 26px; }

.why-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.why-card p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}

/* ===========================================
   Results / Gallery
   =========================================== */
.results { background: var(--bg); }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 20px;
  margin-bottom: 100px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 22px 18px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), transparent);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.testimonials {
  text-align: center;
  padding-top: 80px;
  border-top: 1px solid var(--border);
}
.testimonials h3 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 50px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}
.testimonial {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px; left: 22px;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
}
.testimonial p {
  font-style: italic;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.testimonial footer {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.testimonial footer strong {
  display: block;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
}
.testimonial footer span {
  font-size: 13px;
  color: var(--text-mute);
}

/* ===========================================
   Booking
   =========================================== */
.book { background: var(--bg-2); }

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
}
.contact-card:hover {
  border-color: var(--accent);
  background: var(--bg-3);
  transform: translateX(4px);
}
.contact-card svg {
  width: 24px; height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-card div { display: flex; flex-direction: column; gap: 2px; }
.cc-label {
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.cc-val {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}

/* Form */
.booking-form {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.booking-form h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 28px;
  font-weight: 500;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.booking-form label {
  display: block;
  margin-bottom: 16px;
}
.booking-form label span {
  display: block;
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.2s;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-2);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.booking-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23b6bcc4' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.booking-form textarea { resize: vertical; min-height: 100px; }

.form-note {
  font-size: 12px;
  color: var(--text-mute);
  text-align: center;
  margin-top: 14px;
}

/* Field-level errors */
.field { position: relative; }
.field-error {
  display: none;
  font-size: 12px;
  color: #ff7a7a;
  margin-top: 6px;
  letter-spacing: 0.01em;
}
.field.invalid .field-error { display: block; }
.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: #ff7a7a;
  box-shadow: 0 0 0 3px rgba(255, 122, 122, 0.12);
}

/* Submit button states */
#submitBtn { position: relative; }
.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(10, 13, 16, 0.25);
  border-top-color: #0a0d10;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
#submitBtn.loading .btn-label { opacity: 0.6; }
#submitBtn.loading .btn-spinner { display: inline-block; }
#submitBtn:disabled { cursor: wait; opacity: 0.85; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Form status (success / error) */
.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid transparent;
}
.form-status.show { display: block; animation: fade-in 0.3s ease; }
.form-status.success {
  background: rgba(45, 212, 191, 0.10);
  border-color: var(--accent-soft);
  color: var(--accent);
}
.form-status.error {
  background: rgba(255, 122, 122, 0.08);
  border-color: rgba(255, 122, 122, 0.3);
  color: #ff9a9a;
}
.form-status a {
  color: inherit;
  text-decoration: underline;
  font-weight: 600;
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================================
   Footer
   =========================================== */
.site-footer {
  background: #06080a;
  border-top: 1px solid var(--border);
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
}
.footer-logo { height: 44px; margin-bottom: 18px; }
.foot-col p { color: var(--text-mute); font-size: 14px; line-height: 1.7; }
.foot-col h4 {
  font-family: var(--serif);
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 18px;
  font-weight: 500;
}
.foot-col a {
  display: block;
  color: var(--text-mute);
  font-size: 14px;
  padding: 4px 0;
}
.foot-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  font-size: 13px;
  color: var(--text-mute);
  text-align: center;
}

/* ===========================================
   Floating WhatsApp
   =========================================== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 99;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  animation: wa-pulse 2.5s infinite;
  transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* ===========================================
   Reveal animations
   =========================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================
   Responsive
   =========================================== */
@media (max-width: 1024px) {
  .services-grid,
  .why-grid,
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item-large { grid-column: span 2; grid-row: span 1; }
  .gallery-item { aspect-ratio: 4/3; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .two-col { grid-template-columns: 1fr; gap: 60px; }
  .image-frame img { height: 480px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }

  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }
  .nav-cta { display: none; }

  .hero { min-height: 90vh; padding-top: 110px; }
  .hero-content { padding-bottom: 180px; }
  .feature-strip-inner { justify-content: flex-start; gap: 20px; }
  .feat { font-size: 12px; }
  .feat svg { width: 18px; height: 18px; }

  .stats-row { gap: 24px; flex-wrap: wrap; }
  .stat-num { font-size: 2rem; }

  .services-grid,
  .why-grid,
  .testimonial-grid { grid-template-columns: 1fr; }

  .gallery { grid-template-columns: 1fr; }
  .gallery-item-large { grid-column: span 1; }

  .booking-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }

  .image-frame img { height: 400px; }
  .image-frame-accent { display: none; }

  .wa-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .wa-float svg { width: 26px; height: 26px; }
}

@media (max-width: 480px) {
  .hero-cta-row { flex-direction: column; width: 100%; }
  .btn { width: 100%; }
  .feature-strip-inner { gap: 14px; }
  .feat { font-size: 11px; }
}
