/* =====================================================
       NAVBAR
    ===================================================== */
.navbar {
    background: rgba(8, 8, 9, 0);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    padding: 14px 0;

    transition: 0.35s ease;

    position: fixed;
    inset: 0 0 auto 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 {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    display: block;
    height: 64px;
    width: auto;
    transition: 0.3s;
}

.navbar-brand img:hover {
    filter: drop-shadow(0 0 14px rgba(212, 168, 75, 0.75));
}

.navbar-brand span {
    color: var(--gold);
}

/* Hamburger icon — always visible on dark bg */
.navbar-toggler {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(212, 168, 75, 0.35) !important;

    border-radius: 4px;
}

.navbar-toggler i {
    font-size: 1.7rem;
    color: var(--gold);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.2);
}

/* Nav links */
.nav-link {
    font-size: 0.8rem;

    letter-spacing: 0.18em;

    font-weight: 500;

    color: #d6c29a !important;

    position: relative;

    padding: 0.7rem 1rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

/* Book Now button */
.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;
    transition: background 0.25s;
    white-space: nowrap;
}

.btn-book-nav:hover {
    background: var(--gold-light) !important;
    color: #1a100a !important;
}

/* Services dropdown — desktop dark theme */
.freyza-dropdown {
    background: #1e1208 !important;
    border: 1px solid rgba(212, 168, 75, 0.25) !important;
    border-radius: 0 !important;
    padding: 0.5rem 0;
    min-width: 230px;
}

.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;
}

/* =====================================================
       HERO
    ===================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
    width: 100%;
    /* max-width: 700px; */
    /* Adjust to your navbar height */

    background:
        linear-gradient(
            90deg,
            rgba(18, 10, 6, 0.82) 0%,
            rgba(18, 10, 6, 0.6) 35%,
            rgba(18, 10, 6, 0.18) 60%,
            transparent 100%
        ),
        url("../images/hero-banner-modal-2.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: visible;
}

.hero .container {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;

    width: 100%;
    align-items: center;
    /* width: 100%; */
    /* margin-top: 50px; */
}

.hero-copy {
    color: #fff;
    padding: 2rem 1rem;
}

.hero-copy h1 {
    text-align: left;
}

.hero-copy p {
    text-align: left;
}

.hero-side {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: flex-start;
}

.hero-eyebrow::before {
    content: "";
    display: inline-block;
    width: 36px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 1.6rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 2.4rem;
}

.hero-search-card {
    margin-top: 1.5rem;
    max-width: 640px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 1rem;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    /* width: stretch; */
    width: 100%;
}

.hero-search-card label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.hero-search-card .input-group {
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.3);
}

.hero-search-card .form-control {
    border: none;
    background: transparent;
    color: #fff;
    box-shadow: none;
}

.hero-search-card .form-control:focus {
    box-shadow: none;
}

.hero-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.5rem;
    background: rgba(30, 18, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.75rem;
    padding: 0.8rem;
    display: none;
    flex-direction: column;
    gap: 0.6rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    z-index: 1200;
    max-height: 360px;
    overflow-y: auto;
    width: 100%;
}

.hero-search-dropdown.open {
    display: flex;
}

.hero-search-results {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hero-search-dropdown::-webkit-scrollbar {
    width: 6px;
}

.hero-search-dropdown::-webkit-scrollbar-thumb {
    background: rgba(212, 168, 75, 0.4);
    border-radius: 999px;
}

.hero-search-item {
    padding: 0.7rem 0.8rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
}

.hero-search-item strong {
    color: var(--gold-light);
    font-size: 0.95rem;
}

.hero-search-meta {
    font-size: 0.75rem;
    color: var(--muted);
}

.hero-search-actions {
    display: flex;
    gap: 0.35rem;
    align-items: center;
}

.hero-search-actions a {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-search-empty {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 0.4rem 0;
    display: none;
}

.hero-search-empty.visible {
    display: block;
}

.hero-search-enroll {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 0.8rem;
}

.hero-search-enroll input {
    border-radius: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
}

.hero-search-enroll button {
    border-radius: 0.4rem;
    border: none;
    background: var(--gold);
    color: #1a100a;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    padding: 0.55rem 0.85rem;
    text-transform: uppercase;
}

.hero-search-status {
    font-size: 0.85rem;
    color: var(--gold-light);
    text-align: center;
}

.hero-search-status.error {
    color: #e08080;
}

.btn-primary-gold {
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 0.9rem 2.4rem;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    transition:
        background 0.25s,
        transform 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-gold:hover {
    background: var(--gold-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0;
    padding: 0.9rem 2.4rem;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    transition:
        border-color 0.25s,
        color 0.25s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-gold:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.input-group-text i {
    color: var(--muted);
}

/* About section start  */

/* #about {
    background: var(--bg-section);
}

.about-description p {
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.9;
    margin-bottom: 1.4rem;
}

.about-description p:last-child {
    margin-bottom: 0;
}

.about-img-wrap {
    position: relative;
    display: block;
    width: 100%;
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border: 1px solid var(--border);
} */

#about {
    background: var(--bg-section);
    padding: 110px 0;
}

.about-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(212, 168, 75, 0.18);
    background: #141414;
}

.about-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    transition: 0.7s;
}

.about-img-wrap:hover .about-img {
    transform: scale(1.05);
}

.about-description {
    margin-top: 28px;
}

.about-description p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 22px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 45px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 168, 75, 0.12);
    border-radius: 16px;
    padding: 28px 18px;
    text-align: center;
    transition: 0.35s;
}

.feature-card i {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.feature-card h6 {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 168, 75, 0.4);
    background: rgba(212, 168, 75, 0.06);
}

/* =====================================================
       STATS STRIP
    ===================================================== */
.stats-strip {
    background: var(--bg-section);
    padding: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.3rem;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    align-self: stretch;
}

/* =====================================================
       SECTION COMMONS
    ===================================================== */
section {
    padding: 6rem 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.8rem;
}

.section-tag::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--gold-light);
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

/* =====================================================
       SERVICES SECTION
    ===================================================== */
#services {
    background: var(--bg-section);
}

.service-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 2rem;
    background: linear-gradient(180deg, #171717 0%, #111111 100%);
    border: 1px solid rgba(212, 168, 75, 0.12);
    border-radius: 18px;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 168, 75, 0.35);
    background: linear-gradient(180deg, #1b1b1b, #141414);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a84b;
    transition: 0.4s;
}

.service-card:hover::before {
    width: 100%;
}

.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(212, 168, 75, 0.08);
    border: 1px solid rgba(212, 168, 75, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: 0.35s;
}

.service-icon-img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    transition: 0.35s;
}

.service-card:hover .service-icon {
    background: rgba(212, 168, 75, 0.12);
    transform: rotate(8deg);
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #f5f1e8;
    margin-bottom: 14px;
    line-height: 1.4;
}

.service-card p {
    color: #a8a095;
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: auto;
}

/* =====================================================
       BOOKING SECTION
    ===================================================== */

#booking {
    background: linear-gradient(180deg, #090909, #101010);
    overflow: hidden;
    position: relative;
}

.booking-wrapper {
    background: #151515;

    backdrop-filter: blur(18px);

    border: 1px solid rgba(212, 168, 75, 0.15);

    border-radius: 24px;

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.calendar-header {
    border-bottom: 1px solid rgba(212, 168, 75, 0.1);

    padding-bottom: 18px;

    margin-bottom: 24px;
}

.form-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.45rem;
}

.form-control,
.form-select {
    border: 1px solid var(--border);
    border-radius: 0.9rem;
    padding: 0.72rem 1rem;
    font-family: "Jost", sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--focus);
    transition:
        border-color 0.25s,
        box-shadow 0.25s;
}

.form-control::placeholder {
    color: var(--muted);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.15);
    background: rgba(255, 255, 255, 0.06) !important;
    color: var(--text);
}

.form-select option {
    background: #2e221a;
    color: var(--text);
}

.btn-book {
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 1rem 2.8rem;
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    transition:
        background 0.25s,
        transform 0.2s;
    width: 100%;
}

.btn-book:hover {
    background: var(--mocha);
    transform: translateY(-2px);
    color: #fff;
}

.btn-book:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.alert-success-custom {
    background: #f0f7f0;
    border-left: 3px solid var(--sage);
    border-radius: 0;
    color: #2d5a2d;
    padding: 1.1rem 1.4rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.alert-danger-custom {
    background: #fdf0f0;
    border-left: 3px solid #c97070;
    border-radius: 0;
    color: #7a2d2d;
    padding: 1.1rem 1.4rem;
    font-size: 0.9rem;
}

.booking-side-info h3 {
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold-light);
    margin-bottom: 1.4rem;
}

.info-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.4rem;
}

.info-row .icon-wrap {
    width: 38px;
    height: 38px;
    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.85rem;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 0.15rem;
}

.info-row p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.divider-gold {
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin: 1.6rem 0;
}

/* =====================================================
       TESTIMONIALS
    ===================================================== */
#testimonials {
    background: var(--bg-section);
}

#testimonials .section-tag {
    color: var(--gold-light);
}

#testimonials .section-tag::before {
    background: var(--gold-light);
}

#testimonials .section-title {
    color: var(--gold-light);
}

.testimonial-card {
    height: 100%;
    min-height: 360px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 18px;
}

.testimonial-card p {
    flex-grow: 1;
}

.testimonial-card .quote-mark {
    font-family: "Cormorant Garamond", serif;
    font-size: 5rem;
    color: var(--gold);
    line-height: 0.6;
    opacity: 0.35;
    position: absolute;
    top: 1.2rem;
    left: 1.4rem;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: #d4bfa0;
    line-height: 1.8;
    margin-top: 2rem;
    margin-bottom: 1.4rem;
}

.testimonial-author {
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.stars {
    color: var(--gold);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

/* =====================================================
       FOOTER
    ===================================================== */
footer {
    background: #070809;
    padding: 4rem 0 2rem;
}

.footer-brand {
    margin-bottom: 0.8rem;
}

.footer-brand span {
    color: var(--gold);
}

footer p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
}

.footer-heading {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.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.5rem 0 1.5rem;
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition:
        border-color 0.25s,
        color 0.25s;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* =====================================================
       SCROLL ANIMATIONS
    ===================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: none;
    /* width: stretch; */
}

.fade-up-2 {
    transition-delay: 0.12s;
}

.fade-up-3 {
    transition-delay: 0.24s;
}

.fade-up-4 {
    transition-delay: 0.36s;
}

/* =====================================================
       MISC
    ===================================================== */
.gold-line {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 2rem;
}

.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;
}

/* =====================================================
       ABOUT SECTION  (was missing — caused overlap)
    ===================================================== */

.about-badge {
    position: absolute;
    bottom: -18px;
    right: 16px;
    background: var(--gold);
    color: #1a100a;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    z-index: 3;
}

.about-badge-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge-num sup {
    font-size: 1rem;
}

.about-badge-txt {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.4;
    margin-top: 0.2rem;
}

.about-stat {
    background: #3a2a1e;
    border: 1px solid var(--border);
    padding: 1.1rem 1rem;
    text-align: center;
}

.about-stat-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.about-stat-num span {
    font-size: 1.2rem;
    color: var(--gold-light);
}

.about-stat-lbl {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.3rem;
}

.service-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
}

.testimonial-author-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-avatar.initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #6c63ff;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

/* Additional modal styles */
.modal-content {
    border-radius: 0 !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

#notifyForm .input-group:focus-within {
    box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.15);
}

#notifyForm .form-control:focus {
    box-shadow: none;
    background: var(--bg-dark);
}

#notifySubmitBtn:hover {
    background: var(--gold-light) !important;
}

#notifySubmitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.notify-message-success {
    color: var(--gold) !important;
}

.notify-message-error {
    color: #e08080 !important;
}

/* Loading spinner */
.loader-small {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(26, 16, 10, 0.3);
    border-radius: 50%;
    border-top-color: #1a100a;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
