/* ---------- 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;
    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;
    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%;
}

.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: center;
    justify-content: center;
    overflow-y: auto;
    padding: 2rem;
}

.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: 2rem;
}

.branch-logo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.branch-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.branch-subtitle {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.branch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.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: block;
    text-align: left;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    border: 1px solid var(--border-light);
}

.branch-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--black);
}

.branch-icon {
    width: 60px;
    height: 60px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.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: 0.75rem;
}

.branch-location {
    color: var(--medium-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.branch-location i {
    color: var(--black);
    margin-top: 3px;
}

.branch-hours {
    color: var(--light-text);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.branch-hours i {
    color: var(--black);
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    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 {
    background-size: cover;
    background-position: center center;
}

.slide[style*="background-image"] {
    background-size: cover;
    background-position: center;
}

.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: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.change-branch-btn,
.continue-payment-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    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;
    gap: 0.5rem;
}

.change-branch-btn {
    color: var(--black);
}

.change-branch-btn:hover {
    background: var(--black);
    color: white;
    border-color: var(--black);
}

.continue-payment-btn {
    background: var(--black);
    border-color: var(--black);
    color: white;
}

.continue-payment-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-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: block;
}

.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: block;
    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 */
.floating-book {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    width: auto;
    min-width: 180px;
    height: auto;
    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);
}

/* 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;
}

/* Highlights Full Grid Section */
.highlights-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-full-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
}

.highlight-full-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--black);
}

.highlight-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;
    transition: all 0.3s ease;
}

.highlight-full-card:hover .highlight-icon {
    transform: scale(1.1);
    background: var(--secondary);
}

.highlight-icon i {
    font-size: 2rem;
    color: var(--white);
}

.highlight-full-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.highlight-full-card p {
    color: var(--medium-text);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ============================================ */
/* RESPONSIVE BANNER */
/* ============================================ */

/* Base slideshow — desktop */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 500px;
    max-height: 750px;
    overflow: hidden;
    background: var(--black);
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    will-change: opacity;
}

.slide.active { opacity: 1; }

/* --- Tablet (769px–1024px) --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .slideshow-container {
        height: 55vh;
        min-height: 380px;
        max-height: 520px;
    }
}

/* --- Mobile (≤768px) - BASE FONT SIZE 12px & SCALED BUTTONS --- */
@media (max-width: 768px) {
    /* Set base font size to 12px on mobile */
    body, 
    html {
        font-size: 12px;
    }
    
    body {
        font-size: 12px;
    }
    
    /* All text elements inherit the 12px base */
    p, span, div, li, .package-details, .package-inclusions li, 
    .review-text, .about-text p, .address-item, .branch-location,
    .branch-hours, .info-item, .hours-toggle, .hours-content,
    .section-subtitle, .review-date, .review-stars, .highlight-label,
    .footer, .empty-state p, .alert, .form-group label,
    .current-branch span, .branch-subtitle {
        font-size: 12px;
    }
    
    /* Headings scale proportionally */
    h1, .branch-overlay h1, .page-title {
        font-size: 2rem !important;
    }
    
    h2, .section-title {
        font-size: 1.6rem !important;
    }
    
    h3, .package-name, .studio-title, .branch-card h3, 
    .highlight-full-card h3, .modal-header h3 {
        font-size: 1.3rem !important;
    }
    
    .logo-text {
        font-size: 1rem !important;
    }
    
    .nav-menu a {
        font-size: 0.8rem !important;
    }
    
    /* ===== BUTTONS SCALE WITH TEXT SIZE ===== */
    .write-review-btn,
    .submit-review-btn,
    .view-all-reviews-btn,
    .book-btn,
    .sidebar-book-btn,
    .change-branch-btn,
    .continue-payment-btn,
    .floating-book {
        padding: 0.6rem 1.2rem;
        font-size: 1.1em; /* Relative to base font (12px → ~13.2px) */
        gap: 0.4rem;
    }
    
    /* Carousel buttons */
    .carousel-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    /* Slide buttons/arrows */
    .slide-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    /* Modal buttons */
    .close-modal {
        width: 28px;
        height: 28px;
        font-size: 1.2rem;
    }
    
    /* Fixed header adjustments */
    .fixed-header {
        position: sticky;
    }
    
    .header-container {
        padding: 0.6rem 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .logo {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.25rem;
    }
    
    .logo img {
        width: 32px;
        height: 32px;
    }
    
    .nav-menu {
        justify-content: center;
        gap: 1rem;
        width: 100%;
        flex-wrap: wrap;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-menu a {
        white-space: nowrap;
        padding: 0.3rem 0;
    }
    
    .nav-menu a.active::after {
        bottom: -1px;
        height: 1.5px;
    }
    
    /* Slideshow */
    .slideshow-container {
        height: auto;
        aspect-ratio: 16 / 9;
        min-height: 200px;
        max-height: 380px;
    }
    
    .slide {
        background-position: center center;
        background-size: cover;
    }
    
    .slide-overlay {
        padding: 1.5rem 1rem;
    }
    
    .slide-overlay h2 { 
        font-size: 1.4rem !important; 
    }
    .slide-overlay p {  
        font-size: 0.85rem !important; 
    }
    
    .prev { left: 8px; }
    .next { right: 8px; }
    
    .dots-container { bottom: 10px; }
    .dot { width: 6px; height: 6px; margin: 0 3px; }
    .dot.active { width: 18px; border-radius: 3px; }
    
    /* Layout adjustments */
    .container {
        padding: 1rem;
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .studio-sidebar {
        display: none;
    }
    
    .mobile-studio-info {
        display: block;
        margin: 1rem 0 2rem 0;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-content,
    .address-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .highlights {
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 1rem;
    }
    
    .highlight-num {
        font-size: 1.1rem !important;
    }
    
    /* Branch selector */
    .branch-selector-bar {
        flex-direction: column;
        text-align: center;
        padding: 0.8rem 1rem;
    }
    
    .current-branch {
        justify-content: center;
        width: 100%;
    }
    
    .branch-actions {
        justify-content: center;
        width: 100%;
    }
    
    /* Branch grid */
    .branch-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .branch-card {
        padding: 1.5rem;
    }
    
    /* Carousel */
    .carousel-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .reviews-carousel-container {
        gap: 0.5rem;
    }
    
    /* Review cards */
    .review-card {
        padding: 1rem;
    }
    
    .review-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Map */
    .map-container iframe {
        height: 250px;
    }
    
    /* Floating book button */
    .floating-book {
        bottom: 15px;
        min-width: 140px;
        padding: 8px 16px;
        font-size: 1em;
    }
    
    /* Highlights grid */
    .highlights-full-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlight-full-card {
        padding: 1.5rem;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
    }
    
    .highlight-icon i {
        font-size: 1.5rem;
    }
}

/* --- Small phones (≤480px) - further refinement --- */
@media (max-width: 480px) {
    body, html {
        font-size: 12px;
    }
    
    h1, .branch-overlay h1, .page-title {
        font-size: 1.6rem !important;
    }
    
    h2, .section-title {
        font-size: 1.3rem !important;
    }
    
    h3, .package-name {
        font-size: 1.1rem !important;
    }
    
    .logo-text {
        font-size: 0.9rem !important;
    }
    
    .nav-menu {
        gap: 0.6rem;
    }
    
    .nav-menu a {
        font-size: 0.7rem !important;
    }
    
    /* Even smaller buttons on very small screens */
    .write-review-btn,
    .submit-review-btn,
    .view-all-reviews-btn,
    .book-btn,
    .sidebar-book-btn,
    .change-branch-btn,
    .continue-payment-btn {
        padding: 0.5rem 1rem;
        font-size: 1em;
    }
    
    .floating-book {
        min-width: 120px;
        padding: 7px 14px;
        font-size: 0.9em;
    }
    
    .slideshow-container {
        aspect-ratio: 4 / 3;
        min-height: 180px;
        max-height: 280px;
    }
    
    .slide-overlay h2 {
        font-size: 1.1rem !important;
    }
    
    .slide-overlay p {
        font-size: 0.7rem !important;
    }
}

/* --- Landscape mobile --- */
@media (max-width: 768px) and (orientation: landscape) {
    .slideshow-container {
        height: 55vw;
        min-height: 200px;
        max-height: 340px;
    }
}

/* Tablet portrait to landscape adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .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);
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .logo {
        width: auto;
        justify-content: flex-start;
    }
    
    .nav-menu {
        width: auto;
        gap: 1.5rem;
    }
    
    .highlights-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop - hide floating button */
@media (min-width: 1025px) {
    .floating-book {
        display: none;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .logo {
        width: auto;
    }
    
    .nav-menu {
        width: auto;
    }
}
/* ============================================
   ADDONS SECTION STYLES
   ============================================ */

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.addon-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.addon-card:hover {
    transform: translateY(-4px);
    border-color: #000000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.addon-header {
    margin-bottom: 16px;
}

.addon-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    width: fit-content;
}

.addon-type-badge i {
    font-size: 11px;
}

.time-badge {
    background: #f0f0f0;
    color: #333;
}

.product-badge {
    background: #e8e8e8;
    color: #000;
}

.addon-name {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 8px 0 0 0;
    font-family: 'Playfair Display', serif;
}

.addon-price {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 16px 0 12px 0;
}

.addon-price small {
    font-size: 12px;
    font-weight: 400;
    color: #666;
}

.addon-description {
    color: #555;
    line-height: 1.5;
    font-size: 13px;
    margin: 12px 0;
}

.addon-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
    margin: 8px 0;
    padding: 6px 0;
    border-top: 1px solid #f0f0f0;
}

.addon-info i {
    width: 16px;
    font-size: 12px;
    color: #999;
}

.addon-viewonly-badge {
    margin-top: 16px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: #888;
    background: #fafafa;
    padding: 10px;
    border-radius: 8px;
}

.addon-viewonly-badge i {
    font-size: 14px;
    color: #000;
}

.addon-viewonly-badge span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Responsive Addons */
@media (max-width: 768px) {
    .addons-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .addon-card {
        padding: 18px;
    }
    
    .addon-name {
        font-size: 16px;
    }
    
    .addon-price {
        font-size: 20px;
    }
}