/* ---------- BLACK & WHITE PROFESSIONAL THEME ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --primary: #000000;
    --primary-dark: #1a1a1a;
    --secondary: #2c2c2c;
    --accent: #333333;
    --light-bg: #fafafa;
    --dark-text: #111111;
    --medium-text: #3a3a3a;
    --light-text: #6b6b6b;
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --success: #2e7d32;
    --error: #c62828;
    --border-light: #e5e5e5;
}

body {
    background: var(--light-bg);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, .logo-text, .package-name, .studio-title, .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--white);
    margin: 5% auto;
    width: 90%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.4s ease;
    position: relative;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.5rem;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-header h3 i {
    color: var(--black);
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--light-text);
    transition: all 0.3s;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    background: #f0f0f0;
    color: var(--black);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

/* Review Button */
.write-review-btn {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 0.9rem 1.8rem;
    border-radius: 40px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.write-review-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Carousel Styles */
.reviews-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.reviews-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.reviews-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.carousel-slide {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: calc(33.333% - 1.33rem);
    transition: transform 0.3s;
}

.carousel-arrow {
    background: var(--white);
    border: 1px solid var(--border-light);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--black);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.carousel-arrow:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: scale(1.05);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--black);
    width: 24px;
    border-radius: 4px;
}

.carousel-dot:hover {
    background: var(--secondary);
    transform: scale(1.2);
}

.view-all-reviews-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid var(--border-light);
    padding: 0.8rem 1.8rem;
    border-radius: 40px;
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: all 0.3s;
}

.view-all-reviews-btn:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: translateY(-2px);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--medium-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.rating-input {
    display: flex;
    gap: 0.5rem;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating-input input {
    display: none;
}

.rating-input label {
    cursor: pointer;
    font-size: 2rem;
    color: #ddd;
    transition: color 0.2s;
    margin-bottom: 0;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
    color: #f5b042;
}

.submit-review-btn {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-review-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.alert-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* ============================================
   BRANCH SELECTION OVERLAY
   ============================================ */
.branch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-bg);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 2rem 1rem;
}

.branch-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.branch-logo {
    margin-bottom: 1rem;
}

.branch-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
    display: block;
    font-weight: 700;
}

.branch-subtitle {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    display: block;
}

/* BRANCH GRID - DESKTOP: SIDE BY SIDE (HORIZONTAL) */
.branch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

/* Branch Card Styles */
.branch-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--border-light);
}

.branch-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--black);
}

/* Center the icon */
.branch-icon {
    width: 70px;
    height: 70px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.branch-icon i {
    font-size: 2rem;
    color: var(--white);
}

.branch-card h3 {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.branch-location {
    color: var(--medium-text);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-align: center;
}

.branch-location i {
    color: var(--black);
    font-size: 0.9rem;
}

.branch-hours {
    color: var(--light-text);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.branch-hours i {
    color: var(--black);
    font-size: 0.85rem;
}

/* Track Booking Wrapper */
.track-booking-wrapper {
    margin-top: 2.5rem;
    padding-top: 2rem;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.track-booking-btn {
    background: var(--white);
    color: var(--black);
    border: 1.5px solid var(--black);
    padding: 0.9rem 2.2rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 220px;
}

.track-booking-btn:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.track-hint {
    font-size: 0.75rem;
    color: var(--light-text);
    margin-top: 0.75rem;
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 500px;
    max-height: 750px;
    overflow: hidden;
    background: var(--black);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    padding: 4rem 2rem;
    color: white;
    text-align: center;
}

.slide-overlay h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.slide-overlay p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    opacity: 0.85;
}

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    text-decoration: none;
}

.slide-arrow:hover {
    background: var(--black);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.dots-container {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active,
.dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

/* Header */
.fixed-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-light);
}

.fixed-header.scrolled {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-text);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--medium-text);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
    font-size: 0.95rem;
    display: inline-block;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--black);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--black);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Branch Selector Bar */
.branch-selector-bar {
    background: var(--white);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border: 1px solid var(--border-light);
}

.current-branch {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.current-branch i {
    font-size: 1.5rem;
    color: var(--black);
}

.current-branch span {
    font-weight: 500;
    color: var(--dark-text);
}

.branch-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: wrap;
}

.change-branch-btn,
.continue-payment-btn,
.cancel-booking-btn,
.track-booking-nav-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.change-branch-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--black);
}

.change-branch-btn:hover {
    background: var(--black);
    color: white;
    border-color: var(--black);
}

.continue-payment-btn {
    background: var(--black);
    border: 1px solid var(--black);
    color: white;
}

.continue-payment-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.cancel-booking-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--black);
    cursor: pointer;
    font-family: inherit;
}

.cancel-booking-btn:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.track-booking-nav-btn {
    background: var(--black);
    border: 1px solid var(--black);
    color: white;
}

.track-booking-nav-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border-light);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--black);
}

.package-header {
    padding: 1.8rem 1.8rem 1rem;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
}

.package-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.package-duration {
    display: inline-block;
    background: #f0f0f0;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.75rem;
    color: var(--medium-text);
    font-weight: 500;
}

.package-price {
    padding: 1rem 1.8rem;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
}

.package-price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--light-text);
}

.package-details {
    padding: 0 1.8rem 1rem;
    color: var(--medium-text);
    font-size: 0.85rem;
    line-height: 1.5;
}

.package-inclusions {
    padding: 0 1.8rem 1rem 2.8rem;
    margin: 0;
    flex: 1;
}

.package-inclusions li {
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    list-style: none;
    position: relative;
}

.package-inclusions li:before {
    content: "✓";
    color: var(--black);
    position: absolute;
    left: -1.4rem;
    font-weight: bold;
}

/* BOOK BUTTON - CENTERED FIX */
.book-btn {
    margin: 0.5rem 1.8rem 1.8rem;
    background: var(--black);
    color: var(--white);
    padding: 0.9rem;
    border-radius: 40px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.book-btn:hover {
    background: var(--secondary);
    transform: scale(0.98);
}

/* Sidebar */
.studio-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.studio-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--medium-text);
    font-size: 0.9rem;
}

.info-item i {
    width: 24px;
    color: var(--black);
    font-size: 1rem;
    margin-top: 2px;
}

.hours-dropdown {
    margin: 1.5rem 0;
}

.hours-toggle {
    width: 100%;
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: var(--dark-text);
    font-size: 0.9rem;
}

.hours-content {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--medium-text);
}

.hours-content.open {
    display: block;
}

.sidebar-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 1rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1.5rem;
    transition: all 0.3s;
}

.sidebar-book-btn:hover {
    background: var(--secondary);
    transform: scale(0.98);
}

.mobile-studio-info {
    display: none;
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 1rem 1rem 2rem 1rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

/* Sections */
.section {
    margin-bottom: 4rem;
    scroll-margin-top: 90px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    margin-bottom: 1rem;
    color: var(--dark-text);
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--black);
}

.section-subtitle {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--medium-text);
}

.highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 16px;
    border: 1px solid var(--border-light);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.highlight-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
}

.highlight-label {
    font-size: 0.85rem;
    color: var(--light-text);
}

/* Reviews Section */
.review-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    border: 1px solid var(--border-light);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--black);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 55px;
    height: 55px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.3rem;
}

.review-name {
    font-weight: 600;
    color: var(--dark-text);
}

.review-date {
    font-size: 0.75rem;
    color: var(--light-text);
}

.review-stars {
    color: #f5b042;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.review-text {
    color: var(--medium-text);
    line-height: 1.6;
    font-style: normal;
    font-size: 0.9rem;
}

/* Address Section */
.address-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.address-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.address-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.address-item i {
    font-size: 1.2rem;
    color: var(--black);
    margin-top: 3px;
}

.address-item strong {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border-radius: 16px;
}

/* Footer */
.footer {
    background: var(--white);
    color: var(--light-text);
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.85rem;
}

/* FLOATING BOOK BUTTON - MOBILE ONLY */
.floating-book {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
}

.floating-book i {
    font-size: 1.1rem;
}

.floating-book:hover {
    background: var(--secondary);
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Desktop - hide floating button */
@media (min-width: 1025px) {
    .floating-book {
        display: none !important;
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    color: var(--light-text);
    border: 1px solid var(--border-light);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--black);
}

/* Divider */
.split-style-divider {
    width: 100%;
    height: 1px;
    background: var(--border-light);
    margin: 1.5rem 0 1rem;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--black);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: var(--black);
    background: var(--white);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question .faq-icon {
    transition: transform 0.3s ease;
    color: #666;
    font-size: 14px;
}

.faq-item.active .faq-question {
    border-bottom: 1px solid var(--border-light);
}

.faq-item.active .faq-question .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fafafa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.4s ease-in;
}

.faq-answer p {
    padding: 18px 20px;
    margin: 0;
    line-height: 1.6;
    color: #444;
    font-size: 14px;
}

/* Addons Simple List */
.addons-simple-list {
    width: 100%;
    border: 1px solid #eaeef2;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
}

.addon-simple-item {
    border-bottom: 1px solid #eff2f5;
    transition: background 0.2s ease;
}

.addon-simple-item:last-child {
    border-bottom: none;
}

.addon-simple-item:hover {
    background: #fafbfc;
}

.addon-simple-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    gap: 1rem;
}

.addon-info {
    flex: 1;
}

.addon-name {
    font-weight: 600;
    font-size: 1rem;
    color: #000;
    letter-spacing: -0.2px;
}

.addon-desc {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 4px;
    line-height: 1.4;
}

.addon-price {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    white-space: nowrap;
}

.hide-addon {
    display: none !important;
}

.view-more-addons {
    display: none;
    justify-content: center;
    margin-top: 1.5rem;
}

.view-more-btn {
    background: transparent;
    border: 1px solid #cdcdcd;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.view-more-btn:hover {
    background: #f5f5f5;
    border-color: #000;
    transform: translateY(-1px);
}

/* Pending Booking Notice */
.pending-booking-notice {
    background: #f8f9fa;
    border-left: 4px solid #000000;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pending-booking-notice i {
    font-size: 24px;
    color: #000000;
}

.pending-booking-notice strong {
    color: #000000;
    display: block;
    margin-bottom: 4px;
}

.pending-booking-notice p {
    margin: 0;
    color: #555;
    font-size: 13px;
}

/* Alert Styles */
.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    animation: slideDown 0.3s ease-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.alert-success {
    background: #f8f9fa;
    border-left: 4px solid #000000;
    color: #000000;
}

.alert-error {
    background: #f8f9fa;
    border-left: 4px solid #000000;
    color: #000000;
}

.alert i {
    font-size: 22px;
}

.alert div {
    flex: 1;
}

.alert strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

.alert p {
    margin: 0;
    font-size: 13px;
}

.alert-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: opacity 0.3s;
    padding: 0 5px;
}

.alert-close:hover {
    color: #000;
}

/* Button Styles for Modal */
.btn {
    padding: 12px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: #000000;
    color: #ffffff;
}

.btn-primary:hover {
    background: #333333;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #cccccc;
    color: #333333;
}

.btn-secondary:hover {
    border-color: #000000;
    background: #f8f8f8;
}

/* Form Hint */
.form-hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #666;
}

/* Footer Social Links */
.footer-social {
    margin-top: 15px;
    margin-bottom: 15px;
}

.footer-social-link {
    display: inline-block;
    margin: 0 8px;
    color: #333;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer-social-link:hover {
    color: #000;
    transform: translateY(-2px);
}

.footer-social-link i {
    font-size: 1.2rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (769px–1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .slideshow-container {
        height: 55vh;
        min-height: 380px;
        max-height: 520px;
    }
    
    .two-column {
        grid-template-columns: 1fr;
    }
    
    .studio-sidebar {
        display: none;
    }
    
    .mobile-studio-info {
        display: block;
        margin-bottom: 2rem;
    }
    
    .branch-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .logo {
        width: auto;
        justify-content: flex-start;
    }
    
    .nav-menu {
        width: auto;
        gap: 1.5rem;
    }
}

/* Mobile (max-width: 768px) - REDUCED HEADER SPACING */
@media (max-width: 768px) {
    body, html {
        font-size: 14px;
    }
    
    /* ===== HEADER FIXES - REDUCED SPACING ===== */
    .fixed-header {
        position: sticky;
        top: 0;
        padding: 0;
    }
    
    .header-container {
        padding: 0.5rem 1rem !important;
        gap: 0.3rem !important;
        flex-direction: column;
    }
    
    .logo {
        gap: 6px !important;
        width: 100%;
        justify-content: center;
        margin-bottom: 0;
    }
    
    .logo img {
        width: 32px !important;
        height: 32px !important;
    }
    
    .logo-text {
        font-size: 0.85rem !important;
        font-weight: 600 !important;
    }
    
    .nav-menu {
        gap: 0.8rem !important;
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-menu a {
        font-size: 0.7rem !important;
        padding: 0.3rem 0 !important;
        white-space: nowrap;
    }
    
    .nav-menu a.active::after {
        bottom: -1px;
        height: 1.5px;
    }
    
    /* Branch overlay */
    .branch-overlay {
        padding: 1rem;
        align-items: flex-start;
    }
    
    .branch-container {
        padding: 0.5rem;
    }
    
    .branch-overlay h1 {
        font-size: 1.6rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .branch-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* MOBILE: VERTICAL CARDS */
    .branch-grid {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .branch-card {
        padding: 1.2rem;
        width: 100%;
    }
    
    .branch-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 0.8rem;
    }
    
    .branch-icon i {
        font-size: 1.5rem;
    }
    
    .branch-card h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.5rem;
    }
    
    .branch-location {
        font-size: 0.85rem !important;
    }
    
    .branch-hours {
        font-size: 0.8rem !important;
        padding-top: 0.6rem;
    }
    
    .track-booking-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 180px;
    }
    
    .track-hint {
        font-size: 0.75rem;
    }
    
    /* Layout adjustments */
    .container {
        padding: 1rem;
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .studio-sidebar {
        display: none;
    }
    
    .mobile-studio-info {
        display: block;
        margin: 0.5rem 0 1.5rem 0;
        padding: 1rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .about-content,
    .address-content {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 1.2rem;
    }
    
    .highlights {
        gap: 0.8rem;
    }
    
    .highlight-item {
        padding: 0.8rem;
    }
    
    /* Branch selector */
    .branch-selector-bar {
        flex-direction: column;
        text-align: center;
        padding: 0.6rem 1rem;
        margin-bottom: 1rem;
    }
    
    .current-branch {
        justify-content: center;
        width: 100%;
    }
    
    .current-branch i {
        font-size: 1.2rem;
    }
    
    .current-branch span {
        font-size: 0.8rem;
    }
    
    .branch-actions {
        justify-content: center;
        width: 100%;
        gap: 0.5rem;
    }
    
    .change-branch-btn,
    .continue-payment-btn,
    .cancel-booking-btn,
    .track-booking-nav-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    /* Slideshow */
    .slideshow-container {
        height: auto;
        aspect-ratio: 16 / 9;
        min-height: 180px;
        max-height: 320px;
    }
    
    .slide-overlay {
        padding: 1rem;
    }
    
    .slide-overlay h2 { 
        font-size: 1.2rem !important; 
    }
    .slide-overlay p {  
        font-size: 0.75rem !important; 
    }
    
    .prev { left: 5px; }
    .next { right: 5px; }
    .slide-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .carousel-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    /* Review cards */
    .review-card {
        padding: 0.8rem;
    }
    
    .review-avatar {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    
    .review-name {
        font-size: 0.85rem;
    }
    
    .review-text {
        font-size: 0.75rem;
    }
    
    /* Map */
    .map-container iframe {
        height: 200px;
    }
    
    /* Floating book button */
    .floating-book {
        bottom: 12px;
        min-width: 130px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .floating-book i {
        font-size: 0.85rem;
    }
    
    /* Addons */
    .addon-simple-row {
        padding: 0.7rem 0.8rem;
    }
    
    .addon-name {
        font-size: 0.85rem;
    }
    
    .addon-price {
        font-size: 0.85rem;
    }
    
    .addon-desc {
        font-size: 0.65rem;
    }
    
    .view-more-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    /* FAQ */
    .faq-question {
        font-size: 13px;
        padding: 12px 14px;
    }
    
    .faq-answer p {
        padding: 12px 14px;
        font-size: 12px;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        margin: 15px;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .modal-header {
        padding: 12px 16px;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
    }
    
    /* Section titles */
    .section-title {
        font-size: 1.4rem !important;
        margin-bottom: 0.5rem;
    }
    
    .section-title:after {
        width: 40px;
        bottom: -5px;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .section {
        margin-bottom: 2rem;
    }
    
    /* Footer */
    .footer {
        padding: 1rem;
        font-size: 0.7rem;
    }
    
    /* Footer Social Links */
    .footer-social {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }
    
    .footer-social-link {
        margin: 0 5px !important;
    }
    
    .footer-social-link i {
        font-size: 0.9rem !important;
    }
    
    /* Mobile studio info */
    .mobile-studio-info .studio-title {
        font-size: 1.1rem !important;
    }
    
    .mobile-studio-info .info-item {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .mobile-studio-info .sidebar-book-btn {
        padding: 0.6rem;
        font-size: 0.8rem;
        margin-top: 0.8rem;
    }
}

/* Small phones (max-width: 480px) - EVEN TIGHTER HEADER */
@media (max-width: 480px) {
    .header-container {
        padding: 0.4rem 0.6rem !important;
    }
    
    .logo img {
        width: 28px !important;
        height: 28px !important;
    }
    
    .logo-text {
        font-size: 0.7rem !important;
    }
    
    .nav-menu {
        gap: 0.5rem !important;
    }
    
    .nav-menu a {
        font-size: 0.6rem !important;
    }
    
    .branch-overlay h1 {
        font-size: 1.4rem !important;
    }
    
    .branch-subtitle {
        font-size: 0.85rem !important;
    }
    
    .branch-card h3 {
        font-size: 1.1rem !important;
    }
    
    .branch-location {
        font-size: 0.8rem !important;
    }
    
    .branch-hours {
        font-size: 0.75rem !important;
    }
    
    .track-booking-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        min-width: 160px;
    }
    
    .slideshow-container {
        min-height: 150px;
        max-height: 250px;
    }
    
    .slide-overlay h2 {
        font-size: 1rem !important;
    }
    
    .slide-overlay p {
        font-size: 0.65rem !important;
    }
    
    .carousel-arrow {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }
    
    .floating-book {
        min-width: 110px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 1.2rem !important;
    }
    
    .addon-name {
        font-size: 0.8rem;
    }
    
    .addon-price {
        font-size: 0.8rem;
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .fixed-header {
        position: sticky;
    }
    
    .header-container {
        padding: 0.3rem 1rem !important;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .logo {
        width: auto;
        margin-bottom: 0;
    }
    
    .nav-menu {
        width: auto;
        gap: 0.8rem;
    }
    
    .slideshow-container {
        height: 45vw;
        min-height: 150px;
        max-height: 280px;
    }
}

/* Desktop: Ensure horizontal cards (side by side) */
@media (min-width: 769px) {
    .branch-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
}