/* ============================================================
   RÉSIDENCE SUZANNE — Feuille de style principale
   Design: Luxury Boutique Hotel | Brazzaville, Congo
   ============================================================ */

/* ---------- Variables & Reset ---------- */
:root {
  --green:      #1b3a22;
  --green-light:#2d5c36;
  --green-dark: #0f2014;
  --gold:       #c9a96e;
  --gold-light: #e2c896;
  --cream:      #f8f4ed;
  --cream-dark: #ede8df;
  --white:      #ffffff;
  --black:      #111111;
  --text:       #2a2a2a;
  --text-light: #666666;
  --border:     #e0d9ce;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(27,58,34,.12);
  --shadow-lg: 0 12px 48px rgba(27,58,34,.18);

  --transition: .35s cubic-bezier(.4,0,.2,1);

  --nav-h: 80px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--green-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-light); }

.lead {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.8;
}

/* ---------- Layout Utilities ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  max-width: 580px;
  margin-bottom: 48px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #b8924f;
  border-color: #b8924f;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: .82rem;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.transparent {
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

.navbar.scrolled .nav-logo-img { filter: none; }
.navbar.scrolled .nav-link { color: var(--text); }
.navbar.scrolled .nav-link:hover { color: var(--green); }

/* Lien actif (rubrique en cours) — toujours en or, jamais écrasé */
.nav-link.nav-active,
.navbar.scrolled .nav-link.nav-active {
  color: var(--gold) !important;
  font-weight: 600;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}

.navbar.scrolled .nav-logo-img {
  filter: none;
}

.nav-logo-text {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 14px;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: rgba(255,255,255,.9);
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-link:hover {
  background: rgba(255,255,255,.12);
  color: var(--white);
}

.nav-cta {
  margin-left: 8px;
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius) !important;
}

.nav-cta:hover {
  background: #b8924f !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201,169,110,.4);
}

.navbar.scrolled .nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--text);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transition: transform 8s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,32,20,.75) 0%,
    rgba(27,58,34,.5) 50%,
    rgba(0,0,0,.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: var(--white);
  padding-top: var(--nav-h);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.4);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- Quick Booking Bar ---------- */
.booking-bar {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: -60px auto 0;
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.booking-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 20px;
  align-items: end;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-field label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
}

.booking-field input,
.booking-field select {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition);
  cursor: pointer;
  width: 100%;
}

.booking-field input:focus,
.booking-field select:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}

/* ---------- Feature Strip ---------- */
.features-strip {
  background: var(--cream);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .03em;
}

/* ---------- About / Welcome ---------- */
.about-section {
  background: var(--white);
}

.about-img-wrapper {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-img-badge .number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
}

.about-img-badge .label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

.about-content {
  padding-left: 40px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
}

.stat-label {
  font-size: .8rem;
  color: var(--text-light);
  letter-spacing: .03em;
}

/* ---------- Rooms Section ---------- */
.rooms-section {
  background: var(--cream);
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.room-card-img {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.room-card:hover .room-card-img img {
  transform: scale(1.08);
}

.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.room-card-body {
  padding: 28px;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 20px;
}

.room-amenity {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  color: var(--text-light);
  background: var(--cream);
  padding: 4px 10px;
  border-radius: 20px;
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.room-price {
  display: flex;
  flex-direction: column;
}

.room-price .amount {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green);
}

.room-price .period {
  font-size: .75rem;
  color: var(--text-light);
}

/* ---------- Amenities Grid ---------- */
.amenity-card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

.amenity-card:hover {
  border-color: var(--green);
  background: var(--cream);
  transform: translateY(-4px);
}

.amenity-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.amenity-card h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.amenity-card p {
  font-size: .85rem;
  margin: 0;
}

/* ---------- Gallery Preview ---------- */
.gallery-section {
  background: var(--green-dark);
  overflow: hidden;
}

.gallery-section .section-tag,
.gallery-section .section-title,
.gallery-section .section-subtitle {
  color: var(--white);
}

.gallery-section .section-tag {
  color: var(--gold-light);
}

.gallery-section .section-subtitle {
  color: rgba(255,255,255,.7);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}

.gallery-item:first-child {
  grid-row: 1 / 3;
  grid-template-rows: 2;
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,58,34,.4);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* ---------- Location / Concierge ---------- */
.location-section {
  background: var(--cream);
}

.excursion-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.excursion-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: .85rem;
  font-weight: 500;
  transition: var(--transition);
}

.excursion-item:hover {
  border-color: var(--green);
  color: var(--green);
}

.excursion-item::before {
  content: '📍';
  font-size: 1rem;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 420px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 420px;
}

/* ---------- Testimonials ---------- */
.testimonials-section {
  background: var(--white);
}

.testimonial-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1.5px solid var(--border);
  position: relative;
  flex: 0 0 calc(33.333% - 22px);
  max-width: calc(33.333% - 22px);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  flex: 1;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
}

.testimonial-origin {
  font-size: .78rem;
  color: var(--text-light);
}

/* ---------- CTA Banner ---------- */
.cta-section {
  background: var(--green);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin: 0 auto 36px;
}

.cta-section .btn-gold {
  margin-right: 12px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: rgba(255,255,255,.6);
  margin: 16px 0 24px;
  font-size: .9rem;
  line-height: 1.75;
}

.footer-logo {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
  color: rgba(255,255,255,.7);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-links li + li { margin-top: 10px; }

.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .88rem;
  line-height: 1.5;
}

.footer-contact-item span:first-child {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  height: 380px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  margin-top: var(--nav-h);
}

.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(15,32,20,.85) 0%, rgba(15,32,20,.3) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 12px;
}

.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--gold-light); }

/* ---------- Room Detail Cards (hebergement page) ---------- */
.room-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 48px;
  background: var(--white);
}

.room-detail:nth-child(even) { direction: rtl; }
.room-detail:nth-child(even) > * { direction: ltr; }

.room-detail-img {
  position: relative;
  overflow: hidden;
  height: 440px;
}

.room-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.room-detail:hover .room-detail-img img {
  transform: scale(1.04);
}

.room-detail-content {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.room-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text);
}

.room-feature::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.price-box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
  border-left: 4px solid var(--gold);
}

.price-box .price-main {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.price-box .price-sub {
  font-size: .8rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ---------- Services Page ---------- */
.service-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  background: var(--white);
}

.service-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: background var(--transition);
}

.service-card:hover .service-icon {
  background: var(--green);
}

/* ---------- Gallery Page ---------- */
.gallery-full {
  padding: 60px 0;
}

.gallery-filter {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-light);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.gallery-masonry {
  columns: 3;
  gap: 16px;
}

.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-masonry-item img {
  width: 100%;
  display: block;
  transition: transform .5s ease;
}

.gallery-masonry-item:hover img {
  transform: scale(1.04);
}

/* ---------- Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.94);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: .7;
  transition: opacity .2s;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none;
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-nav:hover { background: rgba(255,255,255,.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ---------- Booking / Reservation Page ---------- */
.booking-page {
  background: var(--cream);
  padding: 60px 0;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.booking-steps {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.booking-step {
  flex: 1;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-light);
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.booking-step.active {
  color: var(--green);
  border-color: var(--green);
  background: rgba(27,58,34,.04);
}

.booking-step.completed {
  color: var(--green);
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.booking-step.completed .step-number {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.booking-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

/* Calendar Styles */
.calendar-container {
  margin-bottom: 32px;
}

.calendar-months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.calendar-month {}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cal-nav {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: .9rem;
}

.cal-nav:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.cal-month-name {
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  font-family: var(--font-heading);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.cal-day-name {
  text-align: center;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--text-light);
  padding: 6px 0;
  text-transform: uppercase;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  font-weight: 500;
}

.cal-day:empty { cursor: default; }

.cal-day.available:hover {
  background: var(--cream);
  color: var(--green);
}

.cal-day.selected-start,
.cal-day.selected-end {
  background: var(--green);
  color: var(--white);
  font-weight: 700;
}

.cal-day.in-range {
  background: rgba(27,58,34,.1);
  color: var(--green);
  border-radius: 0;
}

.cal-day.selected-start { border-radius: var(--radius) 0 0 var(--radius); }
.cal-day.selected-end { border-radius: 0 var(--radius) var(--radius) 0; }
.cal-day.selected-start.selected-end { border-radius: var(--radius); }

.cal-day.unavailable {
  color: #ccc;
  text-decoration: line-through;
  cursor: not-allowed;
}

.cal-day.past {
  color: #ddd;
  cursor: not-allowed;
}

.cal-day.today {
  border: 2px solid var(--gold);
}

.cal-legend {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  font-size: .75rem;
  color: var(--text-light);
}

.cal-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cal-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.booking-summary {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
  border: 1.5px solid var(--border);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: .88rem;
}

.summary-row + .summary-row {
  border-top: 1px solid var(--border);
}

.summary-row.total {
  font-weight: 700;
  font-size: 1rem;
  color: var(--green);
  margin-top: 4px;
}

.booking-form {}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Booking Sidebar */
.booking-sidebar {}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.sidebar-card-img {
  height: 200px;
  overflow: hidden;
}

.sidebar-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-card-body {
  padding: 24px;
}

.sidebar-info {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.sidebar-info-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  font-size: .85rem;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.sidebar-info-item:last-child {
  border-bottom: none;
}

.sidebar-info-item .icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Payment Section */
.payment-options {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.payment-option:hover {
  border-color: var(--green);
}

.payment-option input[type="radio"] {
  accent-color: var(--green);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.payment-option-info h5 {
  font-size: .9rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 2px;
}

.payment-option-info p {
  font-size: .78rem;
  margin: 0;
  color: var(--text-light);
}

.mobile-money-details {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 16px;
  border-left: 4px solid var(--gold);
  display: none;
}

.mobile-money-details.visible { display: block; }

.mm-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
  font-family: var(--font-heading);
}

/* Confirmation */
.confirmation-screen {
  text-align: center;
  padding: 48px;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 24px;
  color: var(--white);
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-block {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
}

.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
}

/* ---------- Scroll Animations ---------- */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .booking-bar-inner {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .features-grid { grid-template-columns: repeat(3, 1fr); }

  .about-img-badge { bottom: -16px; right: -16px; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .room-detail { grid-template-columns: 1fr; }
  .room-detail:nth-child(even) { direction: ltr; }
  .room-detail-img { height: 320px; }
  .room-detail-content { padding: 36px; }

  .booking-layout { grid-template-columns: 1fr; }
  .calendar-months { grid-template-columns: 1fr; }

  .gallery-masonry { columns: 2; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .section { padding: 70px 0; }

  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); padding: 20px; flex-direction: column; box-shadow: 0 8px 24px rgba(0,0,0,.12); }
  .nav-links.open { display: flex; }
  .nav-link { color: var(--text) !important; padding: 12px 16px; width: 100%; border-radius: var(--radius); }
  .nav-link:hover { background: var(--cream) !important; }
  .nav-cta { background: var(--gold) !important; text-align: center; justify-content: center; }
  .nav-toggle { display: flex; }

  .hero-actions { flex-direction: column; }

  .booking-bar { padding: 24px; border-radius: var(--radius); margin: -40px 16px 0; }
  .booking-bar-inner { grid-template-columns: 1fr; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 100%; max-width: 100%; }

  .about-content { padding-left: 0; margin-top: 32px; }
  .about-img-badge { display: none; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-grid .gallery-item:first-child { grid-row: 1; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .booking-steps { overflow-x: auto; }
  .booking-step { min-width: 130px; }

  .form-row { grid-template-columns: 1fr; }

  .room-features-list { grid-template-columns: 1fr; }

  .gallery-masonry { columns: 1; }

  .booking-panel { padding: 24px; }

  .calendar-months { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 2.2rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .room-amenities { gap: 6px; }
}

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-16 { gap: 16px; }
.gap-8 { gap: 8px; }
.divider { height: 1px; background: var(--border); margin: 32px 0; }
.tag { display: inline-block; background: var(--cream); border: 1px solid var(--border); border-radius: 20px; padding: 4px 14px; font-size: .75rem; font-weight: 600; color: var(--text-light); }
.badge-green { background: rgba(27,58,34,.08); color: var(--green); border-color: rgba(27,58,34,.15); }

/* ---------- Notification Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--green);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: .9rem;
  font-weight: 500;
  z-index: 9998;
  transform: translateY(100px);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
  max-width: 340px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}
