/* ========================================
   CSS ORGANIZATION:
   1. Base & Reset Styles
   2. Local Font Fallbacks
   3. CSS Variables
   4. Typography
   5. Layout & Container
   6. Header & Navigation
   7. Mobile Navigation
   8. Gallery Page
   9. Prices Page
   10. Bookings Page
   11. Homepage Sections
   12. Footer
   13. Responsive Styles
   ======================================== */

/* ========================================
   1. BASE & RESET STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========================================
   2. LOCAL FONT FALLBACKS
   ======================================== */

/* Stardom - Local Fallback (CDN via Fontshare as primary) */
@font-face {
    font-family: 'Stardom';
    src: url('Stardom/Fonts/WEB/fonts/Stardom-Regular.woff2') format('woff2'),
         url('Stardom/Fonts/WEB/fonts/Stardom-Regular.woff') format('woff'),
         url('Stardom/Fonts/WEB/fonts/Stardom-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   3. CSS VARIABLES
   ======================================== */

:root {
    --primary: #e8e8e8;
    --secondary: #d0d0d0;
    --dark: #111111;
    --light: #f5f5f5;
    --white: #ffffff;
}

body {
    font-family: 'Satoshi', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}


/* ========================================
   3. TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Stardom', sans-serif;
    font-weight: 400;
    text-align: center;
}

/* ========================================
   4. LAYOUT & CONTAINER
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   5. HEADER & NAVIGATION
   ======================================== */

header {
    padding: 2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

body.page-home header:not(.scrolled) {
    background: transparent;
    color: var(--white);
    box-shadow: none;
}

header.scrolled,
body:not(.page-home) header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

header.scrolled nav a,
body:not(.page-home) header nav a {
    color: var(--dark);
}

header.scrolled nav a::after,
body:not(.page-home) header nav a::after {
    background-color: var(--primary);
}

header .logo {
    transition: filter 0.3s ease;
}

body.page-home header:not(.scrolled) .logo {
    filter: brightness(0) invert(1);
}

header.scrolled .logo,
body:not(.page-home) header .logo {
    filter: none;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.logo-link {
    position: absolute;
    left: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

header.scrolled .logo-link,
body:not(.page-home) header .logo-link {
    opacity: 1;
    visibility: visible;
}

header.scrolled nav,
body:not(.page-home) header nav {
    justify-content: space-between;
}

header.scrolled nav ul,
body:not(.page-home) header nav ul {
    margin-left: auto;
}

.logo {
    height: 50px;
    width: auto;
}

.logo-link::after {
    display: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

header.scrolled .hamburger,
body:not(.page-home) .hamburger {
    opacity: 1;
    visibility: visible;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

header.scrolled .hamburger span,
body:not(.page-home) .hamburger span {
    background: var(--dark);
}

header.scrolled .nav-links {
    display: none;
}

/* ========================================
   6. MOBILE NAVIGATION
   ======================================== */

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
}

.mobile-nav.active {
    right: 0;
}

header.mobile-nav-open .hamburger,
.mobile-nav.active ~ header .hamburger {
    opacity: 0;
    visibility: hidden;
}

.mobile-nav .hamburger {
    display: none !important;
}

.mobile-nav-link {
    font-size: 1.5rem;
    color: var(--dark);
    text-decoration: none;
    padding: 1rem 3rem;
    border: 2px solid var(--primary);
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-nav-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 30px;
    height: 25px;
    font-size: 2rem;
    color: var(--dark);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    line-height: 1;
}

.mobile-nav-close:hover {
    color: var(--primary);
}

.mobile-nav-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: normal;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

body.page-home header:not(.scrolled) nav a {
    color: var(--white);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease, background-color 0.3s ease;
}

body.page-home header:not(.scrolled) nav a::after {
    background-color: var(--white);
}

nav a:hover {
    color: var(--dark);
}

body.page-home header:not(.scrolled) nav a:hover {
    color: var(--white);
}

nav a:hover::after {
    width: 100%;
}

main {
    margin-top: 0;
}

/* ========================================
   10. HOMEPAGE SECTIONS
   ======================================== */

/* Hero Section */
.hero {
    background: url('hero-section-bg.png') no-repeat center center;
    background-size: cover;
    padding: 8rem 2rem;
    text-align: center;
    height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media (max-width: 768px) {
    .hero {
        background: #111111;
        align-items: flex-end;
        justify-content: flex-end;
        padding-bottom: 1.5rem;
    }

    .hero-content {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 0;
    }

    .hero-logo {
        margin-bottom: 0;
    }
    
    .hero-gallery {
        display: none !important;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

/* Hero video — hidden on desktop, shown on mobile */
.hero-video {
    display: none;
}

@media (max-width: 768px) {
    .hero-video {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-logo {
    max-width: 520px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-gallery {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-gallery-img {
    flex: 1;
    width: 25%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    object-fit: cover;
    min-height: 200px;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: var(--dark);
    border-color: var(--dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark);
    border: none;
}

.btn-secondary:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Services Preview */
.services-preview {
    padding: 8rem 2rem 0;
    background: var(--white);
}

.services-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-header {
        flex-direction: column;
        align-items: center;
        margin-bottom: 3.5rem;
    }
}

.services-header h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-family: 'Stardom', sans-serif;
    font-weight: 400;
    text-align: center;
}

.swipe-hint {
    text-align: center;
    color: rgba(17, 17, 17, 0.6);
    font-size: 0.875rem;
    animation: swipeHint 2s ease-in-out infinite;
}

@keyframes swipeHint {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(5px);
    }
}

@media (min-width: 768px) {
    .services-header h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .services-header h2 {
        font-size: 3rem;
        margin-bottom: 2rem;
    }
}

.carousel-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: relative;
}


.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
}

.carousel-item {
    flex-shrink: 0;
    width: 100%;
}

@media (min-width: 640px) {
    .carousel-item {
        width: calc(50% - 0.75rem);
    }
}

@media (min-width: 1024px) {
    .carousel-item {
        width: calc(33.333% - 1rem);
    }
}

.service-carousel-card {
    display: flex;
    flex-direction: column;
    color: var(--dark);
}

.service-image {
    height: 450px;
    overflow: hidden;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-carousel-card:hover .service-image img {
    transform: scale(1.05);
}

.service-carousel-card h3 {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
    font-family: 'Stardom', sans-serif;
    font-weight: 400;
}

@media (min-width: 768px) {
    .service-carousel-card h3 {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .service-carousel-card h3 {
        font-size: 1.5rem;
    }
}

.service-carousel-card p {
    color: rgba(17, 17, 17, 0.7);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 768px) {
    .service-carousel-card p {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
}

/* Testimonials */
.testimonials {
    padding: 6rem 2rem;
    background: var(--white);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 3rem;
    font-family: 'Stardom', sans-serif;
    font-weight: 400;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

@media (min-width: 640px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    font-size: 1rem;
    color: rgba(17, 17, 17, 0.15);
}

.star.filled {
    color: #FFD700;
}


.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
}

.testimonial-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    border: 1px solid rgba(17, 17, 17, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    color: var(--dark);
    font-size: 0.875rem;
    font-weight: 400;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: var(--secondary);
    text-align: center;
    color: var(--dark);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.cta-section .btn-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

/* ========================================
   11. FLOATING WHATSAPP BUTTON
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

/* ========================================
   12. FOOTER
   ======================================== */

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-align: left;
}

@media (max-width: 767px) {
    .footer-section h4 {
        text-align: center;
    }

    .social-icons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-section ul {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.9;
}

.footer-tagline {
    margin: 0;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.lumo-link {
    display: inline-flex;
    text-decoration: none;
}

.lumo-logo {
    height: 1.2rem;
    width: auto;
    vertical-align: middle;
    filter: brightness(0) invert(1);
}

.social-icon img {
    filter: brightness(0) invert(1);
}

.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 0;
}

/* ========================================
   7. GALLERY PAGE
   ======================================== */
.gallery-section {
    padding: 8rem 2rem 4rem;
    background: var(--white);
    min-height: 100vh;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-section h1 {
    font-family: 'Stardom', sans-serif;
    font-size: 3rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
}

.gallery-lead {
    text-align: center;
    color: rgba(17, 17, 17, 0.7);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.gallery-category {
    margin-bottom: 4rem;
}

.gallery-category:last-child {
    margin-bottom: 0;
}

.gallery-category-title {
    font-family: 'Stardom', sans-serif;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-align: left;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .gallery-category-title {
        font-size: 2.5rem;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ========================================
   8. PRICES PAGE
   ======================================== */
.inner-page-main {
    padding: 6.5rem 1.5rem 4rem;
    background: var(--white);
    min-height: 50vh;
}

.inner-page-main .container {
    max-width: 640px;
    margin: 0 auto;
}

.inner-page-main h1 {
    color: var(--dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'Stardom', sans-serif;
    font-weight: 400;
}

.inner-page-lead {
    text-align: center;
    color: var(--dark);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.75;
}

.prices-table-wrap {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.prices-table {
    width: 100%;
    border-collapse: collapse;
}

.prices-table th,
.prices-table td {
    padding: 1rem 1.35rem;
    text-align: left;
    border-bottom: 1px solid var(--light);
}

.prices-table th {
    background: var(--white);
    font-weight: 400;
    color: var(--dark);
    font-size: 0.95rem;
}

.prices-table td {
    color: var(--dark);
}

.prices-table tbody tr:last-child td {
    border-bottom: none;
}

.prices-table .price-col {
    color: var(--dark);
    font-weight: 400;
    text-align: right;
    white-space: nowrap;
}

.prices-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.8;
    text-align: center;
    color: var(--dark);
}

.inner-page-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.book-panel {
    background: var(--white);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.book-panel .book-panel-title {
    font-size: 1.35rem;
    color: var(--dark);
    margin-bottom: 1rem;
    text-align: left;
    font-family: 'Stardom', sans-serif;
    font-weight: 400;
}

.book-steps {
    margin: 0 0 2rem;
    padding-left: 1.35rem;
    color: var(--dark);
    line-height: 1.75;
    opacity: 0.9;
}

.book-steps li {
    margin-bottom: 0.65rem;
}

.book-steps a {
    color: var(--dark);
    text-decoration: underline;
}

.book-actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

@media (min-width: 520px) {
    .book-actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .book-actions .btn-primary,
    .book-actions .btn.btn-whatsapp-standalone {
        width: auto;
    }
}

.book-contact-line {
    text-align: center;
    font-size: 0.95rem;
    color: var(--dark);
    opacity: 0.9;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.pricing-container {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 3rem;
    text-align: left;
    font-family: 'Stardom', sans-serif;
    font-weight: 400;
}

.pricing-title-note {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(17, 17, 17, 0.6);
}

.pricing-subtitle {
    font-family: 'Stardom', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--secondary);
    text-align: left;
}

.pricing-columns {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.pricing-column {
    flex: 1;
    min-width: 0;
}

@media (max-width: 600px) {
    .pricing-columns {
        flex-direction: column;
        gap: 0;
    }

    .pricing-column {
        width: 100%;
    }
}

.pricing-list {
    display: flex;
    flex-direction: column;
}

.pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    gap: 2rem;
    border-bottom: 1px solid rgba(17, 17, 17, 0.2);
}

.service-name {
    font-size: 1.25rem;
    color: var(--dark);
    font-family: 'Stardom', sans-serif;
    font-weight: 400;
    flex: 1;
}

.service-price {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 400;
    min-width: 80px;
    text-align: right;
}

.book-now-btn {
    padding: 0.75rem 1.5rem;
    background: var(--dark);
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.book-now-btn:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}

/* ========================================
   12. RESPONSIVE STYLES
   ======================================== */

/* Responsive Styles */
@media (max-width: 768px) {
    body:not(.page-home) .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 2rem;
    }

    nav ul {
        gap: 1rem;
    }

    nav a {
        font-size: 0.875rem;
    }
    
    .hero {
        padding: 6rem 1.5rem;
        min-height: 100vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-logo {
        max-width: 390px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .inner-page-cta-row .btn-primary,
    .inner-page-cta-row .btn-secondary {
        width: auto;
        flex: 1 1 auto;
        min-width: min(100%, 12rem);
    }

    .inner-page-main h1 {
        font-size: 2rem;
    }

    .services-preview, .testimonials {
        padding: 4rem 1.5rem;
    }

    .services-preview h2, .testimonials h2 {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 4rem 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-form-new {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-new h2 {
        font-size: 1.5rem;
    }

    .pricing-section {
        padding: 4rem 1.5rem;
    }

    .pricing-container {
        max-width: 100%;
    }

    .pricing-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
        text-align: left;
    }

    .pricing-row {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .service-name {
        font-size: 1.1rem;
    }

    .service-price {
        font-size: 1rem;
        text-align: center;
    }

    .book-now-btn {
        width: 100%;
        text-align: center;
    }

}

@media (min-width: 769px) {
    header.scrolled .nav-links {
        display: flex;
    }
}

/* ========================================
   9. BOOKINGS PAGE
   ======================================== */

/* Booking Interface Styles */
.booking-main {
    background: var(--white);
    min-height: 100vh;
}

/* Header Section */
.booking-header {
    background: var(--light);
    padding: 10rem 2rem 4rem;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.booking-header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.booking-header-text h1 {
    font-family: 'Stardom', sans-serif;
    font-size: 3.5rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-weight: 400;
    text-align: center;
}

.booking-header-text p {
    font-size: 1.1rem;
    color: rgba(17, 17, 17, 0.7);
    max-width: 600px;
    text-align: justify;
    margin: 0 auto;
}

.booking-policy-box {
    max-width: 100%;
    width: 100%;
}

.booking-policy-box h2 {
    font-family: 'Stardom', sans-serif;
    font-size: 1.35rem;
    color: var(--dark);
    margin-bottom: 1rem;
    text-align: center;
}

.booking-policy-box p {
    font-size: 0.9rem;
    color: rgba(17, 17, 17, 0.75);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    text-align: justify;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.booking-policy-box ul {
    margin: 0.5rem auto 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    max-width: 600px;
    padding-left: 1.25rem;
}

.booking-policy-box ul li {
    font-size: 0.9rem;
    color: rgba(17, 17, 17, 0.75);
    line-height: 1.6;
    text-align: justify;
}

/* Booking Panel */
.booking-panel {
    padding: 4rem 2rem 6rem;
}

.booking-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

/* Left Column */
.booking-left {
    padding: 3rem 0;
}

.booking-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.booking-section-header h2 {
    font-family: 'Stardom', sans-serif;
    font-size: 1.75rem;
    color: var(--dark);
    font-weight: 400;
    text-align: left;
}

/* Calendar Embed Section */
.calendar-embed-section {
    margin: 3rem 0;
    padding: 2rem 0;
}

.calendar-embed-wrapper {
    display: flex;
    justify-content: center;
    overflow-x: auto;
}

.calendar-embed-wrapper iframe {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive calendar embed */
@media (max-width: 900px) {
    .calendar-embed-wrapper iframe {
        width: 100% !important;
        height: 500px !important;
    }
}

@media (max-width: 600px) {
    .calendar-embed-section h2 {
        font-size: 1.5rem;
    }

    .calendar-embed-wrapper iframe {
        height: 400px !important;
    }
}

/* Calendar */
.calendar-container {
    margin-bottom: 2.5rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-nav {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--dark);
}

.calendar-nav:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.calendar-month {
    font-family: 'Stardom', sans-serif;
    font-size: 1.35rem;
    color: var(--dark);
    font-weight: 400;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day-header {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(17, 17, 17, 0.5);
    padding: 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--dark);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.calendar-day:hover:not(.disabled) {
    background: rgba(242, 234, 211, 0.5);
    border-color: var(--primary);
}

.calendar-day.selected {
    background: var(--primary);
    color: var(--white);
}

.calendar-day.disabled {
    color: rgba(17, 17, 17, 0.25);
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Booking Form Calendar - Inline */
.calendar-container {
    background: var(--white);
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 0.5rem;
}

/* Right Column - Service Details */
.booking-right {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.service-details-card {
    padding: 2.5rem 0;
}

.service-details-card h2 {
    font-family: 'Stardom', sans-serif;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-align: left;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.service-price {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 400;
}

/* Booking Form */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--dark);
}

.form-optional {
    font-weight: 400;
    color: rgba(17, 17, 17, 0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    border: 1px solid rgba(17, 17, 17, 0.2);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--dark);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: auto;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark);
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.form-group textarea {
    resize: vertical;
}

.btn-book-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-book-submit:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}

.booking-hours-note {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    color: rgba(17, 17, 17, 0.6);
    font-size: 0.875rem;
    line-height: 1.8;
}

/* Booking Summary */
.booking-summary {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.9rem;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row span:first-child {
    color: rgba(17, 17, 17, 0.6);
}

.summary-row span:last-child {
    color: var(--dark);
    font-weight: 400;
}

.summary-row.total {
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    font-weight: 400;
}

.summary-row.total span {
    font-size: 1.1rem;
    font-weight: 400;
}

.summary-row.total span:last-child {
    color: var(--dark);
}

/* Next Button */
.btn-next {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-next:hover:not(:disabled) {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-next:disabled {
    background: rgba(17, 17, 17, 0.2);
    color: rgba(17, 17, 17, 0.4);
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 1024px) {
    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-right {
        position: static;
    }
    
    .booking-header-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .booking-header-text h1 {
        text-align: center;
        font-size: 2.5rem;
    }
    
    .booking-header-text p {
        max-width: 100%;
    }
    
    .time-slot-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .booking-header {
        padding: 8rem 1.5rem 3rem;
    }
    
    .booking-header-text h1 {
        font-size: 2rem;
    }
    
    .booking-panel {
        padding: 2rem 1rem 4rem;
    }
    
    .booking-left {
        padding: 1.5rem 0;
    }
    
    .service-details-card {
        padding: 1.5rem 0;
    }
    
    .calendar-grid {
        gap: 0.25rem;
    }
    
    .calendar-day {
        font-size: 0.85rem;
    }
}
