/* =============================================
   GRAND PALACE HOTEL — Design System
   Palette: Deep Navy, Warm Gold, Ivory, Charcoal
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Cormorant+Garamond:wght@300;400;500&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --navy:      #0B1C2E;
  --navy-mid:  #12294A;
  --gold:      #C9A84C;
  --gold-lt:   #E8C97A;
  --ivory:     #F6F1E9;
  --ivory-dk:  #EDE5D4;
  --charcoal:  #2C3140;
  --white:     #FFFFFF;
  --grey:      #8A8E9C;
  --transition: 0.4s cubic-bezier(.25,.8,.25,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ──────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

.display-serif { font-family: 'Cormorant Garamond', serif; font-weight: 300; }

/* ── NAVBAR ──────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  background: transparent;
  transition: background var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(11,28,46,0.97);
  padding: 0.8rem 5%;
  backdrop-filter: blur(10px);
}

.nav-logo {
  display: flex; flex-direction: column; line-height: 1;
  text-decoration: none;
}
.nav-logo .logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.nav-logo .logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.55rem; font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.25em; text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  position: relative; padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  padding: 0.55rem 1.4rem !important; font-weight: 600 !important;
  border-radius: 2px;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; color: var(--navy) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white); transition: var(--transition);
}

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1920&q=80');
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(11,28,46,0.75) 0%, rgba(11,28,46,0.55) 60%, rgba(11,28,46,0.8) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 800px; padding: 0 2rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400; color: var(--white);
  line-height: 1.08; margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--gold-lt); }

.hero-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.8); font-weight: 300;
  margin-bottom: 2.5rem; line-height: 1.7;
}

.hero-rating {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(201,168,76,0.3);
  padding: 0.5rem 1.2rem; border-radius: 50px;
  margin-bottom: 2.5rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.85);
}
.hero-stars { color: var(--gold); letter-spacing: 2px; }

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 0.9rem 2.4rem; font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  border: none; cursor: pointer; text-decoration: none;
  display: inline-block; border-radius: 2px;
  transition: background var(--transition), transform 0.2s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn-outline {
  background: transparent; color: var(--white);
  padding: 0.9rem 2.4rem; font-size: 0.8rem;
  font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5); cursor: pointer; text-decoration: none;
  display: inline-block; border-radius: 2px;
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.1); }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); animation: fadeInUp 1s 1.5s both;
}
.scroll-line {
  width: 1px; height: 40px; background: rgba(201,168,76,0.6);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.4; }
}

/* ── BOOKING BAR ─────────────────────────────── */
.booking-bar {
  background: var(--navy);
  padding: 1.5rem 5%;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.booking-bar input, .booking-bar select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--white); padding: 0.7rem 1rem;
  font-family: 'Jost', sans-serif; font-size: 0.82rem;
  border-radius: 2px; outline: none;
  transition: border-color var(--transition);
  min-width: 160px;
}
.booking-bar input:focus, .booking-bar select:focus {
  border-color: var(--gold);
}
.booking-bar input::placeholder { color: rgba(255,255,255,0.4); }
.booking-bar select option { background: var(--navy); }

.booking-bar .btn-primary { white-space: nowrap; }

/* ── SECTION COMMONS ─────────────────────────── */
section { padding: 6rem 5%; }

.section-label {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; color: var(--navy);
  line-height: 1.2; margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }

.section-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: var(--grey);
  line-height: 1.8; max-width: 560px;
}

.divider-gold {
  width: 48px; height: 2px; background: var(--gold);
  margin: 1.5rem 0;
}

/* ── STATS BAR ───────────────────────────────── */
.stats-bar {
  background: var(--ivory-dk);
  padding: 3rem 5%;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2rem; text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 700; color: var(--navy);
  line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--grey); margin-top: 0.4rem;
}

/* ── ABOUT ───────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  max-width: 1200px; margin: 0 auto;
}

.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  display: block;
}
.about-img-accent {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 55%; aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--ivory);
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}
.about-badge {
  position: absolute; top: 2rem; left: -1.5rem;
  background: var(--gold); color: var(--navy);
  padding: 1rem 1.2rem; text-align: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.about-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; display: block;
}
.about-badge .label { font-size: 0.6rem; letter-spacing: 0.2em; font-weight: 600; }

/* ── SERVICES / FEATURES ─────────────────────── */
.services-section { background: var(--navy); }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 3rem;
}

.service-card {
  background: var(--navy-mid);
  padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: background var(--transition);
  cursor: default;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { background: rgba(201,168,76,0.08); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 2rem; margin-bottom: 1.2rem; display: block;
}
.service-card h3 {
  font-size: 1.2rem; color: var(--white);
  margin-bottom: 0.8rem;
}
.service-card p {
  font-size: 0.88rem; color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ── ROOMS ───────────────────────────────────── */
.rooms-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem;
}

.room-card {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  overflow: hidden; border-radius: 2px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.room-img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.room-card:hover .room-img { transform: scale(1.04); }
.room-img-wrap { overflow: hidden; }

.room-info { padding: 1.5rem; }
.room-tag {
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 0.5rem; display: block;
}
.room-info h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 0.6rem; }
.room-info p { font-size: 0.85rem; color: var(--grey); line-height: 1.6; margin-bottom: 1.2rem; }

.room-meta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  font-size: 0.75rem; color: var(--grey);
  margin-bottom: 1.2rem; padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--ivory-dk);
}
.room-meta span { display: flex; align-items: center; gap: 4px; }

.room-price {
  display: flex; align-items: baseline; gap: 4px;
  font-family: 'Playfair Display', serif;
}
.room-price .amount { font-size: 1.6rem; font-weight: 700; color: var(--navy); }
.room-price .per { font-size: 0.75rem; color: var(--grey); font-family: 'Jost',sans-serif; }

.room-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.5rem; background: var(--ivory);
}
.btn-sm {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--transition);
}
.btn-sm:hover { gap: 10px; }

/* ── GALLERY ─────────────────────────────────── */
.gallery-section { background: var(--charcoal); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 4px; margin-top: 3rem;
}
.gallery-item {
  overflow: hidden; position: relative;
}
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(11,28,46,0);
  transition: background var(--transition);
}
.gallery-item:hover::after { background: rgba(11,28,46,0.3); }

/* ── TESTIMONIALS ────────────────────────────── */
.testimonials-section { background: var(--ivory-dk); text-align: center; }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3.5rem;
}
.testimonial-card {
  background: var(--white); padding: 2.5rem 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem; color: var(--gold); opacity: 0.2;
  position: absolute; top: 0.5rem; left: 1.5rem;
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; color: var(--charcoal);
  line-height: 1.8; margin-bottom: 1.5rem;
}
.testimonial-author { font-size: 0.78rem; font-weight: 600; color: var(--navy); }
.testimonial-origin { font-size: 0.72rem; color: var(--grey); margin-top: 2px; }

/* ── CTA BANNER ──────────────────────────────── */
.cta-banner {
  background: var(--navy);
  padding: 5rem 5%;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.cta-banner h2 { font-size: clamp(2rem,4vw,3rem); color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-banner p { font-family: 'Cormorant Garamond',serif; font-size: 1.2rem; color: rgba(255,255,255,0.65); margin-bottom: 2.5rem; position: relative; }
.cta-phone { font-size: 1.8rem; font-family: 'Playfair Display',serif; color: var(--gold); display: block; margin-bottom: 2rem; position: relative; }

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: #070F1A; color: rgba(255,255,255,0.55);
  padding: 4rem 5% 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .logo-main { color: var(--gold); font-family:'Playfair Display',serif; font-size:1.3rem; }
.footer-brand .logo-sub { font-size:0.5rem; letter-spacing:0.25em; color:rgba(255,255,255,0.3); }
.footer-brand p { margin-top:1rem; font-size:0.83rem; line-height:1.7; max-width:260px; }

.footer-col h4 {
  font-size:0.65rem; letter-spacing:0.25em; text-transform:uppercase;
  color:var(--gold); margin-bottom:1.2rem; font-family:'Jost',sans-serif;
}
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:0.7rem; }
.footer-col ul li a { font-size:0.83rem; color:rgba(255,255,255,0.5); text-decoration:none; transition:color var(--transition); }
.footer-col ul li a:hover { color:var(--gold); }

.footer-contact p { font-size:0.83rem; margin-bottom:0.7rem; line-height:1.6; }
.footer-contact a { color:rgba(255,255,255,0.5); text-decoration:none; transition:color var(--transition); }
.footer-contact a:hover { color:var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem;
  flex-wrap: wrap; gap: 1rem;
}
.social-links { display:flex; gap:1rem; }
.social-links a {
  width:32px; height:32px; border:1px solid rgba(255,255,255,0.15);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,0.5); text-decoration:none; font-size:0.8rem;
  transition: border-color var(--transition), color var(--transition);
}
.social-links a:hover { border-color:var(--gold); color:var(--gold); }

/* ── ROOMS PAGE ──────────────────────────────── */
.page-hero {
  height: 55vh; min-height: 380px;
  display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
  padding: 0 5% 3.5rem;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,28,46,0.95) 0%, rgba(11,28,46,0.3) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content .section-label { margin-bottom: 0.5rem; }
.page-hero-content h1 { font-size: clamp(2.5rem,5vw,4rem); color:var(--white); }

.rooms-filter {
  background: var(--white); padding: 1.5rem 5%;
  display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: sticky; top: 72px; z-index: 100;
}
.filter-btn {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.5rem 1.2rem; border: 1px solid var(--ivory-dk);
  background: transparent; cursor: pointer; border-radius: 2px;
  color: var(--grey); transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}

.rooms-full-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem; max-width: 1200px; margin: 3rem auto 0;
}

.room-card-lg { background: var(--white); overflow: hidden; box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.room-card-lg .room-img { aspect-ratio: 16/9; }

/* ── AMENITIES PAGE ──────────────────────────── */
.amenities-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem;
}

.amenity-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--ivory-dk);
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition);
}
.amenity-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.amenity-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.amenity-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.6rem; }
.amenity-card p { font-size: 0.85rem; color: var(--grey); line-height: 1.7; }

.amenities-feature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin: 5rem 0;
  min-height: 500px;
  overflow: hidden;
}
.amenities-feature-img {
  background-image: url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?auto=format&fit=crop&w=900&q=80');
  background-size: cover; background-position: center;
}
.amenities-feature-content {
  background: var(--navy); padding: 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.amenities-feature-content .section-title { color: var(--white); }
.amenities-feature-content .section-desc { color: rgba(255,255,255,0.6); }
.amenities-list { margin-top: 2rem; list-style: none; }
.amenities-list li {
  padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.88rem; color: rgba(255,255,255,0.75);
  display: flex; align-items: center; gap: 0.8rem;
}
.amenities-list li::before { content: '—'; color: var(--gold); }

/* ── BOOKING PAGE ────────────────────────────── */
.booking-section { background: var(--ivory-dk); }

.booking-container {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: start;
}

.booking-info h2 { font-size: 2.2rem; color: var(--navy); margin-bottom: 0.8rem; }
.booking-info p { font-size: 0.9rem; color: var(--grey); line-height: 1.7; margin-bottom: 2rem; }

.booking-perks { list-style: none; }
.booking-perks li {
  font-size: 0.85rem; color: var(--charcoal);
  padding: 0.7rem 0; border-bottom: 1px solid var(--ivory-dk);
  display: flex; align-items: center; gap: 0.8rem;
}
.booking-perks li .perk-icon { color: var(--gold); font-size: 1rem; }

.booking-form {
  background: var(--white); padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.booking-form h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 1.8rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 0.4rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--ivory-dk); border-radius: 2px;
  font-family: 'Jost',sans-serif; font-size: 0.88rem; color: var(--charcoal);
  background: var(--ivory); outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 992px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .rooms-grid, .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-accent { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; }
  .booking-container { grid-template-columns: 1fr; }
  .rooms-full-grid { grid-template-columns: 1fr; }
  .amenities-feature { grid-template-columns: 1fr; }
  .amenities-feature-img { height: 300px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 1.2rem; position: fixed;
    top: 0; right: 0; width: 260px; height: 100vh; background: var(--navy);
    padding: 5rem 2rem 2rem; z-index: 999; transform: translateX(100%);
    transition: transform var(--transition); }
  .nav-links.open { display: flex; transform: translateX(0); }
  .hamburger { display: flex; z-index: 1001; }
  .rooms-grid, .services-grid, .amenities-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .amenities-feature-content { padding: 2rem; }
}

/* ── SVG ICONS ───────────────────────────────── */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon svg {
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-icon .icon svg { width: 32px; height: 32px; stroke: var(--gold); }
.amenity-icon .icon svg { width: 36px; height: 36px; stroke: var(--gold); }
.room-meta .icon svg   { width: 14px; height: 14px; stroke: var(--grey); }
.perk-icon .icon svg   { width: 16px; height: 16px; stroke: var(--gold); }
.star-icon svg         { width: 14px; height: 14px; fill: var(--gold); stroke: none; }

/* ── FLOATING BUTTONS ────────────────────────── */
.floating-btns {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.2rem 0.7rem 0.9rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, padding 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  max-width: 52px;
}

.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
  max-width: 200px;
  padding: 0.7rem 1.2rem 0.7rem 0.9rem;
}

.float-btn .float-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.float-btn .float-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.float-btn .float-label {
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.2s ease 0.05s, transform 0.2s ease 0.05s;
  pointer-events: none;
}
.float-btn:hover .float-label {
  opacity: 1;
  transform: translateX(0);
}

.float-whatsapp {
  background: #25D366;
  color: #fff;
}
.float-whatsapp svg { fill: #fff; stroke: none; }

.float-call {
  background: var(--gold);
  color: var(--navy);
}
.float-call svg { fill: none; stroke: var(--navy); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* pulse ring on whatsapp */
.float-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 2px solid #25D366;
  animation: floatPulse 2.2s ease infinite;
  pointer-events: none;
}
.float-btn { position: relative; }

@keyframes floatPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

@media (max-width: 480px) {
  .floating-btns { bottom: 1.2rem; right: 1rem; }
  .float-btn { padding: 0.65rem; max-width: 48px; }
  .float-btn:hover { max-width: 180px; padding: 0.65rem 1rem 0.65rem 0.65rem; }
}
