/* ========================================
   Jacob Local Tours – Bright African Theme
   ======================================== */

:root {
  /* Bright African palette */
  --green: #1a9b4a;
  --green-dark: #0d6b32;
  --green-light: #2ecc71;
  --yellow: #f4c430;
  --orange: #e67e22;
  --red: #c0392b;
  --earth: #8b5a2b;
  --cream: #faf6ef;
  --sand: #f3e8d0;
  --dark: #1c1c1c;
  --dark-soft: #333;
  --gray: #5a5a5a;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(26, 50, 20, 0.1);
  --shadow-lg: 0 20px 50px rgba(26, 50, 20, 0.14);
  --radius: 18px;
  --transition: 0.28s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 155, 74, 0.35);
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-card {
  width: 100%;
  background: var(--green);
  color: var(--white);
  margin-top: auto;
}

.btn-card:hover {
  background: var(--green-dark);
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 246, 227, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
  padding: 0 12px;
}

.header.scrolled {
  background: rgba(253, 246, 227, 0.98);
  box-shadow: 0 4px 25px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.header .container {
  max-width: none;
  padding: 0;
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.18rem;
  font-weight: 500;
}

.logo-icon {
  font-size: 1.5rem;
}

.logo-text strong {
  color: var(--green);
}

.nav {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark-soft);
  position: relative;
}

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

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

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

.nav-link:last-child {
  background: #25D366;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
}

.nav-link:last-child::after {
  display: none;
}

.nav-link:last-child:hover {
  background: #1da851;
  color: #fff !important;
}

.header-btn {
  padding: 8px 18px;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 90px 0 70px;
  background: linear-gradient(135deg, #0d6b32 0%, #1a9b4a 50%, #c9a227 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.08);
  animation: heroZoom 30s ease-in-out infinite alternate;
  will-change: transform;
  z-index: 0;
  pointer-events: none;
}

@keyframes heroZoom {
  0%   { transform: scale(1.08) translate(0, 0); }
  100% { transform: scale(1.2) translate(-1%, -0.8%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.48) 55%, rgba(0,0,0,0.58) 100%),
    linear-gradient(135deg, rgba(13, 107, 50, 0.32) 0%, rgba(26, 155, 74, 0.18) 45%, rgba(244, 196, 48, 0.12) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 980px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 40px 28px 50px;
}

.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4.2vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 22px;
  text-shadow: 0 3px 28px rgba(0,0,0,0.55);
  letter-spacing: -0.02em;
  max-width: 100%;
  white-space: nowrap;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-sub {
  font-size: clamp(1.05rem, 2.1vw, 1.22rem);
  opacity: 0.95;
  margin: 0 auto 36px;
  max-width: 620px;
  line-height: 1.6;
  text-shadow: 0 1px 14px rgba(0,0,0,0.55);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 0 auto;
}

.hero-buttons .btn {
  min-width: 180px;
  padding: 15px 30px;
  font-size: 1.02rem;
}

/* ========== Sections ========== */
.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--dark);
  margin-bottom: 14px;
}

.section-desc {
  color: var(--gray);
  font-size: 1.05rem;
}

/* ========== Tours / Adventure ========== */
.tours {
  background: var(--cream);
  color: var(--dark);
  padding: 90px 0;
}

.adventure-header {
  text-align: center;
  margin-bottom: 40px;
}

.adventure-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  color: var(--dark);
  font-weight: 700;
}

.tour-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.tour-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 50px;
  border: 2px solid rgba(26, 155, 74, 0.25);
  background: var(--white);
  color: var(--dark-soft);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tour-tab:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.tour-tab.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.tab-icon {
  font-size: 1rem;
}

.tour-panel {
  display: none;
}

.tour-panel.active {
  display: block;
}

.tour-panel-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-lg);
  min-height: 380px;
}

.tour-panel-image {
  position: relative;
  min-height: 320px;
}

.tour-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  background-size: cover;
  background-position: center;
}

.town-img {
  background-image: linear-gradient(to top, rgba(0,0,0,0.35), transparent 45%),
    url('../images/tour-town.jpg');
  background-color: #c4a574;
}

.village-img {
  background-image: linear-gradient(to top, rgba(0,0,0,0.35), transparent 45%),
    url('../images/tour-village.jpg');
  background-color: #8fbc8f;
}

.history-img {
  background-image: linear-gradient(to top, rgba(0,0,0,0.35), transparent 45%),
    url('../images/tour-history.jpg');
  background-color: #d2b48c;
}

.tour-price-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: var(--yellow);
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}

.price-amount {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
}

.price-label {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  opacity: 0.95;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.tour-panel-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-label {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.panel-desc {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.panel-list {
  margin-bottom: 28px;
  list-style: none;
}

.panel-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: var(--dark-soft);
  font-size: 0.95rem;
}

.panel-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.55rem;
  top: 6px;
}

.btn-adventure {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  width: 100%;
  max-width: 320px;
  transition: var(--transition);
}

.btn-adventure:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 155, 74, 0.3);
}

/* Additional services */
.extra-services {
  margin-top: 64px;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--dark);
}

.extra-label {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-align: center;
}

.extra-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 36px;
  text-align: center;
}

.extra-title em {
  font-style: italic;
  color: var(--orange);
  font-weight: 600;
}

.extra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.extra-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.extra-item:hover {
  border-color: rgba(26, 155, 74, 0.35);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.extra-icon {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.extra-item strong {
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.3;
}

.extra-item p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.55;
}

.extra-item.highlight {
  background: var(--green);
  border-color: var(--green);
}

.extra-item.highlight:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.extra-item.highlight strong,
.extra-item.highlight p {
  color: var(--white);
}

.extra-price {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.7rem !important;
  font-weight: 700 !important;
  color: var(--yellow) !important;
  margin: 4px 0 !important;
}

@media (max-width: 1024px) {
  .extra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .tour-panel-inner {
    grid-template-columns: 1fr;
  }

  .tour-panel-image,
  .tour-img-placeholder {
    min-height: 240px;
  }

  .tour-panel-body {
    padding: 28px 22px;
  }
}

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

  .tour-tab {
    flex: 1 1 auto;
    justify-content: center;
    font-size: 0.85rem;
    padding: 10px 14px;
  }

  .btn-adventure {
    max-width: 100%;
  }
}

/* ========== About ========== */
.about {
  background: var(--white);
  color: var(--dark);
  padding: 90px 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 440px;
  background: var(--sand);
  box-shadow: var(--shadow);
}

.about-photo {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-photo-fallback {
  min-height: 440px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--dark);
  background: linear-gradient(145deg, var(--sand), var(--cream));
}

.about-photo-fallback span {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--green-dark);
}

.about-photo-fallback p {
  opacity: 0.6;
  margin-top: 8px;
  font-size: 0.9rem;
}

.about-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--green);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.about-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.about-badge span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-top: 2px;
  opacity: 0.95;
}

.about-copy {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-label {
  color: var(--green);
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 22px;
  line-height: 1.15;
  text-transform: none;
}

.about-copy h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.55rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-copy > p {
  color: var(--gray);
  font-size: clamp(1.05rem, 1.8vw, 1.15rem);
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 540px;
}

.about-copy > p:last-child {
  margin-bottom: 0;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-tags span {
  border: 1.5px solid rgba(26, 155, 74, 0.3);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--green-dark);
  background: rgba(26, 155, 74, 0.06);
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-visual,
  .about-photo,
  .about-photo-fallback {
    min-height: 320px;
  }

  .about-label {
    font-size: 2.2rem;
  }

  .about-copy > p {
    font-size: 1.05rem;
    max-width: 100%;
  }
}

/* ========== Gallery ========== */
.gallery {
  background: var(--white);
  padding: 90px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--sand);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-empty {
  text-align: center;
  color: var(--gray);
  font-size: 1rem;
  padding: 40px 16px;
  display: none;
}

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

/* ========== Contact ========== */
.contact {
  background: #fff;
  color: var(--dark);
  padding: 90px 0 100px;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  color: var(--dark);
  text-align: center;
  margin: 0 auto 40px;
  font-weight: 700;
}

.contact-title span {
  display: inline-block;
  background: #f7f0e4;
  padding: 10px 28px;
  border-radius: 8px;
}

.booking-form {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  max-width: 920px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
  align-items: start;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label,
.field-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #f7f0e4;
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--dark);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a89b8a;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group-message {
  margin-bottom: 0;
}

.tour-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f7f0e4;
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 13px 16px;
  cursor: pointer;
  transition: 0.2s ease;
}

.check-row:hover {
  border-color: rgba(26, 155, 74, 0.3);
}

.check-row:has(input:checked) {
  border-color: var(--green);
  background: rgba(26, 155, 74, 0.1);
}

.check-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
  flex-shrink: 0;
  cursor: pointer;
}

.check-text {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
}

.check-price {
  font-weight: 700;
  color: var(--green);
  font-size: 0.95rem;
}

.btn-select-all {
  margin-top: 10px;
  margin-bottom: 4px;
  background: none;
  border: none;
  color: var(--green);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: inherit;
  padding: 4px 0;
}

.btn-select-all:hover {
  text-decoration: underline;
}

.addon-group {
  margin-top: 8px;
}

.addon-group .addon-row {
  border-style: dashed;
  border-color: rgba(26, 155, 74, 0.25);
}

.total-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--green-dark);
  color: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  margin: 18px 0 8px;
}

.total-box span {
  font-size: 0.9rem;
  opacity: 0.9;
}

.total-box strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.total-note {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 14px;
  min-height: 1.2em;
}

.btn-form {
  width: 100%;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 15px 24px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.btn-form:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 155, 74, 0.3);
}

.btn-form:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  background: var(--green-light);
}

@media (max-width: 800px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .form-group-message {
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .contact-title span {
    padding: 8px 16px;
  }
}
/* ========== Footer ========== */
.footer {
  background: #0f3d24;
  padding: 22px 0;
  text-align: center;
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 90px 0 50px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 64px;
  }

  .nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: flex;
  }

  .header-btn {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 70px;
  }

  .hero h1 {
    white-space: normal;
    font-size: clamp(1.5rem, 6.5vw, 2.2rem);
  }

  .hero-sub {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    justify-content: center;
  }

  .hero-buttons .btn {
    width: 100%;
    min-width: 0;
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .extra-services {
    padding: 28px 20px;
  }

  .extra-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    white-space: normal;
    font-size: 1.45rem;
    line-height: 1.2;
  }

  .hero-tag {
    font-size: 0.8rem;
    padding: 5px 12px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 90px 0 50px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-sub {
    margin-bottom: 18px;
  }
}