/* =============================================
   THE MUNSHI MANSION – Main Stylesheet
   ============================================= */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Open+Sans:wght@400;500;600&display=swap');

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

:root {
  --primary: #c2813a;
  --primary-dark: #a0672d;
  --primary-light: #f5e6d3;
  --text: #1c1917;
  --text-muted: #78716c;
  --bg: #fdf8f3;
  --card: #fff;
  --border: #e7ddd3;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Open Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 20px; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.25; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }

.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { margin-bottom: 12px; }
.section-title p { color: var(--text-muted); max-width: 580px; margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius);
  font-family: var(--sans); font-size: 0.95rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent; transition: all 0.2s;
  text-decoration: none;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.4); backdrop-filter: blur(4px); }
.btn-white:hover { background: rgba(255,255,255,0.25); }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

/* --- Badges --- */
.badge {
  display: inline-block; padding: 4px 10px; border-radius: 99px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.02em;
}
.badge-secondary { background: var(--primary-light); color: var(--primary-dark); }
.badge-outline { background: transparent; border: 1px solid var(--border); color: var(--text-muted); }

/* --- Cards --- */
.card { background: var(--card); border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); overflow: hidden; }

/* --- Header --- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--card); border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; max-width: 1200px; margin: 0 auto;
}
.site-logo { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--primary); }
.site-logo span { display: block; font-size: 0.7rem; font-weight: 400; font-family: var(--sans); color: var(--text-muted); letter-spacing: 0.05em; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 6px 12px; border-radius: 6px; font-size: 0.9rem;
  color: var(--text-muted); font-weight: 500; transition: all 0.15s;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); background: var(--primary-light); }
.header-cta { display: flex; align-items: center; gap: 8px; }
.phone-link { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); transition: color 0.15s; }
.phone-link:hover { color: var(--primary); }

/* Mobile menu */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: var(--text); }
.menu-toggle svg { width: 24px; height: 24px; }
.mobile-nav {
  display: none; flex-direction: column;
  border-top: 1px solid var(--border); padding: 12px 20px;
  background: var(--card);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 10px 4px; font-size: 1rem; color: var(--text); border-bottom: 1px solid var(--border); font-weight: 500; }
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav .btn { margin-top: 12px; justify-content: center; }

@media (max-width: 768px) {
  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
}

/* --- Hero --- */
.hero {
  position: relative; overflow: hidden;
  min-height: 520px; display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.25) 100%); }
.hero-content { position: relative; padding: 80px 20px; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-inner { max-width: 600px; }
.hero-badge { display: inline-block; background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.25); padding: 5px 14px; border-radius: 99px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 16px; backdrop-filter: blur(4px); }
.hero h1 { color: #fff; margin-bottom: 16px; }
.hero p { color: rgba(255,255,255,0.88); font-size: 1.05rem; margin-bottom: 28px; max-width: 500px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* --- Trust Bar --- */
.trust-bar { background: var(--card); border-bottom: 1px solid var(--border); }
.trust-bar .container { padding-top: 20px; padding-bottom: 20px; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon { width: 40px; height: 40px; border-radius: 8px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 20px; height: 20px; color: var(--primary); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.trust-label { font-size: 0.88rem; font-weight: 600; }
.trust-sub { font-size: 0.75rem; color: var(--text-muted); }

/* --- OTA Strip --- */
.ota-strip { background: var(--bg); border-bottom: 1px solid var(--border); }
.ota-strip .container { padding-top: 14px; padding-bottom: 14px; }
.ota-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px; }
.ota-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.ota-links { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.ota-link { font-size: 0.9rem; font-weight: 700; transition: opacity 0.15s; }
.ota-link:hover { opacity: 0.75; }

/* --- Quick Facts --- */
.quick-facts { background: var(--bg); }
.quick-facts .container { padding-top: 24px; padding-bottom: 24px; }
.facts-box { background: var(--primary-light); border: 1px solid rgba(194,129,58,0.2); border-radius: var(--radius); padding: 20px 24px; }
.facts-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 14px; }
.facts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fact-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; }
.fact-item svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* --- Sections --- */
section { padding: 64px 0; }
section.bg-card { background: var(--card); }
section.bg-light { background: var(--bg); }

/* --- Room Cards (Home preview) --- */
.rooms-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.room-card .room-img { position: relative; overflow: hidden; }
.room-card .room-img img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s; }
.room-card:hover .room-img img { transform: scale(1.05); }
.room-card-body { padding: 20px; }
.room-card-body h3 { margin-bottom: 6px; }
.room-card-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 12px; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.room-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.room-price { font-size: 1.15rem; font-weight: 700; color: var(--primary); }
.room-price span { font-size: 0.75rem; font-weight: 400; color: var(--text-muted); }

/* --- About Preview --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-photos img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--radius); }
.about-photos .span2 { grid-column: 1 / -1; }
.about-text .badge { margin-bottom: 16px; }
.about-text h2 { margin-bottom: 16px; }
.about-text p { color: var(--text-muted); margin-bottom: 14px; }
.about-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* --- Testimonials --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card { padding: 24px; }
.quote-icon { color: rgba(194,129,58,0.2); margin-bottom: 12px; }
.testimonial-text { font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; }
.stars { display: flex; gap: 3px; margin-bottom: 6px; }
.stars svg { width: 16px; height: 16px; fill: var(--primary); color: var(--primary); }
.reviewer-name { font-size: 0.9rem; font-weight: 600; }
.reviewer-date { font-size: 0.75rem; color: var(--text-muted); }
.reviews-link { display: block; text-align: center; margin-top: 16px; color: var(--text-muted); font-size: 0.9rem; text-decoration: underline; text-underline-offset: 3px; }
.reviews-link:hover { color: var(--primary); }

/* --- FAQ --- */
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item { padding: 20px; }
.faq-item h3 { margin-bottom: 8px; font-size: 1rem; }
.faq-item p { font-size: 0.88rem; color: var(--text-muted); }

/* --- CTA Section --- */
.cta-section { position: relative; padding: 80px 0; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.65); }
.cta-content { position: relative; text-align: center; max-width: 640px; margin: 0 auto; padding: 0 20px; }
.cta-content h2 { color: #fff; margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.82); margin-bottom: 28px; }
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* --- Page Header (inner pages) --- */
.page-header { background: var(--card); border-bottom: 1px solid var(--border); padding: 56px 0; text-align: center; }
.page-header h1 { margin-bottom: 12px; }
.page-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* --- Rooms Page --- */
.room-detail { margin-bottom: 40px; }
.room-detail-grid { display: grid; grid-template-columns: 1fr 1fr; }
.room-detail-grid.reverse .room-images { order: 2; }
.room-detail-grid.reverse .room-info { order: 1; }
.room-images img:first-child { height: 55%; }
.room-images img:last-child { height: 45%; border-top: 2px solid rgba(194,129,58,0.2); }
.room-images img { width: 100%; object-fit: cover; }
.room-info { padding: 32px 36px; display: flex; flex-direction: column; justify-content: center; }
.room-info .badge { margin-bottom: 12px; }
.room-info h2 { margin-bottom: 10px; }
.room-info .room-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.room-meta { display: flex; gap: 20px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; flex-wrap: wrap; }
.room-meta span { display: flex; align-items: center; gap: 5px; }
.room-meta svg { width: 15px; height: 15px; fill: none; stroke: var(--primary); stroke-width: 2; }
.room-features { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 16px; }
.room-feature { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; }
.room-feature svg { width: 15px; height: 15px; fill: none; stroke: var(--primary); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.room-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 20px; flex-wrap: wrap; gap: 12px; }
.room-footer-price { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.room-footer-price small { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); }
.price-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* --- Common Amenities --- */
.amenities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.amenity-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.amenity-item svg { width: 16px; height: 16px; color: var(--primary); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* --- Booking Info Grid --- */
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-card { padding: 20px; }
.booking-card h3 { margin-bottom: 8px; font-size: 1rem; }
.booking-card p { font-size: 0.875rem; color: var(--text-muted); }

/* --- Gallery --- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 32px; }
.filter-btn {
  padding: 7px 18px; border-radius: 99px; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; border: 2px solid var(--border); background: transparent;
  color: var(--text-muted); transition: all 0.15s; font-family: var(--sans);
}
.filter-btn:hover, .filter-btn.active { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.gallery-grid { columns: 3; gap: 14px; }
.gallery-item { break-inside: avoid; margin-bottom: 14px; cursor: pointer; border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-item img { width: 100%; display: block; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background 0.3s; display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.3); }
.gallery-item-overlay svg { color: #fff; opacity: 0; transition: opacity 0.3s; width: 36px; height: 36px; }
.gallery-item:hover .gallery-item-overlay svg { opacity: 1; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(0,0,0,0.92); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.15); border: none; color: #fff; font-size: 1.6rem; padding: 12px 16px; cursor: pointer; border-radius: 6px; transition: background 0.2s; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.28); }
.lightbox-caption { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.75); font-size: 0.85rem; white-space: nowrap; }

/* --- About Page --- */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card { padding: 28px 24px; text-align: center; }
.value-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.value-icon svg { width: 24px; height: 24px; color: var(--primary); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3 { margin-bottom: 8px; }
.value-card p { font-size: 0.875rem; color: var(--text-muted); }

/* --- Attractions --- */
.attraction-card { margin-bottom: 32px; }
.attraction-grid { display: grid; grid-template-columns: 1fr 1fr; }
.attraction-grid.reverse .attraction-img { order: 2; }
.attraction-grid.reverse .attraction-info { order: 1; }
.attraction-img img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.attraction-info { padding: 32px 36px; }
.attraction-info h2 { margin-bottom: 10px; }
.attraction-meta { display: flex; gap: 20px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 14px; flex-wrap: wrap; }
.attraction-meta span { display: flex; align-items: center; gap: 5px; }
.attraction-meta svg { width: 14px; height: 14px; fill: none; stroke: var(--primary); stroke-width: 2; }
.attraction-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 14px; }
.highlight-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.best-time { font-size: 0.875rem; }
.best-time svg { width: 14px; height: 14px; display: inline; vertical-align: middle; margin-right: 4px; fill: none; stroke: var(--primary); stroke-width: 2; }

/* --- Itineraries --- */
.itinerary-card { padding: 24px; margin-bottom: 20px; }
.itin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 8px; }
.itin-header h3 { font-size: 1.1rem; }
.itin-steps { display: flex; flex-direction: column; gap: 10px; }
.itin-step { display: flex; align-items: flex-start; gap: 12px; font-size: 0.875rem; color: var(--text-muted); }
.step-num { width: 24px; height: 24px; border-radius: 50%; background: var(--primary-light); color: var(--primary); font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }

/* --- Directions --- */
.directions-list { display: flex; flex-direction: column; gap: 16px; }
.direction-card { padding: 20px; }
.direction-card h3 { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 1rem; }
.direction-card h3 svg { width: 16px; height: 16px; fill: none; stroke: var(--primary); stroke-width: 2; stroke-linecap: round; }
.direction-card p { font-size: 0.875rem; color: var(--text-muted); }

/* --- Contact Page --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-form-card { padding: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: 6px;
  font-family: var(--sans); font-size: 0.9rem; color: var(--text); background: var(--bg);
  transition: border-color 0.15s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(194,129,58,0.12); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; }
.form-success { display: none; background: #d1fae5; color: #065f46; padding: 14px; border-radius: 6px; font-size: 0.9rem; margin-bottom: 16px; text-align: center; }

.contact-info-side { display: flex; flex-direction: column; gap: 20px; }
.contact-detail-card { padding: 20px; }
.contact-detail-card h3 { margin-bottom: 14px; font-size: 1rem; }
.contact-detail-list { display: flex; flex-direction: column; gap: 10px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--text-muted); }
.contact-detail-item svg { width: 16px; height: 16px; fill: none; stroke: var(--primary); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
.contact-detail-item a { color: var(--text-muted); transition: color 0.15s; }
.contact-detail-item a:hover { color: var(--primary); }
.quick-info-list { display: flex; flex-direction: column; gap: 6px; font-size: 0.875rem; color: var(--text-muted); }
.whatsapp-card { padding: 20px; background: var(--primary-light); border: 1px solid rgba(194,129,58,0.25); display: flex; align-items: center; gap: 14px; border-radius: var(--radius); cursor: pointer; transition: box-shadow 0.2s; text-decoration: none; }
.whatsapp-card:hover { box-shadow: var(--shadow-md); }
.whatsapp-icon { width: 44px; height: 44px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.whatsapp-icon svg { width: 22px; height: 22px; fill: #fff; }
.whatsapp-text h3 { font-size: 1rem; margin-bottom: 2px; }
.whatsapp-text p { font-size: 0.8rem; color: var(--text-muted); }
.map-card { border-radius: var(--radius); overflow: hidden; }
.map-card iframe { width: 100%; height: 260px; border: 0; display: block; }

/* --- Footer --- */
.site-footer { background: var(--card); border-top: 1px solid var(--border); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr; gap: 32px; margin-bottom: 40px; }
.footer-brand .site-logo { font-size: 1.1rem; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; color: var(--text); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.875rem; color: var(--text-muted); transition: color 0.15s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: 0.8rem; color: var(--text-muted); }
.footer-contact-item svg { width: 14px; height: 14px; fill: none; stroke: var(--primary); stroke-width: 2; stroke-linecap: round; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--text-muted); transition: color 0.15s; }
.footer-contact-item a:hover { color: var(--primary); }
.social-icons { display: flex; gap: 10px; margin-bottom: 20px; }
.social-icon { width: 36px; height: 36px; border-radius: 6px; background: var(--bg); display: flex; align-items: center; justify-content: center; color: var(--text-muted); border: 1px solid var(--border); transition: all 0.15s; font-size: 0.75rem; font-weight: 700; }
.social-icon:hover { color: var(--primary); background: var(--primary-light); border-color: var(--primary); }
.social-icon svg { width: 15px; height: 15px; fill: currentColor; }
.footer-ota-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 10px; }
.footer-ota-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ota-tag { font-size: 0.72rem; font-weight: 700; color: #fff; padding: 4px 10px; border-radius: 99px; transition: opacity 0.15s; }
.ota-tag:hover { opacity: 0.85; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; }
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 44px 0; }
  .hero { min-height: 400px; }
  .hero-content { padding: 56px 20px; }
  .rooms-grid, .testimonials-grid, .about-grid, .contact-grid,
  .room-detail-grid, .attraction-grid, .booking-grid { grid-template-columns: 1fr; }
  .room-detail-grid.reverse .room-images,
  .room-detail-grid.reverse .room-info,
  .attraction-grid.reverse .attraction-img,
  .attraction-grid.reverse .attraction-info { order: unset; }
  .gallery-grid { columns: 2; }
  .facts-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .room-info, .attraction-info { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .ota-links { gap: 12px; }
}
