/* =========================================================
   Supernova Stays — Luxury Villa Booking
   style.css
========================================================= */

:root {
  --gold: #C6A15B;
  --gold-dark: #a9863f;
  --dark: #14251d;          /* deep forest charcoal */
  --dark-2: #1c3229;
  --cream: #FAF7F2;
  --text: #2b2b2b;
  --muted: #7a7a7a;
  --white: #ffffff;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow-sm: 0 4px 16px rgba(20, 37, 29, 0.07);
  --shadow: 0 12px 40px rgba(20, 37, 29, 0.12);
  --shadow-lg: 0 24px 60px rgba(20, 37, 29, 0.20);
  --gradient-gold: linear-gradient(135deg, #d8b877 0%, #b98d3f 100%);
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.6);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 95px; }

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; color: var(--dark); letter-spacing: -0.01em; }
a { text-decoration: none; transition: color 0.25s var(--ease); }
img { max-width: 100%; height: auto; display: block; }
section { position: relative; }
::selection { background: var(--gold); color: #fff; }
.text-gold { color: var(--gold) !important; }

/* ---------- Buttons ---------- */
.btn { font-family: 'Poppins', sans-serif; font-weight: 600; border-radius: 50px; padding: 0.7rem 1.6rem; transition: all 0.3s var(--ease); position: relative; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn i { vertical-align: -1px; }

.btn-gold { background: var(--gradient-gold); color: #fff; border: none; box-shadow: 0 8px 22px rgba(198, 161, 91, 0.4); }
.btn-gold:hover { color: #fff; transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 30px rgba(198, 161, 91, 0.5); }

.btn-outline-gold { border: 2px solid var(--gold); color: var(--gold-dark); background: transparent; }
.btn-outline-gold:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }

.btn-outline-dark { border: 2px solid var(--dark); color: var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: #fff; transform: translateY(-3px); }

.btn-outline-light { border: 2px solid rgba(255,255,255,0.85); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--dark); transform: translateY(-3px); }

.btn-light { background: #fff; color: var(--dark); border: none; box-shadow: var(--shadow); }
.btn-light:hover { transform: translateY(-3px) scale(1.02); color: var(--gold-dark); }

.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }

/* ---------- Glass ---------- */
.glass { background: var(--glass-bg); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border: 1px solid var(--glass-border); }

/* ---------- Top header ---------- */
.top-header { background: var(--dark); color: #cdd8d1; font-size: 0.85rem; padding: 0.5rem 0; }
.top-link { color: #cdd8d1; display: inline-flex; align-items: center; gap: 0.4rem; }
.top-link:hover { color: var(--gold); }
.top-header-right a { color: #cdd8d1; font-size: 1rem; transition: transform 0.25s, color 0.25s; }
.top-header-right a:hover { color: var(--gold); transform: translateY(-2px); }

/* ---------- Navbar ---------- */
.main-nav { background: rgba(255,255,255,0.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: 0.15rem 0; transition: all 0.35s var(--ease); }
.main-nav > .container { align-items: center; }
.main-nav.scrolled { box-shadow: var(--shadow-sm); padding: 0.1rem 0; background: rgba(255,255,255,0.97); }
.navbar-brand { display: flex; align-items: center; gap: 0.55rem; font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.4rem; color: var(--dark); }
.brand-mark { width: 40px; height: 40px; display: grid; place-items: center; background: var(--gradient-gold); color: #fff; border-radius: 12px; font-size: 1.1rem; box-shadow: 0 6px 16px rgba(198,161,91,0.45); }
.brand-accent { color: var(--gold); }
.brand-logo { height: 96px; width: auto; object-fit: contain; margin: -24px 0; transition: transform 0.3s var(--ease); }
.navbar-brand:hover .brand-logo { transform: scale(1.04); }
.main-nav.scrolled .brand-logo { height: 84px; }
.footer-logo { height: 110px; width: auto; object-fit: contain; filter: brightness(0) invert(72%) sepia(38%) saturate(420%) hue-rotate(3deg); }

.navbar-nav .nav-link { font-family: 'Poppins', sans-serif; color: var(--text); font-weight: 500; margin: 0 0.1rem; padding: 0.5rem 0.8rem; border-radius: 10px; position: relative; }
.navbar-nav .nav-link::after { content: ''; position: absolute; left: 50%; bottom: 4px; width: 0; height: 2px; background: var(--gradient-gold); transition: width 0.3s var(--ease), left 0.3s var(--ease); border-radius: 2px; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--gold-dark); }
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { width: 55%; left: 22%; }
.btn-quote { padding: 0.55rem 1.4rem; }

.navbar-toggler { border: none; padding: 0.4rem; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-bar { display: block; width: 26px; height: 3px; background: var(--dark); border-radius: 3px; margin: 5px 0; transition: 0.3s var(--ease); }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Section base ---------- */
.section { padding: 3.5rem 0; }
.section-alt { background: linear-gradient(180deg, #f1ece3 0%, #faf7f2 100%); }
.section-head { max-width: 720px; margin: 0 auto 2.25rem; }
.section-title { font-size: clamp(1.9rem, 3.5vw, 2.8rem); line-height: 1.2; margin-bottom: 1rem; }
.section-desc { color: var(--muted); font-size: 1.05rem; margin: 0; }
.badge-pill { display: inline-block; background: rgba(198,161,91,0.14); color: var(--gold-dark); font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.78rem; padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- Hero carousel ---------- */
.hero { position: relative; }
.hero-carousel, .hero-carousel .carousel-inner, .hero-carousel .carousel-item { height: 88vh; min-height: 560px; }
.hero-carousel .carousel-item { background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,37,29,0.35) 0%, rgba(20,37,29,0.65) 100%); }
.carousel-caption { top: 50%; bottom: auto; transform: translateY(-50%); left: 8%; right: 8%; text-align: left; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: #fff; font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 0.85rem; padding: 0.5rem 1.1rem; border-radius: 50px; margin-bottom: 1.3rem; backdrop-filter: blur(6px); }
.hero-title { color: #fff; font-size: clamp(2.2rem, 5.5vw, 4rem); line-height: 1.1; font-weight: 800; margin-bottom: 1.2rem; text-shadow: 0 4px 24px rgba(0,0,0,0.4); }
.hero-sub { color: rgba(255,255,255,0.92); font-size: 1.15rem; max-width: 560px; font-family: 'Poppins', sans-serif; }
.hero-carousel .carousel-indicators { bottom: 8rem; }
.hero-carousel .carousel-indicators [data-bs-target] { width: 12px; height: 12px; border-radius: 50%; border: 2px solid #fff; background: transparent; opacity: 0.8; }
.hero-carousel .carousel-indicators .active { background: var(--gold); border-color: var(--gold); }
.carousel-control-prev, .carousel-control-next { width: 6%; opacity: 0.85; }

/* ---------- Booking bar ---------- */
.booking-bar { position: relative; margin-top: -70px; z-index: 20; border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-lg); }
.bb-label { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.82rem; color: var(--dark); margin-bottom: 0.35rem; display: block; }
.bb-label i { color: var(--gold-dark); }
.booking-bar .form-control, .booking-bar .form-select { border-radius: 12px; border: 1.5px solid #e5ddd0; padding: 0.7rem 1rem; }
.booking-bar .form-control:focus, .booking-bar .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(198,161,91,0.15); }

/* ---------- Page hero (offers) ---------- */
.page-hero { position: relative; background-size: cover; background-position: center; padding: 7rem 0 5rem; }
.page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-hero-title { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); text-shadow: 0 4px 24px rgba(0,0,0,0.4); }
.page-crumb { justify-content: center; margin: 0; }
.page-crumb .breadcrumb-item, .page-crumb a { color: rgba(255,255,255,0.85); }
.page-crumb a:hover { color: var(--gold); }
.page-crumb .breadcrumb-item.active { color: var(--gold); }
.page-crumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.6); }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--dark); padding: 2.5rem 0; color: #fff; }
.trust-strip h3 { color: var(--gold); font-size: 2.4rem; font-weight: 800; margin: 0; }
.trust-strip span { color: #b7c4bc; font-size: 0.95rem; font-family: 'Poppins', sans-serif; }

/* ---------- Amenities ---------- */
.amenity-card { background: #fff; border-radius: var(--radius); padding: 1.8rem 1.3rem; text-align: center; height: 100%; box-shadow: var(--shadow-sm); border: 1px solid rgba(20,37,29,0.05); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.amenity-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.amenity-icon { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 1rem; font-size: 1.6rem; color: var(--gold-dark); background: rgba(198,161,91,0.14); border-radius: 50%; transition: all 0.35s var(--ease); }
.amenity-card:hover .amenity-icon { background: var(--gradient-gold); color: #fff; transform: rotate(-6deg) scale(1.08); }
.amenity-card h5 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.amenity-card p { color: var(--muted); font-size: 0.88rem; margin: 0; font-family: 'Poppins', sans-serif; }

/* ---------- Room / stay cards ---------- */
.room-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); height: 100%; border: 1px solid rgba(20,37,29,0.05); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.room-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.room-img { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.room-card:hover .room-img img { transform: scale(1.08); }
.room-price { position: absolute; bottom: 12px; left: 12px; background: rgba(20,37,29,0.9); color: #fff; font-family: 'Poppins', sans-serif; font-weight: 700; padding: 0.4rem 0.9rem; border-radius: 50px; font-size: 1rem; }
.room-price small { font-weight: 400; font-size: 0.72rem; color: #cdd8d1; }
.room-tag { position: absolute; top: 12px; left: 12px; background: var(--dark); color: #fff; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.72rem; padding: 0.3rem 0.8rem; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.04em; }
.room-tag.gold { background: var(--gradient-gold); }
.room-body { padding: 1.4rem; }
.room-body h4 { font-size: 1.25rem; margin-bottom: 0.3rem; }
.room-loc { color: var(--muted); font-size: 0.85rem; font-family: 'Poppins', sans-serif; margin-bottom: 0.8rem; }
.room-loc i { color: var(--gold-dark); }
.room-specs { list-style: none; display: flex; flex-wrap: wrap; gap: 0.9rem; padding: 0; margin: 0 0 0.8rem; }
.room-specs li { font-family: 'Poppins', sans-serif; font-size: 0.82rem; color: var(--text); display: flex; align-items: center; gap: 0.35rem; }
.room-specs i { color: var(--gold-dark); }
.room-rating { font-family: 'Poppins', sans-serif; color: #f0a500; font-size: 0.9rem; margin-bottom: 1rem; }
.room-rating span { color: var(--muted); margin-left: 0.35rem; font-size: 0.82rem; }
.room-actions { display: flex; gap: 0.5rem; }
.room-actions .btn { flex: 1; }

/* ---------- Why choose us ---------- */
.why-img-wrap { position: relative; }
.why-img { border-radius: 28px; box-shadow: var(--shadow-lg); }
.why-badge { position: absolute; bottom: -20px; right: -10px; border-radius: var(--radius-sm); padding: 1rem 1.4rem; text-align: center; box-shadow: var(--shadow); }
.wb-num { display: block; font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 800; color: var(--gold-dark); line-height: 1; }
.wb-num i { font-size: 1.1rem; color: #f0a500; }
.wb-label { font-family: 'Poppins', sans-serif; font-size: 0.78rem; color: var(--muted); }
.why-list { margin-top: 1.5rem; }
.why-item { display: flex; gap: 1rem; margin-bottom: 1.2rem; }
.why-item i { color: var(--gold-dark); font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.why-item h6 { font-family: 'Poppins', sans-serif; font-weight: 600; margin-bottom: 0.2rem; font-size: 1.05rem; color: var(--dark); }
.why-item p { color: var(--muted); font-size: 0.9rem; margin: 0; font-family: 'Poppins', sans-serif; }

/* ---------- Gallery ---------- */
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,37,29,0.7), transparent 55%); opacity: 0; transition: opacity 0.4s var(--ease); }
.gallery-item:hover::after { opacity: 1; }
.g-cap { position: absolute; bottom: 1rem; left: 1.2rem; color: #fff; font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.1rem; z-index: 2; opacity: 0; transform: translateY(12px); transition: all 0.4s var(--ease); }
.gallery-item:hover .g-cap { opacity: 1; transform: translateY(0); }

/* ---------- Offer banner ---------- */
.offer-banner { position: relative; background: var(--dark); border-radius: 28px; padding: 3rem; color: #fff; overflow: hidden; box-shadow: var(--shadow-lg); }
.offer-glow { position: absolute; width: 400px; height: 400px; background: rgba(198,161,91,0.3); border-radius: 50%; filter: blur(70px); top: -150px; right: -100px; }
.offer-banner .row { position: relative; z-index: 2; }
.offer-tag { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--gradient-gold); color: #fff; font-family: 'Poppins', sans-serif; padding: 0.4rem 1rem; border-radius: 50px; font-weight: 600; font-size: 0.82rem; margin-bottom: 1rem; }
.offer-title { color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
.offer-highlight { color: var(--gold); }
.offer-text { color: rgba(255,255,255,0.88); margin-bottom: 1.5rem; font-family: 'Poppins', sans-serif; }
.countdown { display: flex; gap: 0.8rem; justify-content: center; }
.cd-box { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); border-radius: 16px; padding: 1rem 0.6rem; text-align: center; min-width: 74px; backdrop-filter: blur(6px); }
.cd-box span { display: block; font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 800; color: var(--gold); line-height: 1; }
.cd-box small { color: rgba(255,255,255,0.8); font-size: 0.72rem; text-transform: uppercase; font-family: 'Poppins', sans-serif; }

/* ---------- Deal cards (offers page) ---------- */
.deal-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); height: 100%; border: 1px solid rgba(20,37,29,0.05); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.deal-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.deal-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.deal-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.deal-card:hover .deal-img img { transform: scale(1.08); }
.deal-badge { position: absolute; top: 12px; right: 12px; background: var(--gradient-gold); color: #fff; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.78rem; padding: 0.3rem 0.85rem; border-radius: 50px; }
.deal-body { padding: 1.5rem; }
.deal-body h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.deal-body p { color: var(--muted); font-size: 0.9rem; font-family: 'Poppins', sans-serif; margin-bottom: 1rem; }
.deal-price { margin-bottom: 1.1rem; font-family: 'Poppins', sans-serif; }
.deal-price .old { color: var(--muted); text-decoration: line-through; margin-right: 0.6rem; }
.deal-price .new { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.5rem; color: var(--dark); }

/* ---------- Process (offers page) ---------- */
.process-step { text-align: center; padding: 2rem 1.25rem; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); height: 100%; position: relative; transition: transform 0.35s var(--ease); }
.process-step:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.step-num { position: absolute; top: 14px; right: 18px; font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 800; color: rgba(198,161,91,0.16); }
.step-icon { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 1rem; background: var(--gradient-gold); color: #fff; border-radius: 18px; font-size: 1.5rem; box-shadow: 0 8px 20px rgba(198,161,91,0.35); }
.process-step h5 { margin-bottom: 0.5rem; }
.process-step p { color: var(--muted); font-size: 0.9rem; margin: 0; font-family: 'Poppins', sans-serif; }

/* ---------- Statistics ---------- */
.stats-section { padding: 4rem 0; background: var(--gradient-gold); color: #fff; }
.stats-section h3 { color: #fff; font-size: 2.8rem; font-weight: 800; margin: 0; }
.stats-section span { color: rgba(255,255,255,0.92); font-family: 'Poppins', sans-serif; }

/* ---------- Testimonials ---------- */
.testimonial-slider { max-width: 820px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.6s var(--ease); }
.testimonial-slide { min-width: 100%; padding: 1rem; }
.testimonial-card { border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); position: relative; text-align: center; }
.quote-icon { font-size: 3rem; color: rgba(198,161,91,0.25); position: absolute; top: 1rem; left: 1.5rem; }
.stars { color: #f0a500; }
.testimonial-card .stars { font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-card p { font-family: 'Poppins', sans-serif; font-size: 1.08rem; color: var(--text); margin-bottom: 1.5rem; font-style: italic; }
.t-person { display: flex; align-items: center; justify-content: center; gap: 0.9rem; }
.t-person img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; box-shadow: var(--shadow-sm); }
.t-person h6 { font-family: 'Poppins', sans-serif; font-weight: 600; margin: 0; color: var(--dark); }
.t-person span { color: var(--muted); font-size: 0.85rem; font-family: 'Poppins', sans-serif; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 1.5rem; }
.slider-btn { width: 46px; height: 46px; border-radius: 50%; border: none; background: #fff; color: var(--gold-dark); font-size: 1.2rem; box-shadow: var(--shadow-sm); cursor: pointer; transition: all 0.3s var(--ease); }
.slider-btn:hover { background: var(--gold); color: #fff; transform: scale(1.1); }
.slider-dots { display: flex; gap: 0.5rem; }
.slider-dots .dot { width: 10px; height: 10px; border-radius: 50%; background: #d8ccb8; border: none; cursor: pointer; transition: all 0.3s var(--ease); }
.slider-dots .dot.active { background: var(--gold); width: 28px; border-radius: 50px; }

/* ---------- FAQ ---------- */
.faq-accordion .accordion-item { border: none; margin-bottom: 1rem; border-radius: var(--radius-sm) !important; overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; }
.faq-accordion .accordion-button { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--dark); padding: 1.2rem 1.5rem; border-radius: var(--radius-sm) !important; }
.faq-accordion .accordion-button:not(.collapsed) { background: rgba(198,161,91,0.1); color: var(--gold-dark); box-shadow: none; }
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-button::after { background-image: none; content: '\002B'; font-size: 1.4rem; font-weight: 400; width: auto; height: auto; transform: none; transition: transform 0.3s; }
.faq-accordion .accordion-button:not(.collapsed)::after { content: '\2212'; }
.faq-accordion .accordion-body { color: var(--muted); padding: 0 1.5rem 1.3rem; font-family: 'Poppins', sans-serif; }

/* ---------- Contact ---------- */
.contact-info { border-radius: var(--radius); padding: 2.5rem 2rem; height: 100%; box-shadow: var(--shadow-sm); }
.contact-info h4 { margin-bottom: 0.5rem; }
.ci-lead { color: var(--muted); margin-bottom: 1.5rem; font-family: 'Poppins', sans-serif; }
.contact-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.contact-list li { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.1rem; }
.ci-icon { width: 46px; height: 46px; flex-shrink: 0; display: grid; place-items: center; background: var(--gradient-gold); color: #fff; border-radius: 12px; font-size: 1.1rem; box-shadow: 0 6px 16px rgba(198,161,91,0.3); }
.contact-list small { display: block; color: var(--muted); font-size: 0.78rem; font-family: 'Poppins', sans-serif; }
.contact-list a, .contact-list span { color: var(--dark); font-weight: 500; font-family: 'Poppins', sans-serif; }
.contact-list a:hover { color: var(--gold-dark); }
.map-placeholder iframe { display: block; }

.contact-form { border-radius: var(--radius); padding: 2.5rem 2rem; box-shadow: var(--shadow-sm); }
.form-label { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 0.9rem; margin-bottom: 0.35rem; }
.contact-form .form-control, .contact-form .form-select { border-radius: 12px; border: 1.5px solid #e5ddd0; padding: 0.7rem 1rem; background: #fff; transition: border 0.25s, box-shadow 0.25s; }
.contact-form .form-control:focus, .contact-form .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(198,161,91,0.15); }
.form-success { display: none; background: rgba(198,161,91,0.14); color: var(--gold-dark); padding: 0.9rem 1.2rem; border-radius: 12px; font-weight: 500; font-size: 0.92rem; font-family: 'Poppins', sans-serif; }
.form-success.show { display: block; animation: fadeUp 0.4s var(--ease); }
.form-success i { margin-right: 0.4rem; }

/* ---------- CTA banner ---------- */
.cta-banner { padding: 5rem 0; background: var(--dark); position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(198,161,91,0.35), transparent 70%); top: -200px; right: -100px; }
.cta-banner::after { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(198,161,91,0.2), transparent 70%); bottom: -180px; left: -80px; }
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.cta-banner p { color: #b7c4bc; font-size: 1.1rem; margin-bottom: 2rem; font-family: 'Poppins', sans-serif; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: #0e1a15; color: #93a49b; padding: 4rem 0 1.5rem; }
.footer-brand { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.4rem; color: #fff; margin-bottom: 1rem; }
.footer-brand .brand-accent { color: var(--gold); }
.footer-about { font-size: 0.92rem; margin-bottom: 1.2rem; max-width: 320px; font-family: 'Poppins', sans-serif; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a { width: 40px; height: 40px; display: grid; place-items: center; background: rgba(255,255,255,0.07); color: #cdd8d1; border-radius: 10px; transition: all 0.3s var(--ease); }
.footer-social a:hover { background: var(--gradient-gold); color: #fff; transform: translateY(-4px); }
.footer h6 { font-family: 'Poppins', sans-serif; color: #fff; margin-bottom: 1.2rem; font-size: 1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul li a { color: #93a49b; font-size: 0.92rem; font-family: 'Poppins', sans-serif; }
.footer ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-news { font-size: 0.9rem; margin-bottom: 0.8rem; font-family: 'Poppins', sans-serif; }
.newsletter-form { display: flex; background: rgba(255,255,255,0.08); border-radius: 50px; padding: 0.25rem; overflow: hidden; }
.newsletter-form input { flex: 1; background: transparent; border: none; color: #fff; padding: 0.5rem 1rem; outline: none; font-size: 0.9rem; font-family: 'Poppins', sans-serif; }
.newsletter-form input::placeholder { color: #6b7d74; }
.newsletter-form button { border: none; background: var(--gradient-gold); color: #fff; width: 42px; border-radius: 50px; cursor: pointer; transition: transform 0.25s; }
.newsletter-form button:hover { transform: scale(1.05); }
.news-msg { display: block; margin-top: 0.5rem; color: var(--gold); font-size: 0.82rem; font-family: 'Poppins', sans-serif; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 3rem; padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { margin: 0; font-size: 0.85rem; font-family: 'Poppins', sans-serif; }

/* ---------- Floating buttons ---------- */
.float-btn { position: fixed; right: 20px; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 1.4rem; z-index: 999; box-shadow: 0 8px 24px rgba(0,0,0,0.25); border: none; cursor: pointer; transition: transform 0.3s var(--ease); }
.float-btn:hover { transform: scale(1.12); color: #fff; }
.whatsapp-float { bottom: 150px; background: #25D366; animation: pulseBtn 2s infinite; }
.call-float { bottom: 88px; background: var(--gold-dark); }
.scroll-top { bottom: 20px; background: var(--dark); opacity: 0; visibility: hidden; }
.scroll-top.show { opacity: 1; visibility: visible; }
@keyframes pulseBtn { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); will-change: opacity, transform; }
.reveal[data-reveal="left"] { transform: translateX(-50px); }
.reveal[data-reveal="right"] { transform: translateX(50px); }
.reveal.visible { opacity: 1; transform: translate(0) scale(1); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
