/* ==========================================================================
   BANDIRMA APART (bandirmaapart.com.tr)
   Modern, Özgün & Dinamik Tipografi & Tasarım Sistemi
   Font: Outfit (Başlıklar) + Plus Jakarta Sans (Gövde)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Renk Paleti - Canlı, Güven Veren, Modern */
  --bg-main: #fcfbfa;
  --bg-elevated: #ffffff;
  --bg-subtle: #f4f2ee;
  --bg-dark: #111a18;
  --bg-dark-surface: #182422;
  
  --primary: #15332c;       /* Koyu Zümrüt / Gece Ormanı */
  --primary-light: #1f473e;
  --accent: #d97724;        /* Sıcak Amber / Terrakotta */
  --accent-hover: #be6317;
  --accent-soft: #fef5ee;
  
  --whatsapp: #25D366;
  --whatsapp-hover: #1eb956;
  --call-blue: #0284c7;
  
  --text-title: #0f1c19;
  --text-body: #4a5c57;
  --text-light: #7c8e89;
  --border: #e6e2d8;
  --border-light: #f0ece4;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 9999px;

  --shadow-sm: 0 2px 8px rgba(21, 51, 44, 0.04);
  --shadow-md: 0 10px 30px -4px rgba(21, 51, 44, 0.08);
  --shadow-lg: 0 20px 45px -10px rgba(21, 51, 44, 0.12);
  --shadow-wa: 0 10px 25px rgba(37, 211, 102, 0.35);

  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1220px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-main);
  line-height: 1.68;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 74px; /* Mobil alt bar mesafesi */
  }
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Tipografi - Outfit */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-title);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

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

/* ==========================================================================
   Header & Menü
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(252, 251, 250, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}

.brand-badge-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.brand-text-group strong {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-title);
  letter-spacing: -0.03em;
  display: block;
  line-height: 1.1;
}

.brand-text-group strong span {
  color: var(--accent);
}

.brand-text-group small {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-item {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-title);
  position: relative;
  padding: 6px 0;
}

.nav-item:hover, .nav-item.active {
  color: var(--accent);
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2.5px;
  background: var(--accent);
  border-radius: var(--radius-pill);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Butonlar */
.btn-solid-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 4px 14px rgba(21, 51, 44, 0.2);
  transition: var(--transition);
}

.btn-solid-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-solid-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.96rem;
  box-shadow: 0 6px 20px rgba(217, 119, 36, 0.35);
  transition: var(--transition);
}

.btn-solid-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-solid-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: #ffffff;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.94rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.28);
  transition: var(--transition);
}

.btn-solid-wa:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-outline-soft {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-elevated);
  color: var(--text-title);
  border: 1px solid var(--border);
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.btn-outline-soft:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  background: var(--bg-subtle);
  padding: 10px;
  border-radius: var(--radius-xs);
  color: var(--text-title);
}

/* ==========================================================================
   Hero Bölümü - Modern, Dinamik & Dikkat Çekici
   ========================================================================== */
.hero-wrapper {
  padding: 40px 0 60px 0;
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(217, 119, 36, 0.25);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #16a34a;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.2);
}

.hero-main-title {
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--text-title);
  margin-bottom: 22px;
}

.hero-main-title span {
  color: var(--accent);
}

.hero-lead-text {
  font-size: 1.15rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-quick-perks {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.hero-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-title);
}

.hero-perk svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Hero Görsel Vitrini */
.hero-image-display {
  position: relative;
}

.hero-main-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  height: 500px;
}

.hero-main-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-main-img-card:hover img {
  transform: scale(1.03);
}

.hero-card-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(17, 26, 24, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card-tag strong {
  font-size: 1.05rem;
  display: block;
}

.hero-card-tag span {
  font-size: 0.82rem;
  color: #cbd5e1;
}

/* ==========================================================================
   Hızlı Fiyat Teklifi / Rezervasyon Şeridi
   ========================================================================== */
.strip-container {
  margin-top: -30px;
  position: relative;
  z-index: 20;
}

.quick-strip-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: 22px 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 20px;
  align-items: center;
}

.strip-field {
  display: flex;
  flex-direction: column;
}

.strip-label {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.strip-input-elem {
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-title);
  outline: none;
  width: 100%;
}

/* ==========================================================================
   Genel Bölüm Stilleri
   ========================================================================== */
.content-section {
  padding: 85px 0;
}

.content-section-light {
  background-color: var(--bg-subtle);
}

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

.section-tagline {
  display: inline-block;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.6rem;
  margin-bottom: 14px;
}

.section-intro {
  font-size: 1.08rem;
  color: var(--text-body);
}

/* ==========================================================================
   2-3 Kişilik Odalar GENEL Anlatım Bölümü (Odaları Ayırmadan Genel Yazı)
   ========================================================================== */
.rooms-overview-box {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 44px;
  margin-bottom: 50px;
}

.rooms-overview-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.rooms-overview-text h3 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.rooms-overview-text p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 16px;
}

.rooms-feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px 0;
}

.chip-item {
  background: var(--bg-subtle);
  color: var(--text-title);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
}

.rooms-visual-stack {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
}

.rooms-visual-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Modern Fotoğraf Galerisi
   ========================================================================== */
.gallery-masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-tile {
  position: relative;
  height: 250px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: block;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-tile-hover {
  position: absolute;
  inset: 0;
  background: rgba(17, 26, 24, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-tile-btn {
  background: #ffffff;
  color: var(--text-title);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

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

.gallery-tile:hover .gallery-tile-hover {
  opacity: 1;
}

/* ==========================================================================
   Apartımız Bandırma Merkezde - Hikaye & Konum Anlatımı
   ========================================================================== */
.story-split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.story-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 440px;
  position: relative;
}

.story-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-text-wrap h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.story-text-wrap p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 18px;
}

.story-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 26px 0 32px 0;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-title);
  font-size: 0.95rem;
}

.check-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ==========================================================================
   Kurumsal & İşçi Konaklama Banner'ı
   ========================================================================== */
.corporate-banner-wrap {
  background: var(--bg-dark);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  margin-bottom: 70px;
}

.corporate-banner-wrap h2 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.corporate-banner-wrap p {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.7;
}

.corporate-actions-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.corporate-actions-col .btn-solid-accent, 
.corporate-actions-col .btn-solid-wa {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* ==========================================================================
   Ulaşım ve Mesafeler
   ========================================================================== */
.travel-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}

.travel-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.travel-badge {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  white-space: nowrap;
}

.travel-info h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.travel-info p {
  font-size: 0.88rem;
  color: var(--text-body);
}

.map-container-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  height: 420px;
}

.map-container-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ==========================================================================
   S.S.S. Accordion
   ========================================================================== */
.faq-stack {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-element {
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-element.active {
  border-color: var(--accent);
}

.faq-header-btn {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.08rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-title);
  text-align: left;
}

.faq-header-btn:hover {
  color: var(--accent);
}

.faq-arrow {
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-element.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-content-pane {
  display: none;
  padding: 0 28px 24px 28px;
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.7;
  border-top: 1px solid var(--border-light);
  padding-top: 18px;
}

.faq-element.active .faq-content-pane {
  display: block;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--bg-dark);
  color: #94a3b8;
  padding: 75px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand-col p {
  color: #94a3b8;
  font-size: 0.94rem;
  line-height: 1.65;
  margin-top: 16px;
  max-width: 320px;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.08rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-nav-links li {
  margin-bottom: 12px;
}

.footer-nav-links a {
  color: #94a3b8;
  font-size: 0.93rem;
}

.footer-nav-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact-items li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.93rem;
}

.footer-contact-items svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-contact-items a {
  color: #e2e8f0;
}

.footer-legal-bar {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.86rem;
}

/* ==========================================================================
   Mobilde Sabit Alt Eylem Barı
   ========================================================================== */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  gap: 10px;
}

.mobile-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: var(--radius-xs);
  font-weight: 700;
  font-size: 0.94rem;
  color: #ffffff;
}

.m-call { background: var(--primary); }
.m-whatsapp { background: var(--whatsapp); }
.m-maps { background: var(--accent); }

/* Floating WhatsApp */
.whatsapp-floater {
  position: fixed;
  bottom: 84px;
  right: 20px;
  z-index: 998;
  background: var(--whatsapp);
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: var(--shadow-wa);
  transition: var(--transition);
  animation: pulse-glow 2.5s infinite;
}

.whatsapp-floater svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.whatsapp-floater:hover {
  background: var(--whatsapp-hover);
  transform: scale(1.05);
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Lightbox Modal */
.lightbox-frame {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(17, 26, 24, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.lightbox-frame.open {
  display: flex;
}

.lightbox-img-render {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-exit {
  position: absolute;
  top: 24px;
  right: 28px;
  color: #ffffff;
  font-size: 2.4rem;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.lightbox-arrow-left { left: 24px; }
.lightbox-arrow-right { right: 24px; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-main-img-card { height: 400px; }
  .quick-strip-card { grid-template-columns: 1fr 1fr; }
  .rooms-overview-grid { grid-template-columns: 1fr; }
  .travel-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .corporate-banner-wrap { grid-template-columns: 1fr; }
  .story-split-grid { grid-template-columns: 1fr; }
  .footer-columns-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-inner { height: 70px; }
  .mobile-menu-btn { display: block; }
  .main-navigation {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    border-bottom: 2px solid var(--accent);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .main-navigation.open { transform: translateY(0); }
  .header-actions { display: none; }
  .hero-main-title { font-size: 2.4rem; }
  .quick-strip-card { grid-template-columns: 1fr; padding: 20px; }
  .rooms-overview-box { padding: 24px; }
  .gallery-masonry-grid { grid-template-columns: 1fr 1fr; }
  .travel-cards-grid { grid-template-columns: 1fr; }
  .story-checks { grid-template-columns: 1fr; }
  .footer-columns-grid { grid-template-columns: 1fr; gap: 30px; }
  .whatsapp-floater { bottom: 82px; right: 14px; padding: 10px 14px; }
  .whatsapp-floater span { display: none; }
  .mobile-action-bar { display: flex; }
}

@media (max-width: 480px) {
  .gallery-masonry-grid { grid-template-columns: 1fr; }
}
