/* ============================================
   Hotel Nalanda Regency - Main Stylesheet
   Brand Colors:
     Serene Teal:       #003B46
     Classic Sandstone: #C4A584
     Ivory Mist:        #F1F3F4
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;700&display=swap');

:root {
  --teal: #003B46; --teal-light: #005566; --teal-dark: #002A33;
  --gold: #C4A584; --gold-light: #D4BA9A; --gold-dark: #A8876A;
  --ivory: #F1F3F4; --ivory-warm: #F8F5F0;
  --white: #FFFFFF; --black: #1A1A1A; --gray: #6B7280; --gray-light: #E5E7EB;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Lato', 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,59,70,0.08);
  --shadow-md: 0 4px 12px rgba(0,59,70,0.1);
  --shadow-lg: 0 10px 30px rgba(0,59,70,0.15);
  --shadow-xl: 0 20px 50px rgba(0,59,70,0.2);
  --transition: all 0.3s ease; --transition-slow: all 0.5s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--black); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-serif); line-height: 1.3; color: var(--teal); }
h1 { font-size: clamp(2.2rem,5vw,3.5rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem,2.5vw,1.6rem); font-weight: 500; }
p { margin-bottom: 1rem; color: var(--gray); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header .subtitle { font-family: var(--font-sans); color: var(--gold); font-size: 0.95rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; margin-bottom: 0.5rem; }
.section-header p { max-width: 600px; margin: 0 auto; }
.btn { display: inline-block; padding: 0.85rem 2.2rem; font-family: var(--font-sans); font-size: 0.85rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; border: none; cursor: pointer; transition: var(--transition); border-radius: 2px; }
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-white { background: var(--white); color: var(--teal); }
.btn-white:hover { background: var(--ivory); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); transform: translateY(-2px); }

/* HEADER */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: var(--transition-slow); padding: 1rem 0; }
.header.scrolled { background: var(--teal); padding: 0.5rem 0; box-shadow: var(--shadow-lg); }
.header .container { display: flex; align-items: center; justify-content: space-between; }
.logo img { height: 64px; transition: var(--transition); filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08)); }
.header.scrolled .logo img { height: 50px; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-family: var(--font-sans); font-size: 0.8rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--white); position: relative; padding: 0.25rem 0; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--transition); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }
.nav-links .btn { padding: 0.6rem 1.5rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 28px; height: 2px; background: var(--white); transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom,rgba(0,59,70,0.7) 0%,rgba(0,59,70,0.5) 50%,rgba(0,59,70,0.8) 100%); }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 800px; padding: 0 2rem; }
.hero-content .subtitle { font-family: var(--font-sans); font-size: 0.85rem; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.hero-content h1 { color: var(--white); font-size: clamp(2.5rem,6vw,4rem); margin-bottom: 1.5rem; }
.hero-content p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; animation: bounce 2s infinite; }
.hero-scroll span { display: block; width: 24px; height: 38px; border: 2px solid var(--gold); border-radius: 12px; position: relative; }
.hero-scroll span::after { content: ''; width: 4px; height: 8px; background: var(--gold); border-radius: 2px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); animation: scrollDot 2s infinite; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes scrollDot { 0% { opacity:1; top:6px; } 100% { opacity:0; top:20px; } }

/* HERO SLIDER */
.hero-slider { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease; }
.hero-slide.active { opacity: 1; animation: kenburns 8s ease forwards; }
.hero-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom,rgba(0,59,70,0.7) 0%,rgba(0,59,70,0.5) 50%,rgba(0,59,70,0.8) 100%); }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero-dots { position: absolute; bottom: 4.5rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.6rem; z-index: 3; }
.hero-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.35); border: none; padding: 0; cursor: pointer; transition: all 0.3s ease; }
.hero-dot.active { background: var(--gold); transform: scale(1.4); }

/* PAGE HERO */
.page-hero { position: relative; height: 50vh; min-height: 350px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.page-hero .hero-bg::after { background: linear-gradient(to bottom,rgba(0,59,70,0.75),rgba(0,59,70,0.85)); }
.page-hero .hero-content h1 { font-size: clamp(2rem,5vw,3rem); }
.breadcrumb { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1rem; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: var(--gold); }

/* ABOUT */
.about-preview { background: var(--ivory-warm); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image { position: relative; }
.about-image img { border-radius: 4px; box-shadow: var(--shadow-lg); width: 100%; height: 450px; object-fit: cover; }
.about-image .experience-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--gold); color: var(--white); padding: 1.5rem; text-align: center; border-radius: 4px; box-shadow: var(--shadow-md); }
.experience-badge .number { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; line-height: 1; display: block; }
.experience-badge .text { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; }
.about-text .subtitle { color: var(--gold); font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; margin-bottom: 0.5rem; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.about-feature { display: flex; align-items: center; gap: 0.75rem; }
.about-feature .icon { width: 40px; height: 40px; background: var(--teal); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.about-feature span { font-size: 0.9rem; font-weight: 500; color: var(--teal); }

/* ROOMS */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(340px,100%),1fr)); gap: 2rem; }
.room-card { background: var(--white); border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.room-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.room-card .room-image { height: 260px; overflow: hidden; position: relative; }
.room-card .room-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.room-card:hover .room-image img { transform: scale(1.05); }
.room-card .room-tag { position: absolute; top: 1rem; left: 1rem; background: var(--gold); color: var(--white); padding: 0.3rem 0.8rem; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.room-card .room-info { padding: 1.5rem; }
.room-card h3 { margin-bottom: 0.5rem; }
.room-card .room-desc { font-size: 0.9rem; color: var(--gray); margin-bottom: 1rem; }
.room-card .room-amenities { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--gray-light); }
.room-card .room-amenities span { font-size: 0.8rem; color: var(--gray); display: flex; align-items: center; gap: 0.3rem; }
.room-card .room-footer { display: flex; justify-content: space-between; align-items: center; }
.room-card .price { font-family: var(--font-serif); font-size: 1.4rem; color: var(--teal); font-weight: 600; }
.room-card .price small { font-size: 0.75rem; color: var(--gray); font-weight: 400; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 2rem; }
.service-card { text-align: center; padding: 2.5rem 2rem; border: 1px solid var(--gray-light); border-radius: 4px; transition: var(--transition); }
.service-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card .icon { width: 70px; height: 70px; margin: 0 auto 1.5rem; background: var(--ivory-warm); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--gold); transition: var(--transition); }
.service-card:hover .icon { background: var(--teal); color: var(--gold); }
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.service-card p { font-size: 0.9rem; margin-bottom: 0; }

/* CTA BANNER */
.cta-banner { background-color: var(--teal); background-image: url('../images/pattern_primary.png'); background-size: 150px 150px; background-repeat: repeat; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: rgba(0,47,56,0.78); }
.cta-content { position: relative; z-index: 2; text-align: center; padding: 2rem 0; }
.cta-content h2 { color: var(--white); margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 1rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: 4px; cursor: pointer; height: 280px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay { position: absolute; inset: 0; background: rgba(0,59,70,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span { color: var(--white); font-size: 2rem; }

/* TESTIMONIALS */
.testimonials { background: var(--ivory-warm); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(320px,100%),1fr)); gap: 2rem; }
.testimonial-card { background: var(--white); padding: 2rem; border-radius: 4px; box-shadow: var(--shadow-sm); }
.testimonial-card .quote { font-size: 3rem; color: var(--gold); font-family: var(--font-serif); line-height: 1; margin-bottom: 0.5rem; }
.testimonial-card p { font-style: italic; color: var(--gray); margin-bottom: 1.5rem; font-size: 0.95rem; }
.testimonial-card .author { font-weight: 600; color: var(--teal); font-size: 0.9rem; }
.testimonial-card .stars { color: var(--gold); margin-bottom: 1rem; }

/* LOCATION */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.nearby-item { display: flex; align-items: center; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid var(--gray-light); }
.nearby-item .icon { color: var(--gold); font-size: 1.2rem; width: 20px; }
.nearby-item .name { font-weight: 500; color: var(--teal); font-size: 0.9rem; }
.nearby-item .dist { font-size: 0.8rem; color: var(--gray); }
.map-container { border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-md); height: 400px; }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; }
.contact-info-card { background: var(--teal); padding: 2.5rem; border-radius: 4px; color: var(--white); }
.contact-info-card h3 { color: var(--white); margin-bottom: 1.5rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-detail .icon { width: 40px; height: 40px; background: rgba(196,165,132,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-detail .text h4 { color: var(--gold); font-family: var(--font-sans); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.25rem; }
.contact-detail .text p { color: rgba(255,255,255,0.8); margin-bottom: 0; font-size: 0.9rem; }
.contact-form { background: var(--white); padding: 2.5rem; border-radius: 4px; box-shadow: var(--shadow-md); }
.contact-form h3 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--teal); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.8rem 1rem; border: 1px solid var(--gray-light); border-radius: 3px; font-family: var(--font-sans); font-size: 0.9rem; transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,165,132,0.15); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* FOOTER */
.footer { background: var(--teal-dark); color: rgba(255,255,255,0.7); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-about img { height: 90px; margin-bottom: 1rem; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); }
.footer-about p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.footer h4 { color: var(--gold); font-family: var(--font-sans); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer ul li a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.9rem; margin-bottom: 0.6rem; }
.footer-contact li .icon { color: var(--gold); margin-top: 2px; }
.footer-bottom { padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; }
.footer-bottom p { color: rgba(255,255,255,0.5); margin: 0; }
.social-links { display: flex; gap: 0.75rem; }
.social-links a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: var(--transition); }
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* BACK TO TOP & WHATSAPP */
.back-to-top { position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px; background: var(--gold); color: var(--white); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 999; box-shadow: var(--shadow-md); }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--teal); transform: translateY(-3px); }
.whatsapp-float { position: fixed; bottom: 2rem; left: 2rem; z-index: 999; }
.whatsapp-float a { display: flex; align-items: center; gap: 0.5rem; background: #1a7a4a; color: #ffffff; padding: 0.75rem 1.25rem; border-radius: 50px; font-size: 0.85rem; font-weight: 700; box-shadow: 0 4px 12px rgba(0,0,0,0.25); transition: var(--transition); letter-spacing: 0.02em; }
.whatsapp-float a:hover { background: #155f3a; transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.3); }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 9999; display: none; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lightbox .close-btn { position: absolute; top: 1.5rem; right: 1.5rem; color: var(--white); font-size: 2rem; cursor: pointer; background: none; border: none; }

/* ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
/* ── TABLET (992px) ───────────────────────────────── */
@media (max-width: 992px) {
  .nav-links { display: none; }
  .nav-links.active { display: flex; flex-direction: column; position: fixed; top: 0; right: 0; width: 300px; height: 100vh; background: var(--teal-dark); padding: 5rem 2rem 2rem; box-shadow: var(--shadow-xl); gap: 0; z-index: 1100; }
  .nav-links.active a { padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image img { height: 350px; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid[style] { grid-template-columns: repeat(2,1fr) !important; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
}

/* ── LARGE PHONE (768px) ──────────────────────────── */
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2.5rem; }
  .logo img { height: 52px; }
  .header.scrolled .logo img { height: 42px; }

  /* Hero */
  .hero-content p { font-size: 0.95rem; }
  .hero-buttons { gap: 0.75rem; }

  /* Grids */
  .services-grid[style] { grid-template-columns: 1fr !important; }
  .rooms-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }
  .experience-badge { display: none; }

  /* WhatsApp float smaller on tablet/phone */
  .whatsapp-float { bottom: 1.25rem; left: 1.25rem; }
  .whatsapp-float a { padding: 0.65rem 1.1rem; font-size: 0.82rem; }
  .back-to-top { bottom: 1.25rem; right: 1.25rem; }

  /* CTA banner */
  .cta-content { padding: 0.5rem 0; }
  .cta-content h2 { font-size: 1.6rem; }
}

/* ── SMALL PHONE (480px) — Main target: budget Android ── */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 2.5rem 0; }
  .section-header { margin-bottom: 1.75rem; }

  /* Nav */
  .nav-links.active { width: 100%; border-radius: 0; }
  .logo img { height: 44px; }
  .header.scrolled .logo img { height: 36px; }

  /* Hero */
  .hero-content { padding: 0 1rem; }
  .hero-content .subtitle { font-size: 0.75rem; letter-spacing: 3px; }
  .hero-content h1 { font-size: 2rem; margin-bottom: 1rem; }
  .hero-content p { font-size: 0.88rem; margin-bottom: 1.5rem; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-buttons .btn { width: 100%; max-width: 280px; text-align: center; }
  .page-hero { height: 38vh; min-height: 260px; }

  /* Buttons */
  .btn { font-size: 0.78rem; padding: 0.75rem 1.5rem; letter-spacing: 1.5px; }

  /* Rooms */
  .room-card .room-image { height: 200px; }
  .room-card .room-amenities { gap: 0.5rem; }

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

  /* Form inputs – bigger touch targets */
  input, select, textarea { font-size: 16px !important; min-height: 48px; }
  textarea { min-height: 100px; }

  /* CTA */
  .cta-content h2 { font-size: 1.4rem; }
  .cta-content p { font-size: 0.9rem; }
  .cta-content .btn { width: 100%; max-width: 280px; display: block; margin: 0.5rem auto 0; }

  /* Footer */
  .footer-about img { height: 72px; }
  .footer { padding-top: 2.5rem; }

  /* Float buttons */
  .whatsapp-float { bottom: 1rem; left: 1rem; }
  .whatsapp-float a { padding: 0.6rem 0.9rem; font-size: 0.78rem; gap: 0.4rem; }
  .whatsapp-float a i { font-size: 1rem; }
  .back-to-top { bottom: 1rem; right: 1rem; width: 40px; height: 40px; font-size: 1rem; }

  /* Service cards */
  .service-card { padding: 1.75rem 1.25rem; }

  /* Testimonials */
  .testimonial-card { padding: 1.5rem; }

  /* Location / contact info */
  .info-item { gap: 0.75rem; }
}

/* ── EXTRA SMALL (360px) — entry-level phones ─── */
@media (max-width: 360px) {
  html { font-size: 15px; }
  .container { padding: 0 0.875rem; }
  .hero-content h1 { font-size: 1.75rem; }
  .nav-links.active { padding: 4rem 1.25rem 1.5rem; }
}
