/* =====================================================
       ROOT & THEME
    ===================================================== */

:root {
    /* Background */

    --bg-section: linear-gradient(180deg, #0b0b0b, #111111);
    --surface: #111111;
    --surface-2: #171717;

    --gold: #d4a84b;
    --gold-light: #e9c978;
    --gold-dark: #9f7230;
    --espresso: #f5e6c8;
    --mocha: #e8c97a;
    --blush: #5c3d2e;
    --sage: #8a9e8a;
    /* --text: #f0e0c0; */
    /* --muted: #b09070; */
    --border: rgba(212, 168, 75, 0.28);

    --cream: #070809;
    --warm-white: #070809;
    --focus: #1a1a1a;

    /* Text */

    --heading: #f8f4ec;
    --text: #ddd6ca;
    --muted: #a79d91;

    /* Accent */

    --emerald: #315b4c;

    /* Border */

    --border: rgba(212, 168, 75, 0.18);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Jost", sans-serif;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.2px;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

/* ---------------------------------------------------------------
   NAVBAR
--------------------------------------------------------------- */
.navbar {
    background: rgba(8, 8, 9, 0);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.85rem;
    transition:
        background 0.4s,
        box-shadow 0.4s;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 168, 75, 0.15);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.96);

    border-color: rgba(212, 168, 75, 0.25);

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.65),
        0 0 30px rgba(212, 168, 75, 0.05);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 64px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(212, 168, 75, 0.4));
    transition: filter 0.3s;
}
.navbar-brand img:hover {
    filter: drop-shadow(0 0 14px rgba(212, 168, 75, 0.75));
}

.navbar-toggler {
    border: 1px solid rgba(212, 168, 75, 0.45) !important;
    padding: 0.3rem 0.55rem;
    border-radius: 3px;
}
.navbar-toggler i {
    color: var(--gold);
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.2);
}

.nav-link {
    font-size: 0.77rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #e8d5a8 !important;
    padding: 0.5rem 0.85rem !important;
    transition: color 0.25s;
}
.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

/* Services dropdown */
.freyza-dropdown {
    background: #1e1208 !important;
    border: 1px solid rgba(212, 168, 75, 0.25) !important;
    border-radius: 0 !important;
    min-width: 230px;
    padding: 0.5rem 0;
}
.freyza-dropdown .dropdown-item {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: #e0c898 !important;
    padding: 0.6rem 1.2rem;
    transition:
        background 0.2s,
        color 0.2s;
}
.freyza-dropdown .dropdown-item:hover {
    background: rgba(212, 168, 75, 0.12) !important;
    color: var(--gold-light) !important;
}

.btn-book-nav {
    background: var(--gold) !important;
    color: #1a100a !important;
    border-radius: 0 !important;
    padding: 0.5rem 1.3rem !important;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.25s;
}
.btn-book-nav:hover {
    background: var(--gold-light) !important;
    color: #1a100a !important;
}

/* Mobile menu */

/* ---------------------------------------------------------------
   PAGE BANNER  (used on all inner pages)
--------------------------------------------------------------- */
.page-banner {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    margin-top: 92px; /* offset fixed navbar */
}
.page-banner img.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.page-banner .banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(20, 10, 4, 0.78) 0%,
        rgba(20, 10, 4, 0.45) 60%,
        rgba(20, 10, 4, 0.55) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.page-banner .banner-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
}
.page-banner .banner-title em {
    font-style: italic;
    color: var(--gold-light);
}
.banner-breadcrumb {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.6rem;
}
.banner-breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}
.banner-breadcrumb a:hover {
    color: var(--gold-light);
}

/* ---------------------------------------------------------------
   SECTION COMMONS
--------------------------------------------------------------- */
.section-wrap {
    padding: 5rem 0;
}
.section-tag {
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.75rem;
}
.section-tag::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--gold);
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--gold-light);
}
.section-title em {
    font-style: italic;
    color: var(--gold);
}
.gold-line {
    width: 44px;
    height: 2px;
    background: var(--gold);
    margin: 1.2rem 0 1.8rem;
}

/* ---------------------------------------------------------------
   BOOKING FORM  (shared across pages)
--------------------------------------------------------------- */
.booking-section {
    background: var(--bg);
    padding: 5rem 0;
}
.booking-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
    padding: 3.2rem;
}
@media (max-width: 768px) {
    .booking-wrapper {
        padding: 1.8rem 1.3rem;
    }
}
@media (max-width: 991.98px) {
    .page-banner {
        margin-top: 62px;
        height: 260px;
    }
}

.form-label {
    font-size: 0.71rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.4rem;
}
.form-control,
.form-select {
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 0.72rem 1rem;
    font-family: "Jost", sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: #2a1c12;
    transition:
        border-color 0.25s,
        box-shadow 0.25s;
}
.form-control::placeholder {
    color: #7a6050;
}
/* .form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.14);
    background: #231510;
    color: var(--text);
} */
.form-select option {
    background: #2a1c12;
    color: var(--text);
}

.btn-book {
    background: var(--gold);
    color: #1a100a;
    border: none;
    border-radius: 0;
    padding: 0.95rem 2.8rem;
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    transition:
        background 0.25s,
        transform 0.2s;
    width: 100%;
}
.btn-book:hover {
    background: var(--gold-light);
    color: #1a100a;
    transform: translateY(-2px);
}
.btn-book:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.booking-side-info h3 {
    font-size: 1.9rem;
    font-weight: 300;
    color: var(--gold-light);
    margin-bottom: 1.3rem;
}
.info-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.3rem;
}
.info-row .icon-wrap {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: rgba(212, 168, 75, 0.1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
}
.info-row h5 {
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 0.12rem;
}
.info-row p {
    font-size: 0.81rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}
.divider-gold {
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin: 1.4rem 0;
}

.alert-success-custom {
    background: rgba(138, 158, 138, 0.12);
    border-left: 3px solid var(--sage);
    border-radius: 0;
    color: #a8d0a8;
    padding: 1rem 1.3rem;
    font-size: 0.88rem;
    line-height: 1.6;
}
.alert-danger-custom {
    background: rgba(201, 112, 112, 0.1);
    border-left: 3px solid #c97070;
    border-radius: 0;
    color: #e8a8a8;
    padding: 1rem 1.3rem;
    font-size: 0.88rem;
}

/* ---------------------------------------------------------------
   FOOTER
--------------------------------------------------------------- */
footer {
    background: var(--bg-darker);
    padding: 4rem 0 2rem;
}
.footer-brand {
    margin-bottom: 0.8rem;
}
footer p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.8;
}
.footer-heading {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.1rem;
}
.footer-link {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-bottom: 0.55rem;
    transition: color 0.2s;
}
.footer-link:hover {
    color: var(--gold-light);
}
.footer-divider {
    border-color: rgba(255, 255, 255, 0.07);
    margin: 2.4rem 0 1.4rem;
}
.footer-copy {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.28);
}
.social-link {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.48);
    text-decoration: none;
    transition:
        border-color 0.25s,
        color 0.25s;
    margin-right: 0.4rem;
    font-size: 0.88rem;
}
.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ---------------------------------------------------------------
   ANIMATIONS
--------------------------------------------------------------- */
.fade-up {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: none;
}
.fade-up-2 {
    transition-delay: 0.12s;
}
.fade-up-3 {
    transition-delay: 0.24s;
}
.fade-up-4 {
    transition-delay: 0.36s;
}

/* loading dots */
.loading-dots span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    margin: 0 2px;
    animation: dot-bounce 1.2s infinite ease-in-out both;
}
.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}
.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}
@keyframes dot-bounce {
    0%,
    80%,
    100% {
        transform: scale(0);
        opacity: 0.4;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}
.support-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.support-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.support-btn:hover {
    transform: scale(1.08);
}

.whatsapp {
    background: #25d366;
}

.call {
    background: #ff6b00;
}
.contact-map iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 16px;
}
