/* ==============================
   ESTHETIEK DIAN - MAIN STYLESHEET
   ============================== */

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

:root {
    /* Colors */
    --primary: #C4A57B;
    --primary-dark: #A38862;
    --secondary: #F5E6D3;
    --accent: #8B7355;
    --text-dark: #2C2C2C;
    --text-light: #FFFFFF;
    --text-gray: #666666;
    --background: #FAFAF8;
    --background-light: #FFFFFF;
    --success: #7A9F6F;
    --border: #E5E5E5;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 72px;

    /* Borders */
    --radius: 8px;
    --radius-lg: 16px;

    /* Transitions */
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--space-sm);
}

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

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

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

ul {
    list-style: none;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

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

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary,
.btn-text {
    display: inline-block;
    padding: 12px 32px;
    border-radius: var(--radius);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 165, 123, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-text {
    background: none;
    border: none;
    padding: 0;
    color: var(--primary);
    font-weight: 600;
}

.btn-text:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.125rem;
}

/* ===== HEADER ===== */
.header {
    background-color: var(--background-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.btn-cta-sticky {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(196, 165, 123, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(196, 165, 123, 0);
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.logo a:hover {
    color: var(--primary-dark);
}

.nav ul {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.nav a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 12px;
    transition: var(--transition);
}

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

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(44, 44, 44, 0.75) 0%,
        rgba(44, 44, 44, 0.65) 50%,
        rgba(44, 44, 44, 0.8) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    padding: var(--space-xl) var(--space-md);
}

.hero h1 {
    color: var(--text-light);
    margin-bottom: var(--space-md);
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/hero.jpg') center/cover no-repeat;
    z-index: 0;
    filter: blur(2.5px) brightness(0.9);
}

/* ===== PAGE HERO (Subpages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    padding: var(--space-xl) 0;
    text-align: center;
    color: var(--text-dark);
}

.page-hero h1 {
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

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

/* ===== PROBLEM/SOLUTION SECTION ===== */
.problem-solution {
    background-color: var(--background-light);
}

.problem-solution h2 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.problems h3 {
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.solutions h3 {
    color: var(--success);
    margin-bottom: var(--space-md);
}

.problem-list li,
.solution-list li {
    padding: var(--space-sm);
    margin-bottom: var(--space-sm);
    border-left: 4px solid;
}

.problem-list li {
    border-color: var(--accent);
    background-color: #FFF5F5;
}

.problem-list li::before {
    content: "✗ ";
    color: var(--accent);
    font-weight: bold;
    margin-right: var(--space-xs);
}

.solution-list li {
    border-color: var(--success);
    background-color: #F0F9F0;
}

.solution-list li::before {
    content: "✓ ";
    color: var(--success);
    font-weight: bold;
    margin-right: var(--space-xs);
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    background-color: var(--background-light);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--border);
}

.badges-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    text-align: center;
}

.badge-item {
    padding: var(--space-md);
    background-color: var(--secondary);
    border-radius: var(--radius);
    border: 2px solid var(--primary);
}

.badge-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-sm);
    background-color: var(--success);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
}

.badge-item h4 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.badge-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    background-color: var(--background);
}

.services-preview h2 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

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

.service-card {
    background-color: var(--background-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-card-highlight {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, var(--background-light) 0%, var(--secondary) 100%);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background-size: cover;
    background-position: center;
}

/* Service specific icons */
.service-card[data-service="nagels"] .service-icon {
    background-image: url('images/service-nagels.jpg');
}

.service-card[data-service="wimpers"] .service-icon {
    background-image: url('images/service-wimpers.jpg');
}

.service-card[data-service="gelaatsverzorging"] .service-icon {
    background-image: url('images/service-gelaatsverzorging.jpg');
}

.service-card[data-service="pedicure"] .service-icon {
    background-image: url('images/service-pedicure.jpg');
}

.service-card[data-service="suikerontharing"] .service-icon {
    background-image: url('images/service-suikerontharing.jpg');
}

.service-card[data-service="pakketten"] .service-icon {
    background-image: url('images/service-pakketten.jpg');
}

.service-tagline {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
    background-color: var(--background-light);
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: var(--space-sm);
}

.why-choose-us .section-intro {
    text-align: center;
    margin-bottom: var(--space-lg);
}

/* New Redesigned Grid - 2x2 layout */
.why-grid-redesign {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

.why-card-large {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background-color: var(--background);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    transition: var(--transition);
    text-align: left;
}

.why-card-large:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.why-icon-large {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary);
    border-radius: 50%;
}

.why-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.why-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

/* Legacy grid support (if needed elsewhere) */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.why-card {
    text-align: center;
    padding: var(--space-md);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

/* ===== TESTIMONIALS HERO (Top Social Proof) ===== */
.testimonials-hero {
    background-color: var(--background-light);
    padding: var(--space-lg) 0;
}

.testimonials-hero h2 {
    text-align: center;
    margin-bottom: var(--space-lg);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background-color: var(--background);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.testimonial-card {
    background-color: var(--background-light);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #FFD700;
    margin-bottom: var(--space-sm);
    font-size: 1.125rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--space-md);
    color: var(--text-gray);
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

/* ===== GALLERY ===== */
.gallery {
    background-color: var(--background-light);
}

.gallery h2 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 300px;
    background-color: var(--secondary);
    background-size: cover;
    background-position: center;
}

/* Gallery specific images */
.gallery-item[data-gallery="pedicure"] .gallery-image {
    background-image: url('images/gallery-pedicure.jpg');
}

.gallery-item[data-gallery="wimpers"] .gallery-image {
    background-image: url('images/gallery-wimpers.jpg');
}

.gallery-item[data-gallery="nailart"] .gallery-image {
    background-image: url('images/gallery-nailart.jpg');
}

.gallery-item[data-gallery="gelaatsverzorging"] .gallery-image {
    background-image: url('images/gallery-gelaatsverzorging.jpg');
}

.gallery-item[data-gallery="suikerontharing"] .gallery-image {
    background-image: url('images/gallery-suikerontharing.jpg');
}

.gallery-item[data-gallery="wenkbrauwen"] .gallery-image {
    background-image: url('images/gallery-wenkbrauwen.jpg');
}

.gallery-caption {
    padding: var(--space-sm);
    background-color: var(--background-light);
    text-align: center;
    font-weight: 500;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--text-light);
    text-align: center;
    padding: var(--space-xl) var(--space-md);
}

.final-cta h2 {
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.final-cta p {
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-message {
    background-color: rgba(255, 255, 255, 0.2);
    padding: var(--space-sm);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: var(--space-md) !important;
}

.contact-info {
    margin-top: var(--space-lg);
}

.contact-link {
    color: var(--text-light);
    font-weight: 600;
    padding: 0 var(--space-sm);
}

.contact-link:hover {
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer h4 {
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.footer p,
.footer a {
    color: #CCCCCC;
    font-size: 0.9rem;
}

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

.footer ul li {
    margin-bottom: var(--space-xs);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: var(--space-md);
    text-align: center;
    font-size: 0.875rem;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--text-dark);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-4px);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* ===== SERVICES DETAILED PAGE ===== */
.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    align-items: center;
}

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

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

.service-detail-image {
    width: 100%;
    height: 400px;
    background-color: var(--secondary);
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
}

/* Service detail page images (diensten.html) */
.service-detail-card[data-service="nagels"] .service-detail-image {
    background-image: url('images/detail-nagels.jpg');
}

.service-detail-card[data-service="wimpers"] .service-detail-image {
    background-image: url('images/detail-wimpers.jpg');
}

.service-detail-card[data-service="gelaatsverzorging"] .service-detail-image {
    background-image: url('images/detail-gelaatsverzorging.jpg');
}

.service-detail-card[data-service="pedicure"] .service-detail-image {
    background-image: url('images/detail-pedicure.jpg');
}

.service-detail-card[data-service="suikerontharing"] .service-detail-image {
    background-image: url('images/detail-suikerontharing.jpg');
}

.service-intro {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
}

.service-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    padding: var(--space-sm);
    background-color: var(--secondary);
    border-radius: var(--radius);
}

.service-benefits h3,
.service-types h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

.service-benefits ul,
.service-types ul {
    margin-bottom: var(--space-md);
}

.service-benefits li,
.service-types li {
    padding-left: var(--space-sm);
    margin-bottom: var(--space-xs);
    position: relative;
}

.service-benefits li::before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
    margin-right: var(--space-xs);
}

/* ===== PACKAGES ===== */
.packages-preview,
.packages-section {
    background-color: var(--background-light);
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
    color: var(--text-gray);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.package-card {
    background-color: var(--background-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.package-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.package-highlight {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--background-light) 0%, var(--secondary) 100%);
}

.badge {
    position: absolute;
    top: -12px;
    right: var(--space-md);
    background-color: var(--success);
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: var(--space-sm) 0;
}

.package-save {
    color: var(--success);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.package-includes {
    text-align: left;
    margin: var(--space-md) 0;
}

.package-includes li {
    padding: var(--space-xs) 0;
    border-bottom: 1px solid var(--border);
}

/* ===== CONTACT & BOOKING ===== */
.booking-options {
    background-color: var(--background);
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.booking-card {
    background-color: var(--background-light);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.booking-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.booking-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

/* ===== LOCATION INFO ===== */
.location-info {
    background-color: var(--background-light);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.info-block {
    margin-bottom: var(--space-lg);
}

.hours-table {
    width: 100%;
    margin: var(--space-sm) 0;
}

.hours-table td {
    padding: var(--space-xs) 0;
    border-bottom: 1px solid var(--border);
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
}

.hours-note {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--text-gray);
}

.transport-list li {
    margin-bottom: var(--space-sm);
}

.map-placeholder iframe {
    border-radius: var(--radius-lg);
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
    background-color: var(--background);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--background-light);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

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

/* ===== FAQ ===== */
.faq-section {
    background-color: var(--background-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-md);
}

.faq-item {
    padding: var(--space-md);
    background-color: var(--background);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

/* ===== ABOUT PAGE ===== */
.our-story {
    background-color: var(--background-light);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.story-image {
    width: 100%;
    height: 500px;
    background-color: var(--secondary);
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    background-image: url('images/about-story.jpg');
}

.our-values {
    background-color: var(--background);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.value-card {
    background-color: var(--background-light);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.meet-team {
    background-color: var(--background-light);
}

.team-member {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.team-image {
    width: 100%;
    height: 400px;
    background-color: var(--secondary);
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    background-image: url('images/team-dian.jpg');
}

.team-title {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.specialties {
    padding-left: var(--space-md);
}

.specialties li {
    list-style: disc;
    margin-bottom: var(--space-xs);
}

.our-salon {
    background-color: var(--background);
}

.salon-description {
    max-width: 900px;
    margin: 0 auto var(--space-lg);
    font-size: 1.125rem;
}

.salon-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.salon-image {
    width: 100%;
    height: 250px;
    background-color: var(--secondary);
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
}

/* Salon gallery images */
.salon-image[data-salon="1"] {
    background-image: url('images/salon-interior-1.jpg');
}

.salon-image[data-salon="2"] {
    background-image: url('images/salon-interior-2.jpg');
}

.salon-image[data-salon="3"] {
    background-image: url('images/salon-interior-3.jpg');
}

.salon-image[data-salon="4"] {
    background-image: url('images/salon-interior-4.jpg');
}

.our-commitment {
    background-color: var(--background-light);
}

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

.commitment-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background-color: var(--background);
    border-radius: var(--radius);
}

.commitment-icon {
    font-size: 2rem;
    color: var(--success);
    font-weight: bold;
    flex-shrink: 0;
}

.commitment-item h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background-color: var(--background);
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SOCIAL SECTION ===== */
.social-section {
    background-color: var(--background-light);
    padding: var(--space-lg) 0;
    text-align: center;
}

.social-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-md);
}

.social-btn {
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid;
    display: inline-block;
}

.social-btn.facebook {
    background-color: #1877F2;
    color: white;
    border-color: #1877F2;
}

.social-btn.facebook:hover {
    background-color: #145dbf;
    transform: translateY(-2px);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    border-color: #bc1888;
}

.social-btn.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(188, 24, 136, 0.3);
}

.social-btn.google {
    background-color: white;
    color: var(--text-dark);
    border-color: var(--border);
}

.social-btn.google:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
}

/* ===== VOUCHER OPTIONS ===== */
.cadeaubon-section {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background-color: var(--secondary);
    border-radius: var(--radius-lg);
    text-align: center;
}

.voucher-options {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin: var(--space-md) 0;
}

.voucher-option {
    padding: 8px 16px;
    background-color: white;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    font-weight: 500;
}

.voucher-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: var(--space-md);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .service-detail-card,
    .service-card-reverse,
    .location-grid,
    .story-grid,
    .team-member {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--background-light);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav.active ul {
        flex-direction: column;
        padding: var(--space-md);
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
    }

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

    /* Why Choose Us - Stack on mobile */
    .why-grid-redesign {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .why-card-large {
        padding: var(--space-md);
    }

    .why-icon-large {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    :root {
        --space-xl: 48px;
        --space-lg: 32px;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .packages-grid,
    .services-grid,
    .why-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== SERVICE INFO MODALS ===== */
.service-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44, 44, 44, 0.65);
    backdrop-filter: blur(4px);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.service-modal-overlay.active {
    display: flex;
}

.service-modal {
    background: var(--background-light);
    border-radius: var(--radius-lg);
    max-width: 680px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.service-modal-close {
    position: sticky;
    top: 16px;
    float: right;
    margin: 16px 16px -16px 0;
    background: var(--secondary);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-dark);
    transition: background var(--transition);
    z-index: 1;
}

.service-modal-close:hover {
    background: var(--primary);
    color: var(--text-light);
}

.service-modal-body {
    padding: 32px;
    padding-top: 8px;
}

/* Modal inner layout */
.modal-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--secondary);
}

.modal-header-icon {
    font-size: 2.8rem;
    margin-bottom: 8px;
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.modal-subtitle {
    color: var(--primary-dark);
    font-size: 0.95rem;
    font-style: italic;
}

.modal-intro {
    background: var(--secondary);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.modal-checklist {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    padding: 16px 20px;
    background: #f0f7ed;
    border-left: 4px solid var(--success);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 0.95rem;
}

.modal-checklist p {
    margin: 0;
}

.modal-cta-text {
    text-align: center;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.modal-cta-tagline {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 8px;
    margin-bottom: 24px;
}

.modal-cta-buttons {
    text-align: center;
    margin-bottom: 8px;
}

.modal-cta-buttons .btn-primary {
    display: inline-block;
    padding: 12px 28px;
    font-size: 0.95rem;
}

.modal-section {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: var(--radius);
    background: var(--background);
    border: 1px solid var(--border);
}

.modal-section h3,
.modal-section h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.modal-section ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modal-section ul li {
    padding-left: 4px;
    font-size: 0.93rem;
    line-height: 1.5;
}

.modal-section p {
    font-size: 0.93rem;
    line-height: 1.6;
}

.modal-tip-note,
.modal-warning {
    margin-top: 10px;
    font-weight: 500;
    font-size: 0.92rem;
}

.modal-donot {
    background: #fff5f5;
    border: 1px solid #ffd0d0;
}

.modal-donot h3,
.modal-donot h4 {
    color: #c0392b;
}

.modal-warning {
    color: #c0392b;
}

.modal-divider {
    border: none;
    border-top: 2px dashed var(--secondary);
    margin: 24px 0;
}

.modal-subsection {
    margin-bottom: 8px;
}

.modal-subsection h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.modal-subsection > p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-gray);
}

/* Make service cards clickable */
.service-card[data-service]:not([data-service="pakketten"]) {
    cursor: pointer;
}

.service-card[data-service]:not([data-service="pakketten"]):hover {
    transform: translateY(-4px);
}

@media (max-width: 480px) {
    .service-modal-body {
        padding: 20px;
        padding-top: 8px;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }
}
