/* ===================================
   MONDZORG SLOTERWEG - ORAL DESIGN STYLE
   Inspired by Oral Design Beverly Hills
   =================================== */

/* ===================================
   PRELOADER
   =================================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.preloader-logo {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.preloader-logo img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(184, 163, 105, 0.3));
}

.preloader-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: #b8a369;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 1rem;
}

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

@media (max-width: 768px) {
    .preloader-logo img {
        width: 150px;
    }
    
    .preloader-text {
        font-size: 10px;
    }
}

/* ===================================
   ROOT VARIABLES
   =================================== */

:root {
    /* Monochrome Palette with Warm Accent */
    --black: #000000;
    --off-black: #0a0a0a;
    --charcoal: #1a1a1a;
    --dark-gray: #2a2a2a;
    --medium-gray: #4a4a4a;
    --text-gray: #6a6a6a;
    --light-gray: #e8e8e8;
    --off-white: #f5f5f5;
    --white: #ffffff;
    
    /* Accent - warm gold for dental elegance */
    --accent: #b8a369;
    --accent-light: #d4c592;
    --accent-dark: #9a8855;
    
    /* Typography */
    --font-display: 'Baskervville', Georgia, serif;
    --font-body: 'Baskervville', Georgia, serif;
    --tracking-tight: -0.02em;
    --tracking-wide: 0.2em;
    --tracking-ultra: 0.35em;
    
    /* Spacing Scale - Consistent 8px base */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 80px;
    
    /* Section Spacing - Refined */
    --section-lg: clamp(80px, 10vw, 120px);
    --section-md: clamp(56px, 7vw, 80px);
    --section-sm: clamp(40px, 5vw, 56px);
    --container-width: 1280px;
    --container-narrow: 900px;
    --container-padding: clamp(20px, 4vw, 48px);
    
    /* Typography Spacing */
    --text-line-height-tight: 1.3;
    --text-line-height-normal: 1.6;
    --text-line-height-relaxed: 1.75;
    --text-max-width: 65ch;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.8s;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    line-height: var(--text-line-height-normal);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: var(--text-line-height-tight);
    letter-spacing: var(--tracking-tight);
    color: var(--black);
    text-wrap: balance;
}

h1 { font-size: clamp(42px, 7vw, 96px); }
h2 { font-size: clamp(32px, 4.5vw, 64px); }
h3 { font-size: clamp(24px, 2.5vw, 36px); }
h4 { font-size: clamp(20px, 1.8vw, 28px); }

p {
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: var(--text-line-height-relaxed);
    color: var(--text-gray);
    max-width: var(--text-max-width);
    text-wrap: pretty;
}

/* Allow full width paragraphs where needed */
.full-width p,
.footer p,
.notice-text p,
.pricing-note p {
    max-width: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration-fast) ease;
}

/* ================================
   NAVIGATION
   ================================ */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    z-index: 1000;
    padding: 0;
    transition: all var(--duration-normal) var(--ease-out);
    width: calc(100% - 80px);
    max-width: 1300px;
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(40px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(40px) saturate(180%) !important;
    border-radius: 100px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12),
                0 4px 12px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 1) !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    transition: all var(--duration-normal) var(--ease-out);
}

.navbar.scrolled::before {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(50px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(50px) saturate(200%) !important;
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.15),
                0 6px 16px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.nav-container > * {
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 180px;
    transition: opacity var(--duration-fast) ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.logo:hover img {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(12px, 1.5vw, 18px);
}

.nav-menu a {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--charcoal);
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    display: block;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--black);
    transition: width var(--duration-normal) var(--ease-out);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 12px;
    z-index: 100;
}

.hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--black);
    transition: all var(--duration-fast) ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-fast) ease;
    z-index: 998;
}

body.nav-open .nav-overlay {
    opacity: 1;
    visibility: visible;
}

body.nav-open {
    overflow: hidden;
}

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

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../assets/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.5;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: var(--tracking-ultra);
    color: var(--white);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeSlideUp 1s var(--ease-out) 0.2s forwards;
}

.hero-title {
    font-size: clamp(40px, 6.5vw, 80px);
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 0.06em;
    line-height: 0.65;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeSlideUp 1s var(--ease-out) 0.4s forwards;
}

.hero-title-light {
    display: block;
    font-size: 1.15em;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-shadow: 0 16px 56px rgba(0, 0, 0, 0.5);
}

.hero-title-bold {
    display: block;
    font-size: 0.65em;
    font-weight: 300;
    letter-spacing: 0.12em;
    opacity: 0.85;
}

.hero-description {
    font-size: clamp(16px, 1.4vw, 20px);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeSlideUp 1s var(--ease-out) 0.6s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeSlideUp 1s var(--ease-out) 0.8s forwards;
}

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

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 24px 18px 32px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    border: 1.5px solid transparent;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: visible;
    min-height: 56px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: currentColor;
    opacity: 0;
    transition: opacity var(--duration-fast) ease;
    border-radius: 100px;
}

.btn:hover::before {
    opacity: 0.08;
}

/* Arrow circle for buttons */
.btn::after {
    content: '→';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(184, 163, 105, 0.2);
    border-radius: 50%;
    font-size: 18px;
    transition: all var(--duration-normal) var(--ease-out);
    flex-shrink: 0;
}

.btn:hover::after {
    background: rgba(184, 163, 105, 0.35);
    transform: translateX(2px);
}

.btn-primary::after {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.btn-primary:hover::after {
    background: rgba(255, 255, 255, 0.25);
}

.btn-secondary::after {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-secondary:hover::after {
    background: rgba(255, 255, 255, 0.35);
}

.btn-primary {
    background: rgba(255, 255, 255, 0.85);
    color: var(--charcoal);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--charcoal);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 1);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    color: #667761;
    border-color: rgba(102, 119, 97, 0.4);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    color: var(--charcoal);
    border-color: rgba(102, 119, 97, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-sm {
    padding: 14px 18px 14px 24px;
    font-size: 10px;
    min-height: 44px;
}

.btn-sm::after {
    width: 32px;
    height: 32px;
    font-size: 16px;
}

.btn.loading {
    pointer-events: none;
    opacity: 0.6;
}

/* ================================
   SECTION HEADERS
   ================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header h2 {
    font-size: clamp(11px, 1vw, 13px);
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: var(--tracking-ultra);
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: var(--space-md);
}

.section-header h2 + .section-title,
.section-header .section-title {
    font-size: clamp(36px, 4.5vw, 60px);
    font-family: var(--font-display);
    color: var(--black);
    margin-bottom: 0;
}

.divider {
    width: 60px;
    height: 1px;
    background: var(--black);
    margin: var(--space-lg) auto;
}

.subtitle {
    font-size: clamp(16px, 1.2vw, 18px);
    color: var(--text-gray);
    max-width: var(--text-max-width);
    margin: var(--space-lg) auto 0;
    line-height: var(--text-line-height-relaxed);
}

/* ================================
   ABOUT SECTION
   ================================ */
.about-intro {
    padding: var(--section-md) 0;
    background: var(--off-white);
}

.about-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.lead-text {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: var(--text-line-height-normal);
    color: var(--charcoal);
    margin-bottom: var(--space-lg);
    font-weight: 400;
}

.about-content > p {
    font-size: clamp(15px, 1.1vw, 17px);
    margin-bottom: var(--space-xl);
}

/* ================================
   SERVICES PREVIEW
   ================================ */
.services-preview {
    padding: var(--section-md) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    background: transparent;
    margin-bottom: var(--space-2xl);
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-2xl) var(--space-xl);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    text-align: center;
    text-decoration: none;
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--black);
    transition: all var(--duration-normal) var(--ease-out);
    transform: translateX(-50%);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.service-card:hover::after {
    width: 60px;
}

.service-icon {
    width: 72px;
    height: 72px;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 48px;
    height: 48px;
    color: var(--charcoal);
    transition: transform var(--duration-normal) var(--ease-out);
}

.service-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: transform var(--duration-normal) var(--ease-out);
}

.service-card:hover .service-icon svg,
.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: clamp(18px, 1.4vw, 22px);
    margin-bottom: var(--space-md);
    color: var(--black);
}

.service-card p {
    font-size: 14px;
    line-height: var(--text-line-height-normal);
    color: var(--text-gray);
    max-width: none;
}

.service-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-top: var(--space-lg);
    font-size: 18px;
    color: var(--black);
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--duration-normal) var(--ease-out);
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateY(0);
}

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

/* ================================
   FEATURES SECTION
   ================================ */
.features {
    padding: var(--section-sm) 0;
    background: var(--black);
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    background: transparent;
}

.feature-item {
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    background: var(--black);
}

.feature-item h3 {
    font-size: clamp(18px, 1.6vw, 24px);
    color: var(--white);
    margin-bottom: var(--space-md);
    font-weight: 400;
}

.feature-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: var(--text-line-height-relaxed);
    max-width: none;
}

/* ================================
   CONSULTATION CTA
   ================================ */
.consultation-cta {
    padding: 40px 0;
    background: var(--off-white);
}

.cta-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    margin-bottom: var(--space-md);
}

.cta-content > p {
    font-size: clamp(15px, 1.2vw, 17px);
    margin-bottom: var(--space-md);
    max-width: none;
}

.emergency-info {
    background: var(--white);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    border-left: 3px solid var(--black);
    text-align: left;
}

.emergency-info p {
    margin-bottom: var(--space-sm);
    font-size: 15px;
    max-width: none;
}

.emergency-info p:last-child {
    margin-bottom: 0;
}

.emergency-info a {
    color: var(--black);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.emergency-info a:hover {
    opacity: 0.7;
}

/* ================================
   MEDIA COVERAGE
   ================================ */
.media-coverage {
    padding: var(--section-md) 0;
    background: var(--white);
}

/* Media Video Section - RTL Video */
.media-video-section {
    margin-bottom: var(--space-2xl);
    text-align: center;
}

.media-video-section h3 {
    font-size: clamp(22px, 2.2vw, 28px);
    margin-bottom: var(--space-lg);
    color: var(--black);
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.media-item {
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all var(--duration-normal) var(--ease-out);
}

.media-item:hover {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.media-item h3 {
    font-size: clamp(20px, 1.8vw, 26px);
    margin-bottom: var(--space-sm);
    color: var(--black);
}

.media-item .media-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: var(--space-md);
    letter-spacing: 0.02em;
}

.media-item p {
    font-size: 14px;
    margin-bottom: var(--space-lg);
    line-height: var(--text-line-height-normal);
    max-width: none;
}

.media-item p em {
    font-style: italic;
}

.media-link {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--black);
    padding: 12px 0;
    border-bottom: 2px solid var(--black);
    transition: all var(--duration-normal) var(--ease-out);
}

.media-link:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateX(4px);
}

/* ================================
   INSURANCE NOTICE
   ================================ */
.insurance-notice {
    padding: var(--section-sm) 0;
    background: #fef9e6;
    border-top: 1px solid #e8ddb0;
    border-bottom: 1px solid #e8ddb0;
}

.notice-content {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 32px 40px;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.notice-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.notice-text h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: #8b7c3b;
    margin-bottom: 12px;
}

.notice-text p {
    font-size: 14px;
    line-height: 1.7;
    color: #5c5023;
    margin: 0;
}

.notice-text strong {
    color: #3d3518;
}

.insurance-notice-inline {
    background: #fef9e6;
    border-left: 3px solid #c9b85c;
    padding: 24px 28px;
    margin: 28px 0;
}

.insurance-notice-inline p {
    font-size: 14px;
    line-height: 1.7;
    color: #5c5023;
    margin: 0;
}

.insurance-notice-inline strong {
    color: #3d3518;
}

/* ================================
   CERTIFICATIONS
   ================================ */
.certifications {
    padding: var(--section-md) 0;
    background: var(--charcoal);
}

.cert-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: 180px;
    text-align: center;
}

.cert-logo {
    height: auto;
    width: auto;
    min-height: 40px;
    max-height: 55px;
    max-width: 120px;
    object-fit: contain;
    /* Grayscale for professional look, reveal color on hover */
    filter: grayscale(100%);
    opacity: 0.9;
    transition: all var(--duration-fast) ease;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 14px;
    border-radius: 6px;
}

.cert-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cert-item p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--black);
    color: var(--white);
    padding: var(--section-sm) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-col h3 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    color: var(--white);
}

.footer-col p {
    font-size: 14px;
    margin-bottom: var(--space-sm);
    color: rgba(255, 255, 255, 0.6);
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--duration-fast) ease;
}

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

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

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
}

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

/* ================================
   PAGE HERO (Subpages)
   ================================ */
.page-hero {
    position: relative;
    height: 18vh;
    min-height: 120px;
    max-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    margin-top: 0;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../assets/page-hero-bg.jpg') center 30%/120% no-repeat;
    opacity: 0.3;
}

.page-hero .hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
}

.page-hero .hero-content {
    z-index: 2;
}

.page-hero h1 {
    font-size: clamp(22px, 3vw, 36px);
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.page-hero p {
    font-size: clamp(13px, 1vw, 15px);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 0.05em;
    max-width: none;
}

/* ================================
   TREATMENTS SECTION
   ================================ */
.treatments-section {
    padding: var(--section-md) 0;
    background: var(--off-white);
}

.treatments-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.treatment-category {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all var(--duration-normal) var(--ease-out);
}

.treatment-category:hover {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.treatment-header {
    background: var(--black);
    padding: var(--space-lg) var(--space-xl);
    border-radius: 24px 24px 0 0;
}

.treatment-header h3 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: var(--tracking-ultra);
    color: var(--white);
}

.treatment-items {
    padding: var(--space-xl);
}

.treatment-item {
    padding-bottom: var(--space-xl);
    margin-bottom: var(--space-xl);
    border-bottom: 1px solid var(--light-gray);
}

.treatment-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.treatment-item h4 {
    font-size: clamp(20px, 1.8vw, 26px);
    color: var(--black);
    margin-bottom: var(--space-md);
}

.treatment-item > p {
    font-size: 15px;
    margin-bottom: var(--space-lg);
    max-width: var(--text-max-width);
}

.treatment-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-sm);
}

.treatment-features li {
    font-size: 14px;
    color: var(--text-gray);
    padding-left: var(--space-lg);
    position: relative;
    line-height: var(--text-line-height-normal);
}

.treatment-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 1px;
    background: var(--black);
}

.emergency-contact {
    margin-top: var(--space-lg);
    padding: var(--space-lg);
    background: var(--off-white);
    border-left: 2px solid var(--black);
}

.emergency-contact p {
    margin: 0;
    font-size: 15px;
    max-width: none;
}

.emergency-contact a {
    color: var(--black);
    font-weight: 600;
    text-decoration: underline;
}

.treatment-cta {
    margin-top: var(--space-lg);
}

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

.cta-section h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-section p {
    font-size: clamp(15px, 1.2vw, 17px);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-xl);
    max-width: none;
}

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

.cta-section .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-section .btn-outline:hover {
    background: #E2E2E2;
    color: var(--charcoal);
    border-color: #E2E2E2;
}

/* ================================
   TEAM SECTION
   ================================ */
.team-intro {
    padding: var(--section-md) 0;
    background: var(--off-white);
}

.team-intro-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
    text-align: center;
}

.team-intro-content p {
    max-width: none;
}

.team-section {
    padding: var(--section-sm) 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-xl);
}

.team-member {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 32px;
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.team-member:hover {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.member-image {
    width: 100%;
    height: 380px;
    background-color: var(--light-gray);
    background-size: cover;
    background-position: center top;
}

.member-info {
    padding: var(--space-xl);
}

.member-info h3 {
    font-size: clamp(22px, 1.8vw, 28px);
    margin-bottom: var(--space-sm);
    color: var(--black);
}

.member-role {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: var(--space-lg);
    display: block;
}

.member-info p {
    font-size: 14px;
    line-height: var(--text-line-height-relaxed);
    margin-bottom: var(--space-md);
    max-width: none;
}

.member-info p:last-of-type {
    margin-bottom: 0;
}

/* ================================
   FORM STYLES
   ================================ */
.form-intro {
    padding: var(--section-sm) 0 var(--space-xl);
    background: var(--off-white);
}

.form-section {
    padding: 0 0 var(--section-md);
    background: var(--white);
}

.form-container {
    max-width: 720px;
    margin: 0 auto;
    background: var(--off-white);
    padding: var(--space-2xl);
}

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

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 1px solid var(--light-gray);
    background: var(--white);
    color: var(--charcoal);
    transition: all var(--duration-fast) ease;
}

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

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

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

.checkbox-group {
    margin-bottom: var(--space-lg);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
    color: var(--text-gray);
    margin-bottom: var(--space-sm);
    cursor: pointer;
    line-height: var(--text-line-height-normal);
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-submit {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ================================
   SELECTION FUNNEL
   ================================ */
.selection-funnel {
    padding: var(--section-md) 0;
    background: var(--off-white);
}

.funnel-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.funnel-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: var(--space-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all var(--duration-normal) var(--ease-out);
    display: flex;
    flex-direction: column;
}

.funnel-card:hover {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.funnel-card h3 {
    font-size: clamp(22px, 2.2vw, 28px);
    color: var(--black);
    margin-bottom: var(--space-md);
    font-family: var(--font-display);
}

.funnel-card > p {
    font-size: 15px;
    line-height: var(--text-line-height-relaxed);
    color: var(--text-gray);
    margin-bottom: var(--space-sm);
    max-width: none;
}

.funnel-services {
    list-style: none;
    margin: var(--space-md) 0 var(--space-lg);
    padding: 0;
}

.funnel-services li {
    font-size: 14px;
    color: var(--text-gray);
    padding: var(--space-xs) 0;
    padding-left: var(--space-lg);
    position: relative;
    line-height: var(--text-line-height-normal);
}

.funnel-services li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 20px;
    line-height: 1;
}

.funnel-card .btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

.funnel-card .btn-primary {
    background: #667761;
    color: var(--white);
    border-color: #667761;
}

.funnel-card .btn-primary:hover {
    background: #E2E2E2;
    color: var(--charcoal);
    border-color: #E2E2E2;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(226, 226, 226, 0.4);
}

.back-button {
    transition: all var(--duration-fast) ease;
    border-radius: 2px;
}

.back-button:hover {
    background: var(--charcoal) !important;
    color: var(--white) !important;
}

/* ================================
   TYPEFORM MODAL
   ================================ */
.typeform-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration-normal) var(--ease-out), visibility var(--duration-normal) var(--ease-out);
    padding: 20px;
}

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

.typeform-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.typeform-modal-content {
    position: relative;
    background: var(--white);
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transform: scale(0.95) translateY(20px);
    transition: transform var(--duration-normal) var(--ease-out);
    overflow: hidden;
}

.typeform-modal.active .typeform-modal-content {
    transform: scale(1) translateY(0);
}

.typeform-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--duration-fast) ease;
    color: var(--charcoal);
}

.typeform-modal-close:hover {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
    transform: rotate(90deg);
}

.typeform-modal-header {
    padding: 40px 40px 20px;
    border-bottom: 1px solid var(--light-gray);
}

.typeform-modal-header h2 {
    font-size: clamp(24px, 2.5vw, 32px);
    color: var(--black);
    margin-bottom: 12px;
    font-family: var(--font-display);
}

.typeform-modal-header p {
    font-size: 15px;
    color: var(--text-gray);
    margin: 0;
}

.typeform-wrapper {
    flex: 1;
    overflow-y: auto;
    padding: 20px 40px 40px;
    background: var(--off-white);
}

.typeform-wrapper > div {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.typeform-wrapper iframe {
    border: none;
    border-radius: 4px;
    display: block;
}

/* ================================
   PRICING / TARIEVEN
   ================================ */
.pricing-intro-section {
    padding: var(--section-sm) 0 var(--space-xl);
    background: var(--off-white);
}

.pricing-section {
    padding: 0 0 var(--section-md);
    background: var(--off-white);
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
    text-align: center;
}

.pricing-intro p {
    max-width: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.pricing-card.featured {
    background: var(--black);
    color: var(--white);
}

.pricing-card.featured::before {
    display: none;
}

.pricing-header h3 {
    font-size: clamp(20px, 1.8vw, 26px);
    margin-bottom: var(--space-sm);
}

.pricing-card.featured .pricing-header h3 {
    color: var(--white);
}

.pricing-price {
    font-family: var(--font-display);
    font-size: clamp(32px, 3vw, 44px);
    color: var(--black);
    margin: var(--space-lg) 0;
}

.pricing-card.featured .pricing-price {
    color: var(--white);
}

.pricing-price span {
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text-gray);
    font-weight: 400;
}

.pricing-card.featured .pricing-price span {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: var(--space-lg) 0;
}

.pricing-features li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 14px;
    color: var(--text-gray);
    line-height: var(--text-line-height-normal);
}

.pricing-card.featured .pricing-features li {
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    background: var(--white);
    padding: var(--space-xl);
    border-left: 3px solid var(--black);
}

.pricing-note h3 {
    font-size: clamp(18px, 1.5vw, 22px);
    margin-bottom: var(--space-md);
}

.pricing-note p {
    font-size: 14px;
    line-height: var(--text-line-height-relaxed);
    margin-bottom: var(--space-md);
}

.pricing-note p:last-child {
    margin-bottom: 0;
}

/* Tarieven Table */
.tarieven-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 32px;
}

.tarieven-header h2 {
    font-size: clamp(28px, 3vw, 40px);
    color: var(--black);
    margin-bottom: 12px;
}

.tarieven-subtitle {
    font-size: 15px;
    color: var(--text-gray);
}

.tarieven-toolbar {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr auto;
    gap: 16px;
    align-items: end;
    padding: 20px;
    background: var(--white);
    margin-bottom: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.tarieven-field label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.tarieven-field input,
.tarieven-field select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--light-gray);
    background: var(--off-white);
    font-family: var(--font-body);
    font-size: 14px;
}

.tarieven-field input:focus,
.tarieven-field select:focus {
    outline: none;
    border-color: var(--black);
    background: var(--white);
}

.tarieven-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tarieven-count {
    font-size: 12px;
    color: var(--text-gray);
    padding: 8px 14px;
    background: var(--off-white);
}

.tarieven-table-wrap {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.tarieven-table {
    width: 100%;
    border-collapse: collapse;
}

.tarieven-table thead th {
    text-align: left;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--text-gray);
    padding: 16px 20px;
    background: var(--off-white);
    border-bottom: 1px solid var(--light-gray);
}

.tarieven-table tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--light-gray);
    font-size: 14px;
    color: var(--text-gray);
    vertical-align: top;
}

.tarieven-table tbody tr:hover td {
    background: rgba(0, 0, 0, 0.02);
}

.tarieven__code {
    min-width: 160px;
}

.tarieven__code-pill {
    display: inline-flex;
    padding: 6px 12px;
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--charcoal);
    margin-right: 8px;
}

.tarieven__cat {
    display: block;
    font-size: 11px;
    color: var(--text-gray);
    margin-top: 8px;
}

.tarieven__desc {
    color: var(--charcoal);
}

.tarieven__price {
    font-weight: 600;
    color: var(--black);
    white-space: nowrap;
}

.tarieven-empty {
    padding: 40px;
    text-align: center;
    color: var(--text-gray);
    background: var(--off-white);
}

.tarieven-note {
    margin-top: 28px;
}

.tarieven-note a {
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Pricing Section Titles (mobile-friendly) */
.pricing-section-title {
    text-align: center;
    font-size: clamp(24px, 4vw, 36px);
    margin: clamp(60px, 10vw, 100px) 0 18px;
    color: var(--black);
}

.pricing-section-subtitle {
    text-align: center;
    max-width: 860px;
    margin: 0 auto clamp(32px, 6vw, 60px);
    color: var(--text-gray);
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.7;
}

.pricing-section-subtitle a {
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Pricing Card CTA */
.pricing-card-cta {
    text-align: center;
    margin-top: 30px;
}

/* Final Pricing Note */
.pricing-note--final {
    margin-top: clamp(40px, 8vw, 80px);
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact-section {
    padding: var(--section-md) 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.contact-info {
    background: var(--white);
    padding: var(--space-xl);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.contact-info h3 {
    font-size: clamp(24px, 2vw, 30px);
    margin-bottom: var(--space-xl);
    color: var(--black);
}

.contact-item {
    margin-bottom: var(--space-lg);
}

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

.contact-item h4 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: var(--space-sm);
}

.contact-item p {
    font-size: 15px;
    margin-bottom: var(--space-xs);
    max-width: none;
}

.contact-item a {
    color: var(--charcoal);
}

.contact-item a:hover {
    color: var(--black);
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--white);
    padding: var(--space-xl);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.contact-form h3 {
    font-size: clamp(20px, 1.8vw, 26px);
    margin-bottom: var(--space-xl);
}

/* ================================
   MAP SECTION
   ================================ */
.map-section {
    padding: var(--section-md) 0;
    background: var(--white);
}

.map-container {
    width: 100%;
    height: 400px;
    background: var(--light-gray);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%);
    transition: filter var(--duration-normal) ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

.location-info {
    margin-top: var(--space-2xl);
}

.location-details h3 {
    font-size: clamp(24px, 2.2vw, 32px);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.location-item {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all var(--duration-normal) var(--ease-out);
}

.location-item:hover {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.location-item h4 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

.location-item p {
    font-size: 14px;
    line-height: var(--text-line-height-relaxed);
    max-width: none;
}

/* ================================
   FAQ SECTION
   ================================ */
.faq-section {
    padding: var(--section-md) 0;
    background: var(--off-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.faq-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: var(--space-lg);
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.faq-item h4 {
    font-size: clamp(17px, 1.3vw, 20px);
    margin-bottom: var(--space-md);
    color: var(--black);
}

.faq-item p {
    font-size: 14px;
    line-height: var(--text-line-height-relaxed);
    max-width: none;
}

/* ================================
   INFO SECTION
   ================================ */
.info-section {
    padding: var(--section-md) 0;
    background: var(--off-white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.info-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    border-left: 3px solid var(--black);
    padding: var(--space-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all var(--duration-normal) var(--ease-out);
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.info-card h3 {
    font-size: clamp(18px, 1.5vw, 22px);
    margin-bottom: var(--space-md);
}

.info-card p {
    font-size: 14px;
    line-height: var(--text-line-height-relaxed);
    max-width: none;
}

.info-card a {
    color: var(--black);
    text-decoration: underline;
}

/* ================================
   ORAL DESIGN STYLE PAGE
   ================================ */

/* Dark navbar for aesthetic page */
.aesthetic-page .navbar::before {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                0 2px 8px rgba(0, 0, 0, 0.04);
}

/* OD Hero Section */
.od-hero {
    padding: 180px 0 60px;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.od-hero-content {
    max-width: 800px;
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
    text-align: center;
}

.od-hero-title {
    font-family: var(--font-body);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--black);
    margin-bottom: 16px;
}

.od-hero-subtitle {
    font-size: clamp(16px, 1.4vw, 20px);
    color: var(--text-gray);
    margin-bottom: 48px;
    font-weight: 400;
    margin-left: auto;
    margin-right: auto;
}

.od-hero-intro {
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
}

.od-hero-highlight {
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.9;
    color: var(--charcoal);
    font-weight: 500;
    font-style: italic;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
}

/* OD Workflow Title */
.od-workflow-title {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.od-workflow-title h1 {
    font-family: var(--font-body);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--black);
    margin-bottom: 48px;
}

.od-title-image {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.od-title-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* OD Step Section */
.od-step {
    padding: 80px 0;
    background: var(--off-white);
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.od-step:nth-child(even) {
    background: var(--white);
}

.od-step:last-of-type {
    border-bottom: none;
}

.od-step-number {
    font-family: var(--font-display);
    font-size: clamp(80px, 10vw, 140px);
    font-weight: 400;
    color: var(--light-gray);
    line-height: 1;
    text-align: center;
    margin-bottom: 40px;
}

.od-step-content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
}

.od-step-content h2 {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--black);
    margin-bottom: 28px;
    line-height: 1.6;
}

.od-step-content p {
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 0;
}

.od-step-content p strong {
    color: var(--charcoal);
}

/* OD Image Grids */
.od-step-images {
    max-width: 1200px;
    width: 100%;
    margin: 48px auto 0;
    padding: 0 var(--container-padding);
}

.od-image-grid {
    display: grid;
    gap: 20px;
    padding: 0 20px;
}

.od-image-grid--1 {
    grid-template-columns: 1fr;
}

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

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

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

/* Special layout for Section 1: Portrait + 2 stacked + Occlusal - Full Size */
.od-image-grid--section1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.od-image-grid--section1 .portrait {
    display: flex;
}

.od-image-grid--section1 .portrait img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.od-image-grid--section1 .stacked {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.od-image-grid--section1 .stacked img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.od-image-grid--section1 .occlusal {
    display: flex;
}

.od-image-grid--section1 .occlusal img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* Section 1 single collage image - Improved Appearance */
.od-image-grid--section1-single {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.od-image-grid--section1-single img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.od-image-grid--section1-single img:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

/* Stacked images layout for section 2 */
.od-image-grid--stacked {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.od-image-grid--stacked img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.od-image-grid--stacked img:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

.od-image-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    background: var(--light-gray);
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    transition: transform var(--duration-normal) var(--ease-out), 
                box-shadow var(--duration-normal) var(--ease-out);
}

.od-image-grid img:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.od-image-grid--1 img {
    height: 350px;
}

/* OD Location Section */
.od-location {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--charcoal);
    min-height: 400px;
}

.od-location-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    text-align: center;
    color: var(--white);
}

.od-location-content h3 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.od-address {
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 32px;
}

.od-directions-btn {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all var(--duration-fast) ease;
}

.od-directions-btn:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.od-location-image {
    position: relative;
    overflow: hidden;
}

.od-location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OD About Section */
.od-about {
    display: grid;
    grid-template-columns: 200px 1fr 1fr 1fr;
    gap: 48px;
    padding: 80px var(--container-padding);
    background: var(--black);
    color: var(--white);
}

.od-about-logos {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.od-logo-main {
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.od-about-content h3,
.od-about-areas h4,
.od-about-contact h4 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--white);
    margin-bottom: 20px;
}

.od-about-content p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.od-about-areas h4,
.od-about-contact h4 {
    color: rgba(255, 255, 255, 0.5);
}

.od-areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
}

.od-areas-grid ul {
    list-style: none;
}

.od-areas-grid li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    padding: 4px 0;
}

.od-about-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.od-about-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--duration-fast) ease;
}

.od-about-contact a:hover {
    color: var(--white);
}

.od-phone {
    margin: 16px 0 !important;
}

.od-phone a {
    font-size: 18px !important;
    color: var(--white) !important;
    font-weight: 500;
}

/* OD CTA Section */
.od-cta {
    padding: 50px 0;
    background: var(--off-white);
    text-align: center;
}

.od-cta-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.od-cta h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
    color: var(--black);
}

.od-cta p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

/* Responsive OD Styles */
@media (max-width: 1024px) {
    .od-image-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .od-image-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .od-about {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .od-about-logos {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .od-hero {
        padding: 140px 0 30px;
    }
    
    .od-step {
        padding: 60px 0;
    }
    
    .od-step-number {
        font-size: 60px;
        margin-bottom: 24px;
    }
    
    .od-image-grid--2,
    .od-image-grid--3,
    .od-image-grid--4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 16px;
    }
    
    /* Section 1 responsive - Full Size */
    .od-image-grid--section1 {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 0 20px;
    }
    
    .od-image-grid--section1 .portrait img,
    .od-image-grid--section1 .occlusal img {
        border-radius: 12px;
    }
    
    .od-image-grid--section1 .stacked {
        gap: 16px;
    }
    
    .od-image-grid--section1 .stacked img {
        border-radius: 10px;
    }

    .od-image-grid--section1-single {
        padding: 0 20px;
    }

    .od-image-grid--section1-single img {
        border-radius: 16px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    }
    
    .od-image-grid--section1-single img:hover {
        transform: none;
    }
    
    .od-image-grid--stacked {
        padding: 0 20px;
        gap: 20px;
    }
    
    .od-image-grid--stacked img {
        border-radius: 16px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    }
    
    .od-image-grid--stacked img:hover {
        transform: none;
    }
    
    .od-image-grid img {
        height: 160px;
        border-radius: 10px;
    }
    
    .od-image-grid--1 img {
        height: 240px;
    }
    
    .od-location {
        grid-template-columns: 1fr;
    }
    
    .od-location-image {
        height: 300px;
    }
    
    .od-about {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .od-about-logos {
        justify-content: center;
    }
    
    .od-areas-grid {
        justify-content: center;
    }
}

/* ================================
   PHILOSOPHY SECTION
   ================================ */
.philosophy-section {
    padding: var(--section-lg) 0;
    background: var(--white);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.philosophy-item {
    padding: 40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 32px;
    border-left: 3px solid var(--black);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all var(--duration-normal) var(--ease-out);
}

.philosophy-item:hover {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.philosophy-item h3 {
    font-size: clamp(20px, 1.6vw, 24px);
    margin-bottom: 16px;
}

.philosophy-item p {
    font-size: 14px;
    line-height: 1.8;
}

/* ================================
   NOTIFICATIONS & COOKIE CONSENT
   ================================ */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    max-width: 400px;
    padding: 18px 24px;
    color: var(--white);
    font-size: 14px;
    line-height: 1.5;
    z-index: 10000;
    animation: slideInRight 0.4s var(--ease-out);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.notification--success { background: #1a472a; }
.notification--error { background: #7a1f1f; }
.notification--info { background: var(--charcoal); }

.notification.is-hiding {
    animation: slideOutRight 0.3s var(--ease-out) forwards;
}

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

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--black);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -10px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s var(--ease-out);
}

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

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ================================
   MOTION PREFERENCES
   ================================ */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero::before {
        animation: none;
    }
}

/* ================================
   STICKY APPOINTMENT BUTTONS
   ================================ */
.sticky-appointment {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 12px;
}


.sticky-appointment .btn {
    flex: 0 1 auto;
    min-width: 180px;
    max-width: 300px;
    min-height: 50px;
    padding: 12px 14px 12px 18px;
    font-size: 9px;
    text-align: center;
    white-space: nowrap;
}

.sticky-appointment .btn::after {
    width: 26px;
    height: 26px;
    font-size: 11px;
    flex-shrink: 0;
}

.sticky-appointment .btn-primary {
    background: rgba(102, 119, 97, 0.95);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.sticky-appointment .btn-primary::after {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.sticky-appointment .btn-secondary {
    background: rgba(255, 255, 255, 0.7);
    color: var(--charcoal);
    border-color: rgba(0, 0, 0, 0.15);
}

.sticky-appointment .btn-secondary::after {
    background: rgba(102, 119, 97, 0.15);
    color: var(--charcoal);
}

/* Desktop sticky buttons */
@media (min-width: 769px) {
    .sticky-appointment {
        padding: 16px 40px;
        gap: 20px;
    }
    
    .sticky-appointment .btn {
        flex: 1;
        max-width: 340px;
        min-height: 54px;
        padding: 14px 20px 14px 28px;
        font-size: 10px;
        letter-spacing: 0.08em;
    }
    
    .sticky-appointment .btn::after {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* Mobile sticky buttons */
@media (max-width: 768px) {
    .sticky-appointment {
        padding: 8px 10px;
        gap: 8px;
        flex-wrap: nowrap;
    }
    
    .sticky-appointment .btn {
        flex: 1;
        max-width: none;
        min-height: 44px;
        padding: 10px 10px 10px 14px;
        font-size: 7.5px;
        gap: 6px;
        justify-content: center;
        letter-spacing: 0.02em;
        white-space: nowrap;
    }
    
    .sticky-appointment .btn::after {
        width: 22px;
        height: 22px;
        font-size: 10px;
        flex-shrink: 0;
    }
}

/* Extra small mobile sticky buttons */
@media (max-width: 480px) {
    .sticky-appointment {
        padding: 6px 6px;
        gap: 4px;
    }
    
    .sticky-appointment .btn {
        min-height: 40px;
        padding: 8px 6px 8px 10px;
        font-size: 6px;
        gap: 3px;
        letter-spacing: 0;
    }
    
    .sticky-appointment .btn::after {
        width: 18px;
        height: 18px;
        font-size: 8px;
    }
}

/* Very small screens - stack buttons vertically */
@media (max-width: 380px) {
    .sticky-appointment {
        flex-direction: column;
        padding: 8px 12px;
        gap: 6px;
    }
    
    .sticky-appointment .btn {
        width: 100%;
        max-width: 100%;
        min-height: 42px;
        padding: 10px 14px 10px 18px;
        font-size: 8px;
        gap: 8px;
    }
    
    .sticky-appointment .btn::after {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
}

/* Add bottom padding to body to account for sticky buttons */
body {
    padding-bottom: 90px;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }
}

/* Hide sticky on cookie consent visible */
.cookie-consent ~ .sticky-appointment {
    bottom: 80px;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .philosophy-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Reduce section padding on mobile */
    :root {
        --section-sm: 48px;
        --section-md: 64px;
        --section-lg: 80px;
        --section-xl: 100px;
    }
    
    .navbar {
        top: var(--space-sm);
        width: calc(100% - var(--space-lg));
        left: 50%;
        transform: translateX(-50%);
    }
    
    .nav-container {
        padding: var(--space-sm) var(--space-md);
    }
    
    .navbar::before {
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(25px) saturate(180%);
        -webkit-backdrop-filter: blur(25px) saturate(180%);
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 240px !important;
        max-height: auto;
        background: rgba(30, 30, 35, 0.75) !important;
        backdrop-filter: blur(60px) saturate(200%) !important;
        -webkit-backdrop-filter: blur(60px) saturate(200%) !important;
        flex-direction: column;
        padding: 6px 14px !important;
        gap: 0;
        transition: right var(--duration-normal) var(--ease-out);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.15),
                    inset 0 0 20px rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        border-radius: 14px !important;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 12px;
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 2px 10px !important;
        font-size: 11px !important;
        color: rgba(255, 255, 255, 0.85) !important;
        letter-spacing: 0.03em;
        line-height: 1.3;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border-radius: 6px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo img {
        height: 50px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: var(--space-xl) var(--space-lg);
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .form-container {
        padding: var(--space-xl) var(--space-lg);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tarieven-toolbar {
        grid-template-columns: 1fr;
        padding: var(--space-md);
        gap: var(--space-sm);
    }
    
    .tarieven-actions {
        flex-direction: column;
        width: 100%;
        gap: var(--space-sm);
    }
    
    .tarieven-count {
        text-align: center;
        width: 100%;
    }
    
    .tarieven-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Convert table to card layout on mobile */
    .tarieven-table-wrap {
        background: transparent;
        box-shadow: none;
    }
    
    .tarieven-table {
        display: block;
        width: 100%;
        min-width: 0;
    }
    
    .tarieven-table thead {
        display: none;
    }
    
    .tarieven-table tbody {
        display: flex;
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .tarieven-table tbody tr {
        display: flex;
        flex-direction: column;
        background: var(--white);
        padding: var(--space-md);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        border-radius: 4px;
    }
    
    .tarieven-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: var(--space-xs) 0;
        border-bottom: 1px solid var(--light-gray);
        font-size: 14px;
    }
    
    .tarieven-table tbody td:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .tarieven-table tbody td:first-child {
        padding-top: 0;
    }
    
    .tarieven-table tbody td::before {
        content: attr(data-label);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--text-gray);
        flex-shrink: 0;
        margin-right: 12px;
    }
    
    /* Hide Eenheid and Punten columns on mobile */
    .tarieven-table tbody td:nth-child(3),
    .tarieven-table tbody td:nth-child(4) {
        display: none;
    }
    
    /* Style the code and price prominently */
    .tarieven-table tbody td:first-child {
        font-weight: 600;
        border-bottom: none;
        padding-bottom: 4px;
    }
    
    .tarieven-table tbody td:last-child {
        background: var(--off-white);
        margin: 12px -20px -20px;
        padding: 14px 20px;
        border-radius: 0 0 4px 4px;
        font-weight: 700;
        font-size: 16px;
    }
    
    .tarieven-table tbody td:last-child::before {
        display: none;
    }
    
    .tarieven__code-pill {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .tarieven__cat {
        margin-top: 4px;
    }
    
    .tarieven-empty {
        margin: 0;
        border-radius: 4px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .treatment-items {
        padding: 32px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 16px 32px;
        width: 100%;
        max-width: 280px;
    }
    
    .notice-content {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .pricing-card {
        padding: 32px 20px;
    }
    
    .pricing-card.featured::before {
        font-size: 9px;
        padding: 6px 14px;
    }
    
    .pricing-price {
        font-size: clamp(28px, 8vw, 40px);
        margin: 20px 0;
    }
    
    .pricing-features {
        margin: 24px 0;
    }
    
    .pricing-features li {
        padding: 12px 0;
        font-size: 13px;
    }
    
    .pricing-card-cta {
        margin-top: 24px;
    }
    
    .pricing-card-cta .btn {
        max-width: 100%;
    }
    
    .member-info {
        padding: 32px 24px;
    }
    
    /* Tarieven mobile improvements */
    .tarieven-header h2 {
        font-size: clamp(22px, 6vw, 32px);
    }
    
    .tarieven-subtitle {
        font-size: 14px;
    }
    
    .tarieven-field input,
    .tarieven-field select {
        padding: 12px 14px;
        font-size: 16px; /* Prevent iOS zoom */
    }
    
    .pricing-note {
        padding: 28px 20px;
    }
    
    .pricing-note h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .pricing-note p {
        font-size: 13px;
    }
    
    .insurance-notice-inline {
        padding: 18px 16px;
        margin: 20px 0;
    }
    
    .insurance-notice-inline p {
        font-size: 13px;
    }
}

/* ================================
   COMPREHENSIVE MOBILE OPTIMIZATIONS
   ================================ */

/* Certifications Mobile */
@media (max-width: 768px) {
    .cert-grid {
        gap: 30px;
    }
    
    .cert-item {
        max-width: 140px;
    }
    
    .cert-logo {
        max-height: 45px;
        padding: 8px 10px;
    }
    
    .cert-item p {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .cert-grid {
        gap: 20px;
    }
    
    .cert-item {
        max-width: 120px;
    }
    
    .cert-logo {
        max-height: 40px;
    }
}

/* Esthetische Analyse Page - Additional Mobile */
@media (max-width: 480px) {
    .od-hero-content {
        padding: 0 20px;
    }
    
    .od-hero-intro {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .od-hero-highlight {
        font-size: 15px;
    }
    
    .od-workflow-title h1 {
        font-size: clamp(14px, 4vw, 18px);
        letter-spacing: 0.15em;
    }
    
    .od-title-image {
        border-radius: 12px;
        margin: 0 20px;
    }
    
    .od-title-image img {
        height: 180px;
    }
    
    .od-step {
        padding: 40px 0;
    }
    
    .od-step-number {
        font-size: 48px;
    }
    
    .od-step-content h2 {
        font-size: 11px;
        letter-spacing: 0.15em;
        line-height: 1.6;
    }
    
    .od-step-content p {
        font-size: 14px;
    }
    
    .od-image-grid img {
        height: 140px;
        border-radius: 8px;
    }
    
    .od-image-grid--1 img {
        height: 200px;
    }
    
    .od-location-content {
        padding: 40px 20px;
    }
    
    .od-location-content h3 {
        font-size: 10px;
    }
    
    .od-address {
        font-size: 22px;
    }
    
    .od-directions-btn {
        font-size: 10px;
        padding: 14px 24px;
    }
    
    .od-location-image {
        height: 250px;
    }
    
    .od-about {
        padding: 40px 20px;
    }
    
    .od-logo-main {
        height: 50px;
    }
    
    .od-about-content h3,
    .od-about-areas h4,
    .od-about-contact h4 {
        font-size: 11px;
    }
    
    .od-about-content p {
        font-size: 13px;
    }
    
    .od-areas-grid li {
        font-size: 12px;
    }
    
    .od-cta {
        padding: 30px 20px;
    }
    
    .od-cta h2 {
        font-size: clamp(24px, 6vw, 36px);
    }
    
    .od-cta p {
        font-size: 14px;
    }
}

/* Team Page Mobile */
@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .member-image {
        height: 320px;
    }
    
    .member-info {
        padding: 28px 20px;
    }
    
    .member-info h3 {
        font-size: 22px;
    }
    
    .member-role {
        font-size: 10px;
        margin-bottom: 20px;
    }
    
    .member-info p {
        font-size: 13px;
        margin-bottom: 14px;
    }
}

/* Form Improvements Mobile */
@media (max-width: 480px) {
    .form-container {
        padding: 30px 20px;
    }
    
    .form-group label {
        font-size: 10px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevent iOS zoom */
    }
    
    .checkbox-group label {
        font-size: 13px;
        gap: 10px;
    }
    
    .checkbox-group input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }
}

/* Treatment Category Mobile */
@media (max-width: 480px) {
    .treatment-header {
        padding: 20px 24px;
    }
    
    .treatment-header h3 {
        font-size: 11px;
    }
    
    .treatment-items {
        padding: 24px;
    }
    
    .treatment-item {
        padding-bottom: 32px;
        margin-bottom: 32px;
    }
    
    .treatment-item h4 {
        font-size: 20px;
    }
    
    .treatment-item > p {
        font-size: 14px;
    }
    
    .treatment-features li {
        font-size: 13px;
    }
    
    .emergency-contact {
        padding: 20px;
    }
}

/* Contact Page Mobile */
@media (max-width: 480px) {
    .contact-item h4 {
        font-size: 10px;
    }
    
    .contact-item p {
        font-size: 14px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .location-item {
        padding: 24px;
    }
    
    .location-item h4 {
        font-size: 11px;
    }
    
    .location-item p {
        font-size: 13px;
    }
    
    .faq-item {
        padding: 28px;
    }
    
    .faq-item h4 {
        font-size: 16px;
    }
    
    .faq-item p {
        font-size: 13px;
    }
}

/* Hero Section Mobile Improvements */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 24px;
        max-width: 100%;
    }
    
    .hero-title {
        line-height: 0.85;
        margin-bottom: 28px;
    }
    
    .hero-title-light {
        font-size: 1em;
    }
    
    .hero-title-bold {
        font-size: 0.6em;
        margin-top: 8px;
    }
    
    .hero-description {
        margin-bottom: 36px;
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 600px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 0.25em;
    }
    
    .hero-title {
        font-size: clamp(36px, 10vw, 48px);
        letter-spacing: -0.01em;
        line-height: 0.9;
        margin-bottom: 24px;
    }
    
    .hero-title-light {
        font-size: 1em;
    }
    
    .hero-title-bold {
        font-size: 0.55em;
        margin-top: 10px;
    }
    
    .hero-description {
        font-size: 14px;
        letter-spacing: 0.05em;
        margin-bottom: 32px;
        padding: 0;
    }
    
    .page-hero {
        min-height: 88px;
        max-height: 112px;
    }
    
    .page-hero h1 {
        font-size: clamp(18px, 6vw, 28px);
    }
    
    .page-hero p {
        font-size: 12px;
    }
}

/* Section Headers Mobile */
@media (max-width: 480px) {
    .section-header {
        margin-bottom: clamp(30px, 5vw, 50px);
    }
    
    .section-header h2 {
        font-size: 10px;
        letter-spacing: 0.25em;
    }
    
    .divider {
        width: 40px;
        margin: 20px auto;
    }
    
    .subtitle {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .lead-text {
        font-size: clamp(18px, 5vw, 24px);
    }
}

/* Service Cards Mobile */
@media (max-width: 480px) {
    .service-card {
        padding: 32px 24px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .service-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .service-card h3 {
        font-size: 16px;
    }
    
    .service-card p {
        font-size: 13px;
    }
}

/* Features Section Mobile */
@media (max-width: 480px) {
    .feature-item {
        padding: 40px 24px;
    }
    
    .feature-item h3 {
        font-size: 18px;
    }
    
    .feature-item p {
        font-size: 13px;
    }
}

/* Media Coverage Mobile */
@media (max-width: 480px) {
    .media-item {
        padding: 32px;
    }
    
    .media-item h3 {
        font-size: 20px;
    }
    
    .media-item p {
        font-size: 13px;
    }
    
    .media-link {
        font-size: 10px;
    }
}

/* CTA Section Mobile */
@media (max-width: 480px) {
    .cta-section h2 {
        font-size: clamp(24px, 6vw, 36px);
    }
    
    .cta-section p {
        font-size: 14px;
        margin-bottom: 30px;
    }
}

/* Emergency Info Mobile */
@media (max-width: 480px) {
    .emergency-info {
        padding: 28px 24px;
    }
    
    .emergency-info p {
        font-size: 14px;
    }
}

/* Info Cards Mobile */
@media (max-width: 480px) {
    .info-card {
        padding: 28px 24px;
    }
    
    .info-card h3 {
        font-size: 18px;
    }
    
    .info-card p {
        font-size: 13px;
    }
}

/* Footer Mobile Improvements */
@media (max-width: 480px) {
    .footer {
        padding: var(--section-sm) 0 30px;
    }
    
    .footer-col h3 {
        font-size: 10px;
        margin-bottom: 20px;
    }
    
    .footer-col p {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .footer-col .btn {
        max-width: 100%;
        width: 100%;
    }
    
    .footer-bottom {
        padding-top: 30px;
    }
    
    .footer-bottom p {
        font-size: 11px;
        line-height: 1.8;
    }
}

/* ================================
   INSTAGRAM FEED SECTION
   ================================ */
/* Social Media Feeds (Instagram + TikTok) */
.social-feeds {
    padding: var(--section-md) 0;
    background: var(--white);
}

.social-feeds-header {
    text-align: center;
    margin-bottom: 50px;
}

.social-title {
    font-family: var(--font-body);
    font-size: clamp(11px, 1vw, 13px);
    font-weight: 500;
    letter-spacing: var(--tracking-ultra);
    text-transform: uppercase;
    color: var(--text-gray);
}

.social-feeds-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.social-feed-item {
    min-width: 0; /* Prevents grid overflow */
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

/* Hide large brand icons that appear before widget loads */
.social-feed-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: -1;
}

.feed-header {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.social-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.instagram-btn {
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #F77737 100%);
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(225, 48, 108, 0.35);
}

.tiktok-btn {
    background: linear-gradient(135deg, #00f2ea 0%, #ff0050 100%);
}

.tiktok-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 0, 80, 0.35);
}

.social-follow-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Legacy support */
.instagram-title {
    font-family: var(--font-body);
    font-size: clamp(11px, 1vw, 13px);
    font-weight: 500;
    letter-spacing: var(--tracking-ultra);
    text-transform: uppercase;
    color: var(--text-gray);
}

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

/* Elfsight Widget Container */
[class^="elfsight-app-"],
[class*="elfsight-app-"] {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
}

.social-feed-item [class^="elfsight-app-"],
.social-feed-item [class*="elfsight-app-"] {
    min-height: 400px;
}

/* Force hide any visible style tags in social feeds */
.social-feeds style,
.social-feed-item style,
[class*="elfsight-app-"] style {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}

/* Floating Call Button */
.floating-call-btn:hover {
    transform: rotate(-15deg) scale(1.1) !important;
    background: linear-gradient(135deg, rgba(184, 163, 105, 0.5) 0%, rgba(184, 163, 105, 0.25) 50%, rgba(184, 163, 105, 0.1) 100%) !important;
    box-shadow: 0 12px 40px rgba(184, 163, 105, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
}

.floating-call-btn:active {
    transform: rotate(-15deg) scale(0.95) !important;
}

/* Mobile adjustments for floating call button */
@media (max-width: 768px) {
    .floating-call-btn {
        width: 60px !important;
        height: 60px !important;
        bottom: 90px !important;
        right: 20px !important;
    }
    
    .floating-call-btn svg {
        width: 28px !important;
        height: 28px !important;
    }
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--light-gray);
}

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

.instagram-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
    transition: background var(--duration-fast) ease;
}

.instagram-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 40px;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    z-index: 2;
    opacity: 0;
    transition: all var(--duration-fast) ease;
}

.instagram-item:hover::before {
    background: rgba(0, 0, 0, 0.4);
}

.instagram-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

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

.instagram-item a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Funnel Responsive */
@media (max-width: 1024px) {
    .funnel-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .funnel-card {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .funnel-options {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .funnel-card {
        padding: 36px 28px;
    }
    
    .typeform-modal {
        padding: 10px;
    }
    
    .typeform-modal-content {
        max-height: 95vh;
    }
    
    .typeform-modal-header {
        padding: 30px 30px 15px;
    }
    
    .typeform-wrapper {
        padding: 15px 30px 30px;
    }
    
    .typeform-modal-close {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .selection-funnel {
        padding: var(--section-md) 0;
    }
    
    .funnel-card {
        padding: 28px 20px;
    }
    
    .funnel-card h3 {
        font-size: 22px;
    }
    
    .funnel-services li {
        font-size: 14px;
        padding-left: 20px;
    }
    
    .typeform-modal {
        padding: 0;
    }
    
    .typeform-modal-content {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
        height: 100vh;
    }
    
    .typeform-modal-header {
        padding: 50px 20px 15px;
    }
    
    .typeform-modal-header h2 {
        font-size: 20px;
    }
    
    .typeform-wrapper {
        padding: 10px 20px 20px;
    }
    
    .typeform-wrapper > div {
        height: calc(100vh - 200px) !important;
        min-height: 500px;
    }
}

/* Instagram Feed Responsive */
@media (max-width: 1024px) {
    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
    }
    
    .instagram-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .instagram-title {
        order: 2;
    }
    
    .instagram-follow-btn {
        order: 1;
    }
}

/* Social Feeds Responsive */
@media (max-width: 768px) {
    .social-feeds-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .social-feeds {
        padding: var(--section-sm) 0;
    }
    
    .social-feeds-header {
        margin-bottom: 30px;
    }
    
    .social-title {
        font-size: 10px;
        letter-spacing: 0.2em;
    }
    
    .social-feeds-grid {
        gap: 40px;
        padding: 0 10px;
    }
    
    .social-follow-btn {
        padding: 12px 24px;
        font-size: 11px;
    }
    
    .feed-header {
        margin-bottom: 20px;
    }
    
    .social-feed-item {
        width: 100%;
        max-width: 100%;
    }
    
    /* Legacy Instagram grid */
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================================
   SHARE SECTION
   ================================ */
.share-section {
    padding: 48px 0;
    background: var(--off-white);
    border-top: 1px solid var(--light-gray);
}

.share-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--container-padding);
}

.share-title {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: var(--tracking-ultra);
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--light-gray);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    text-decoration: none;
}

.share-btn svg {
    width: 22px;
    height: 22px;
    fill: var(--charcoal);
    transition: fill var(--duration-fast) ease;
}

.share-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* WhatsApp */
.share-btn--whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.share-btn--whatsapp:hover svg {
    fill: var(--white);
}

/* Facebook */
.share-btn--facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.share-btn--facebook:hover svg {
    fill: var(--white);
}

/* Twitter/X */
.share-btn--twitter:hover {
    background: var(--black);
    border-color: var(--black);
}

.share-btn--twitter:hover svg {
    fill: var(--white);
}

/* LinkedIn */
.share-btn--linkedin:hover {
    background: #0A66C2;
    border-color: #0A66C2;
}

.share-btn--linkedin:hover svg {
    fill: var(--white);
}

/* Email */
.share-btn--email:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
}

.share-btn--email:hover svg {
    fill: var(--white);
}

/* Copy Link */
.share-btn--copy {
    position: relative;
}

.share-btn--copy:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.share-btn--copy:hover svg {
    fill: var(--white);
}

.share-btn--copy.copied {
    background: #1a472a;
    border-color: #1a472a;
}

.share-btn--copy.copied svg {
    fill: var(--white);
}

.share-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 14px;
    background: var(--black);
    color: var(--white);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-fast) ease;
    margin-bottom: 8px;
}

.share-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--black);
}

.share-btn--copy.copied .share-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Share section responsive */
@media (max-width: 480px) {
    .share-section {
        padding: 36px 0;
    }
    
    .share-title {
        font-size: 10px;
        margin-bottom: 20px;
    }
    
    .share-buttons {
        gap: 12px;
    }
    
    .share-btn {
        width: 46px;
        height: 46px;
    }
    
    .share-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Touch Improvements */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .btn {
        min-height: 48px;
    }
    
    .nav-menu a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    /* Remove hover effects on touch devices */
    .service-card:hover,
    .pricing-card:hover,
    .team-member:hover,
    .faq-item:hover,
    .media-item:hover,
    .philosophy-item:hover,
    .aesthetic-feature:hover {
        transform: none;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    }
    
    .service-card:hover::after {
        width: 0;
    }
    
    .service-arrow {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Landscape Phone Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: clamp(32px, 6vw, 48px);
        margin-bottom: 16px;
    }
    
    .hero-description {
        margin-bottom: 24px;
    }
    
    .page-hero {
        min-height: 15vh;
        height: auto;
    }
}

/* ===================================
   LOGO MARQUEE
   =================================== */

.logo-marquee {
    padding: 20px 0;
    background: var(--white);
    border-top: 1px solid rgba(184, 163, 105, 0.18);
    border-bottom: 1px solid rgba(184, 163, 105, 0.18);
    overflow: hidden;
    position: relative;
}

.logo-marquee::before,
.logo-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 160px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.marquee-container {
    display: flex;
    align-items: center;
    width: 100%;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 44px;
    animation: marquee 32s linear infinite;
    will-change: transform;
}

/* Only pause on hover for mouse users (avoid sticky hover on mobile) */
@media (hover: hover) and (pointer: fine) {
    .marquee-track:hover {
        animation-play-state: paused;
    }
}

.marquee-logo {
    flex-shrink: 0;
    width: 130px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.marquee-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.marquee-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.55);
    transition: filter 0.3s ease;
}

.marquee-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo-marquee {
        padding: 14px 0;
        overflow: hidden;
    }
    
    .marquee-track {
        gap: 24px;
        animation: marquee 30s linear infinite !important;
        display: flex !important;
    }
    
    .marquee-logo {
        width: 100px;
        height: 50px;
        padding: 8px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
        border-radius: 8px;
    }
    
    .logo-marquee::before,
    .logo-marquee::after {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .logo-marquee {
        padding: 12px 0;
        overflow: hidden;
    }
    
    .marquee-track {
        gap: 20px;
        animation: marquee 25s linear infinite !important;
        display: flex !important;
    }
    
    .marquee-logo {
        width: 90px;
        height: 46px;
        padding: 7px;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 6px;
    }
    
    .marquee-logo img {
        filter: grayscale(100%) opacity(0.5);
    }
    
    .logo-marquee::before,
    .logo-marquee::after {
        width: 30px;
    }
}

/* ================================
   BLOG STYLES
   ================================ */

/* Blog Intro */
.blog-intro {
    padding: var(--section-md) 0;
    background: var(--white);
}

.blog-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.blog-intro-content .lead-text {
    max-width: none;
}

/* Blog Section */
.blog-section {
    padding: var(--section-lg) 0;
    background: var(--off-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3xl);
    margin-top: var(--space-3xl);
}

@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.blog-card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.blog-card-image {
    width: 100%;
    height: 280px;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
}

.blog-card:hover .blog-card-image::after {
    opacity: 1;
}

.blog-card-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    z-index: 2;
}

.blog-card-content {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--text-gray);
}

.blog-card-date,
.blog-card-author {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-author::before {
    content: '•';
    color: var(--accent);
}

.blog-card-title {
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 16px;
    color: var(--black);
    transition: color var(--duration-fast) ease;
}

.blog-card:hover .blog-card-title {
    color: var(--accent-dark);
}

.blog-card-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-read-more {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--black);
    display: inline-flex;
    align-items: center;
    transition: all var(--duration-fast) ease;
}

.blog-card:hover .blog-card-read-more {
    color: var(--accent-dark);
    transform: translateX(8px);
}

/* Loading State */
.blog-loading,
.blog-detail-loading {
    padding: var(--section-lg) 0;
    background: var(--off-white);
}

.loading-spinner {
    text-align: center;
    padding: var(--space-4xl) 0;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--light-gray);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto var(--space-lg);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-spinner p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0 auto;
}

/* Empty State */
.blog-empty {
    padding: var(--section-lg) 0;
    background: var(--off-white);
}

.empty-state {
    text-align: center;
    padding: var(--space-4xl) var(--space-lg);
    max-width: 600px;
    margin: 0 auto;
}

.empty-state h3 {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: var(--space-lg);
    color: var(--charcoal);
}

.empty-state p {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0 auto;
}

/* ================================
   BLOG DETAIL PAGE
   ================================ */

.blog-detail {
    opacity: 0;
    transition: opacity 0.6s ease;
}

/* Blog Detail Hero */
.blog-detail-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: var(--charcoal);
    background-size: cover;
    background-position: center;
    padding: var(--space-4xl) var(--container-padding);
    margin-top: 0;
}

.blog-detail-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.blog-detail-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-narrow);
    width: 100%;
    margin: 0 auto;
    padding-bottom: var(--space-3xl);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.blog-date,
.blog-category {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 4px;
}

.blog-detail-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    color: var(--white);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

/* Author Section */
.blog-author {
    padding: var(--section-md) 0;
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
}

.author-card {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.author-image {
    flex-shrink: 0;
}

.author-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-light);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.author-info h3 {
    font-size: 20px;
    margin-bottom: 4px;
    color: var(--black);
}

.author-title {
    font-size: 14px;
    color: var(--accent-dark);
    font-weight: 500;
    margin-bottom: 12px !important;
    max-width: none !important;
}

.author-bio {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    max-width: none !important;
}

/* Blog Content */
.blog-content {
    padding: var(--section-lg) 0;
    background: var(--white);
}

.blog-content-wrapper {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.rich-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--charcoal);
}

.rich-content h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    margin: var(--space-3xl) 0 var(--space-lg);
    color: var(--black);
}

.rich-content h3 {
    font-size: clamp(22px, 2.5vw, 28px);
    margin: var(--space-2xl) 0 var(--space-md);
    color: var(--black);
}

.rich-content p {
    margin-bottom: var(--space-lg);
    max-width: none;
    font-size: 17px;
}

.rich-content ul,
.rich-content ol {
    margin: var(--space-lg) 0;
    padding-left: var(--space-xl);
}

.rich-content li {
    margin-bottom: var(--space-md);
    line-height: 1.8;
    color: var(--text-gray);
}

.rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: var(--space-2xl) 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.rich-content blockquote {
    border-left: 4px solid var(--accent);
    padding-left: var(--space-xl);
    margin: var(--space-2xl) 0;
    font-style: italic;
    color: var(--text-gray);
    font-size: 19px;
}

.rich-content a {
    color: var(--accent-dark);
    text-decoration: underline;
    transition: color var(--duration-fast) ease;
}

.rich-content a:hover {
    color: var(--accent);
}

/* Share Section */
.blog-share {
    padding: var(--section-md) 0;
    background: var(--off-white);
    border-top: 1px solid var(--light-gray);
}

.share-wrapper {
    max-width: var(--container-narrow);
    margin: 0 auto;
    text-align: center;
}

.share-wrapper h3 {
    font-size: 20px;
    margin-bottom: var(--space-lg);
    color: var(--charcoal);
}

.share-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    cursor: pointer;
    transition: all var(--duration-fast) ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.share-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* WhatsApp Share Button */
.share-btn.whatsapp:hover {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

/* Facebook Share Button */
.share-btn.facebook:hover {
    background: #1877F2;
    color: var(--white);
    border-color: #1877F2;
}

/* Twitter Share Button */
.share-btn.twitter:hover {
    background: #1DA1F2;
    color: var(--white);
    border-color: #1DA1F2;
}

/* Copy Link Button */
.share-btn.copy:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.share-btn.copied {
    background: #10b981 !important;
    color: var(--white) !important;
    border-color: #10b981 !important;
}

/* Blog CTA */
.blog-cta {
    padding: var(--section-lg) 0;
    background: var(--white);
}

.blog-cta .cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.blog-cta h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: var(--space-md);
}

.blog-cta p {
    font-size: 18px;
    color: var(--text-gray);
    margin: 0 auto var(--space-xl);
}

/* Error State */
.blog-error {
    padding: var(--section-lg) 0;
    background: var(--off-white);
}

.error-state {
    text-align: center;
    padding: var(--space-4xl) var(--space-lg);
    max-width: 600px;
    margin: 0 auto;
}

.error-state h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    margin-bottom: var(--space-lg);
    color: var(--charcoal);
}

.error-state p {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0 auto var(--space-xl);
}

/* ================================
   BLOG RESPONSIVE
   ================================ */

@media (max-width: 768px) {
    .blog-card-image {
        height: 220px;
        min-height: 220px;
    }
    
    .blog-card-content {
        padding: var(--space-lg);
    }
    
    .author-card {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .author-image img {
        width: 80px;
        height: 80px;
    }
    
    .blog-detail-hero {
        min-height: 50vh;
        padding: var(--space-2xl) var(--container-padding);
    }
    
    .blog-detail-hero .hero-content {
        padding-bottom: var(--space-xl);
    }
    
    .blog-meta {
        gap: 12px;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .blog-card-image {
        height: 200px;
    }
    
    .blog-card-category {
        top: 12px;
        left: 12px;
        padding: 6px 12px;
        font-size: 10px;
    }
    
    .rich-content {
        font-size: 16px;
    }
    
    .rich-content h2 {
        margin: var(--space-2xl) 0 var(--space-md);
    }
    
    .rich-content blockquote {
        font-size: 17px;
        padding-left: var(--space-lg);
    }
}

/* ================================
   BLOG MOBILE IMPROVEMENTS
   ================================ */

@media (max-width: 768px) {
    /* Blog Intro Section */
    .blog-intro {
        padding: 40px 20px;
    }
    
    .blog-intro .lead-text {
        font-size: 16px;
        line-height: 1.7;
    }
    
    /* Blog Section */
    .blog-section {
        padding: 30px 15px 120px;
    }
    
    /* Blog Cards Mobile */
    .blog-card {
        margin-bottom: 20px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .blog-card-title {
        font-size: 18px;
        line-height: 1.4;
    }
    
    .blog-card-excerpt {
        font-size: 14px;
        line-height: 1.6;
        -webkit-line-clamp: 3;
    }
    
    .blog-card-meta {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }
    
    .blog-card-author::before {
        display: none;
    }
    
    .blog-card-date,
    .blog-card-author {
        font-size: 12px;
    }
    
    /* Blog Detail Hero Mobile */
    .blog-detail-hero {
        min-height: 45vh;
        padding: 100px 20px 40px;
    }
    
    .blog-detail-hero h1 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .blog-detail-hero .blog-meta {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Author Section Mobile */
    .blog-author {
        padding: 40px 15px;
    }
    
    .author-card {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .author-image img {
        width: 90px;
        height: 90px;
    }
    
    .author-info h3 {
        font-size: 18px;
    }
    
    .author-title {
        font-size: 13px;
    }
    
    .author-bio {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Blog Content Mobile */
    .blog-content {
        padding: 30px 15px 60px;
    }
    
    .blog-content-wrapper {
        max-width: 100%;
    }
    
    .rich-content {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .rich-content h3,
    .rich-content h4 {
        font-size: 18px;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    
    .rich-content p {
        margin-bottom: 16px;
    }
    
    /* Share Section Mobile */
    .blog-share {
        padding: 30px 15px;
    }
    
    .blog-share h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .share-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    
    /* Related CTA Mobile */
    .related-cta {
        padding: 40px 20px;
        margin: 30px 15px;
    }
    
    .related-cta h2 {
        font-size: 22px;
    }
    
    .related-cta p {
        font-size: 14px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Loading State Mobile */
    .blog-loading {
        padding: 60px 20px;
    }
    
    /* Empty State Mobile */
    .blog-empty {
        padding: 60px 20px;
    }
    
    .empty-state h3 {
        font-size: 20px;
    }
    
    /* Error State Mobile */
    .blog-error {
        padding: 60px 20px;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .blog-detail-hero h1 {
        font-size: 20px;
    }
    
    .blog-card-title {
        font-size: 16px;
    }
    
    .author-image img {
        width: 70px;
        height: 70px;
    }
    
    .share-btn {
        font-size: 13px;
        padding: 12px 16px;
    }
    
    .rich-content {
        font-size: 14px;
    }
    
    .rich-content h3,
    .rich-content h4 {
        font-size: 16px;
    }
}
