/* SSD Lodge & Rooms — Premium Design System */
/* Colors: Deep Blue + Fresh Green gradient */

:root {
  --blue: #0A5C99;
  --blue-dark: #074371;
  --blue-mid: #0E6FAB;
  --green: #1F8A5E;
  --green-light: #25AC74;
  --wa-green: #25D366;
  --wa-dark: #128C7E;
  --text: #1A1A2E;
  --text-muted: #5A6480;
  --bg: #F7F9FC;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --shadow-sm: 0 2px 8px rgba(10,92,153,0.08);
  --shadow-md: 0 8px 24px rgba(10,92,153,0.12);
  --shadow-lg: 0 20px 60px rgba(10,92,153,0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --font: 'Inter', sans-serif;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; padding-bottom: 56px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.bg-light { background: var(--bg); }

/* ═══════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.75rem; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; border: none;
  cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%); color: var(--white); box-shadow: 0 4px 14px rgba(10,92,153,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(10,92,153,0.45); }
.btn-whatsapp { background: linear-gradient(135deg, var(--wa-green) 0%, var(--wa-dark) 100%); color: var(--white); box-shadow: 0 4px 14px rgba(37,211,102,0.35); }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(37,211,102,0.45); }
.btn-outline-white { background: rgba(255,255,255,0.15); color: var(--white); border: 2px solid rgba(255,255,255,0.8); backdrop-filter: blur(4px); }
.btn-outline-white:hover { background: var(--white); color: var(--blue); }
.btn-hero-primary { background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%); color: var(--white); box-shadow: 0 4px 14px rgba(31,138,94,0.4); }
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(31,138,94,0.5); }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.875rem; }

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
.header {
  position: sticky; top: 0; z-index: 9000;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }

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

.logo { display: flex; align-items: center; gap: 0.6rem; font-weight: 800; font-size: 1.35rem; color: var(--blue); }
.logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--blue), var(--green)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.1rem; }
.logo em { font-style: normal; color: var(--green); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a { font-weight: 500; font-size: 0.95rem; color: var(--text-muted); transition: var(--transition); position: relative; }
.nav a:not(.nav-cta)::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--blue); border-radius: 2px; transition: var(--transition); }
.nav a:not(.nav-cta):hover { color: var(--blue); }
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { background: linear-gradient(135deg, var(--blue), var(--blue-mid)); color: var(--white) !important; padding: 0.55rem 1.4rem; border-radius: 50px; font-size: 0.9rem !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(10,92,153,0.35); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #0A3D6B 0%, #0A5C99 40%, #1F7A55 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(31,138,94,0.15) 0%, transparent 60%); }

/* ═══════════════════════════════════════════════════════════
   CLEAN HERO LAYOUT
═══════════════════════════════════════════════════════════ */
.hero-bg { position: absolute; inset: 0; z-index: 0; filter: brightness(0.85); }
.hero-overlay-dark { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,61,107,0.92) 0%, rgba(10,92,153,0.85) 40%, rgba(31,122,85,0.9) 100%); z-index: 1; }

.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; color: var(--white); padding: 6rem 1rem 4rem; width: 100%; max-width: 900px; margin: 0 auto; }

.hero-top-badges { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; justify-content: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.25); border-radius: 50px; padding: 0.45rem 1.1rem; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.95); }
.hero-badge i { color: var(--green-light); }
.trust-badge { background: linear-gradient(135deg, rgba(80,229,160,0.2), rgba(31,138,94,0.3)); border-color: rgba(80,229,160,0.4); color: #fff; font-weight: 600; }
.trust-badge i { color: #50E5A0; margin-right: 0.25rem; }

.hero-title { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.25rem; letter-spacing: -0.02em; text-align: center; }
.hero-title span { background: linear-gradient(135deg, var(--green-light), #50E5A0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-tagline { font-size: clamp(1.2rem, 3vw, 1.8rem); font-weight: 500; margin-bottom: 1rem; color: rgba(255,255,255,0.95); text-align: center; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; max-width: 600px; line-height: 1.6; text-align: center; }

.icon-group { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; justify-content: center; }
.ig-item { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; font-weight: 500; color: rgba(255,255,255,0.9); }
.ig-item i { color: #50E5A0; font-size: 1.2rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: center; margin-bottom: 3.5rem; }
.bounce-x { animation: bounceX 1.5s infinite; }
@keyframes bounceX { 0%,100%{transform: translateX(0)} 50%{transform: translateX(5px)} }

.hero-rating { display: inline-flex; align-items: center; gap: 0.75rem; background: rgba(0,0,0,0.2); padding: 0.6rem 1.25rem; border-radius: 50px; backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.1); }
.stars { color: #FFD166; font-size: 0.95rem; }
.rt-text { font-size: 0.9rem; color: rgba(255,255,255,0.9); }
.rt-text strong { color: #fff; font-weight: 600; font-size: 1.1rem; }

/* delay chain for hero reveal */
.hero-content .reveal:nth-child(1) { transition-delay: 0.1s; }
.hero-content .reveal:nth-child(2) { transition-delay: 0.25s; }
.hero-content .reveal:nth-child(3) { transition-delay: 0.4s; }
.hero-content .reveal:nth-child(4) { transition-delay: 0.55s; }
.hero-content .reveal:nth-child(5) { transition-delay: 0.7s; }

/* ═══════════════════════════════════════════════════════════
   HIGHLIGHTS BAR
═══════════════════════════════════════════════════════════ */
.highlights { background: var(--blue-dark); padding: 0; }
.highlights-grid { display: grid; grid-template-columns: repeat(4,1fr); }

.hl-card { display: flex; align-items: center; gap: 1rem; padding: 1.5rem 1.25rem; border-right: 1px solid rgba(255,255,255,0.1); transition: var(--transition); cursor: default; }
.hl-card:last-child { border-right: none; }
.hl-card:hover { background: rgba(255,255,255,0.06); }
.hl-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--green), var(--green-light)); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--white); flex-shrink: 0; transition: var(--transition); }
.hl-card:hover .hl-icon { transform: scale(1.1) rotate(-5deg); }
.hl-text strong { display: block; color: var(--white); font-weight: 700; font-size: 0.95rem; }
.hl-text span { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

/* ═══════════════════════════════════════════════════════════
   SECTION LABELS & TITLES
═══════════════════════════════════════════════════════════ */
.section-label { display: inline-block; background: linear-gradient(135deg, rgba(31,138,94,0.12), rgba(10,92,153,0.12)); color: var(--green); border: 1px solid rgba(31,138,94,0.25); border-radius: 50px; padding: 0.3rem 1rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--text); line-height: 1.2; margin-bottom: 1rem; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 520px; }
.section-header { margin-bottom: 3rem; }
.section-header.text-center, .section-header-white { text-align: center; }
.section-header-white .section-label-white { display: inline-block; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; padding: 0.3rem 1rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.75rem; }
.section-title-white { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 1rem; }
.section-sub-white { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════════════════ */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; font-size: 1.05rem; }
.about-stats { display: flex; gap: 2.5rem; margin: 2rem 0; }
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-size: 2.25rem; font-weight: 900; background: linear-gradient(135deg, var(--blue), var(--green)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; margin-top: 0.25rem; }

.trust-card { background: linear-gradient(135deg, var(--blue-dark) 0%, #0B4F82 100%); border-radius: var(--radius); padding: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.tc-item { display: flex; align-items: center; gap: 0.75rem; background: rgba(255,255,255,0.07); border-radius: var(--radius-sm); padding: 0.85rem 1rem; transition: var(--transition); }
.tc-item:hover { background: rgba(255,255,255,0.13); transform: translateX(4px); }
.tc-item i { color: var(--green-light); font-size: 1.1rem; flex-shrink: 0; }
.tc-item span { color: rgba(255,255,255,0.9); font-weight: 500; font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════════════
   ROOMS SECTION
═══════════════════════════════════════════════════════════ */
.rooms-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.room-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: var(--transition); }
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.room-img-wrap { position: relative; overflow: hidden; }
.room-photo { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.6s ease; }
.room-card:hover .room-photo { transform: scale(1.05); }
.room-badge { position: absolute; top: 1rem; right: 1rem; background: var(--white); border-radius: 50px; padding: 0.3rem 0.9rem; font-size: 0.78rem; font-weight: 700; color: var(--blue); box-shadow: var(--shadow-sm); }
.non-ac-badge { color: var(--green); }
.family-badge { color: #7B3FCB; }
.room-body { padding: 1.5rem; }
.room-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.room-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; min-height: 45px; }
.room-features { margin-bottom: 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.room-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text-muted); }
.room-features i { color: var(--green); font-size: 0.85rem; width: 16px; }

/* ═══════════════════════════════════════════════════════════
   AMENITIES SECTION
═══════════════════════════════════════════════════════════ */
.amenities-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.amenity-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.25rem 1.5rem; text-align: center; transition: var(--transition); cursor: default; }
.amenity-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.amenity-card:hover .amen-icon-wrap { transform: scale(1.1) rotate(-5deg); background: linear-gradient(135deg, var(--blue), var(--green)); }
.amenity-card:hover .amen-icon-wrap i { color: var(--white); }
.amen-icon-wrap { width: 72px; height: 72px; border-radius: 20px; background: linear-gradient(135deg, rgba(10,92,153,0.08), rgba(31,138,94,0.08)); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; transition: var(--transition); }
.amen-icon-wrap i { font-size: 1.75rem; color: var(--blue); transition: var(--transition); }
.amenity-card h4 { font-weight: 700; font-size: 1.05rem; color: var(--text); margin-bottom: 0.4rem; }
.amenity-card p { font-size: 0.875rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   TRUST SECTION
═══════════════════════════════════════════════════════════ */
.trust-section { background: linear-gradient(135deg, var(--blue-dark) 0%, #0F5C3E 100%); padding: 4rem 0; }
.trust-inner { display: grid; grid-template-columns: 1fr 2fr; align-items: center; gap: 3rem; }
.trust-text h2 { font-size: 1.75rem; font-weight: 800; color: var(--white); margin-bottom: 0.75rem; }
.trust-text p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.trust-pillars { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.trust-pill { display: flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 50px; padding: 0.55rem 1.1rem; color: var(--white); font-size: 0.875rem; font-weight: 600; transition: var(--transition); }
.trust-pill:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.trust-pill i { color: var(--green-light); }

/* ═══════════════════════════════════════════════════════════
   GALLERY SECTION
═══════════════════════════════════════════════════════════ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 1rem; }
.gallery-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; min-height: 200px; }
.gallery-item.tall { grid-row: span 2; min-height: 430px; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item:hover .gal-overlay { opacity: 1; }
.gallery-item:hover .gal-photo { transform: scale(1.08); }
.gal-photo { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; min-height: inherit; }
.gal-overlay { position: absolute; inset: 0; background: rgba(10,92,153,0.55); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); color: var(--white); font-size: 1.75rem; }
.gallery-note { text-align: center; margin-top: 1.25rem; font-size: 0.85rem; color: var(--text-muted); font-style: italic; }

/* ═══════════════════════════════════════════════════════════
   LOCATION SECTION
═══════════════════════════════════════════════════════════ */
.location-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.location-map { height: 460px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.location-info p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1rem; }
.location-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.location-list li { display: flex; align-items: flex-start; gap: 1rem; }
.loc-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--blue), var(--green)); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1rem; flex-shrink: 0; }
.location-list strong { display: block; font-weight: 700; color: var(--text); margin-bottom: 0.2rem; }
.location-list span { color: var(--text-muted); font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════════ */
.contact-section { background: linear-gradient(135deg, var(--blue-dark) 0%, #0C4F35 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 3rem; }

.contact-cta-box { display: flex; flex-direction: column; gap: 1rem; }
.cta-link { display: flex; align-items: center; gap: 1.25rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 1.5rem; transition: var(--transition); color: var(--white); }
.cta-link:hover { background: rgba(255,255,255,0.15); transform: translateX(6px); }
.cta-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.cta-call .cta-icon { background: linear-gradient(135deg, var(--blue), var(--blue-mid)); }
.cta-wa .cta-icon { background: linear-gradient(135deg, var(--wa-green), var(--wa-dark)); }
.cta-mail .cta-icon { background: linear-gradient(135deg, #E67E22, #F39C12); }
.cta-info { flex: 1; }
.cta-label { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; margin-bottom: 0.2rem; }
.cta-value { font-size: 1.05rem; font-weight: 700; color: var(--white); }
.cta-arrow { color: rgba(255,255,255,0.4); font-size: 0.9rem; }

.contact-info-box { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 2rem; }
.contact-info-box h3 { color: var(--white); font-weight: 700; font-size: 1.2rem; margin-bottom: 1.5rem; }
.ci-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.ci-item > i { color: var(--green-light); font-size: 1rem; margin-top: 3px; width: 18px; flex-shrink: 0; }
.ci-label { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.2rem; }
.ci-item a, .ci-item span { color: rgba(255,255,255,0.9); font-weight: 500; font-size: 0.95rem; }
.ci-item a:hover { color: var(--green-light); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer { background: #0D1117; padding-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 2fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-top: 1rem; max-width: 300px; line-height: 1.7; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 1rem; transition: var(--transition); border: 1px solid rgba(255,255,255,0.1); }
.footer-social a:hover { background: var(--green); color: var(--white); transform: translateY(-3px); }
.footer-links h4, .footer-contact-info h4 { color: var(--white); font-weight: 700; margin-bottom: 1.25rem; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-links ul li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: var(--transition); display: flex; align-items: center; gap: 0.5rem; }
.footer-links a i { font-size: 0.65rem; }
.footer-links a:hover { color: var(--green-light); transform: translateX(4px); }
.fci-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.85rem; }
.fci-item i { color: var(--green-light); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.fci-item span, .fci-item a { color: rgba(255,255,255,0.55); font-size: 0.875rem; }
.fci-item a:hover { color: var(--green-light); }
.footer-bottom { padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom-inner span { color: rgba(255,255,255,0.35); font-size: 0.85rem; }
.footer-tagline { color: var(--green-light) !important; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
═══════════════════════════════════════════════════════════ */
.float-wa {
  position: fixed; bottom: 80px; right: 1.5rem; z-index: 8000;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
  color: var(--white); font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.float-wa:hover { box-shadow: 0 10px 30px rgba(37,211,102,0.65); transform: scale(1.1) !important; }
.float-wa::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; background: rgba(37,211,102,0.3); animation: waPulse 2s ease infinite; }
@keyframes waPulse { 0%,100%{transform:scale(1);opacity:0.6} 70%{transform:scale(1.4);opacity:0} }

/* ═══════════════════════════════════════════════════════════
   STICKY MOBILE BAR
═══════════════════════════════════════════════════════════ */
.sticky-bar { display: none; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 8500; }
.sticky-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem; font-weight: 700; font-size: 1rem; color: var(--white); border: none; }
.sticky-btn.call { background: var(--blue); }
.sticky-btn.wa { background: var(--wa-green); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .rooms-grid { grid-template-columns: repeat(2,1fr); }
  .amenities-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  body { padding-bottom: 56px; }
  .hamburger { display: flex; }
  .nav { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%; background: var(--white); border-bottom: 1px solid var(--border); padding: 1.5rem; gap: 1rem; box-shadow: var(--shadow-md); z-index: 9000; }
  .nav.open { display: flex; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .hl-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .rooms-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2,1fr); }
  .trust-inner { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: auto; }
  .gallery-item.wide { grid-column: auto; }
  .location-inner { grid-template-columns: 1fr; }
  .location-map { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .sticky-bar { display: flex; }
  .float-wa { bottom: 70px; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 320px; }
  .about-stats { gap: 1.5rem; }

  /* Hero Mobile adjustments */
  .hero-content { padding-top: 4rem; }
  .hero-title { font-size: 2.2rem; }
  .icon-group { gap: 1rem; }
  .hero-actions { display: flex; flex-direction: column; width: 100%; max-width: 320px; margin-bottom: 2rem; }
  .hero-actions .btn { width: 100%; justify-content: center; margin: 0; }
}

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