.freyza-dropdown .dropdown-item.active-service {
    background: rgba(212, 168, 75, 0.18) !important;
    color: var(--gold) !important;
}

/* HERO */
.page-hero {
    padding-top: 50px;
    background: var(--bg-section);
    position: relative;
}

/* .page-hero::after {
    content: "F";
    position: absolute;

    top: 50%;
    right: 6%;

    transform: translateY(-50%);

    font-family: "Cormorant Garamond", serif;
    font-size: 32rem;
    font-weight: 600;

    color: rgba(212,168,75,.04);

    line-height: 1;

    pointer-events: none;
    user-select: none;

    z-index: 1;
} */

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(212, 168, 75, 0.1),
            transparent 260px
        ),
        radial-gradient(
            circle at 85% 25%,
            rgba(212, 168, 75, 0.06),
            transparent 320px
        ),
        radial-gradient(
            circle at 30% 85%,
            rgba(212, 168, 75, 0.08),
            transparent 240px
        );

    opacity: 0.5;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    padding: 4rem 0 5rem;
}

.page-hero-img-wrap {
    position: relative;
}

.page-hero-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border: 1px solid var(--border);
    filter: brightness(0.88);
}

.page-hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(28, 18, 10, 0.6) 0%,
        rgba(28, 18, 10, 0.1) 60%
    );
}

.page-hero-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(212, 168, 75, 0.92);
    color: #1a100a;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.page-hero-text {
    padding: 2rem 0;
    transition: padding 0.3s ease;
}

.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, 3rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--gold-light);
    text-align: left;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.gold-line {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 2rem;
}

.page-hero-desc {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.9;
    max-width: 500px;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    min-width: 0;
    white-space: normal;
}

.gender-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin: 35px 0 50px;
}

.gender-tab {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: var(--gold);
    padding: 10px 28px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 120px;
    backdrop-filter: blur(4px);
}

.gender-tab:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--gold);
    transform: translateY(-1px);
}

.gender-tab.active {
    background: linear-gradient(135deg, #d4af37 0%, #f3d57a 100%);
    color: #2a1b14;
    border-color: #d4af37;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.18);
}

.gender-tab:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.service-content-inner {
    max-width: 700px;
    margin: 0 auto;
}

.service-content-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 15px 20px;
}

.service-content-block {
    margin-bottom: 60px;
}

.service-paragraph {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.9;
    margin-bottom: 0.8rem;
    text-align: left;
}

.service-list {
    margin: 0 0 1.5rem 0;
    padding-left: 1.4rem;
}

.service-list li {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.9;
    margin-bottom: 0.4rem;
}

.service-bottom-text {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.9;
    margin-top: 1rem;
    text-align: left;
}

@media (max-width: 991.98px) {
    .page-hero-img {
        height: 280px;
    }

    .page-hero-text {
        padding: 2rem 1.25rem 1rem;
        text-align: left;
    }

    .page-hero-desc {
        margin: 0 auto;
        max-width: none;
        text-align: left;
    }

    .page-hero-text .section-tag {
        justify-content: flex-start;
    }

    .page-hero-text .fade-up-4 {
        flex-direction: column;
        gap: 0.9rem;
        align-items: stretch;
    }

    .page-hero-text .fade-up-4 > a {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .page-hero-inner {
        padding: 3.5rem 0 4rem;
    }

    .page-hero-text {
        padding: 2rem 1rem 1rem;
    }

    .section-title {
        font-size: clamp(2.2rem, 4vw, 2.8rem);
    }

    .page-hero-text .fade-up-4 {
        gap: 0.8rem;
    }

    .page-hero-text .fade-up-4 > a {
        padding: 0.85rem 1rem !important;
    }

    .services-heading {
        text-align: left;
        align-items: flex-start;
    }

    .services-heading .section-tag {
        justify-content: flex-start;
    }

    .services-heading .gold-line {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .page-hero-inner {
        padding: 3rem 0 3.5rem;
    }

    .page-hero-text {
        padding: 1.8rem 1.5rem 1rem;
    }

    .page-hero-desc {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .page-hero-text .fade-up-4 {
        gap: 0.65rem;
    }

    .page-hero-text .fade-up-4 > a {
        font-size: 0.85rem;
        justify-content: flex-start;
    }
}

/* SERVICES */
.services-section {
    padding: 5rem 0;
    background: var(--bg-section);
}

/* .service-item {
    background: #3a2a1e;
    border: 1px solid var(--border);
    overflow: hidden;
    transition:
        transform 0.35s,
        box-shadow 0.35s,
        border-color 0.35s;
    position: relative;
} */

/* .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 168, 75, 0.6);
} */

.service-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--gold);
    transition: width 0.4s;
}

.service-item:hover::after {
    width: 100%;
}

/* .service-img-wrap {
    position: relative;
    overflow: hidden;
    height: 210px;
} */

/* .service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
} */

.service-item:hover .service-img-wrap img {
    transform: scale(1.06);
}

/* .service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(30, 18, 8, 0.7) 0%,
        transparent 60%
    );
} */

.service-img-badge {
    position: absolute;
    bottom: 12px;
    right: 14px;
    background: var(--gold);
    color: #1a100a;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.28rem 0.75rem;
}

/* .service-body {
    padding: 1.5rem 1.7rem;
} */

/* .service-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 0.4rem;
} */

/* .service-desc {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1rem;
} */

.service-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 0.9rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.price-label {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
}

.price-value {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.price-duration {
    font-size: 0.73rem;
    color: rgba(212, 168, 75, 0.65);
    letter-spacing: 0.06em;
    margin-top: 0.2rem;
}

/* .btn-service {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(212, 168, 75, 0.4);
    padding: 0.38rem 0.9rem;
    transition:
        background 0.25s,
        color 0.25s,
        border-color 0.25s;
    white-space: nowrap;
}

.btn-service:hover {
    background: var(--gold);
    color: #1a100a !important;
    border-color: var(--gold);
} */

.services-heading {
    margin-bottom: 3.5rem;
}

/* New service cards */

.service-item {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #151515;
    border: 1px solid rgba(212, 168, 75, 0.12);
    transition: 0.45s;
}

.service-item::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 180px;
    height: 180px;
    background: rgba(212, 168, 75, 0.08);
    filter: blur(70px);
    opacity: 0;
    transition: 0.45s;
    z-index: 0;
}

.service-item:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 168, 75, 0.45);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.service-item:hover::before {
    opacity: 1;
}

.service-img-wrap {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.service-item:hover img {
    transform: scale(1.08);
}

.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.55) 35%,
        transparent 75%
    );
}

.service-image-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
}

.service-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(212, 168, 75, 0.35);
    color: var(--gold);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    backdrop-filter: blur(10px);
}

.service-name {
    color: #fff;
    font-size: 1.5rem;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    margin: 0;
}

.service-body {
    padding: 26px;
}

.service-desc {
    color: #b9b9b9;
    line-height: 1.9;
    font-size: 0.92rem;
    min-height: 20px;
    margin-bottom: 10px;
}

.service-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: 0.35s;
}

.btn-service span {
    transition: 0.35s;
    font-size: 1.1rem;
}

.btn-service:hover {
    color: #fff;
}

.btn-service:hover span {
    transform: translateX(8px);
}

@media (max-width: 575.98px) {
    .service-img-wrap {
        height: 180px;
    }

    .service-body {
        padding: 1.2rem 1.25rem;
    }

    .service-price-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-service {
        width: 100%;
        text-align: center;
        padding: 0.55rem 1rem;
    }
    .page-hero-btns {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
        width: 18rem !important;
    }
}

/* BOOKING */
/* #booking {
    background: var(--cream);
    padding: 5rem 0;
}

.booking-wrapper {
    background: #3a2a1e;
    border: 1px solid var(--border);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
    padding: 3.5rem;
} */

/* @media (max-width: 768px) {
    .booking-wrapper {
        padding: 2rem 1.5rem;
    }
} */

/* .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;
    padding: 0.72rem 1rem;
    font-family: "Jost", sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: #2e221a;
    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.15);
    background: #261a12;
    color: var(--text);
} */

.form-select option {
    background: #2e221a;
    color: var(--text);
}

.btn-book {
    background: var(--espresso);
    color: #1a100a;
    border: none;
    border-radius: 0;
    padding: 1rem 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(--mocha);
    transform: translateY(-2px);
    color: #1a100a;
}

.btn-book:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.alert-success-custom {
    background: rgba(138, 158, 138, 0.12);
    border-left: 3px solid var(--sage);
    border-radius: 0;
    color: #a8d4a8;
    padding: 1.1rem 1.4rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.alert-danger-custom {
    background: rgba(201, 112, 112, 0.1);
    border-left: 3px solid #c97070;
    border-radius: 0;
    color: #e09090;
    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;
}

.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);
    }

    40% {
        transform: scale(1);
    }
}

/* FOOTER */
/* footer {
    background: #070809;
    padding: 4rem 0 2rem;
} */

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);
}

/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: none;
}

.fade-up-2 {
    transition-delay: 0.1s;
}

.fade-up-3 {
    transition-delay: 0.2s;
}

.fade-up-4 {
    transition-delay: 0.3s;
}

.page-hero {
    position: relative;
    z-index: 1;
}

.page-hero::before {
    z-index: 0;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
}

.dropdown-menu {
    z-index: 9999999 !important;
}

.service-subheading-block {
    color: var(--muted) !important;
}

.highlight-service {
    animation: serviceHighlight 2s ease;
}

@keyframes serviceHighlight {
    0% {
        box-shadow: 0 0 0 rgba(212, 175, 55, 0);
    }

    50% {
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
    }

    100% {
        box-shadow: 0 0 0 rgba(212, 175, 55, 0);
    }
}

@media (max-width: 767px) {

    .page-hero-img-wrap {
        max-width: 100%;
        height: 240px;
        margin: 0 auto;
        border-radius: 16px;
    }

    .page-hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

}