/* ========================================
   LUMIÈRE - Luxury Beauty Salon
   Design System & Styles
   ======================================== */

/* CSS Variables */
:root {
    --cream: #FAF7F2;
    --gold: #D4AF37;
    --gold-light: #E8C547;
    --rose-dust: #E8D5D0;
    --charcoal: #1A1A1A;
    --charcoal-light: #2A2A2A;
    --white: #FFFFFF;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}

.section-label.light {
    color: var(--gold);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.section-title.light {
    color: var(--cream);
}

.section-description {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.btn {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gold);
    color: var(--charcoal);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
}

.btn-secondary:hover {
    background: var(--charcoal);
    color: var(--cream);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes scrollLine {
    0% {
        height: 0;
        opacity: 0;
    }

    50% {
        height: 30px;
        opacity: 1;
    }

    100% {
        height: 60px;
        opacity: 0;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--charcoal);
    text-decoration: none;
}

.nav-list {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gold);
    color: var(--charcoal) !important;
    padding: 0.8rem 1.5rem;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--gold-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(250, 247, 242, 0.85) 0%,
            rgba(250, 247, 242, 0.7) 30%,
            rgba(232, 213, 208, 0.6) 70%,
            rgba(232, 213, 208, 0.75) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(212, 175, 55, 0.12) 1px, transparent 0);
    background-size: 50px 50px;
    z-index: -1;
    opacity: 0.8;
}

.hero-content {
    text-align: center;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease forwards;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

.hero-title {
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--charcoal);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.8);
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-style: italic;
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.6);
}

.hero-cta {
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--charcoal);
    opacity: 0.7;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: 8rem 0;
    background: var(--white);
}

.services .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Hide slider dots on desktop */
.slider-dots {
    display: none;
}

.service-card {
    background: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-content {
    padding: 2rem 1.5rem;
}

.service-name {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.service-description {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.service-price {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.service-duration {
    font-size: 0.7rem;
    color: #999;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    background: var(--charcoal);
    display: flex;
    align-items: center;
    padding: 4rem;
}

.about-inner {
    max-width: 500px;
}

.about-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.signature-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.signature-text {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--gold);
    font-size: 1.1rem;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery {
    padding: 8rem 0;
    background: var(--cream);
}

.gallery .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 0.5rem 1.5rem;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
}

.gallery-item:nth-child(5) {
    grid-column: span 2;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    padding: 8rem 0;
    background: var(--charcoal);
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 200px;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition);
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--gold);
    font-style: normal;
    letter-spacing: 0.1em;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 3rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--gold);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    padding: 4rem 2rem;
    background: var(--cream);
}

.contact-info {
    background: var(--white);
    padding: 3rem;
    display: flex;
    align-items: center;
}

.contact-info-inner {
    max-width: 400px;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 1px solid var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    transition: var(--transition);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    width: 100%;
    max-width: 450px;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    transition: var(--transition);
    color: var(--charcoal);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.form-group label {
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 0.9rem;
    color: #999;
    pointer-events: none;
    transition: var(--transition);
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -0.5rem;
    font-size: 0.7rem;
    color: var(--gold);
}

.form-group select {
    cursor: pointer;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--charcoal);
    padding: 4rem 2rem;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--cream);
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
}

/* ========================================
   BOOKING MODAL
   ======================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 2rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    width: 100%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px);
    transition: var(--transition);
}

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

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    transition: var(--transition);
    line-height: 1;
}

.modal-close:hover {
    color: var(--charcoal);
}

.modal-header {
    padding: 2.5rem 2.5rem 1.5rem;
    border-bottom: 1px solid #eee;
}

.modal-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.booking-steps {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #999;
    transition: var(--transition);
}

.step.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
}

.step.completed {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--white);
}

.modal-body {
    padding: 2rem 2.5rem;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.booking-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-footer {
    padding: 1.5rem 2.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.modal-footer .btn {
    flex: 1;
    text-align: center;
}

/* Service Selection */
.service-select {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-option {
    cursor: pointer;
}

.service-option input {
    display: none;
}

.service-option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border: 1px solid #eee;
    transition: var(--transition);
}

.service-option input:checked+.service-option-content {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.service-option:hover .service-option-content {
    border-color: var(--gold);
}

.service-option-name {
    font-weight: 500;
}

.service-option-details {
    color: var(--gold);
    font-size: 0.85rem;
}

/* Calendar */
.calendar-container {
    background: var(--cream);
    padding: 1.5rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-month {
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.calendar-nav {
    width: 35px;
    height: 35px;
    border: 1px solid #ddd;
    background: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.calendar-nav:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 500;
    color: #999;
    text-transform: uppercase;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--white);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.calendar-day:hover:not(.disabled):not(.selected) {
    background: var(--gold);
    color: var(--charcoal);
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
    background: transparent;
}

.calendar-day.selected {
    background: var(--charcoal);
    color: var(--white);
}

.calendar-day.empty {
    background: transparent;
    cursor: default;
}

/* Time Slots */
.selected-date-display {
    text-align: center;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.time-slot {
    padding: 1rem;
    border: 1px solid #eee;
    background: var(--white);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.time-slot:hover {
    border-color: var(--gold);
}

.time-slot.selected {
    background: var(--gold);
    border-color: var(--gold);
}

.time-slot.unavailable {
    color: #ccc;
    cursor: not-allowed;
}

/* Confirmation */
.confirmation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
}

.confirmation-details {
    background: var(--cream);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.confirmation-details p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.confirmation-details strong {
    color: var(--charcoal);
}

/* Step Error */
.step-error {
    color: #c00;
    font-size: 0.85rem;
    text-align: center;
    margin-top: 1rem;
    min-height: 1.2rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 250px);
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(5) {
        grid-column: span 1;
    }

    .about,
    .contact {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 50vh;
    }

    .about-content,
    .contact-info,
    .contact-form-wrapper {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .header-container {
        padding: 0 1.5rem;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--cream);
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav.active {
        right: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-list {
        flex-direction: column;
        gap: 2rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 1rem;
        padding: 1rem 0 2rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .services-grid::-webkit-scrollbar {
        display: none;
    }

    .services-grid .service-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        min-width: 280px;
        max-width: 320px;
    }

    /* Slider navigation dots */
    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(189, 158, 103, 0.3);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }

    .slider-dot.active {
        background: var(--gold);
        width: 24px;
        border-radius: 4px;
    }

    /* Slider swipe hint animation */
    .services-grid::after {
        content: '';
        flex: 0 0 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 0.5rem;
    }

    .gallery-item {
        height: 150px;
    }

    /* Reset desktop spans for mobile */
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(5) {
        grid-column: span 1;
    }

    .testimonial-quote {
        font-size: 1.1rem;
    }

    .time-slots {
        grid-template-columns: 1fr;
    }

    /* Fullscreen modal on mobile with safe-area support */
    .modal-overlay {
        padding: 0;
    }

    .modal {
        margin: 0;
        max-width: 100%;
        max-height: 100vh;
        height: 100vh;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }

    /* Sticky header with safe-area for notch */
    .modal-header {
        position: sticky;
        top: 0;
        z-index: 10;
        background: var(--white);
        padding: calc(1.5rem + env(safe-area-inset-top)) 1.5rem 1rem;
        padding-top: calc(1.5rem + env(safe-area-inset-top));
        flex-shrink: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    /* Scrollable body between sticky header and footer */
    .modal-body {
        padding: 1.5rem;
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    /* Sticky footer with safe-area for home indicator */
    .modal-footer {
        position: sticky;
        bottom: 0;
        z-index: 10;
        background: var(--white);
        padding: 1rem 1.5rem calc(1.5rem + env(safe-area-inset-bottom));
        padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
        flex-shrink: 0;
        border-top: 1px solid #eee;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    }

    /* Close button with safe-area */
    .modal-close {
        top: calc(1rem + env(safe-area-inset-top));
        right: 1rem;
        font-size: 2.5rem;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 11;
    }

    .calendar-container {
        padding: 1rem;
    }

    .booking-step h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .header-container {
        padding: 0 1rem;
    }

    .hero-title {
        letter-spacing: 0.05em;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .about-content,
    .contact-info,
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .footer {
        padding: 3rem 1.5rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.4rem;
        letter-spacing: 0.2em;
    }
}