/* =============================================================
   PEARL PRIDE VILLA — DESIGN TOKENS
   Palette: Ivory Marble / Deep Lake Indigo / Antique Gold / Sage
   Display: Cormorant Garamond   Body/UI: Jost
   Signature motif: the jharokha arch — used to frame every image
   ============================================================= */

:root {
  --ivory: #F5F1E8;
  --ivory-dim: #ECE5D6;
  --indigo: #16323E;
  --indigo-deep: #0D2027;
  --indigo-soft: #23495a;
  --gold: #B8863E;
  --gold-light: #D9AE6C;
  --gold-pale: #F1E2C6;
  --charcoal: #2A2621;
  --sage: #6E7B60;
  --white: #FFFFFF;

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Jost", "Segoe UI", sans-serif;

  --radius-arch: 200px 200px 12px 12px;
  --shadow-soft: 0 20px 45px -20px rgba(13, 32, 39, 0.35);
  --shadow-card: 0 12px 30px -12px rgba(42, 38, 33, 0.18);
  --transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--indigo-deep);
  margin: 0;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.section { padding: 100px 0; }
@media (max-width: 767.98px) { .section { padding: 64px 0; } }

.section-eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-eyebrow-light { color: var(--gold-light); }

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title-light { color: var(--ivory); }

.section-lead {
  font-size: 1.05rem;
  color: #514c44;
  max-width: 560px;
}

/* =============================== PRELOADER =============================== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--indigo-deep);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; }
.preloader-arch {
  width: 84px; height: 110px;
  border: 2px solid var(--gold-light);
  border-radius: var(--radius-arch);
  display: flex; align-items: center; justify-content: center;
  animation: archPulse 1.6s ease-in-out infinite;
}
.preloader-arch span {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}
@keyframes archPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.06); opacity: 1; }
}

/* =============================== BUTTONS =============================== */
.btn { border-radius: 3px; font-family: var(--font-body); font-weight: 500; letter-spacing: 0.02em; padding: 0.75rem 1.6rem; transition: var(--transition); border: none; }
.btn i { margin-right: 6px; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--indigo-deep);
  box-shadow: 0 10px 24px -10px rgba(184, 134, 62, 0.6);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(184, 134, 62, 0.75); color: var(--indigo-deep); }

.btn-inquire {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 0.5rem 1.2rem;
  font-size: 0.92rem;
}
.btn-inquire:hover { background: var(--gold); color: var(--indigo-deep); }

.btn-outline-light-custom {
  border: 1.5px solid rgba(255,255,255,0.65);
  color: var(--white);
  background: transparent;
}
.btn-outline-light-custom:hover { background: rgba(255,255,255,0.12); color: var(--white); border-color: var(--white); }

.btn-dark-outline {
  border: 1.5px solid var(--indigo);
  color: var(--indigo);
  background: transparent;
}
.btn-dark-outline:hover { background: var(--indigo); color: var(--ivory); }

/* =============================== HEADER =============================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled {
  background: rgba(22, 50, 62, 0.96);
  backdrop-filter: blur(8px);
  padding: 10px 0;
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.35);
}

.navbar-brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-mark { font-family: var(--font-display); font-size: 1.65rem; font-weight: 700; color: var(--white); letter-spacing: 0.02em; }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.22em; color: var(--gold-light); text-transform: uppercase; margin-top: 2px; }

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem !important;
  position: relative;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link::after {
  content: ""; position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.25rem; height: 1px;
  background: var(--gold-light); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.navbar-nav .nav-link:hover { color: var(--gold-light); }
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }

.navbar-toggler { border: none; background: transparent; padding: 4px; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-bar { display: block; width: 26px; height: 2px; background: var(--white); margin: 5px 0; transition: var(--transition); }

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(13, 32, 39, 0.98);
    margin-top: 16px;
    padding: 20px;
    border-radius: 10px;
  }
  .navbar-nav .nav-link::after { display: none; }
  .navbar-nav .nav-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .navbar-nav .nav-item:last-child { border-bottom: none; padding-top: 10px; }
}

/* =============================== HERO =============================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,32,39,0.72) 0%, rgba(13,32,39,0.55) 45%, rgba(13,32,39,0.88) 100%);
}
.hero-content { position: relative; z-index: 1; padding-top: 90px; color: var(--white); }

.eyebrow {
  text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.78rem; color: var(--gold-light);
  margin-bottom: 18px; font-weight: 500;
}
.eyebrow i { margin-right: 6px; }

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-title span { font-style: italic; color: var(--gold-light); }

.hero-tagline { font-size: 1.2rem; max-width: 620px; color: rgba(255,255,255,0.88); margin-bottom: 40px; }

.hero-stats { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-bottom: 42px; }
.hero-stat { text-align: left; }
.hero-stat .num { display: block; font-family: var(--font-display); font-size: 2.1rem; color: var(--gold-light); font-weight: 700; line-height: 1; }
.hero-stat .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.75); }
.hero-stat-divider { width: 1px; height: 34px; background: rgba(255,255,255,0.25); }

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

.scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 1;
  width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,0.6); border-radius: 20px;
}
.scroll-cue span {
  display: block; width: 4px; height: 8px; background: var(--gold-light); border-radius: 2px;
  margin: 7px auto; animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown { 0% { transform: translateY(0); opacity: 1; } 70% { opacity: 0; } 100% { transform: translateY(14px); opacity: 0; } }

@media (max-width: 575.98px) {
  .hero-stats { gap: 14px; }
  .hero-stat-divider { display: none; }
}

/* =============================== ARCH FRAME (signature motif) =============================== */
.arch-frame {
  border-radius: var(--radius-arch);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 6px solid var(--white);
}
.arch-frame img { width: 100%; height: 100%; object-fit: cover; }

.arch-frame-lg { aspect-ratio: 3/4; max-width: 420px; }
.arch-frame-sm {
  aspect-ratio: 1/1; width: 46%; max-width: 200px;
  position: relative; margin-top: -70px; margin-left: auto; margin-right: 6%;
  border-width: 5px;
}
.about-float-img { box-shadow: 0 18px 34px -14px rgba(13,32,39,0.4); }

@media (max-width: 991.98px) {
  .arch-frame-lg { margin: 0 auto; }
  .arch-frame-sm { margin-right: auto; margin-left: 8%; }
}

/* =============================== ABOUT =============================== */
.about-section { background: var(--ivory); }

.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.highlight-item { display: flex; align-items: flex-start; gap: 12px; }
.highlight-item i { font-size: 1.4rem; color: var(--gold); margin-top: 3px; }
.highlight-item h6 { font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; color: var(--indigo-deep); margin-bottom: 2px; }
.highlight-item span { font-size: 0.82rem; color: #6b655b; }

@media (max-width: 575.98px) { .about-highlights { grid-template-columns: 1fr; } }

/* =============================== FEATURE CARDS =============================== */
.features-section { background: var(--ivory-dim); }
.feature-card {
  background: var(--white);
  border-radius: 10px;
  padding: 38px 26px;
  height: 100%;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border-top: 3px solid transparent;
}
.feature-card:hover { transform: translateY(-8px); border-top-color: var(--gold); }
.feature-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--ivory-dim));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.6rem; color: var(--gold);
}
.feature-card h5 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; color: var(--indigo-deep); }
.feature-card p { font-size: 0.9rem; color: #665f54; margin: 0; }

/* =============================== GALLERY =============================== */
.gallery-section { background: var(--ivory); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: 10px; overflow: hidden; cursor: pointer; position: relative;
  aspect-ratio: 4/3; box-shadow: var(--shadow-card);
}
.gallery-item.arch-frame { border-radius: 140px 140px 10px 10px; }
.gallery-tall { grid-row: span 2; aspect-ratio: 3/5; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: "\f52d"; font-family: "bootstrap-icons"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--white);
  background: rgba(13,32,39,0.35); opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }

.gallery-view-all { display: block; text-decoration: none; }
.gallery-view-all::after { content: none; }
.gallery-view-all-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  background: rgba(13,32,39,0.62); color: var(--white);
  font-family: var(--font-body); font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; font-size: 0.85rem; text-align: center;
  transition: background 0.3s ease;
}
.gallery-view-all-overlay i { font-size: 1.8rem; color: var(--gold); }
.gallery-view-all:hover .gallery-view-all-overlay { background: rgba(13,32,39,0.78); }

@media (max-width: 767.98px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tall { grid-row: span 2; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-tall { grid-row: auto; aspect-ratio: 4/3; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(13,32,39,0.94);
  display: flex; align-items: center; justify-content: center; padding: 30px;
  opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute; top: 24px; right: 30px; background: none; border: none; color: var(--white);
  font-size: 2.4rem; line-height: 1; cursor: pointer;
}

/* =============================== AMENITIES =============================== */
.amenities-section { background: var(--ivory-dim); }
.amenity-panel {
  background: var(--white); border-radius: 10px; padding: 40px; height: 100%; box-shadow: var(--shadow-card);
}
.amenity-panel-alt { background: var(--indigo); }
.amenity-panel h5 { font-family: var(--font-body); font-weight: 600; margin-bottom: 24px; display: flex; align-items: center; gap: 10px; color: var(--indigo-deep); }
.amenity-panel-alt h5 { color: var(--gold-light); }
.amenity-list li { padding: 10px 0; border-bottom: 1px dashed rgba(0,0,0,0.08); display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.amenity-panel-alt .amenity-list li { border-bottom-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }
.amenity-list li i { color: var(--gold); }
.amenity-list li:last-child { border-bottom: none; }

/* =============================== ROOMS =============================== */
.rooms-section { background: var(--ivory); }
.room-card {
  background: var(--white); border-radius: 10px; overflow: hidden; height: 100%; box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.room-card:hover { transform: translateY(-6px); box-shadow: 0 22px 40px -18px rgba(42,38,33,0.28); }
.room-img { aspect-ratio: 4/3; overflow: hidden; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.room-card:hover .room-img img { transform: scale(1.06); }
.room-body { padding: 22px; }
.room-body h5 { font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; margin-bottom: 8px; }
.room-meta { font-size: 0.78rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; }
.room-body p:not(.room-meta) { font-size: 0.9rem; color: #665f54; margin: 0; }
.room-note { font-size: 0.9rem; color: #6b655b; font-style: italic; }

/* =============================== ATTRACTIONS =============================== */
.attractions-section { background: var(--ivory-dim); }
.attraction-card {
  background: var(--white); border-radius: 10px; padding: 30px; height: 100%;
  box-shadow: var(--shadow-card); position: relative; border-left: 3px solid var(--gold);
}
.attraction-distance {
  display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  background: var(--gold-pale); color: var(--gold); padding: 4px 12px; border-radius: 20px; margin-bottom: 14px;
}
.attraction-card h5 { font-family: var(--font-body); font-weight: 600; font-size: 1rem; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.attraction-card h5 i { color: var(--gold); }
.attraction-card p { font-size: 0.9rem; color: #665f54; margin: 0; }

/* =============================== MAP =============================== */
.map-section { background: var(--ivory); }
.location-detail { display: flex; gap: 14px; margin-top: 22px; }
.location-detail i { font-size: 1.3rem; color: var(--gold); margin-top: 3px; }
.location-detail h6 { font-family: var(--font-body); font-weight: 600; font-size: 0.92rem; margin-bottom: 4px; }
.location-detail span { font-size: 0.88rem; color: #665f54; }
.map-frame { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-card); height: 420px; border: 6px solid var(--white); }
@media (max-width: 767.98px) { .map-frame { height: 300px; } }

/* =============================== REVIEWS =============================== */
.reviews-section { background: var(--indigo); position: relative; }
.reviews-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(217,174,108,0.08), transparent 55%);
}
.reviews-section .container { position: relative; }
.review-card {
  max-width: 640px; text-align: center; color: var(--ivory); padding: 0 20px;
}
.review-stars { color: var(--gold-light); font-size: 1rem; margin-bottom: 20px; letter-spacing: 4px; }
.review-card p { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; line-height: 1.6; margin-bottom: 24px; color: var(--ivory); }
.review-card h6 { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.05em; color: var(--gold-light); font-weight: 500; }

.carousel-control-prev, .carousel-control-next { width: 6%; opacity: 1; }
.custom-carousel-arrow {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center; color: var(--ivory);
  transition: var(--transition);
}
.custom-carousel-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--indigo-deep); }
.carousel-indicators-custom { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.carousel-indicators-custom button {
  width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,0.3); padding: 0;
}
.carousel-indicators-custom button.active { background: var(--gold-light); width: 22px; border-radius: 6px; transition: var(--transition); }

/* =============================== FAQS =============================== */
.faqs-section { background: var(--ivory-dim); }
.custom-accordion .accordion-item {
  background: var(--white); border: none; border-radius: 8px !important; margin-bottom: 14px; overflow: hidden;
  box-shadow: var(--shadow-card);
}
.custom-accordion .accordion-button {
  font-family: var(--font-body); font-weight: 500; color: var(--indigo-deep); font-size: 1rem;
  padding: 20px 24px; box-shadow: none !important;
}
.custom-accordion .accordion-button:not(.collapsed) { background: var(--indigo); color: var(--gold-light); }
.custom-accordion .accordion-button:not(.collapsed)::after { filter: invert(72%) sepia(30%) saturate(500%) hue-rotate(1deg); }
.custom-accordion .accordion-body { font-size: 0.92rem; color: #5c5649; padding: 4px 24px 22px; }

/* =============================== CONTACT / INQUIRY =============================== */
.contact-section { background: var(--ivory); }
.contact-info-card { background: var(--indigo); border-radius: 12px; padding: 40px; height: 100%; }
.contact-info-card h5 { font-family: var(--font-body); font-weight: 600; color: var(--gold-light); margin-bottom: 26px; }
.contact-line { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--ivory); }
.contact-line:last-child { border-bottom: none; }
.contact-line i { font-size: 1.15rem; color: var(--gold-light); margin-top: 3px; width: 20px; }
.contact-line span { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); margin-bottom: 2px; }
.contact-line strong { font-weight: 500; font-size: 0.92rem; }

.inquiry-form { background: var(--white); border-radius: 12px; padding: 40px; box-shadow: var(--shadow-card); }
.inquiry-form .form-label { font-size: 0.82rem; font-weight: 500; color: var(--indigo-deep); margin-bottom: 6px; }
.inquiry-form .form-control, .inquiry-form .form-select {
  border: 1px solid #ddd6c8; border-radius: 6px; padding: 0.65rem 0.9rem; font-family: var(--font-body); font-size: 0.92rem;
  background: var(--ivory);
}
.inquiry-form .form-control:focus, .inquiry-form .form-select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,134,62,0.15); background: var(--white);
}
.form-note { font-size: 0.8rem; color: #8a8375; text-align: center; margin-top: 14px; margin-bottom: 0; }
.form-note i { margin-right: 4px; }

/* =============================== FOOTER =============================== */
.site-footer { background: var(--indigo-deep); color: rgba(255,255,255,0.75); padding: 80px 0 30px; }
.footer-brand { font-family: var(--font-display); font-size: 1.9rem; color: var(--white); font-weight: 700; }
.footer-brand span { color: var(--gold-light); font-style: italic; }
.footer-about { font-size: 0.9rem; margin: 18px 0 24px; max-width: 340px; color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--indigo-deep); }

.footer-heading { font-family: var(--font-body); color: var(--white); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 22px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color 0.25s ease; }
.footer-links a:hover { color: var(--gold-light); }

.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.footer-contact li i { color: var(--gold-light); margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--gold-light); }

.footer-divider { border-color: rgba(255,255,255,0.1); margin: 40px 0 24px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* =============================== FLOATING ELEMENTS =============================== */
.floating-whatsapp {
  position: fixed; bottom: 26px; right: 26px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 10px 26px -8px rgba(0,0,0,0.45);
  animation: floatPulse 2.4s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.floating-whatsapp:hover { transform: scale(1.08); color: var(--white); }
@keyframes floatPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); } }

.back-to-top {
  position: fixed; bottom: 26px; right: 96px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--indigo);
  background: var(--white); color: var(--indigo); display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: var(--transition); cursor: pointer;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--indigo); color: var(--gold-light); }

@media (max-width: 575.98px) {
  .floating-whatsapp { width: 50px; height: 50px; font-size: 1.4rem; bottom: 18px; right: 18px; }
  .back-to-top { width: 38px; height: 38px; right: 78px; bottom: 20px; }
}

/* =============================== SCROLL REVEAL =============================== */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* =============================== PAGE BANNER (Gallery page) =============================== */
.page-banner {
  position: relative;
  min-height: 46vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  padding-bottom: 60px;
}
.page-banner-media { position: absolute; inset: 0; z-index: 0; }
.page-banner-media img { width: 100%; height: 100%; object-fit: cover; }
.page-banner-content { position: relative; z-index: 1; color: var(--white); padding-top: 110px; }
.page-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 12px;
}
.page-banner-lead { font-size: 1.05rem; color: rgba(255,255,255,0.88); max-width: 560px; margin-bottom: 6px; }

/* =============================== FULL GALLERY GRID =============================== */
.gallery-full-section { padding-top: 60px; }
.gallery-grid-full {
  grid-template-columns: repeat(4, 1fr);
}
.gallery-grid-full .gallery-item { aspect-ratio: 4/3; }
@media (max-width: 991.98px) {
  .gallery-grid-full { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767.98px) {
  .gallery-grid-full { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid-full { grid-template-columns: 1fr; }
}
