/* ==========================================
   KITA PHOTOBOOTH — style.css
   ========================================== */

:root {
  --green: #0F3D2E;
  --green-light: #1a5c44;
  --bg: #F2F1EB;
  --bg-section: #ECEAE2;
  --beige: #E8DCCB;
  --text: #0B0F0E;
  --text-muted: #6b7280;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(15, 61, 46, 0.08);
  --shadow-hover: 0 8px 40px rgba(15, 61, 46, 0.15);
  --max-w: 1100px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* TYPOGRAPHY */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 12px;
}
.section-title.green { color: var(--green); }
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 56px;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 241, 235, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 61, 46, 0.08);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(15,61,46,0.1); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--green);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-logo svg { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--green); }

.btn-booknow {
  background: var(--green);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.btn-booknow:hover { background: var(--green-light); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  background: var(--bg);
  padding: 48px 0 0;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 82vh;
}

.hero-text {
  padding-bottom: 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15,61,46,0.08);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--green);
}

.hero-text p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 36px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green);
  color: var(--white);
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,61,46,0.25);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 26px;
  border-radius: 12px;
  border: 1.5px solid rgba(15,61,46,0.25);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover {
  border-color: var(--green);
  background: rgba(15,61,46,0.04);
}

/* HERO VISUAL */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 0;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  display: block;
  background: #c8b9a4;
}

/* Placeholder fallback */
.hero-img[src="assets/img/hero.jpg"]:not([src*="data"]) {
  min-height: 520px;
  background: linear-gradient(145deg, #c8b9a4 0%, #a89070 100%);
}

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 120px;
  animation: float 4s ease-in-out infinite;
}
.float-card span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.float-top {
  top: 24px;
  right: -24px;
  animation-delay: 0s;
}
.float-bottom {
  bottom: 64px;
  left: -24px;
  animation-delay: 2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================
   SOCIAL PROOF
   ========================================== */
.social-proof {
  padding: 48px 0;
  border-top: 1px solid rgba(15,61,46,0.08);
  border-bottom: 1px solid rgba(15,61,46,0.08);
}
.proof-label {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.proof-logos {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.logo-box {
  width: 100px;
  height: 40px;
  background: var(--beige);
  border-radius: 8px;
  opacity: 0.6;
}

/* ==========================================
   FEATURES
   ========================================== */
.features {
  padding: 96px 0;
  background: var(--bg-section);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.feat-icon {
  width: 52px;
  height: 52px;
  background: rgba(15,61,46,0.06);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================
   PACKAGES
   ========================================== */
.packages {
  padding: 96px 0;
  background: var(--bg);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
}
.pkg-card {
  background: var(--white);
  border: 1.5px solid rgba(15,61,46,0.1);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.pkg-featured {
  background: var(--green);
  border-color: var(--green);
  padding: 40px 32px;
  position: relative;
  transform: scale(1.03);
}
.pkg-featured:hover { transform: scale(1.03) translateY(-4px); }

.pkg-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 50px;
}

.pkg-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.pkg-featured .pkg-header h3 { color: var(--white); }
.pkg-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.pkg-featured .pkg-desc { color: rgba(255,255,255,0.65); }

.pkg-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.pkg-price span {
  font-size: 0.85rem;
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--text-muted);
}
.pkg-featured .pkg-price { color: var(--white); }
.pkg-featured .pkg-price span { color: rgba(255,255,255,0.65); }

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.pkg-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text);
}
.pkg-featured .pkg-features li { color: rgba(255,255,255,0.9); }
.pkg-features li.no { opacity: 0.4; text-decoration: line-through; }

.pkg-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%230F3D2E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
}
.pkg-features li.no::before {
  border-color: var(--text-muted);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}
.pkg-featured .pkg-features li::before {
  border-color: rgba(255,255,255,0.5);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.btn-pkg {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  border: 1.5px solid rgba(15,61,46,0.25);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.btn-pkg:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.btn-pkg-light {
  background: var(--white);
  border-color: var(--white);
  color: var(--green);
}
.btn-pkg-light:hover {
  background: rgba(255,255,255,0.85);
  color: var(--green);
  border-color: var(--white);
}

/* ==========================================
   GALLERY
   ========================================== */
.gallery {
  padding: 96px 0;
  background: var(--bg-section);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--beige);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ==========================================
   PHOTOSTRIPS
   ========================================== */
.photostrips {
  padding: 96px 0;
  background: var(--bg);
}
.strips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.strip-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid rgba(15,61,46,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.strip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.strip-featured {
  border-color: var(--green);
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(15,61,46,0.15);
}
.strip-featured:hover { transform: scale(1.03) translateY(-6px); }

.strip-img {
  width: 100%;
  display: block;
  object-fit: cover;
  min-height: 400px;
}

/* ==========================================
   HOW IT WORKS
   ========================================== */
.how-it-works {
  padding: 96px 0;
  background: var(--white);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 36px);
  right: calc(12.5% + 36px);
  height: 1px;
  background: linear-gradient(to right, var(--green), transparent, var(--green));
  opacity: 0.2;
}
.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(15,61,46,0.1);
}
.step h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.step p {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================
   FAQ
   ========================================== */
.faq {
  padding: 96px 0;
  background: var(--bg-section);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15,61,46,0.08);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  list-style: none;
  user-select: none;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green); }

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }

.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid rgba(15,61,46,0.06);
  padding-top: 16px;
}

/* ==========================================
   LOCATIONS
   ========================================== */
.locations {
  padding: 96px 0;
  background: var(--white);
}
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}
.location-card {
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.location-active {
  background: var(--green);
}
.location-soon {
  background: var(--bg-section);
  border: 2px dashed rgba(15,61,46,0.2);
}

.loc-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  width: fit-content;
}
.loc-badge-soon {
  background: rgba(15,61,46,0.08);
  color: var(--green);
}

.loc-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-icon-soon {
  background: rgba(15,61,46,0.08);
}
.loc-icon-soon svg { stroke: var(--green); }

.location-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.location-card h3 span {
  font-style: italic;
  opacity: 0.85;
}
.location-soon h3 { color: var(--text); }
.location-soon h3 span { color: var(--green); opacity: 1; }

.location-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.location-soon p { color: var(--text-muted); }

.btn-maps {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  width: fit-content;
  transition: background var(--transition);
  margin-top: 4px;
}
.btn-maps:hover { background: rgba(255,255,255,0.25); }
.btn-maps-soon {
  background: rgba(15,61,46,0.08);
  color: var(--green);
  border-color: rgba(15,61,46,0.15);
}
.btn-maps-soon:hover { background: rgba(15,61,46,0.15); }

@media (max-width: 600px) {
  .locations-grid { grid-template-columns: 1fr; }
}


.contact {
  padding: 96px 0;
  background: var(--bg);
}
.contact-card {
  background: var(--bg-section);
  border-radius: 28px;
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 16px;
}
.contact-left > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.ci-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.contact-icon-soon {
  background: rgba(15,61,46,0.15) !important;
}
.ci-soon {
  color: var(--green) !important;
  font-style: italic;
  font-weight: 600 !important;
}
a.ci-value { transition: color var(--transition); }
a.ci-value:hover { color: var(--green); }

/* INQUIRY FORM */
.inquiry-form {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid rgba(15,61,46,0.15);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-submit:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--bg-section);
  border-top: 1px solid rgba(15,61,46,0.1);
  padding: 40px 24px;
  text-align: center;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green);
  margin-bottom: 20px;
}
.footer-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.footer-icons a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-icons a:hover { color: var(--green); }
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 200px); }
  .steps-grid::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 24px; gap: 0; box-shadow: 0 8px 24px rgba(0,0,0,0.08); z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(15,61,46,0.06); }
  .nav-links a { display: block; padding: 14px 0; font-size: 1rem; }
  .nav-toggle { display: flex; }
  .btn-booknow { display: none; }

  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding-top: 40px; padding-bottom: 0; }
  .hero-visual { order: -1; }
  .hero-img { height: 320px; border-radius: 16px; }
  .float-top { top: 12px; right: 12px; }
  .float-bottom { bottom: 20px; left: 12px; }
  .hero-text { padding-bottom: 48px; }

  .features-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .pkg-featured { transform: none; }
  .pkg-featured:hover { transform: translateY(-4px); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 180px); }
  .strips-grid { grid-template-columns: 1fr; }
  .strip-featured { transform: none; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card { grid-template-columns: 1fr; padding: 36px 28px; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-item { height: 220px; }
  .steps-grid { grid-template-columns: 1fr; }
  .proof-logos { gap: 10px; }
  .logo-box { width: 72px; height: 32px; }
}
