:root {
    --brand-gold: #e6b800;
    --brand-gold-light: #fbd00b;
    --brand-gold-hover: #f5d000;
    --brand-dark: #111111;
    --brand-white: #ffffff;
    --text-primary: #111111;
    --text-secondary: #555555;
    --text-muted: #888888;
    --bg-page: #f5f5f5;
    --bg-panel: #ffffff;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
    --radius-card: 16px;
    --radius-btn: 10px;
    --transition-fade: opacity 0.3s ease;
}


body {
    background: var(--bg-page);
}

.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;

}

/* Section header */
.studio-section-header {
    text-align: center;
    margin-bottom: 36px;
}

.studio-section-header .eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--brand-gold);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.studio-section-header .eyebrow i {
    font-size: 16px;
    color: var(--brand-gold);
}

.studio-section-header h1 {
    font-size: 38px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.2;
}

.studio-section-header>p {
    font-size: 15px;
    color: var(--text-muted);
}

/* Location tabs */
.location-tabs {
    display: flex;
    gap: 0;
    background: var(--brand-dark);
    border-radius: 14px 14px 0 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.location-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    flex: 1;
    min-width: 160px;
    padding: 16px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #aaaaaa;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: color 0.25s, background 0.25s;
    white-space: nowrap;
    position: relative;
}

.tab-btn:first-child {
    border-radius: 14px 0 0 0;
}

.tab-btn:last-child {
    border-radius: 0 14px 0 0;
}

.tab-btn i {
    font-size: 16px;
    color: #555555;
    transition: color 0.25s;
}

.tab-btn.active {
    background: var(--brand-gold-light);
    color: #000000;
}

.tab-btn.active i {
    color: #000000;
}

.tab-badge {
    font-size: 10px;
    font-weight: 700;
    background: var(--brand-gold);
    color: #000000;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-btn.active .tab-badge {
    background: #000000;
    color: var(--brand-gold-light);
}

/* Studio info panel */
.studio-info-panel {
    background: var(--bg-panel);
    border-radius: 0 0 var(--radius-card) var(--radius-card);
    padding: 28px 30px;
    margin-bottom: 36px;
    box-shadow: var(--shadow-card);
    display: grid;
    grid-template-columns: 260px 1fr auto;
    gap: 28px;
    align-items: center;
}

/* Thumbnail placeholder */
.studio-thumb {
    width: 260px;
    height: 165px;
    border-radius: 12px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.studio-thumb i {
    font-size: 48px;
    color: var(--brand-gold);
    opacity: 0.6;
}

.studio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Studio text details */
.studio-details h2 {
    font-size: 26px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.studio-address,
.studio-open {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    margin-bottom: 6px;
}

.studio-address {
    color: var(--text-muted);
}

.studio-address i,
.studio-open i {
    font-size: 15px;
    color: var(--brand-gold);
    flex-shrink: 0;
}

.studio-open {
    color: #2e7d32;
    font-weight: 600;
    margin-bottom: 12px;
}

.studio-open i {
    color: #4caf50;
}

.studio-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Amenities row */
.amenities-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    min-width: 54px;
}

.amenity-item i {
    font-size: 22px;
    color: var(--brand-gold);
}

/* Map button */
.map-btn {
    background: var(--bg-panel);
    border: 2px solid var(--brand-gold);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 700;
    padding: 11px 18px;
    border-radius: var(--radius-btn);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.2s;
    font-family: 'Open Sans', sans-serif;
    align-self: flex-start;
}

.map-btn i {
    font-size: 16px;
    color: var(--brand-gold);
}

.map-btn:hover {
    background: var(--brand-gold-light);
}

/* Fade transition */
.studio-content-area {
    opacity: 1;
    transition: var(--transition-fade);
}

.studio-content-area.fading {
    opacity: 0;
}

/* Packages header */
.packages-header {
    text-align: center;
    margin-bottom: 30px;
}

.pckages-header h2 {
    font-size: 30px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.packages-header p {
    font-size: 14px;
    color: var(--text-muted);
}

.packages-header .accent-line {
    width: 50px;
    height: 3px;
    background: var(--brand-gold-light);
    margin: 10px auto 0;
    border-radius: 2px;
}




/* Modal overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.modal-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: var(--bg-panel);
    border-radius: 20px;
    padding: 44px 38px;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
    transform: translateY(30px);
    transition: transform 0.35s ease;
    text-align: center;
    position: relative;
}

.modal-overlay.visible .modal-box {
    transform: translateY(0);
}

.modal-logo {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--brand-gold);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.modal-logo i {
    font-size: 18px;
    color: var(--brand-gold);
}

.modal-box h2 {
    font-size: 26px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.modal-box>p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 26px;
    line-height: 1.6;
}

.modal-select {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-btn);
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    color: var(--text-primary);
    background: #fafafa;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
    margin-bottom: 20px;
    transition: border-color 0.2s;
}

.modal-select:focus {
    outline: none;
    border-color: var(--brand-gold);
}

.modal-continue-btn {
    width: 100%;
    padding: 14px;
    background: var(--brand-gold-light);
    border: none;
    border-radius: var(--radius-btn);
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
}

.modal-continue-btn i {
    font-size: 18px;
    color: #000000;
}

.modal-continue-btn:hover {
    background: var(--brand-gold-hover);
    transform: translateY(-1px);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    font-size: 20px;
    color: #bbbbbb;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    padding: 4px;
    border-radius: 50%;
    transition: color 0.2s, background 0.2s;
}

.modal-close i {
    font-size: 20px;
    color: inherit;
}

.modal-close:hover {
    color: #555555;
    background: #f0f0f0;
}

/* Responsive */
@media (max-width: 960px) {
    .studio-info-panel {
        grid-template-columns: 1fr;
    }

    .studio-thumb {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 640px) {
    .studio-section-header h1 {
        font-size: 26px;
    }

    .tab-btn {
        min-width: 120px;
        font-size: 13px;
        padding: 12px 14px;
    }

    .studio-info-panel {
        padding: 20px;
    }

    .modal-box {
        padding: 32px 24px;
    }

    .modal-box h2 {
        font-size: 22px;
    }

    .trust-bar {
        gap: 20px;
    }

    .whatsapp-float span {
        display: none;
    }
}

/* Mobile + tablet only */
@media (max-width: 991px) {
    .location-tabs {
        gap: 10px;
        background: transparent;
        border-radius: 14px 14px 0 0;
        border-radius: 14px 14px 0 0;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 8px 0 14px;
        padding-inline: calc(50% - 140px);
        scroll-padding-inline: calc(50% - 140px);
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .location-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        flex: 0 0 auto;
        min-width: 260px;
        padding: 14px 18px;
        border-radius: 14px;
        scroll-snap-align: center;
    }

    .tab-btn:first-child,
    .tab-btn:last-child {
        border-radius: 14px;
    }

    .tab-btn.active {
        background: var(--brand-gold-light);
        color: #000000;
        box-shadow: 0 2px 12px rgba(251, 208, 11, 0.35);
    }
}

/*cards*/


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

body {
    font-family: 'Open Sans', sans-serif;
}

/* Pricing grid  */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Card shell */
.card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif !important;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid #ebd46b;
}

/* Card header  */
.card-header {
    background: #fbd00b;
    padding: 21px 20px;
    text-align: center;
}

.plan-name {
    font-size: 32px;
    font-weight: 900;
    color: #000;
    line-height: 1.2;
}

/* Card body */
.card-body {
    padding: 30px;
    padding-bottom: 10px !important;
}

.card-text {
    min-height: 330px !important;
}

/* Feature list*/
.features {
    list-style: none;
    margin-bottom: 30px;
}

.features li {
    padding: 3px 0;
    color: #5f5a5ae3;
    font-size: 16px;
    position: relative;
    padding-left: 25px;
}

.features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FFC107;
    font-size: 24px;
    font-weight: bold;
}

/* Pricing section  */
.pricing-section {
    margin-bottom: 20px;
}

.pricing-label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.price-box {
    background: #000;
    color: white;
    padding: 9px 2px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 8px;
}

.price {
    font-size: 29px;
    font-weight: 900;
}

.price-gold {
    color: #FFC107;
}

.extra-hour {
    font-size: 12px;
    color: #fff;
    margin-top: 5px;
}

/*Book button */
.book-btn {
    background-color: #edc716b5;
    border-radius: 5px;
    padding: 6px 15px;
    border: none;
    color: black;
    font-weight: bold;
    margin-bottom: 5px;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

.book-btn:hover {
    background-color: #edc71687;
}

/* ---------- Responsive ---------- */
@media (max-width: 520px) {
    .plan-name {
        font-size: 22px;
    }
}

/* Booking Modal Styling */
.booking-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85); display: none; justify-content: center;
    align-items: center; z-index: 99999; backdrop-filter: blur(8px);
    padding: 20px; box-sizing: border-box; overflow-y: auto;
}
.booking-modal-content {
    background: #111111; border: 1px solid rgba(237, 199, 22, 0.2);
    border-radius: 12px; width: 100%; max-width: 640px;
    padding: 20px 25px; box-sizing: border-box; color: #fff;
    position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-align: left;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 40px);
    overflow: hidden;
}
.booking-modal-close {
    position: absolute; top: 15px; right: 20px; font-size: 28px;
    color: #fff; background: none; border: none; cursor: pointer;
    transition: color 0.2s;
    z-index: 10;
}
.booking-modal-close:hover { color: #edc716; }
.booking-modal-title {
    font-size: 1.3rem; font-weight: 700; margin-bottom: 12px;
    color: #edc716; border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 8px;
    flex-shrink: 0;
}
#bookingForm {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}
.booking-form-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 6px;
    margin-bottom: 10px;
}
/* Scrollbar styling for booking form body */
.booking-form-body::-webkit-scrollbar {
    width: 6px;
}
.booking-form-body::-webkit-scrollbar-track {
    background: #111;
}
.booking-form-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}
.booking-form-body::-webkit-scrollbar-thumb:hover {
    background: #edc716;
}
.booking-form-row {
    display: flex;
    gap: 15px;
}
.booking-form-row .booking-form-group {
    flex: 1;
}
@media (max-width: 576px) {
    .booking-form-row {
        flex-direction: column;
        gap: 0;
    }
}
.booking-form-group { margin-bottom: 12px; text-align: left; }
.booking-form-group label {
    display: block; font-size: 0.85rem; font-weight: 600;
    margin-bottom: 5px; color: #ccc;
}
.booking-form-control {
    width: 100%; padding: 10px 12px; border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15); background: #1c1c1c;
    color: #fff; font-size: 0.9rem; box-sizing: border-box;
    transition: border-color 0.2s;
}
.booking-form-control:focus {
    border-color: #edc716; outline: none;
}
.booking-btn-submit {
    width: 100%; padding: 12px; border-radius: 6px;
    background: #edc716; color: #000; font-size: 1rem;
    font-weight: 700; border: none; cursor: pointer;
    transition: background-color 0.2s; margin-top: 15px;
    flex-shrink: 0;
}
.booking-btn-submit:hover { background: #edc716c0; }
.booking-price-summary {
    background: rgba(237, 199, 22, 0.05); border: 1px dashed rgba(237, 199, 22, 0.3);
    border-radius: 6px; padding: 15px; margin-top: 15px; font-weight: bold;
    display: flex; justify-content: space-between; align-items: center;
    color: #edc716; font-size: 1.1rem;
    flex-shrink: 0;
}
.booking-slots-container {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
    max-height: 120px; overflow-y: auto; padding: 5px 0;
}
.booking-slot-btn {
    background: #252525; border: 1px solid rgba(255,255,255,0.1);
    color: #fff; padding: 6px; text-align: center; border-radius: 4px;
    font-size: 0.72rem; cursor: pointer; transition: all 0.2s;
}
.booking-slot-btn:hover { border-color: #edc716; background: #2f2f2f; }
.booking-slot-btn.active {
    background: #edc716; color: #000; border-color: #edc716;
}
.booking-slot-btn.disabled {
    opacity: 0.3; cursor: not-allowed; pointer-events: none;
}