/* ==========================================================================
   Hotel Golden Desert Mahal — Premium Jaisalmer Hotel & Desert Experience
   Design System: Golden Rajasthan
   ========================================================================== */

:root {
    --gold: #C9A24B;
    --gold-antique: #B8893C;
    --gold-light: #E7C97A;
    --orange: #B3261E;
    --orange-burnt: #8E1C16;
    --sand: #E8DCC4;
    --sand-light: #FAF6F0;
    --ivory: #FFFFFF;
    --brown: #3A2E28;
    --brown-deep: #171310;
    --charcoal: #1C1A17;
    --midnight: #16263B;
    --white: #FFFFFF;
    --text: #3B352D;
    --muted: #7A7265;
    --border: #E4D9C3;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;

    --radius: 14px;
    --radius-lg: 22px;
    --shadow-soft: 0 20px 60px rgba(74, 53, 36, 0.10);
    --shadow-card: 0 12px 34px rgba(74, 53, 36, 0.12);
    --transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Base ---- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--ivory);
    line-height: 1.75;
    font-size: 16px;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--brown-deep);
    line-height: 1.18;
    letter-spacing: 0.2px;
}

a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-burnt); }

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

.section { padding: 96px 0; position: relative; }
.section-sm { padding: 64px 0; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 18px;
}
.eyebrow::before {
    content: "";
    width: 42px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after {
    content: "";
    width: 42px;
    height: 1px;
    background: linear-gradient(270deg, var(--gold), transparent);
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.3rem);
    margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold-antique); }
.section-lead { color: var(--muted); max-width: 640px; font-size: 1.06rem; }
.section-lead.centered { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 0.8rem 1.9rem;
    border-radius: 100px;
    transition: all var(--transition);
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-antique) 100%);
    color: #fff;
    border: none;
    position: relative;
    overflow: hidden;
}
.btn-gold:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(201, 162, 75, 0.35); }
.btn-outline-gold {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold-antique);
}
.btn-outline-gold:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.btn-outline-light { background: transparent; border: 1.5px solid rgba(255,255,255,0.6); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--brown-deep); transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: #fff; border: none; }
.btn-whatsapp:hover { background: #1ebe5b; color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35); }

.btn .bi { margin-right: 6px; }
.btn-arrow .bi { transition: transform var(--transition); }
.btn-arrow:hover .bi { transform: translateX(4px); }

/* ---- Skip link ---- */
.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--brown-deep); color: #fff;
    padding: 0.8rem 1.4rem; z-index: 2000;
}
.skip-link:focus { left: 0; }

/* ---- Preloader ---- */
.preloader {
    position: fixed; inset: 0; z-index: 3000;
    background: var(--brown-deep);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; color: var(--sand); }
.preloader-sun {
    width: 60px; height: 60px; margin: 0 auto 22px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, var(--gold-light), var(--orange));
    box-shadow: 0 0 60px rgba(201, 162, 75, 0.6);
    animation: sunPulse 1.8s ease-in-out infinite;
}
@keyframes sunPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(201,162,75,0.4); }
    50% { transform: scale(1.12); box-shadow: 0 0 70px rgba(201,162,75,0.7); }
}
.preloader-name {
    display: block; font-family: var(--font-heading);
    font-size: 1.5rem; letter-spacing: 0.08em; font-weight: 600;
}
.preloader-tag {
    display: block; font-size: 0.72rem; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--gold-light); margin-top: 6px;
}

/* ---- Header ---- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
    padding: 18px 0;
}
.site-header .navbar { padding: 0; }
.site-header.scrolled {
    background: rgba(250, 246, 238, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(74, 53, 36, 0.08);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}
.site-header.at-hero .nav-link,
.site-header.at-hero .brand-name,
.site-header.at-hero .brand-tag,
.site-header.at-hero .nav-phone,
.site-header.at-hero .navbar-toggler .toggler-bar {
    color: #fff;
}
.site-header.at-hero .brand-name em { color: var(--gold-light); }

.brand-mark {
    width: 46px; height: 46px; flex: 0 0 46px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--gold);
    border-radius: 8px;
    font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700;
    color: var(--gold); margin-right: 12px;
    background: rgba(201, 162, 75, 0.08);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: var(--font-heading); font-size: 1.18rem; font-weight: 700; color: var(--brown-deep); letter-spacing: 0.02em; }
.brand-name em { font-style: normal; color: var(--gold-antique); }
.brand-tag { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); font-weight: 500; }

.nav-link {
    font-size: 0.9rem; font-weight: 400; color: var(--text);
    letter-spacing: 0.03em; padding: 0.5rem 0.9rem !important; position: relative;
}
.nav-link::after {
    content: ""; position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0;
    height: 1.5px; background: var(--gold);
    transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--orange) !important; }

.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: 14px; }
.nav-phone { color: var(--brown-deep); font-size: 0.88rem; font-weight: 500; display: flex; align-items: center; gap: 7px; }
.nav-phone:hover { color: var(--orange); }
.btn-nav { padding: 0.6rem 1.3rem; font-size: 0.86rem; }

.navbar-toggler { border: none; padding: 0; display: flex; flex-direction: column; gap: 5px; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-bar { width: 26px; height: 2px; background: var(--brown-deep); transition: transform var(--transition); }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) { transform: translateY(7px) 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(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
    background: var(--brown-deep); color: var(--sand);
    width: 86% !important; max-width: 380px;
}
.mobile-nav .offcanvas-header { border-bottom: 1px solid rgba(231,201,122,0.15); padding: 1.5rem; }
.mobile-nav .btn-close { filter: invert(1); }
.mobile-nav-list { list-style: none; padding: 1.2rem 0; margin: 0; }
.mobile-nav-list a {
    display: block; padding: 0.9rem 1.5rem;
    font-family: var(--font-heading); font-size: 1.5rem; font-weight: 500;
    color: var(--sand); border-bottom: 1px solid rgba(231,201,122,0.08);
    transition: all var(--transition);
}
.mobile-nav-list a:hover, .mobile-nav-list a.active { color: var(--gold-light); padding-left: 1.9rem; }
.mobile-nav-cta { padding: 1.5rem; }

/* ---- Hero ---- */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; overflow: hidden;
    color: #fff; background: var(--brown-deep);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0; opacity: 0;
    background-size: cover; background-position: center;
    transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; animation: kenburns 8s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(30,20,10,0.72) 0%, rgba(30,20,10,0.45) 45%, rgba(30,20,10,0.78) 100%);
}
.hero-content { position: relative; z-index: 3; padding: 130px 0 80px; }
.hero-eyebrow {
    font-size: 0.8rem; letter-spacing: 0.34em; text-transform: uppercase;
    color: var(--gold-light); display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
}
.hero-eyebrow::before { content: ""; width: 54px; height: 1px; background: var(--gold); }
.hero-title {
    font-size: clamp(2.6rem, 7vw, 5.2rem); font-weight: 600;
    color: #fff; line-height: 1.06; max-width: 900px; margin-bottom: 22px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 1.12rem; color: rgba(255,255,255,0.88); max-width: 560px; margin-bottom: 34px; font-weight: 300; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-indicators {
    position: absolute; bottom: 46px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 12px; z-index: 4;
}
.hero-dot { width: 34px; height: 3px; background: rgba(255,255,255,0.35); border: none; padding: 0; cursor: pointer; transition: all var(--transition); }
.hero-dot.active { background: var(--gold); }

.scroll-indicator {
    position: absolute; bottom: 30px; right: 40px; z-index: 4;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.7); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 54px; background: linear-gradient(180deg, var(--gold), transparent); animation: scrollLine 2s infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* Golden particles */
.particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-3d { position: absolute; inset: 0; z-index: 2; pointer-events: none; display: block; }
.particle {
    position: absolute; border-radius: 50%;
    background: radial-gradient(circle, rgba(231,201,122,0.9), rgba(231,201,122,0));
    animation: floatUp linear infinite;
}
@keyframes floatUp {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    15% { opacity: 1; }
    100% { transform: translateY(-110vh) scale(0.4); opacity: 0; }
}

/* ---- Booking bar ---- */
.booking-bar {
    position: relative; z-index: 10; margin-top: -64px;
    background: #fff; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft); padding: 26px 30px;
    border: 1px solid var(--border);
}
.booking-bar .form-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.booking-bar .form-control, .booking-bar .form-select {
    border: none; border-bottom: 1.5px solid var(--border);
    border-radius: 0; padding-left: 0; background: transparent;
    font-family: var(--font-body); font-weight: 400; color: var(--brown-deep);
}
.booking-bar .form-control:focus, .booking-bar .form-select:focus { box-shadow: none; border-color: var(--gold); }

/* ---- Intro section ---- */
.intro-media { position: relative; }
.intro-media .img-main { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.intro-media .img-accent {
    position: absolute; bottom: -30px; right: -20px; width: 46%;
    border-radius: var(--radius); border: 6px solid var(--ivory); box-shadow: var(--shadow-card);
}
.intro-badge {
    position: absolute; top: -22px; left: -22px;
    background: var(--brown-deep); color: var(--gold-light);
    border-radius: 50%; width: 120px; height: 120px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; line-height: 1.1;
}
.intro-badge strong { font-family: var(--font-heading); font-size: 2rem; }
.intro-badge span { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; }

.highlight-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 28px; }
.highlight-item {
    display: flex; align-items: center; gap: 14px;
    padding: 18px 20px; border: 1px solid var(--border); border-radius: var(--radius);
    background: #fff; transition: all var(--transition);
}
.highlight-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--gold-light); }
.highlight-item .icon {
    width: 48px; height: 48px; flex: 0 0 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(201, 162, 75, 0.14); color: var(--orange); font-size: 1.3rem;
}
.highlight-item h4 { font-size: 1.05rem; margin: 0; font-family: var(--font-body); font-weight: 600; color: var(--brown-deep); }
.highlight-item p { margin: 0; font-size: 0.82rem; color: var(--muted); }

/* ---- Cards (generic) ---- */
.card-experience {
    background: #fff; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-card); border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition); height: 100%;
}
.card-experience:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(74,53,36,0.16); }
.card-media { position: relative; overflow: hidden; aspect-ratio: 16/11; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.card-experience:hover .card-media img { transform: scale(1.08); }
.card-badge {
    position: absolute; top: 14px; left: 14px;
    background: rgba(46,33,21,0.85); color: var(--gold-light);
    font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 6px 12px; border-radius: 100px; backdrop-filter: blur(4px);
}
.card-body-inner { padding: 22px 24px 26px; }
.card-body-inner h3 { font-size: 1.5rem; margin-bottom: 10px; }
.card-body-inner p { color: var(--muted); font-size: 0.94rem; margin-bottom: 16px; }
.card-link { font-weight: 500; font-size: 0.9rem; letter-spacing: 0.03em; display: inline-flex; align-items: center; gap: 8px; }
.card-link .bi { transition: transform var(--transition); }
.card-link:hover .bi { transform: translateX(5px); }

/* ---- Feature cards (why choose) ---- */
.feature-card {
    background: #fff; border-radius: var(--radius); padding: 30px 28px;
    border: 1px solid var(--border); height: 100%; position: relative;
    transition: all var(--transition); overflow: hidden;
}
.feature-card::before {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 54px; height: 54px; border-radius: 14px; margin-bottom: 18px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(201,162,75,0.16), rgba(201,111,46,0.14));
    color: var(--orange); font-size: 1.5rem;
}
.feature-card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ---- Comparison (classic vs offbeat) ---- */
.compare-panel {
    border-radius: var(--radius-lg); overflow: hidden; position: relative;
    height: 100%; color: #fff; padding: 40px 34px;
    background-size: cover; background-position: center;
}
.compare-panel::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,20,10,0.4), rgba(30,20,10,0.85)); }
.compare-panel .inner { position: relative; z-index: 2; }
.compare-panel .tag { display: inline-block; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 14px; }
.compare-panel h3 { color: #fff; font-size: 2rem; margin-bottom: 14px; }
.compare-panel p { color: rgba(255,255,255,0.85); }
.compare-list { list-style: none; padding: 0; margin: 20px 0 26px; }
.compare-list li { padding: 8px 0; display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.compare-list li::before { content: "◆"; color: var(--gold); font-size: 0.6rem; }

/* ---- Process/steps ---- */
.step-card { text-align: center; padding: 8px; }
.step-num {
    font-family: var(--font-heading); font-size: 3rem; font-weight: 700;
    color: transparent; -webkit-text-stroke: 1px var(--gold); line-height: 1; margin-bottom: 14px;
}
.step-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.step-card p { color: var(--muted); font-size: 0.92rem; max-width: 260px; margin: 0 auto; }

/* ---- Gallery ---- */
.gallery-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-btn {
    background: #fff; border: 1px solid var(--border); border-radius: 100px;
    padding: 0.5rem 1.4rem; font-size: 0.86rem; font-weight: 500; color: var(--text);
    cursor: pointer; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--brown-deep); color: var(--gold-light); border-color: var(--brown-deep); }
.gallery-grid { columns: 3; column-gap: 18px; }
.gallery-item {
    position: relative; margin-bottom: 18px; border-radius: var(--radius);
    overflow: hidden; break-inside: avoid; cursor: pointer; display: block;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .gallery-cap {
    position: absolute; inset: 0; display: flex; align-items: flex-end;
    background: linear-gradient(180deg, transparent, rgba(30,20,10,0.85));
    opacity: 0; transition: opacity var(--transition); padding: 20px; color: #fff;
}
.gallery-item:hover .gallery-cap { opacity: 1; }
.gallery-cap span { font-family: var(--font-heading); font-size: 1.2rem; }
.gallery-item.hidden { display: none; }

/* ---- Testimonials ---- */
.testimonial-card {
    background: #fff; border-radius: var(--radius-lg); padding: 38px 34px;
    border: 1px solid var(--border); box-shadow: var(--shadow-soft); text-align: center;
}
.testimonial-stars { color: var(--gold); margin-bottom: 18px; font-size: 1.1rem; letter-spacing: 4px; }
.testimonial-card blockquote { font-family: var(--font-heading); font-size: 1.35rem; color: var(--brown-deep); font-style: italic; margin: 0 0 20px; }
.testimonial-card .guest { font-weight: 500; color: var(--text); }
.testimonial-card .guest-loc { font-size: 0.82rem; color: var(--muted); }
.testimonial-label { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* ---- FAQ ---- */
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; }
.faq-question {
    width: 100%; text-align: left; background: none; border: none;
    padding: 20px 24px; font-family: var(--font-body); font-weight: 500;
    font-size: 1.02rem; color: var(--brown-deep); display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer;
}
.faq-question .bi { color: var(--gold); transition: transform var(--transition); }
.faq-item.open .faq-question .bi { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.faq-answer-inner { padding: 0 24px 22px; color: var(--muted); }

/* ---- CTA banner ---- */
.cta-banner {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    padding: 70px 50px; color: #fff; text-align: center;
    background-size: cover; background-position: center;
}
.cta-banner::before { content: ""; position: absolute; inset: 0; background: rgba(30,20,10,0.72); }
.cta-banner .inner { position: relative; z-index: 2; }
.cta-banner h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 18px; }
.cta-banner h2 em { color: var(--gold-light); }
.cta-banner p { color: rgba(255,255,255,0.9); max-width: 640px; margin: 0 auto 30px; }

/* ---- Dark section ---- */
.section-dark { background: var(--brown-deep); color: var(--sand); }
.section-dark .section-title { color: #fff; }
.section-dark .section-title em { color: var(--gold-light); }
.section-dark .section-lead { color: rgba(232,220,196,0.7); }
.section-dark .eyebrow { color: var(--gold-light); }

/* ---- Contact ---- */
.contact-info-item {
    display: flex; gap: 16px; padding: 20px; background: #fff;
    border-radius: var(--radius); border: 1px solid var(--border); margin-bottom: 14px;
}
.contact-info-item .icon {
    width: 48px; height: 48px; flex: 0 0 48px; border-radius: 12px;
    background: rgba(201,162,75,0.14); color: var(--orange);
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.contact-info-item h4 { font-size: 1.02rem; margin: 0 0 4px; font-family: var(--font-body); font-weight: 600; }
.contact-info-item p, .contact-info-item a { margin: 0; color: var(--muted); font-size: 0.94rem; }

.contact-form { background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-soft); border: 1px solid var(--border); }
.form-label { font-weight: 500; font-size: 0.86rem; color: var(--brown-deep); }
.form-control, .form-select {
    border: 1px solid var(--border); border-radius: 10px; padding: 0.75rem 1rem;
    font-family: var(--font-body); font-weight: 400; color: var(--text);
}
.form-control:focus, .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,0.15); }

/* ---- Footer ---- */
.site-footer { background: var(--brown-deep); color: var(--sand); padding: 80px 0 0; }
.footer-brand { display: flex; align-items: center; margin-bottom: 20px; }
.footer-brand .brand-name { color: var(--sand); }
.footer-brand .brand-name em { color: var(--gold-light); }
.footer-desc { color: rgba(232,220,196,0.7); font-size: 0.94rem; margin-bottom: 22px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 42px; height: 42px; border-radius: 50%;
    border: 1px solid rgba(231,201,122,0.3); color: var(--gold-light);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: #fff; border-color: var(--gold); transform: translateY(-3px); }
.footer-heading { color: #fff; font-size: 1.15rem; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer-heading::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px; background: var(--gold); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(232,220,196,0.7); font-size: 0.93rem; transition: all var(--transition); }
.footer-links a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 0.92rem; color: rgba(232,220,196,0.7); }
.footer-contact li .bi { color: var(--gold); margin-top: 3px; }
.footer-contact a { color: rgba(232,220,196,0.7); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
    border-top: 1px solid rgba(231,201,122,0.12); margin-top: 50px;
    padding: 24px 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
}
.footer-bottom p { margin: 0; font-size: 0.86rem; color: rgba(232,220,196,0.55); }
.footer-made { color: var(--gold-light) !important; }
.footer-made a { color: var(--gold-light); text-decoration: underline; }
.footer-made a:hover { color: #fff; }

/* ---- Floating buttons ---- */
.floating-buttons { position: fixed; right: 22px; bottom: 22px; z-index: 1200; display: flex; flex-direction: column; gap: 12px; }
.float-btn {
    width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #fff; position: relative; box-shadow: 0 10px 24px rgba(0,0,0,0.22);
    transition: transform var(--transition);
}
.float-btn:hover { transform: translateY(-4px); color: #fff; }
.float-whatsapp { background: #25D366; animation: pulse 2.2s infinite; }
.float-call { background: linear-gradient(135deg, var(--gold), var(--orange)); }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.float-btn::after {
    content: attr(data-tooltip); position: absolute; right: 64px; top: 50%; transform: translateY(-50%);
    background: var(--brown-deep); color: var(--gold-light); font-size: 0.76rem; padding: 6px 12px;
    border-radius: 6px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity var(--transition);
    font-family: var(--font-body);
}
.float-btn:hover::after { opacity: 1; }

/* ---- Back to top ---- */
.back-to-top {
    position: fixed; left: 22px; bottom: 22px; z-index: 1200;
    width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--gold);
    background: var(--brown-deep); color: var(--gold-light);
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    opacity: 0; visibility: hidden; transition: all var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); color: #fff; }

/* ---- Breadcrumbs ---- */
.page-hero {
    position: relative; padding: 170px 0 110px; color: #fff;
    background-size: cover; background-position: center; overflow: hidden;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,20,10,0.72), rgba(30,20,10,0.68)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 6vw, 4.2rem); margin-bottom: 14px; }
.page-hero h1 em { color: var(--gold-light); }
.page-hero p { color: rgba(255,255,255,0.88); max-width: 620px; font-size: 1.1rem; }
.breadcrumb { margin: 0; padding: 0; background: none; }
.breadcrumb-item { font-size: 0.86rem; }
.breadcrumb-item a { color: rgba(255,255,255,0.7); }
.breadcrumb-item.active { color: var(--gold-light); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ---- Pattern divider ---- */
.arch-divider { text-align: center; color: var(--gold); letter-spacing: 18px; font-size: 0.8rem; margin: -20px 0 0; }

/* ---- Reveal helpers ---- */
.reveal-line { overflow: hidden; display: inline-block; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ---- Lightbox ---- */
.lightbox {
    position: fixed; inset: 0; z-index: 2500;
    background: rgba(20, 14, 8, 0.94);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox .lb-figure { max-width: 90vw; max-height: 86vh; margin: 0; text-align: center; }
.lightbox .lb-img { max-width: 90vw; max-height: 78vh; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox .lb-caption { color: var(--sand); margin-top: 14px; font-family: var(--font-heading); font-size: 1.1rem; }
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next {
    position: absolute; background: rgba(255,255,255,0.08); border: 1px solid rgba(231,201,122,0.3);
    color: var(--gold-light); width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem; cursor: pointer;
    transition: all var(--transition);
}
.lightbox .lb-close:hover, .lightbox .lb-prev:hover, .lightbox .lb-next:hover { background: var(--gold); color: #fff; }
.lightbox .lb-close { top: 24px; right: 24px; font-size: 1.8rem; }
.lightbox .lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
@media (max-width: 767.98px) {
    .lightbox .lb-prev { left: 8px; }
    .lightbox .lb-next { right: 8px; }
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .section { padding: 70px 0; }
    .gallery-grid { columns: 2; }
    .intro-media .img-accent { bottom: -18px; right: -8px; }
    .intro-badge { width: 92px; height: 92px; top: -16px; left: -10px; }
    .intro-badge strong { font-size: 1.6rem; }
}
@media (max-width: 767.98px) {
    .section { padding: 56px 0; }
    .gallery-grid { columns: 1; }
    .booking-bar { margin-top: -40px; padding: 20px; }
    .contact-form { padding: 26px 20px; }
    .cta-banner { padding: 46px 22px; }
    .scroll-indicator { display: none; }
    .floating-buttons { right: 16px; bottom: 16px; }
    .back-to-top { left: 16px; bottom: 16px; }
    .float-btn { width: 48px; height: 48px; font-size: 1.3rem; }
    .compare-panel { padding: 30px 24px; }
    .hero-title { font-size: clamp(2.3rem, 10vw, 3.2rem); }
    .intro-media .img-accent { position: static; width: 100%; margin-top: 16px; border-width: 3px; }
    .intro-badge { display: none; }
}
