/*
Theme Name: NESA Aesthetics
Theme URI: https://nesa-aesthetics.de
Author: NESA Aesthetics
Author URI: https://nesa-aesthetics.de
Description: Ein elegantes WordPress-Theme für Beauty Salons im Rosa/Beige/Pastell-Stil. Perfekt für Kosmetikstudios, Nagelstudios, Wimpernstudios und Wellness-Einrichtungen.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nesa-aesthetics
Tags: beauty, salon, spa, wellness, pink, pastel, one-column, custom-menu, custom-logo, featured-images, theme-options

NESA Aesthetics WordPress Theme
Copyright 2024-2026 NESA Aesthetics
*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Farben - Elegantes Taupe/Beige Schema */
    --nesa-primary: #a89080;
    --nesa-primary-dark: #8b7568;
    --nesa-primary-light: #c4b5a8;
    --nesa-secondary: #d4c8be;
    --nesa-accent: #b8a090;
    --nesa-light: #f5f0eb;
    --nesa-dark: #4a4039;
    --nesa-success: #a8c4a8;
    --nesa-warning: #d4b896;
    --nesa-danger: #c49a9a;
    --nesa-white: #ffffff;
    --nesa-text: #4a4039;
    --nesa-text-light: #7a6a5a;
    --nesa-cream: #ebe5de;

    /* Schatten */
    --shadow-sm: 0 1px 3px rgba(74, 64, 57, 0.08);
    --shadow-md: 0 4px 12px rgba(74, 64, 57, 0.1);
    --shadow-lg: 0 10px 30px rgba(74, 64, 57, 0.12);
    --shadow-xl: 0 20px 50px rgba(74, 64, 57, 0.15);

    /* Radien */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    /* Typografie */
    --font-script: 'Alex Brush', cursive;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 80px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--nesa-text);
    background-color: var(--nesa-light);
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--nesa-dark);
    margin-bottom: 0.5em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--nesa-primary-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--nesa-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   LAYOUT & CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 800px;
}

.container-wide {
    max-width: 1400px;
}

section {
    padding: var(--section-padding) 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--nesa-primary) 0%, var(--nesa-primary-dark) 100%);
    color: var(--nesa-white);
    box-shadow: 0 4px 15px rgba(168, 144, 128, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 144, 128, 0.5);
    color: var(--nesa-white);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--nesa-primary-dark);
    border: 2px solid var(--nesa-primary);
}

.btn-outline:hover {
    background: var(--nesa-primary);
    color: var(--nesa-white);
}

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

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.site-header.scrolled {
    background: var(--nesa-white);
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--nesa-primary) 0%, var(--nesa-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nesa-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
}

.site-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.site-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--nesa-dark);
    margin: 0;
}

.site-title a {
    color: inherit;
}

.site-title a:hover {
    color: var(--nesa-primary);
}

/* Main Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--nesa-dark);
    transition: color var(--transition-fast);
}

.nav-menu a:hover,
.nav-menu a.active,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
    color: var(--nesa-primary);
}

.nav-menu a.active {
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--nesa-primary);
    border-radius: 1px;
}

/* Dropdown */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--nesa-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    list-style: none;
}

.nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu a {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--nesa-dark);
}

.menu-toggle svg {
    width: 28px;
    height: 28px;
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--nesa-dark);
}

.header-phone svg {
    width: 20px;
    height: 20px;
    color: var(--nesa-primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--nesa-cream) 0%, var(--nesa-secondary) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(168, 144, 128, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(168, 144, 128, 0.2);
    color: var(--nesa-primary-dark);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-script);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title span {
    color: var(--nesa-primary-dark);
}

.hero-text {
    font-size: 1.125rem;
    color: var(--nesa-text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

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

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

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--nesa-primary);
    border-radius: var(--radius-xl);
    z-index: -1;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(92, 74, 74, 0.1);
}

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

.hero-stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--nesa-primary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--nesa-text-light);
    margin-top: 0.25rem;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-subtitle {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(168, 144, 128, 0.15);
    color: var(--nesa-primary-dark);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.section-title {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--nesa-dark);
    line-height: 1.2;
}

.section-text {
    color: var(--nesa-text-light);
    font-size: 1.0625rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: var(--nesa-secondary);
}

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

.service-card {
    background: var(--nesa-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--nesa-primary-light) 0%, var(--nesa-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.service-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.service-title {
    font-family: var(--font-script);
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--nesa-dark);
}

.service-description {
    color: var(--nesa-text-light);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    min-height: 3em;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--nesa-primary);
    margin-bottom: 0.5rem;
}

.service-price span {
    font-size: 0.875rem;
    color: var(--nesa-text-light);
    font-family: var(--font-body);
    font-weight: 400;
}

/* Special Price Styling */
.service-price.has-special {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.service-price .regular-price {
    font-size: 1rem;
    color: var(--nesa-text-light);
    text-decoration: line-through;
    opacity: 0.7;
}

.service-price .special-price {
    font-size: 1.5rem;
    color: var(--nesa-accent, #e74c3c);
    font-weight: 700;
}

.service-book-btn {
    margin-top: 1rem;
}

/* Services Slider */
.services-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 -1rem;
    padding: 0 1rem;
}

.services-slider {
    overflow: hidden;
    flex: 1;
    margin: 0;
}

.services-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
}

.services-slider-track:active {
    cursor: grabbing;
}

.services-slider-track .service-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 300px;
    max-width: 400px;
}

@media (max-width: 1200px) {
    .services-slider-track .service-card {
        flex: 0 0 calc(50% - 12px);
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .services-slider-track .service-card {
        flex: 0 0 calc(100% - 48px);
        min-width: 260px;
    }

    .services-slider-wrapper {
        gap: 0.5rem;
    }
}

.slider-arrow {
    background: var(--nesa-white);
    border: 2px solid var(--nesa-primary-light);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    color: var(--nesa-primary);
    z-index: 10;
    flex-shrink: 0;
}

.slider-arrow:hover:not(:disabled) {
    background: var(--nesa-primary);
    border-color: var(--nesa-primary);
    color: var(--nesa-white);
}

.slider-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

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

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--nesa-primary-light);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--nesa-primary);
    transform: scale(1.2);
}

@media (max-width: 480px) {
    .services-slider-track .service-card {
        flex: 0 0 100%;
        min-width: auto;
    }

    .slider-arrow {
        display: none;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--nesa-white);
}

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

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-xl);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--nesa-primary);
    color: var(--nesa-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-image-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1;
}

.about-image-badge span {
    font-size: 0.875rem;
}

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

.about-text {
    color: var(--nesa-text-light);
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-feature svg {
    width: 24px;
    height: 24px;
    color: var(--nesa-primary);
    flex-shrink: 0;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(92, 74, 74, 0.8), transparent);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    transition: opacity var(--transition-normal);
}

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

.gallery-item-title {
    color: var(--nesa-white);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Vorher-Nachher */
.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.before-after-item {
    background: var(--nesa-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.before-after-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.before-after-images img {
    aspect-ratio: 1;
    object-fit: cover;
}

.before-after-label {
    position: absolute;
    bottom: 10px;
    padding: 0.25rem 0.75rem;
    background: var(--nesa-dark);
    color: var(--nesa-white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.before-after-label.before {
    left: 10px;
}

.before-after-label.after {
    right: 10px;
    background: var(--nesa-primary);
}

.before-after-content {
    padding: 1.5rem;
}

.before-after-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.before-after-description {
    color: var(--nesa-text-light);
    font-size: 0.875rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: linear-gradient(135deg, var(--nesa-secondary) 0%, var(--nesa-light) 100%);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

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

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: #fbbf24;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    font-weight: 600;
    color: var(--nesa-dark);
}

.testimonial-meta {
    font-size: 0.875rem;
    color: var(--nesa-text-light);
}

/* ============================================
   PRICE LIST
   ============================================ */
.price-list-section {
    background: var(--nesa-white);
}

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

.price-category-btn {
    padding: 0.75rem 1.5rem;
    background: var(--nesa-light);
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--nesa-text);
    cursor: pointer;
    transition: all var(--transition-fast);
}

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

.price-table {
    max-width: 800px;
    margin: 0 auto;
}

.price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    border-bottom: 1px dashed var(--nesa-secondary);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item-info {
    flex: 1;
}

.price-item-name {
    font-weight: 600;
    color: var(--nesa-dark);
    margin-bottom: 0.25rem;
}

.price-item-description {
    font-size: 0.875rem;
    color: var(--nesa-text-light);
}

.price-item-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    color: var(--nesa-text-light);
    margin-top: 0.25rem;
}

.price-item-duration svg {
    width: 14px;
    height: 14px;
}

.price-item-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--nesa-primary);
    margin-left: 2rem;
}

/* ============================================
   BOOKING SECTION
   ============================================ */
.booking-section {
    background: linear-gradient(135deg, var(--nesa-primary) 0%, var(--nesa-accent) 100%);
    color: var(--nesa-white);
}

.booking-section .section-subtitle {
    background: rgba(255, 255, 255, 0.2);
    color: var(--nesa-white);
}

.booking-section .section-title {
    color: var(--nesa-white);
}

.booking-section .section-text {
    color: rgba(255, 255, 255, 0.8);
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--nesa-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
}

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

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

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--nesa-secondary);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--nesa-text);
    background: var(--nesa-white);
    transition: border-color var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--nesa-primary);
}

.form-control::placeholder {
    color: var(--nesa-text-light);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

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

.form-submit {
    margin-top: 1.5rem;
}

.form-submit .btn {
    width: 100%;
}

/* Booking Upgrade/Addon Options */
.booking-upgrade-option,
.booking-addon-option {
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--nesa-light);
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    transition: all var(--transition-fast);
}

.booking-upgrade-option:hover,
.booking-addon-option:hover {
    border-color: var(--nesa-primary-light);
}

.upgrade-checkbox,
.addon-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.upgrade-checkbox input,
.addon-checkbox input {
    width: 20px;
    height: 20px;
    accent-color: var(--nesa-primary);
    cursor: pointer;
}

.upgrade-info,
.addon-info {
    flex: 1;
}

.upgrade-info strong,
.addon-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--nesa-dark);
}

.upgrade-info small,
.addon-info small {
    font-size: 0.8rem;
    color: var(--nesa-text-light);
}

/* Booking Price Preview */
.booking-price-preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--nesa-primary-light) 0%, var(--nesa-secondary) 100%);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.price-preview-label {
    font-weight: 500;
    color: var(--nesa-dark);
}

.price-preview-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--nesa-primary-dark);
}

/* Booking Success */
.booking-success {
    text-align: center;
    padding: 2rem;
}

.booking-success .success-icon {
    width: 80px;
    height: 80px;
    background: var(--nesa-success);
    color: #2d5a3d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.booking-success h3 {
    color: var(--nesa-dark);
    margin-bottom: 0.5rem;
}

.booking-success p {
    color: var(--nesa-text-light);
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 1.5rem;
    }
}

/* ============================================
   BOOKING WIDGET (Multi-Step) - Reserved
   ============================================ */
.booking-widget {
    max-width: 700px;
    margin: 0 auto;
    background: var(--nesa-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
}

.booking-step {
    animation: fadeIn 0.3s ease;
}

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

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--nesa-secondary);
}

.step-number {
    width: 36px;
    height: 36px;
    background: var(--nesa-primary);
    color: var(--nesa-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.step-title {
    font-size: 1.25rem;
    color: var(--nesa-dark);
    margin: 0;
    flex: 1;
}

.step-back {
    background: none;
    border: none;
    color: var(--nesa-primary);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.5rem;
}

.step-back:hover {
    text-decoration: underline;
}

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

.service-selection .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-selection label {
    font-weight: 500;
    color: var(--nesa-dark);
    font-size: 0.95rem;
}

.booking-dropdown {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--nesa-secondary);
    border-radius: var(--radius-md);
    background: var(--nesa-white);
    font-size: 0.95rem;
    color: var(--nesa-dark);
    cursor: pointer;
    transition: all var(--transition-fast);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238B7355' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 18px;
    padding-right: 2.5rem;
}

.booking-dropdown:hover,
.booking-dropdown:focus {
    border-color: var(--nesa-primary);
    outline: none;
}

.booking-dropdown option:disabled {
    color: #ccc;
    background: #f5f5f5;
}

/* Selected Services List (Multi-Select) */
.selected-services {
    margin-bottom: 1rem;
}

.selected-services-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.selected-service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--nesa-secondary);
    border-radius: var(--radius-md);
    border: 2px solid var(--nesa-primary-light);
    animation: fadeIn 0.2s ease;
}

.selected-service-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.selected-service-name {
    font-weight: 500;
    color: var(--nesa-dark);
    font-size: 0.95rem;
}

.selected-service-price {
    font-size: 0.85rem;
    color: var(--nesa-primary);
    font-weight: 600;
}

.selected-service-remove {
    background: none;
    border: none;
    padding: 0.375rem;
    cursor: pointer;
    color: var(--nesa-text-light);
    border-radius: 50%;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.selected-service-remove:hover {
    color: var(--nesa-danger);
    background: rgba(232, 160, 160, 0.2);
}

/* Add More Treatment Button */
.btn-add-service {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.booking-step-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--nesa-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Booking AGB Checkbox */
.booking-agb-group {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--nesa-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--nesa-secondary);
}

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

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--nesa-primary);
    cursor: pointer;
    flex-shrink: 0;
}

.form-checkbox .checkbox-label {
    font-size: 0.875rem;
    color: var(--nesa-text);
    line-height: 1.6;
}

.form-checkbox .checkbox-label a {
    color: var(--nesa-primary);
    text-decoration: underline;
    font-weight: 500;
}

.form-checkbox .checkbox-label a:hover {
    color: var(--nesa-primary-dark);
}

#booking-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.price-preview {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.price-preview strong {
    font-size: 1.25rem;
    color: var(--nesa-primary);
}

.service-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: var(--nesa-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.service-option:hover {
    background: var(--nesa-secondary);
    border-color: var(--nesa-primary-light);
}

.service-option.selected {
    background: var(--nesa-secondary);
    border-color: var(--nesa-primary);
}

.service-option-icon {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.service-option-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.service-option-info strong {
    color: var(--nesa-dark);
    font-size: 0.95rem;
}

.service-option-info small {
    color: var(--nesa-text-light);
    font-size: 0.8rem;
}

.service-option-price {
    font-weight: 600;
    color: var(--nesa-primary);
    font-size: 1.1rem;
}

/* Booking Extras */
.booking-extras {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--nesa-secondary);
}

.extra-option {
    margin-bottom: 0.75rem;
}

.extra-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: var(--nesa-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.extra-checkbox:hover {
    background: var(--nesa-secondary);
}

.extra-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--nesa-primary);
}

.extra-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.extra-info strong {
    font-size: 0.9rem;
    color: var(--nesa-dark);
}

.extra-info small {
    font-size: 0.8rem;
    color: var(--nesa-text-light);
}

.extra-price {
    font-weight: 600;
    color: var(--nesa-primary);
}

/* Calendar */
.booking-calendar-wrapper {
    margin-top: 1rem;
}

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

.calendar-nav-btn {
    background: none;
    border: 2px solid var(--nesa-primary-light);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--nesa-primary);
    transition: all var(--transition-fast);
}

.calendar-nav-btn:hover {
    background: var(--nesa-primary);
    border-color: var(--nesa-primary);
    color: var(--nesa-white);
}

.calendar-month {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--nesa-dark);
}

.calendar-grid {
    background: var(--nesa-light);
    border-radius: var(--radius-md);
    padding: 1rem;
}

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

.calendar-weekdays span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--nesa-text-light);
    text-transform: uppercase;
}

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

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    cursor: default;
    transition: all var(--transition-fast);
}

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

.calendar-day.past,
.calendar-day.unavailable {
    color: var(--nesa-text-light);
    opacity: 0.4;
}

.calendar-day.blocked {
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 3px,
        rgba(200, 200, 200, 0.3) 3px,
        rgba(200, 200, 200, 0.3) 6px
    );
    color: var(--nesa-text-light);
    opacity: 0.5;
    cursor: not-allowed;
}

.calendar-day.available {
    background: var(--nesa-white);
    color: var(--nesa-dark);
    cursor: pointer;
    font-weight: 500;
}

.calendar-day.available:hover {
    background: var(--nesa-primary-light);
}

.calendar-day.weekend {
    background: var(--nesa-secondary);
    color: var(--nesa-dark);
    cursor: pointer;
    font-weight: 500;
    position: relative;
}

.calendar-day.weekend::after {
    content: '☎';
    position: absolute;
    bottom: 2px;
    right: 4px;
    font-size: 0.6rem;
    opacity: 0.6;
}

.calendar-day.weekend:hover {
    background: var(--nesa-warning);
}

.calendar-day.selected {
    background: var(--nesa-primary) !important;
    color: var(--nesa-white) !important;
}

/* Calendar Legend */
.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--nesa-secondary);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--nesa-text-light);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.available {
    background: var(--nesa-white);
    border: 2px solid var(--nesa-primary-light);
}

.legend-dot.unavailable {
    background: var(--nesa-light);
    opacity: 0.4;
}

.legend-dot.selected {
    background: var(--nesa-primary);
}

/* Time Slots */
.time-slots-wrapper {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--nesa-secondary);
}

.time-slots-title {
    font-size: 1rem;
    color: var(--nesa-dark);
    margin-bottom: 1rem;
}

.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.time-slot {
    padding: 0.625rem 1rem;
    background: var(--nesa-light);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--nesa-dark);
    transition: all var(--transition-fast);
}

.time-slot:hover {
    background: var(--nesa-secondary);
    border-color: var(--nesa-primary-light);
}

.time-slot.selected {
    background: var(--nesa-primary);
    border-color: var(--nesa-primary);
    color: var(--nesa-white);
}

/* Sonderöffnungszeiten Slots */
.time-slot.special {
    background: linear-gradient(135deg, #fff8e6 0%, #fff3d4 100%);
    border-color: #e6c97a;
}

.time-slot.special:hover {
    background: linear-gradient(135deg, #fff3d4 0%, #ffecb3 100%);
    border-color: #d4a85a;
}

.time-slot.special.selected {
    background: linear-gradient(135deg, #d4a85a 0%, #c49a4a 100%);
    border-color: #c49a4a;
    color: var(--nesa-white);
}

.special-hours-divider {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 1rem 0 0.75rem;
    gap: 0.75rem;
}

.special-hours-divider::before,
.special-hours-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4a85a, transparent);
}

.special-hours-divider span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #c49a4a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.special-hours-notice {
    width: 100%;
    margin-top: 1rem;
    padding: 0.875rem 1rem;
    background: linear-gradient(135deg, #fff8e6 0%, #fff3d4 100%);
    border: 1px solid #e6c97a;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: #7a6030;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.special-hours-notice .notice-icon {
    flex-shrink: 0;
}

.special-hours-confirmation-notice {
    margin-top: 1.25rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fff8e6 0%, #fff3d4 100%);
    border: 1px solid #e6c97a;
    border-radius: var(--radius-md);
    color: #8b6914;
    font-size: 0.9rem;
    line-height: 1.5;
}

.special-hours-confirmation-notice strong {
    color: #6b5114;
}

.special-hours-booking-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1rem 0 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #fff8e6 0%, #fff3d4 100%);
    border: 1px solid #e6c97a;
    border-radius: var(--radius-md);
    color: #6b5114;
    font-size: 0.9rem;
    line-height: 1.5;
}

.special-hours-booking-notice .notice-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.special-hours-booking-notice .notice-content {
    flex: 1;
}

.special-hours-booking-notice .notice-content strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #5a4510;
}

.special-hours-booking-notice .notice-content p {
    margin: 0;
    color: #7a6520;
}

.loading-slots {
    padding: 2rem;
    text-align: center;
    color: var(--nesa-text-light);
}

.no-slots-message {
    padding: 1rem;
    background: var(--nesa-warning);
    border-radius: var(--radius-sm);
    text-align: center;
    color: var(--nesa-dark);
}

/* Booking Summary */
.booking-summary {
    background: var(--nesa-light);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.summary-item:not(:last-child) {
    border-bottom: 1px solid var(--nesa-secondary);
}

.summary-label {
    color: var(--nesa-text-light);
}

.summary-value {
    color: var(--nesa-dark);
    font-weight: 500;
}

.summary-total .summary-value {
    font-size: 1.25rem;
    color: var(--nesa-primary);
    font-weight: 600;
}

/* Booking Success */
.booking-success-step {
    text-align: center;
    padding: 2rem;
}

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

.booking-success-step h3 {
    color: var(--nesa-dark);
    margin-bottom: 0.75rem;
}

.booking-success-step p {
    color: var(--nesa-text-light);
    margin-bottom: 1.5rem;
}

.confirmation-details {
    background: var(--nesa-light);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.confirmation-details p {
    margin: 0.5rem 0;
    color: var(--nesa-text);
}

/* Contact Form in Booking Widget */
.booking-widget .contact-form .form-group {
    margin-bottom: 1rem;
}

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

@media (max-width: 640px) {
    .booking-widget .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .booking-widget {
        padding: 1.5rem;
    }
}

/* ============================================
   INSTAGRAM FEED
   ============================================ */
.instagram-section {
    padding: var(--section-padding) 0;
    background: var(--nesa-secondary);
}

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

.instagram-feed-wrapper {
    width: 100%;
    max-height: 200px;
    overflow: hidden;
}

/* Smash Balloon Full Width - Kompakt */
.instagram-feed-wrapper #sb_instagram {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.instagram-feed-wrapper #sbi_images {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 4px !important;
    padding: 0 !important;
    margin: 0 !important;
}

.instagram-feed-wrapper .sbi_item {
    flex: 1 !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: 250px !important;
}

.instagram-feed-wrapper .sbi_photo_wrap {
    padding-bottom: 100% !important;
    height: 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

.instagram-feed-wrapper .sbi_photo {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.instagram-feed-wrapper .sbi_photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    max-height: 250px !important;
}

/* Hide plugin UI elements */
.instagram-feed-wrapper .sb_instagram_header,
.instagram-feed-wrapper .sbi_follow_btn,
.instagram-feed-wrapper .sbi_load_btn,
.instagram-feed-wrapper .sbi_hover_bottom,
.instagram-feed-wrapper #sbi_load {
    display: none !important;
}

.instagram-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.instagram-title svg {
    width: 28px;
    height: 28px;
    color: var(--nesa-primary);
}

/* Placeholder Grid (no plugin) */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
    width: 100%;
    max-height: 200px;
}

.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    max-height: 200px;
}

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

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

.instagram-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(168, 144, 128, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

.instagram-item-overlay svg {
    width: 24px;
    height: 24px;
    color: var(--nesa-white);
}

.instagram-placeholder {
    background: var(--nesa-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-placeholder-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--nesa-primary);
    opacity: 0.5;
    transition: all var(--transition-normal);
}

.instagram-placeholder:hover .instagram-placeholder-inner {
    opacity: 1;
    transform: scale(1.1);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--nesa-white);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Contact Box (Standort) - matching form wrapper style */
.contact-box-wrapper {
    background: var(--nesa-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.contact-box-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--nesa-dark);
}

.contact-box-wrapper .contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 220px;
    margin-bottom: 1.5rem;
}

.contact-box-wrapper .contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-map-placeholder {
    height: 220px;
    background: var(--nesa-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nesa-text-light);
    margin-bottom: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--nesa-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nesa-primary);
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item-label {
    font-size: 0.875rem;
    color: var(--nesa-text-light);
    margin-bottom: 0.25rem;
}

.contact-item-value {
    font-weight: 600;
    color: var(--nesa-dark);
}

.contact-item-value a {
    color: inherit;
}

.contact-item-value a:hover {
    color: var(--nesa-primary);
}

/* Opening Hours */
.opening-hours {
    background: var(--nesa-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.opening-hours h4 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.opening-hours h4 svg {
    width: 20px;
    height: 20px;
    color: var(--nesa-primary);
}

.opening-hours-list {
    list-style: none;
}

.opening-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--nesa-secondary);
    font-size: 0.9375rem;
}

.opening-hours-list li:last-child {
    border-bottom: none;
}

.opening-hours-list li span:last-child {
    font-weight: 500;
}

/* Opening Hours Section (below contact) */
.opening-hours-section {
    margin-top: 3rem;
}

.opening-hours-section .opening-hours {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.opening-hours-section .opening-hours h4 {
    justify-content: center;
    font-size: 1.25rem;
}

.opening-hours-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.opening-hours-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.opening-hours-item .hours-label {
    font-size: 0.875rem;
    color: var(--nesa-text-light);
}

.opening-hours-item .hours-value {
    font-weight: 600;
    color: var(--nesa-dark);
}

.opening-hours-item.opening-hours-phone {
    padding-left: 2rem;
    border-left: 2px solid var(--nesa-secondary);
}

/* Google Map */
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--nesa-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.contact-form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--nesa-dark);
}

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

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form .form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--nesa-dark);
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--nesa-secondary);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--nesa-dark);
    background: var(--nesa-white);
    transition: all var(--transition-fast);
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--nesa-primary);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-checkbox {
    margin-bottom: 1.5rem;
}

.contact-form .form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--nesa-text);
    line-height: 1.5;
}

.contact-form .form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--nesa-primary);
    cursor: pointer;
    flex-shrink: 0;
}

.contact-form .form-checkbox a {
    color: var(--nesa-primary);
    text-decoration: underline;
}

.contact-form .form-submit {
    text-align: right;
}

.contact-form .form-submit .btn {
    min-width: 200px;
}

/* Contact Form Success */
.contact-form .form-success {
    text-align: center;
    padding: 2rem 1rem;
}

.contact-form .form-success .success-icon {
    color: var(--nesa-success);
    margin-bottom: 1rem;
}

.contact-form .form-success h4 {
    color: var(--nesa-dark);
    margin-bottom: 0.5rem;
}

.contact-form .form-success p {
    color: var(--nesa-text-light);
}

/* Contact Map Wrapper (below form) */
.contact-map-wrapper {
    margin-top: 3rem;
}

.contact-map-wrapper .contact-map {
    min-height: 300px;
}

@media (max-width: 768px) {
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form .form-submit {
        text-align: center;
    }

    .contact-form .form-submit .btn {
        width: 100%;
    }

    .opening-hours-grid {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .opening-hours-item.opening-hours-phone {
        padding-left: 0;
        border-left: none;
        padding-top: 1rem;
        border-top: 2px solid var(--nesa-secondary);
    }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--nesa-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 0 0 280px;
    max-width: 280px;
}

.footer-column {
    flex: 0 0 auto;
    min-width: 150px;
}

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

.footer-logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--nesa-primary) 0%, var(--nesa-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nesa-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-logo-text {
    font-family: var(--font-script);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--nesa-white);
}

.footer-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nesa-white);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--nesa-primary);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--nesa-white);
    margin-bottom: 1.5rem;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-menu a:hover {
    color: var(--nesa-primary);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-hours li span:first-child {
    color: rgba(255, 255, 255, 0.5);
}

.footer-call-btn {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-call-btn svg {
    flex-shrink: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--nesa-primary);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    padding: 0 0.75rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-legal a:last-child {
    border-right: none;
}

.footer-legal a:hover {
    color: var(--nesa-primary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner,
    .about-inner,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-inner {
        justify-content: flex-start;
        gap: 2rem 3rem;
    }

    .footer-brand {
        flex: 0 0 100%;
        max-width: none;
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-column {
        flex: 1 1 calc(33.333% - 2rem);
        min-width: 140px;
    }

    .footer-social {
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .instagram-feed-wrapper .sbi_item {
        flex: 0 0 25% !important;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    /* Mobile Navigation */
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: var(--nesa-white);
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 1.5rem 2rem;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-normal);
        z-index: 999;
    }

    .main-navigation.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-menu a {
        padding: 1rem 0;
        border-bottom: 1px solid var(--nesa-secondary);
    }

    .nav-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 1rem;
    }

    .header-cta {
        margin-top: auto;
        flex-direction: column;
    }

    .header-cta .btn {
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }

    /* Mobile Menu Overlay */
    .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(92, 74, 74, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        z-index: 998;
    }

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

    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-image {
        order: -1;
    }

    .hero-image::before {
        display: none;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .before-after-grid {
        grid-template-columns: 1fr;
    }

    /* Instagram Mobile */
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .instagram-feed-wrapper .sbi_item {
        flex: 0 0 33.333% !important;
    }

    .instagram-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Footer Mobile */
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand,
    .footer-column {
        flex: 0 0 100%;
        max-width: none;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Form Mobile */
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-feed-wrapper .sbi_item {
        flex: 0 0 50% !important;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .price-item-price {
        margin-left: 0;
    }

    .booking-step-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-step-footer .btn {
        width: 100%;
        text-align: center;
    }

    .price-preview {
        justify-content: center;
        margin-bottom: 0.5rem;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.hidden { display: none; }
.visible { display: block; }

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   POPUP MODAL
   ============================================ */
.nesa-popup {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.nesa-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.nesa-popup-content {
    position: relative;
    background: var(--nesa-white);
    border-radius: var(--radius-lg);
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    animation: popupIn 0.3s ease;
}

.nesa-popup-content::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.nesa-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--nesa-text-light);
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
    transition: color var(--transition-fast);
}

.nesa-popup-close:hover {
    color: var(--nesa-dark);
}

.nesa-popup-title {
    font-size: 1.75rem;
    text-align: center;
    color: var(--nesa-primary);
    margin-bottom: 0.25rem;
    letter-spacing: 2px;
}

.nesa-popup-subtitle {
    text-align: center;
    color: var(--nesa-text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.nesa-popup-body {
    margin-bottom: 1.5rem;
}

.nesa-popup-body h4 {
    font-size: 1rem;
    color: var(--nesa-dark);
    margin: 1.25rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--nesa-secondary);
}

.nesa-popup-body h4:first-child {
    margin-top: 0;
}

.nesa-popup-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nesa-popup-body ul li {
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--nesa-light);
    font-size: 0.95rem;
}

.nesa-popup-body ul li:last-child {
    border-bottom: none;
}

.nesa-popup-body ul li strong {
    color: var(--nesa-primary);
}

.nesa-popup-notice {
    background: var(--nesa-light);
    padding: 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--nesa-text-light);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.nesa-popup-btn {
    display: block;
    width: 100%;
}

/* ============================================
   BOOKING INFO BOX
   ============================================ */
.booking-service-info {
    background: linear-gradient(135deg, var(--nesa-light) 0%, var(--nesa-secondary) 100%);
    border-left: 4px solid var(--nesa-primary);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    animation: fadeIn 0.3s ease;
}

.booking-service-info-title {
    font-weight: 600;
    color: var(--nesa-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.booking-service-info-title svg {
    width: 18px;
    height: 18px;
    color: var(--nesa-primary);
}

.booking-service-info p {
    font-size: 0.875rem;
    color: var(--nesa-text);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 640px) {
    .nesa-popup-content {
        padding: 1.5rem;
    }

    .nesa-popup-title {
        font-size: 1.5rem;
    }
}
