/* ================================
   Brows by Fionas - Stylesheet
   Soft Luxury with Organic Femininity
   ================================ */

/* CSS Variables */
:root {
    /* Colors - Soft Pastel Palette */
    --primary-color: #E8B4A8;
    --primary-light: #F5D4CC;
    --primary-dark: #D99A8A;
    --secondary-color: #C9B8D9;
    --secondary-light: #E5DCEF;
    --accent-color: #F4DCC9;
    --accent-warm: #F7E8D8;

    /* Neutrals */
    --text-dark: #2A2A2A;
    --text-medium: #6B6B6B;
    --text-light: #9B9B9B;
    --white: #FFFFFF;
    --cream: #FFF9F5;
    --cream-dark: #FAF0E8;

    /* Fonts */
    --font-serif: 'Cormorant', serif;
    --font-sans: 'Outfit', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-round: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(42, 42, 42, 0.06);
    --shadow-md: 0 4px 16px rgba(42, 42, 42, 0.08);
    --shadow-lg: 0 8px 32px rgba(42, 42, 42, 0.12);
    --shadow-glow: 0 0 32px rgba(232, 180, 168, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 500;
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 500;
}

p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-large {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-lg);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-light);
    color: var(--white);
    border-color: var(--primary-light);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-primary.glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(232, 180, 168, 0.4);
    }
    50% {
        box-shadow: 0 0 32px rgba(232, 180, 168, 0.6);
    }
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 249, 245, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text-dark);
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-medium);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 1rem;
    color: var(--text-medium);
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Blob Decorations */
.blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.4;
    z-index: -1;
    animation: blob-morph 20s ease-in-out infinite;
    pointer-events: none;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    top: -150px;
    right: -150px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary-light), var(--accent-warm));
    bottom: -100px;
    left: -100px;
    animation-delay: 2s;
}

.blob-3 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--accent-warm), var(--primary-light));
    top: 20%;
    right: -200px;
    animation-delay: 4s;
}

.blob-4 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, var(--secondary-light), var(--primary-light));
    bottom: -150px;
    left: -100px;
    animation-delay: 6s;
}

@keyframes blob-morph {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    25% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    75% {
        border-radius: 70% 30% 50% 60% / 40% 70% 50% 60%;
    }
}

/* Sparkle Decoration */
.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: sparkle-twinkle 2s ease-in-out infinite;
}

.sparkle-1 {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 60%;
    right: 25%;
    animation-delay: 0.7s;
}

.sparkle-3 {
    top: 40%;
    right: 10%;
    animation-delay: 1.4s;
}

@keyframes sparkle-twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    z-index: 1;
}

.eyebrow-text {
    display: block;
    font-family: var(--font-sans);
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.main-heading {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.image-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.6;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-photo {
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* Placeholder Images */
.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.placeholder-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }
    100% {
        transform: translateX(100%) translateY(100%);
    }
}

/* Features Section */
.features {
    padding: var(--spacing-lg) 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-medium);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 1rem auto 0;
}

/* Services Highlight */
.services-highlight {
    padding: var(--spacing-xl) 0;
    background: var(--white);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

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

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

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

.service-img-1 {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.service-img-2 {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
}

.service-img-3 {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-warm));
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
}

.text-center {
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: var(--spacing-xl) 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.stars {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 500;
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    z-index: 1;
    position: relative;
}

.cta-content h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-col p,
.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Page Header */
.page-header {
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 1rem auto 0;
}

/* Service Detail Pages */
.services-section {
    padding: var(--spacing-lg) 0;
}

.service-category {
    text-align: center;
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.category-description {
    font-size: 1.25rem;
    color: var(--text-medium);
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-content {
    position: relative;
}

.service-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.service-intro {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.service-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-icon {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.25rem;
}

.service-pricing {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.price-item:last-child {
    margin-bottom: 0;
}

.price-label {
    color: var(--text-medium);
}

.price-amount {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.125rem;
}

.service-detail-image {
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.service-detail-img-1 {
    background: linear-gradient(135deg, #E8B4A8, #F5D4CC);
}

.service-detail-img-2 {
    background: linear-gradient(135deg, #C9B8D9, #E5DCEF);
}

.service-detail-img-3 {
    background: linear-gradient(135deg, #F4DCC9, #F7E8D8);
}

/* Additional Services */
.additional-services {
    padding: var(--spacing-xl) 0;
    background: var(--white);
    position: relative;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.additional-service-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

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

.additional-service-card h4 {
    margin-bottom: 0.75rem;
}

.additional-service-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.additional-service-card .price {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* Process Section */
.process-section {
    padding: var(--spacing-xl) 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
}

.process-step {
    text-align: center;
}

.step-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
    font-weight: 300;
}

.process-step h4 {
    margin-bottom: 1rem;
}

/* About Page */
.about-main {
    padding: var(--spacing-lg) 0;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: var(--radius-lg);
}

.about-img {
    height: 600px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.about-text h2 {
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Qualifications */
.qualifications {
    padding: var(--spacing-xl) 0;
    background: var(--white);
    position: relative;
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.qualification-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.qual-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.qualification-card h4 {
    margin-bottom: 0.75rem;
}

.qualification-card p {
    font-size: 0.95rem;
}

/* Values Section */
.values-section {
    padding: var(--spacing-lg) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
}

.value-item {
    text-align: center;
}

.value-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Studio Section */
.studio-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
    position: relative;
}

.studio-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.studio-img {
    height: 500px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-light));
}

.studio-text h2 {
    margin-bottom: 1.5rem;
}

.studio-features {
    margin-top: 2rem;
}

.studio-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

/* Community Section */
.community-section {
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.community-content {
    max-width: 800px;
    margin: 0 auto;
}

.community-content h2 {
    margin-bottom: 1.5rem;
}

.community-content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* FAQ Page */
.faq-section {
    padding: var(--spacing-lg) 0;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-light);
    background: var(--white);
    color: var(--text-medium);
    border-radius: var(--radius-lg);
    font-family: var(--font-sans);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--cream);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.faq-answer strong {
    color: var(--text-dark);
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
}

.questions-cta {
    padding: var(--spacing-xl) 0;
    background: var(--cream-dark);
    position: relative;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Booking Page */
.booking-section {
    padding: var(--spacing-lg) 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.booking-form-container {
    position: relative;
}

.booking-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-label span {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.submit-btn {
    width: 100%;
    position: relative;
}

.btn-loading {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: inline;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem;
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.form-success h3 {
    margin-bottom: 1rem;
}

.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin: 0;
}

.expect-list {
    list-style: none;
}

.expect-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

.expect-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.highlight-card {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    position: relative;
    overflow: hidden;
}

.highlight-card h3 {
    color: var(--text-dark);
}

.small-text {
    font-size: 0.875rem;
    color: var(--text-medium);
    font-style: italic;
}

/* Preparation Section */
.preparation-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
    position: relative;
}

.preparation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.prep-card {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}

.prep-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.prep-card:first-child .prep-icon {
    color: #4CAF50;
}

.prep-card:last-child .prep-icon {
    color: #F44336;
}

.prep-card h4 {
    margin-bottom: 1.5rem;
}

.prep-card ul {
    list-style: none;
}

.prep-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

.prep-card:first-child li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 600;
}

.prep-card:last-child li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #F44336;
    font-weight: 600;
}

.prep-note {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
    color: var(--text-medium);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
    opacity: 0;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Increase tap targets for touch devices */
    .btn-primary,
    .btn-secondary,
    .btn-large {
        min-height: 44px;
        padding: 0.875rem 2rem;
    }

    .nav-links a {
        padding: 0.5rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .mobile-menu-toggle {
        min-width: 44px;
        min-height: 44px;
        padding: 0.5rem;
    }

    .faq-question {
        min-height: 60px;
    }

    .category-btn {
        min-height: 44px;
    }

    /* Remove hover effects on touch devices */
    .feature-card:hover,
    .service-card:hover,
    .testimonial-card:hover,
    .additional-service-card:hover {
        transform: none;
    }

    /* Make active states more obvious */
    .btn-primary:active {
        transform: scale(0.98);
        opacity: 0.9;
    }

    .service-card:active,
    .feature-card:active {
        transform: scale(0.99);
    }
}

/* Prevent horizontal scrolling */
body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive Design */

/* Tablet and below (992px) */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-photo {
        aspect-ratio: 4/3;
    }

    .service-detail,
    .about-content-grid,
    .studio-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-detail.reverse {
        direction: ltr;
    }

    .service-detail-image,
    .about-img,
    .studio-img {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
    }

    .booking-grid {
        grid-template-columns: 1fr;
    }

    .preparation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile and below (768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    /* Navigation */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 6rem 2rem;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        z-index: 999;
        gap: 1.5rem;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }

    /* Typography adjustments */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }

    .hero-description,
    .section-description {
        font-size: 1.125rem;
    }

    /* Hero Section */
    .hero {
        padding: 4rem 0 3rem;
    }

    .hero-content {
        gap: 2.5rem;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-photo {
        aspect-ratio: 1/1;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-large {
        width: 100%;
        text-align: center;
    }

    /* Feature Cards */
    .feature-card,
    .testimonial-card {
        padding: 2rem;
    }

    .feature-grid,
    .testimonial-grid,
    .services-grid {
        gap: 1.5rem;
    }

    /* Service Cards */
    .service-image {
        height: 200px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-detail-image,
    .about-img,
    .studio-img {
        height: 300px;
    }

    /* Booking Form */
    .booking-form {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Footer */
    .footer-grid {
        gap: 2rem;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer {
        padding: 3rem 0 2rem;
    }

    /* Blobs */
    .blob {
        width: 300px !important;
        height: 300px !important;
    }

    /* Section spacing */
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }
}

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

    /* Further reduce spacing */
    :root {
        --spacing-lg: 2.5rem;
        --spacing-xl: 3.5rem;
    }

    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    /* Hero */
    .hero {
        padding: 3rem 0 2rem;
    }

    .hero-content {
        gap: 2rem;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Cards */
    .feature-card,
    .testimonial-card,
    .service-content {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    /* Force single column for all grids */
    .feature-grid,
    .services-grid,
    .testimonial-grid,
    .additional-services-grid,
    .qualifications-grid,
    .values-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Service images */
    .service-image {
        height: 180px;
    }

    .service-detail-image,
    .about-img,
    .studio-img {
        height: 250px;
    }

    /* FAQ */
    .faq-categories {
        flex-direction: column;
        gap: 0.75rem;
    }

    .category-btn {
        width: 100%;
        padding: 0.625rem 1.25rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1.125rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }

    /* Booking form */
    .booking-form {
        padding: 1.5rem;
    }

    .sidebar-card {
        padding: 1.5rem;
    }

    /* Navbar */
    .navbar {
        padding: 1rem 0;
    }

    .logo-main {
        font-size: 1.5rem;
    }

    .logo-sub {
        font-size: 0.7rem;
    }

    /* Blobs - reduce further or hide */
    .blob {
        width: 250px !important;
        height: 250px !important;
        opacity: 0.25;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 2rem;
    }

    .section-label {
        font-size: 0.8rem;
    }

    /* Page header */
    .page-header {
        padding: 4rem 0 3rem;
    }

    /* Testimonials */
    .testimonial-text {
        font-size: 1rem;
    }

    .stars {
        font-size: 1.25rem;
    }
}

/* Extra small devices (360px) */
@media (max-width: 360px) {
    .container {
        padding: 0 0.875rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-photo {
        aspect-ratio: 3/4;
    }

    .blob {
        display: none;
    }
}
