/* ============================================
   ENHANCED CSS Variables - Design System
   ============================================ */
:root {
    /* Color Palette - Enhanced with additional shades */
    --primary-color: #2E86AB;
    --primary-dark: #1E6B8A;
    --primary-light: #5BA3C7;
    --secondary-color: #FFB6B9;
    --secondary-dark: #FF9FA3;
    --secondary-light: #FFD4D6;
    --accent-color: #FFD700;
    --accent-dark: #E6C200;
    --accent-light: #FFE633;
    --background-white: #FFFFFF;
    --background-light: #F9F9F9;
    --background-medium: #F0F0F0;
    --background-medium-dark: #E8E8E8;
    --background-ocean-light: rgba(46, 134, 171, 0.05);
    --background-ocean-medium: rgba(46, 134, 171, 0.08);
    --background-ocean-dark: rgba(46, 134, 171, 0.12);
    --text-dark: #2C3E50;
    --text-medium: #4A5568;
    --text-light: #6C757D;
    --text-lighter: #A0AEC0;
    /* Animated CTA strip: teal → lavender → soft pink (Ready to Refresh… reference) */
    --cta-surface-gradient: linear-gradient(
        102deg,
        #4a8ba8 0%,
        #6d5d7a 26%,
        #9b8aa8 48%,
        #d9a0a4 74%,
        #f0cccc 100%
    );
    
    /* Shadow System - Enhanced depth hierarchy */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.12);
    --shadow-large: 0 12px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    
    /* Spacing System - Consistent 8px grid */
    --spacing-xs: 0.5rem;    /* 8px */
    --spacing-sm: 1rem;       /* 16px */
    --spacing-md: 1.5rem;     /* 24px */
    --spacing-lg: 2rem;       /* 32px */
    --spacing-xl: 3rem;       /* 48px */
    --spacing-2xl: 4rem;      /* 64px */
    --spacing-3xl: 6rem;      /* 96px */
    --spacing-4xl: 8rem;      /* 128px */
    
    /* Typography Scale - Refined for better hierarchy */
    --font-size-xs: 0.75rem;   /* 12px */
    --font-size-sm: 0.875rem;  /* 14px */
    --font-size-base: 1rem;     /* 16px */
    --font-size-lg: 1.125rem;  /* 18px */
    --font-size-xl: 1.25rem;   /* 20px */
    --font-size-2xl: 1.5rem;   /* 24px */
    --font-size-3xl: 1.875rem; /* 30px */
    --font-size-4xl: 2.25rem;  /* 36px */
    --font-size-5xl: 3rem;     /* 48px */
    --font-size-6xl: 3.75rem;  /* 60px */
    
    /* Transition System - Enhanced timing functions */
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Border Radius System */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
}

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

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

body {
    font-family: 'Lato', sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.75; /* Increased from 1.7 for better readability */
    color: var(--text-dark);
    background-color: var(--background-white);
    overflow-x: hidden;
    /* Smooth page transitions */
    transition: opacity 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2; /* Tighter for headings */
    color: var(--text-dark);
    letter-spacing: -0.02em; /* Slight negative tracking for modern look */
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Smooth image loading */
    transition: opacity 0.3s ease;
}

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

/* ============================================
   Enhanced Buttons - Improved Visibility & Polish
   ============================================ */
.btn {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--font-size-base);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    /* Enhanced shadow for depth */
    box-shadow: var(--shadow-soft);
}

/* Shimmer effect on buttons */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 20px rgba(46, 134, 171, 0.35);
    /* Enhanced glow effect */
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46, 134, 171, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-hero {
    background-color: var(--accent-color);
    color: var(--text-dark);
    font-size: var(--font-size-lg);
    padding: var(--spacing-lg) var(--spacing-2xl);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
    /* Enhanced visibility with larger size */
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-hero:hover {
    background-color: var(--accent-dark);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.5);
}

.btn-cta {
    background-color: var(--primary-color);
    color: white;
    font-size: var(--font-size-lg);
    padding: var(--spacing-lg) var(--spacing-2xl);
    box-shadow: 0 6px 25px rgba(46, 134, 171, 0.4);
    font-weight: 700;
    letter-spacing: 0.5px;
    /* Pulse animation for attention */
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(46, 134, 171, 0.4);
    }
    50% {
        box-shadow: 0 6px 35px rgba(46, 134, 171, 0.6);
    }
}

.btn-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-4px) scale(1.02);
    animation: none; /* Stop pulse on hover */
        box-shadow: 0 10px 40px rgba(46, 134, 171, 0.6);
}

/* ============================================
   Enhanced Navigation Bar - Better Spacing & Polish
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-smooth);
    /* Improved padding for better spacing */
    padding: var(--spacing-xs) 0;
}

.navbar.scrolled {
    box-shadow: var(--shadow-medium);
    padding: var(--spacing-xs) 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    gap: var(--spacing-lg);
}

.logo h1,
.logo .logo-text {
    display: block;
    margin: 0;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Smooth gradient animation */
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: var(--spacing-xs) 0;
    font-size: var(--font-size-base);
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    border-radius: var(--radius-full);
}

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

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-cta {
    margin-left: var(--spacing-md);
    white-space: nowrap;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: var(--spacing-xs);
    transition: var(--transition-smooth);
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
}

/* ============================================
   Enhanced Hero Section - Better Visual Impact
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px; /* Increased from 600px */
    background-image: url('pics/hp2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    /* Parallax effect preparation */
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 70%, transparent 100%);
    /* Subtle animation */
    animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: var(--spacing-2xl) var(--spacing-lg);
    animation: fadeInUp 1s ease-out;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 4.25rem);
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.6), 0 2px 10px rgba(0, 0, 0, 0.4);
    line-height: 1.4;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-phrase {
    display: block;
    position: relative;
    padding: var(--spacing-xs) 0;
    color: #F8F6F0; /* Soft cream/ivory */
    text-shadow: 
        0 4px 25px rgba(0, 0, 0, 0.6), 
        0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Subtle dot separator between phrases */
.hero-phrase:not(:last-child)::after {
    content: '•';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.5em;
    opacity: 0.4;
    color: rgba(255, 255, 255, 0.6);
}

.hero-phrase-accent {
    background: none; /* Override gradient for accent */
    -webkit-text-fill-color: var(--accent-color);
    color: var(--accent-color);
    text-shadow: 
        0 4px 25px rgba(255, 215, 0, 0.4),
        0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: var(--spacing-2xl);
    font-weight: 400;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.5), 0 1px 6px rgba(0, 0, 0, 0.4);
    line-height: 1.7;
    letter-spacing: 0.01em;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ============================================
   Enhanced Section Headers - Better Typography Scale
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    padding: 0 var(--spacing-lg);
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-full);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    max-width: 700px;
    margin: var(--spacing-lg) auto 0;
    line-height: 1.7;
    font-weight: 400;
}

/* ============================================
   Enhanced Services Section - Better Spacing & Animations
   ============================================ */
.services {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, #faf6f1 0%, #f5ece0 70%, #fdfaf6 100%);
    position: relative;
    overflow: hidden;
}

/* Warm ambient glow */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(50% 45% at 85% 15%, rgba(184, 132, 90, 0.14), transparent 70%),
        radial-gradient(40% 40% at 10% 90%, rgba(220, 178, 132, 0.18), transparent 75%);
    pointer-events: none;
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

/* Services Carousel Wrapper */
.services-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) var(--spacing-2xl);
    max-width: 1600px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: var(--spacing-md) var(--spacing-lg);
    flex: 1;
    scroll-snap-type: x mandatory;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.services-grid::-webkit-scrollbar {
    display: none;
}

.service-card {
    scroll-snap-align: start;
    background-color: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc((100% - 72px) / 4);
    min-width: 300px;
    max-width: 360px;
    aspect-ratio: 3 / 4;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
}

/* Staggered animation delays */
.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }
.service-card:nth-child(5) { transition-delay: 0.5s; }

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

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(46, 134, 171, 0.2);
}

/* Image Wrapper - 45% of card height using flex */
.service-image-wrapper {
    position: relative;
    width: 100%;
    flex: 0 0 45%;
    overflow: hidden;
    background: var(--background-light);
}

.service-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Gradient Overlay */
.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 30%,
        transparent 100%
    );
    transition: background 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.service-card:hover .service-image-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.15) 30%,
        transparent 100%
    );
}

/* Icon Badge on Image */
.service-icon-badge {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.service-card:hover .service-icon-badge {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(46, 134, 171, 0.5);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* Content Section - 55% of card height using flex */
.service-content {
    flex: 0 0 55%;
    padding: var(--spacing-xl) var(--spacing-xl);
    display: flex;
    flex-direction: column;
    text-align: left;
    min-height: 0;
    overflow: hidden;
}

.service-title {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.service-card:hover .service-title {
    color: var(--primary-color);
}

.service-description {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    font-size: clamp(0.875rem, 1.3vw, 0.95rem);
    flex-grow: 1;
    font-weight: 400;
    letter-spacing: 0.01em;
    overflow: hidden;
    min-height: 0;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: var(--spacing-sm) var(--spacing-lg);
    width: 100%;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    background-color: transparent;
    text-decoration: none;
    margin-top: auto;
    flex-shrink: 0;
}

.service-link:hover {
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.service-link i {
    transition: transform 0.3s ease;
    font-size: 13px;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Carousel Navigation Buttons - Overlapping Design */
.carousel-nav-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    background-color: white;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 24px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    z-index: 20;
    position: absolute;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.carousel-prev {
    left: -35px;
}

.carousel-next {
    right: -35px;
}

.carousel-nav-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.carousel-nav-btn:hover {
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(46, 134, 171, 0.5);
}

.carousel-nav-btn:hover::before {
    opacity: 1;
}

.carousel-nav-btn:active {
    transform: scale(1.05);
}

.carousel-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
    transform: scale(1);
}

.carousel-nav-btn:disabled:hover {
    transform: scale(1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.carousel-nav-btn i {
    font-size: 22px;
    font-weight: 600;
}

/* ============================================
   Before/After Image Comparison Slider Section
   ============================================ */
.before-after-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, 
        rgba(255, 182, 185, 0.08) 0%, 
        var(--background-medium) 50%,
        rgba(255, 182, 185, 0.08) 100%);
    position: relative;
}

.section-footer {
    text-align: center;
    margin-top: var(--spacing-3xl);
}

.before-after-carousel {
    max-width: 1000px;
    margin: 0 auto;
}

/* Homepage hair transplant results — desktop 2-up grid */
.ht-results-carousel {
    max-width: 1000px;
    margin: 0 auto;
}

.ht-results-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    padding: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.ht-results-hint,
.ht-results-dots,
.ht-ba-nav {
    display: none;
}

.carousel-container {
    position: relative;
}

.carousel-track {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.before-after-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.before-after-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

/* Grid for 2 comparisons side by side */
.comparisons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    padding: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-container {
    width: 100%;
    padding: 0;
}

.comparison-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: var(--background-light);
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.comparison-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.before-image {
    z-index: 1;
}

.after-image {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.1s ease-out;
}

/* Slider Handle */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
    transition: background 0.2s ease;
}

.slider-handle:hover {
    background: var(--primary-color);
}

.slider-handle.dragging {
    background: var(--primary-color);
}

.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: white;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: grab;
    transition: var(--transition-smooth);
    z-index: 11;
}

.slider-button:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(0.95);
}

.slider-button i {
    color: var(--primary-color);
    font-size: 14px;
    position: absolute;
}

.slider-button i:first-child {
    left: 12px;
}

.slider-button i:last-child {
    right: 12px;
}

.slider-handle:hover .slider-button {
    background: var(--primary-color);
    box-shadow: 0 6px 20px rgba(46, 134, 171, 0.4);
}

.slider-handle:hover .slider-button i {
    color: white;
}

.slider-handle.dragging .slider-button {
    background: var(--primary-color);
    box-shadow: 0 6px 20px rgba(46, 134, 171, 0.4);
}

.slider-handle.dragging .slider-button i {
    color: white;
}

/* Comparison Labels */
.comparison-label {
    position: absolute;
    top: var(--spacing-md);
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-dark);
    z-index: 5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.before-label {
    left: var(--spacing-md);
}

.after-label {
    right: var(--spacing-md);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background-color: white;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-size: var(--font-size-lg);
    box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: flex;
    gap: var(--spacing-sm);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.3;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot:hover {
    opacity: 0.6;
    transform: scale(1.2);
}

.carousel-dot.active {
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(46, 134, 171, 0.2);
}

/* ============================================
   Premium Dental Care Section - Complete Redesign
   ============================================ */
.dental-service-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, 
        var(--background-white) 0%, 
        rgba(46, 134, 171, 0.08) 50%,
        var(--background-white) 100%);
    position: relative;
}

/* Centered Header */
.dental-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.dental-header.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Statistics Banner */
.dental-stats-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-soft);
    margin-bottom: var(--spacing-3xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.dental-stats-banner.visible {
    opacity: 1;
    transform: translateY(0);
}

.dental-stats-banner .stat-item {
    text-align: center;
    flex: 1;
}

.dental-stats-banner .stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.dental-stats-banner .stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, 
        transparent, 
        rgba(46, 134, 171, 0.3), 
        transparent);
}


.dental-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dental-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--text-medium);
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Highlight text for key phrases */
.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
}

/* Feature Cards Grid - 2x2 Layout */
.dental-features-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.dental-feature-card-new {
    background: white;
    border-radius: var(--radius-xl);
    padding: 0;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 280px;
    overflow: hidden;
}

.dental-feature-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
    border-color: rgba(46, 134, 171, 0.2);
}

.feature-image-wrapper {
    margin-bottom: 0;
    width: 100%;
    height: 220px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    overflow: hidden;
    position: relative;
    box-shadow: none;
    transition: var(--transition-smooth);
}

.dental-feature-image-new {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dental-feature-card-new:hover .feature-image-wrapper {
    box-shadow: 0 8px 30px rgba(46, 134, 171, 0.25);
}

.dental-feature-card-new:hover .dental-feature-image-new {
    transform: scale(1.1);
}

.dental-feature-title-new {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    margin-top: 0;
    padding: var(--spacing-lg) var(--spacing-2xl) 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.dental-feature-description-new {
    font-size: var(--font-size-base);
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
    padding: var(--spacing-sm) var(--spacing-2xl) var(--spacing-2xl);
}

/* Albania Advantage Card */
.albania-advantage-card {
    background: linear-gradient(135deg, 
        rgba(46, 134, 171, 0.08), 
        rgba(255, 182, 185, 0.08));
    border: 2px solid rgba(46, 134, 171, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(30px);
}

.albania-advantage-card:hover {
    border-color: rgba(46, 134, 171, 0.4);
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.advantage-icon-new {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(46, 134, 171, 0.3);
}

.advantage-content-new {
    flex: 1;
}

.advantage-title-new {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.advantage-text-new {
    font-size: var(--font-size-base);
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

/* CTA Wrapper */
.dental-cta-wrapper {
    text-align: center;
}

.dental-cta-new {
    font-size: var(--font-size-lg);
    padding: var(--spacing-lg) var(--spacing-2xl);
    display: inline-block;
}

/* ============================================
   Beauty Aesthetics Section - Elegant Grid Layout
   ============================================ */
.beauty-aesthetics-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, #fdfaf6 0%, #faf6f1 40%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Warm ambient glow */
.beauty-aesthetics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 40%, rgba(184, 132, 90, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 75%, rgba(220, 178, 132, 0.10) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.beauty-aesthetics-section .container {
    position: relative;
    z-index: 1;
}

.beauty-section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #b8845a;
    margin: 0 0 var(--spacing-sm);
}

/* Hero Image */
.beauty-hero-image {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 500px;
    margin: var(--spacing-3xl) auto var(--spacing-4xl);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-large);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.beauty-hero-image.visible {
    opacity: 1;
    transform: translateY(0);
}

.beauty-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.beauty-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 132, 90, 0.12), rgba(241, 228, 212, 0.18));
    pointer-events: none;
}

/* Treatment Grid - Compact Square Layout */
.beauty-treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    padding: 0 var(--spacing-sm);
    max-width: 1400px;
    margin: 0 auto;
}

.beauty-treatment-card {
    background-color: #fffdfa;
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: 0 8px 28px rgba(120, 80, 40, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    border: 1px solid rgba(184, 132, 90, 0.12);
    min-height: 320px;
    min-width: 0;
}

/* Staggered animation delays */
.beauty-treatment-card:nth-child(1) { transition-delay: 0.1s; }
.beauty-treatment-card:nth-child(2) { transition-delay: 0.2s; }
.beauty-treatment-card:nth-child(3) { transition-delay: 0.3s; }
.beauty-treatment-card:nth-child(4) { transition-delay: 0.4s; }
.beauty-treatment-card:nth-child(5) { transition-delay: 0.5s; }
.beauty-treatment-card:nth-child(6) { transition-delay: 0.6s; }

.beauty-treatment-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.beauty-treatment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(154, 107, 63, 0.14);
    border-color: rgba(184, 132, 90, 0.28);
}

/* Treatment Icon - Top center */
.beauty-treatment-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 20px rgba(255, 182, 185, 0.25);
    flex-shrink: 0;
    margin-bottom: var(--spacing-lg);
}

.beauty-treatment-card:hover .beauty-treatment-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 182, 185, 0.35);
}

/* Treatment Image — inset below title */
.beauty-treatment-image {
    width: 100%;
    height: 190px;
    margin: 0 0 var(--spacing-md);
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(184, 132, 90, 0.1);
}

.beauty-treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Content wrapper */
.beauty-treatment-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-self: stretch;
    min-width: 0;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
}

/* Treatment Title — above image */
.beauty-treatment-title {
    font-size: clamp(1.15rem, 1.8vw, 1.4rem);
    margin: 0 0 var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    color: #2c241d;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-align: center;
    border-bottom: 2px solid rgba(184, 132, 90, 0.22);
}

.beauty-view-all-card .beauty-treatment-title {
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
}

/* Treatment Description */
.beauty-treatment-description {
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    color: #6b5a4a;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
    width: 100%;
}

/* Treatment Link */
.beauty-treatment-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: var(--spacing-xs);
    color: #b8845a;
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    margin-top: auto;
    padding: var(--spacing-xs) 0;
}

.beauty-view-all-card .beauty-treatment-link {
    align-self: center;
}

.beauty-treatment-link i {
    transition: transform 0.3s ease;
}

.beauty-treatment-link:hover {
    color: #9a6b3f;
}

.beauty-treatment-link:hover i {
    transform: translateX(5px);
}

/* View All Services Card */
.beauty-view-all-card {
    background: linear-gradient(145deg, #fff9f0 0%, #f8edd9 100%);
    border: 1px solid rgba(184, 132, 90, 0.2);
    align-items: center;
    text-align: center;
}

/* ============================================
   Surgery Section — aligned with Beauty card rhythm
   ============================================ */
.surgery-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg,
        var(--background-white) 0%,
        rgba(46, 134, 171, 0.04) 45%,
        var(--background-white) 100%);
    position: relative;
    overflow: hidden;
}

.surgery-section .container {
    position: relative;
    z-index: 1;
}

.surgery-section .section-header {
    margin-bottom: var(--spacing-xl);
}

/* Surgery Carousel Wrapper */
.surgery-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: var(--spacing-md);
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
}

/* Default (mobile-first): horizontal snap scroll */
.surgery-treatments-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: var(--spacing-sm) 0.25rem var(--spacing-md);
    flex: 1;
    scroll-snap-type: x mandatory;
    min-width: 0;
}

.surgery-treatments-grid::-webkit-scrollbar {
    display: none;
}

.surgery-treatment-card {
    scroll-snap-align: start;
    background-color: #fff;
    border-radius: var(--radius-xl, 16px);
    padding: var(--spacing-lg);
    box-shadow: 0 8px 28px rgba(15, 55, 80, 0.07);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.35s ease,
                opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    border: 1px solid rgba(46, 134, 171, 0.12);
    min-height: 0;
    min-width: min(82vw, 280px);
    max-width: 320px;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(24px);
}

.surgery-treatment-card:nth-child(1) { transition-delay: 0.05s; }
.surgery-treatment-card:nth-child(2) { transition-delay: 0.1s; }
.surgery-treatment-card:nth-child(3) { transition-delay: 0.15s; }
.surgery-treatment-card:nth-child(4) { transition-delay: 0.2s; }
.surgery-treatment-card:nth-child(5) { transition-delay: 0.25s; }
.surgery-treatment-card:nth-child(6) { transition-delay: 0.3s; }

.surgery-treatment-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.surgery-treatment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(46, 134, 171, 0.14);
    border-color: rgba(46, 134, 171, 0.28);
}

.surgery-treatment-title {
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 var(--spacing-md);
    line-height: 1.3;
    letter-spacing: -0.01em;
    order: 0;
}

.surgery-treatment-image-wrapper {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    flex-shrink: 0;
    background: var(--background-light);
    position: relative;
    order: 1;
}

.surgery-treatment-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.surgery-treatment-card:hover .surgery-treatment-image {
    transform: scale(1.06);
}

.surgery-treatment-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    order: 2;
}

.surgery-treatment-description {
    font-size: clamp(0.875rem, 1.2vw, 0.95rem);
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 var(--spacing-md);
    flex-grow: 1;
}

.surgery-treatment-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: clamp(0.85rem, 1.1vw, 0.9rem);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    text-decoration: none;
    transition: color 0.25s ease, gap 0.25s ease;
    margin-top: auto;
    padding: var(--spacing-xs) 0;
}

.surgery-treatment-link:hover {
    color: var(--secondary-color);
    gap: var(--spacing-sm);
}

.surgery-treatment-link i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.surgery-treatment-link:hover i {
    transform: translateX(4px);
}

/* Hub CTA — animated button below procedure grid */
.surgery-hub-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-xl);
    padding: 0 var(--spacing-sm);
}

.surgery-hub-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 1rem 1.85rem;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    animation: pulse 2.4s ease-in-out infinite;
}

.surgery-hub-cta i {
    font-size: 0.85em;
    transition: transform 0.3s ease;
}

.surgery-hub-cta:hover {
    animation: none;
    transform: translateY(-3px) scale(1.02);
}

.surgery-hub-cta:hover i {
    transform: translateX(5px);
}

.surgery-hub-cta:active {
    transform: translateY(-1px) scale(1.01);
}

/* Desktop: 2-column grid; hide side nav */
@media (min-width: 769px) {
    .surgery-carousel-wrapper {
        padding: 0 var(--spacing-sm);
    }

    .surgery-treatments-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--spacing-xl);
        overflow: visible;
        scroll-snap-type: none;
        padding: 0;
        flex: none;
        width: 100%;
        max-width: 920px;
        margin: 0 auto;
    }

    .surgery-treatment-card {
        min-width: 0;
        max-width: none;
        flex-shrink: 1;
        scroll-snap-align: unset;
    }

    /* Center orphan last card when count is odd (IT has 5) */
    .surgery-treatment-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: calc(50% - 0.5 * var(--spacing-xl));
        justify-self: center;
        width: 100%;
    }

    .surgery-treatment-image-wrapper {
        height: 200px;
    }

    .surgery-carousel-nav-btn {
        display: none !important;
    }

    .surgery-hub-cta-wrap {
        margin-top: var(--spacing-2xl);
    }
}

/* Surgery Carousel Navigation Buttons (mobile / tablet overflow) */
.surgery-carousel-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background-color: white;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
    z-index: 5;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.surgery-carousel-prev {
    left: 0.25rem;
}

.surgery-carousel-next {
    right: 0.25rem;
}

.surgery-carousel-nav-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 8px 24px rgba(46, 134, 171, 0.35);
}

.surgery-carousel-nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* ============================================
   Wellness Section - Clean Split Layout
   ============================================ */
.wellness-section {
    padding: var(--spacing-2xl) 0;
    background-color: var(--background-medium);
    position: relative;
    overflow: hidden;
}

.wellness-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.wellness-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    aspect-ratio: 4 / 3;
}

.wellness-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.wellness-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.wellness-text {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.wellness-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.wellness-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.wellness-description {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.wellness-cta {
    margin-top: var(--spacing-xl);
    display: inline-block;
}

.beauty-view-all-card:hover {
    border-color: rgba(184, 132, 90, 0.35);
    background: linear-gradient(145deg, #fff9f0 0%, #f3e2c8 100%);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(154, 107, 63, 0.16);
}

.beauty-view-all-card .beauty-treatment-content {
    text-align: center;
    align-items: center;
}

.beauty-view-all-card .beauty-treatment-description {
    text-align: center;
}

.beauty-view-all-card .beauty-treatment-icon {
    background: linear-gradient(145deg, #e8cfa8 0%, #c9a06c 55%, #b8845a 100%);
    box-shadow: 0 8px 24px rgba(154, 107, 63, 0.22);
}

.beauty-view-all-card:hover .beauty-treatment-icon {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(154, 107, 63, 0.3);
}

/* ============================================
   Enhanced About Section - Better Layout & Spacing
   ============================================ */
.about {
    padding: var(--spacing-2xl) 0;
    background-color: var(--background-medium);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(46, 134, 171, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 182, 185, 0.06) 0%, transparent 50%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl); /* Increased from 60px */
    align-items: center;
}

.about-text {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-text .section-title {
    text-align: left;
    margin-bottom: var(--spacing-xl);
}

.about-description {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.85; /* Increased from 1.8 */
}

.about-description strong {
    color: var(--text-dark);
    font-weight: 700; /* Increased from 600 */
}

.about--teaser .about-teaser__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.about--teaser .about-image__media {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    color: var(--text-dark);
    font-weight: 500;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background-color: var(--background-light);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--primary-color);
    font-size: var(--font-size-xl);
    transition: var(--transition-smooth);
}

.feature-item:hover i {
    transform: scale(1.2);
    color: var(--secondary-color);
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-large);
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
    aspect-ratio: 3 / 4;
    min-height: 280px;
    max-height: 560px;
}

.about-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-image__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover .about-image__media {
    transform: scale(1.06);
}

/* ============================================
   Patient story videos (homepage — 9:16, premium, click-to-play)
   ============================================ */
.patient-stories {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(180deg, #fafbfc 0%, var(--background-white) 100%);
    position: relative;
    overflow: hidden;
}

.patient-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 134, 171, 0.12), rgba(255, 182, 185, 0.12), transparent);
}

.patient-stories__header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto var(--spacing-3xl);
}

.patient-stories__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
    margin: 0 0 var(--spacing-sm);
}

.patient-stories__heading {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 var(--spacing-sm);
}

.patient-stories__lede {
    margin: 0;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-light);
}

.patient-stories__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.25rem, 3vw, 2.5rem);
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.patient-stories__frame {
    position: relative;
    width: min(100%, calc(70vh * 9 / 16));
    max-height: 70vh;
    aspect-ratio: 9 / 16;
    margin-inline: auto;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(160deg, #0f1419 0%, #1c2433 50%, #121820 100%);
    box-shadow:
        0 24px 48px rgba(15, 23, 42, 0.1),
        0 0 0 1px rgba(15, 23, 42, 0.06) inset;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s ease;
}

.patient-stories__frame:hover {
    transform: translateY(-3px) scale(1.008);
    box-shadow:
        0 32px 64px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(46, 134, 171, 0.08) inset;
}

.patient-stories__thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.patient-stories__card.has-poster .patient-stories__thumb {
    opacity: 1;
}

.patient-stories__card.is-loaded .patient-stories__thumb {
    opacity: 0;
    transition: opacity 0.35s ease;
}

.patient-stories__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: auto;
    cursor: pointer;
}

.patient-stories__card.is-loaded .patient-stories__video {
    opacity: 1;
}

.patient-stories__play {
    position: absolute;
    inset: 0;
    z-index: 2;
    margin: 0;
    padding: 0;
    border: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.patient-stories__card.is-playing .patient-stories__play {
    opacity: 0;
    pointer-events: none;
}

.patient-stories__play:hover {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.patient-stories__play:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

.patient-stories__play-icon {
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.patient-stories__play:hover .patient-stories__play-icon {
    transform: scale(1.06);
}

.patient-stories__caption {
    margin: var(--spacing-md) 0 0;
    text-align: center;
    font-size: var(--font-size-xs, 0.75rem);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
}

@media (max-width: 900px) {
    .patient-stories__grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .patient-stories__frame {
        width: min(100%, calc(58vh * 9 / 16));
        max-height: 58vh;
    }
}

@media (max-width: 480px) {
    .patient-stories {
        padding: var(--spacing-3xl) 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .patient-stories__frame,
    .patient-stories__play-icon {
        transition: none;
    }

    .patient-stories__frame:hover {
        transform: none;
    }
}

.patient-stories__frame:focus-within {
    outline: none;
    box-shadow:
        0 24px 48px rgba(15, 23, 42, 0.12),
        0 0 0 2px rgba(46, 134, 171, 0.35) inset;
}

/* ============================================
   Enhanced Testimonials Section - Better Animations
   ============================================ */
.testimonials {
    padding: var(--spacing-2xl) 0;
    background-color: var(--background-light);
    position: relative;
}

.testimonials-slider {
    max-width: 950px; /* Increased from 900px */
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
    min-height: 420px; /* Increased from 400px */
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(60px) scale(0.95);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

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

.testimonial-content {
    background-color: white;
    padding: var(--spacing-3xl) var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-medium);
    text-align: center;
    transition: var(--transition-smooth);
}

.testimonial-content:hover {
    box-shadow: var(--shadow-large);
    transform: translateY(-5px);
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-xl);
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.testimonial-text {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: var(--spacing-xl);
    font-style: italic;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
}

.author-avatar {
    width: 75px; /* Increased from 70px */
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.testimonial-content:hover .author-avatar {
    transform: scale(1.1);
    border-color: var(--secondary-color);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-avatar--initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
}

.author-name {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.author-location {
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

/* No-avatar testimonial variant — name + country + flag only */
.testimonial-author--no-avatar {
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.testimonial-author--no-avatar .author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.testimonial-author--no-avatar .author-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.author-flag {
    font-size: 1.15em;
    line-height: 1;
    display: inline-block;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.testimonial-btn {
    width: 55px; /* Increased from 50px */
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background-color: white;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-size: var(--font-size-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.15) rotate(5deg);
    box-shadow: var(--shadow-medium);
}

.testimonial-dots {
    display: flex;
    gap: var(--spacing-sm);
}

.dot {
    width: 14px; /* Increased from 12px */
    height: 14px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.3;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot:hover {
    opacity: 0.6;
    transform: scale(1.2);
}

.dot.active {
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(46, 134, 171, 0.2);
}

/* ============================================
   CTA strip — animated gradient (homepage + all service landings)
   section.* + ::before/::after override later stylesheets
   ============================================ */
.cta-banner {
    padding: var(--spacing-2xl) 0;
}

section.cta-banner,
section.landing-cta,
section.service-cta,
section.procedures-cta,
section.testimonials-page-cta {
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: var(--cta-surface-gradient);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

section.cta-banner::before,
section.landing-cta::before,
section.service-cta::before,
section.procedures-cta::before,
section.testimonials-page-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        ellipse 55% 45% at 50% 50%,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 65%
    );
    animation: cta-rotate-sheen 22s linear infinite;
    z-index: 0;
    pointer-events: none;
}

section.cta-banner::after,
section.landing-cta::after,
section.service-cta::after,
section.procedures-cta::after,
section.testimonials-page-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        105deg,
        transparent,
        transparent 56px,
        rgba(255, 255, 255, 0.07) 56px,
        rgba(255, 255, 255, 0.1) 60px,
        transparent 60px
    );
    background-size: 200% 200%;
    animation: cta-streak-drift 20s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: overlay;
}

@keyframes cta-rotate-sheen {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes cta-streak-drift {
    0% {
        background-position: 0% 0%;
        opacity: 0.75;
    }
    100% {
        background-position: 100% 30%;
        opacity: 0.95;
    }
}

@media (prefers-reduced-motion: reduce) {
    section.cta-banner::before,
    section.landing-cta::before,
    section.service-cta::before,
    section.procedures-cta::before,
    section.testimonials-page-cta::before,
    section.cta-banner::after,
    section.landing-cta::after,
    section.service-cta::after,
    section.procedures-cta::after,
    section.testimonials-page-cta::after {
        animation: none;
    }

    section.cta-banner::after,
    section.landing-cta::after,
    section.service-cta::after,
    section.procedures-cta::after,
    section.testimonials-page-cta::after {
        opacity: 0.5;
    }
}

section.cta-banner .cta-content,
section.landing-cta .cta-content,
section.service-cta .cta-content,
section.procedures-cta .cta-content,
section.testimonials-page-cta .container {
    position: relative;
    z-index: 2;
}

section.testimonials-page-cta .testimonials-page-cta__lede {
    color: rgba(255, 255, 255, 0.9);
}

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

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: var(--spacing-md);
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.95;
    line-height: 1.7;
}

/* ============================================
   Enhanced Footer - Better Spacing
   ============================================ */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-title {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    width: 45px; /* Increased from 40px */
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-smooth);
    font-size: var(--font-size-lg);
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 20px rgba(46, 134, 171, 0.4);
}

.footer-heading {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
    color: white;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: var(--spacing-xs);
    transform: translateX(5px);
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
}

.footer-contact li:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact i {
    color: var(--primary-color);
    width: 24px; /* Increased from 20px */
    font-size: var(--font-size-lg);
}

.footer-hours {
    list-style: none;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
}

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

/* ============================================
   Enhanced Responsive Design - Better Mobile UX
   ============================================ */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        padding: var(--spacing-xl) var(--spacing-lg);
        box-shadow: var(--shadow-large);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: var(--spacing-lg);
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .nav-cta {
        margin-left: 0;
    }

    .hero-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.125rem);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .about-text .section-title {
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
    
    /* Wellness Section Mobile */
    .wellness-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .wellness-image {
        order: 1;
    }
    
    .wellness-text {
        order: 2;
        text-align: center;
    }
    
    .wellness-title {
        text-align: center;
    }
    
    .services-grid {
        gap: var(--spacing-lg);
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

/* Tablet and medium screens - show exactly 2 cards */
@media (min-width: 769px) and (max-width: 1024px) {
    .service-card {
        width: calc((100% - 24px) / 2);
        min-width: 340px;
        max-width: 400px;
        aspect-ratio: 3 / 4;
    }
    
    .services-grid {
        gap: 24px;
    }
    
    .service-image-wrapper {
        flex: 0 0 45%;
    }
    
    .service-content {
        flex: 0 0 55%;
    }
    
    /* Surgery Carousel Tablet — nav hidden on desktop grid; keep compact if shown */
    .surgery-carousel-wrapper {
        padding: 0;
    }
    
    .services-grid {
        gap: var(--spacing-lg);
    }
    
    .carousel-nav-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .carousel-nav-btn i {
        font-size: 20px;
    }
    
    .carousel-prev {
        left: -30px;
    }
    
    .carousel-next {
        right: -30px;
    }
    
    .beauty-treatments-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .beauty-treatment-card {
        min-height: 300px;
    }
    
    .beauty-treatment-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
        margin-bottom: var(--spacing-md);
    }

    .beauty-treatment-image {
        height: 180px;
    }

    .beauty-hero-image img {
        height: 400px;
    }
}

/* Large screens - show exactly 4 cards */
@media (min-width: 1025px) {
    .service-card {
        width: calc((100% - 72px) / 4);
        min-width: 300px;
        max-width: 360px;
        aspect-ratio: 3 / 4;
    }
    
    .services-grid {
        gap: 24px;
    }
}

@media (min-width: 1400px) {
    .services-grid {
        gap: 24px;
    }
    
    .service-card {
        min-width: 320px;
        max-width: 380px;
    }
}

/* Extra large screens - show 4 cards */
@media (min-width: 1800px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 2000px;
    }
    
    .beauty-treatments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
        max-width: 1400px;
    }
    
    .beauty-treatment-card {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        min-height: 550px; /* Increased from 500px */
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.75rem);
        gap: var(--spacing-xxs);
    }

    .hero-phrase {
        padding: 0;
    }

    .hero-phrase:not(:last-child)::after {
        bottom: -4px;
        font-size: 0.35em;
        opacity: 0.3;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.25rem);
        line-height: 1.6;
    }

    .section-title {
        font-size: clamp(1.75rem, 5vw, 2rem);
    }

    .service-card {
        width: calc(100% - 24px);
        min-width: 300px;
        max-width: 100%;
        aspect-ratio: 3 / 4;
    }
    
    .service-content {
        padding: var(--spacing-lg) var(--spacing-xl);
    }
    
    .service-image-wrapper {
        flex: 0 0 45%;
    }
    
    .service-content {
        flex: 0 0 55%;
    }
    
    .services-grid {
        gap: var(--spacing-md);
    }
    
    .carousel-nav-btn {
        width: 56px;
        height: 56px;
        font-size: 18px;
    }
    
    .carousel-nav-btn i {
        font-size: 18px;
    }
    
    .carousel-prev {
        left: -28px;
    }
    
    .carousel-next {
        right: -28px;
    }
    
    .services-carousel-wrapper {
        gap: var(--spacing-sm);
        padding: var(--spacing-lg) var(--spacing-xl);
    }
    
    .service-image-wrapper {
        flex: 0 0 45%;
    }
    
    .service-content {
        flex: 0 0 55%;
        padding: var(--spacing-sm) var(--spacing-md);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    
    .service-title {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: var(--spacing-xxs);
        flex-shrink: 0;
    }
    
    .service-description {
        font-size: clamp(0.75rem, 2.5vw, 0.8rem);
        margin-bottom: var(--spacing-xs);
        line-height: 1.4;
        flex-grow: 1;
        min-height: 0;
    }
    
    .service-link {
        padding: var(--spacing-xxs) var(--spacing-md);
        font-size: clamp(0.75rem, 2.5vw, 0.8rem);
        margin-top: auto;
        flex-shrink: 0;
    }
    
    .service-card {
        min-width: 300px;
    }
    
    .service-icon-badge {
        width: 60px;
        height: 60px;
        font-size: 24px;
        top: var(--spacing-md);
        right: var(--spacing-md);
    }
    
    /* Before/After Section Mobile */
    .before-after-section {
        padding: var(--spacing-3xl) 0;
    }
    
    .comparisons-grid {
        grid-template-columns: 1fr; /* Stack vertically on mobile */
        gap: var(--spacing-lg);
        padding: var(--spacing-sm);
    }
    
    .comparison-container {
        padding: 0;
    }
    
    .comparison-wrapper {
        aspect-ratio: 3 / 4; /* Taller on mobile */
    }
    
    .slider-button {
        width: 44px;
        height: 44px;
    }
    
    .slider-button i {
        font-size: 12px;
    }
    
    .comparison-label {
        font-size: var(--font-size-xs);
        padding: 6px var(--spacing-sm);
        top: var(--spacing-sm);
    }
    
    .before-label {
        left: var(--spacing-sm);
    }
    
    .after-label {
        right: var(--spacing-sm);
    }
    
    .carousel-controls {
        gap: var(--spacing-md);
        margin-top: var(--spacing-xl);
    }
    
    .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: var(--font-size-base);
    }
    
    /* Dental Service Section Mobile */
    .dental-service-section {
        padding: var(--spacing-3xl) 0;
    }
    
    .dental-header {
        margin-bottom: var(--spacing-2xl);
    }
    
    .dental-stats-banner {
        flex-direction: column;
        gap: var(--spacing-lg);
        padding: var(--spacing-lg);
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .dental-features-grid-new {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .dental-feature-card-new {
        min-height: auto;
    }
    
    .feature-image-wrapper {
        height: 200px;
    }
    
    .dental-feature-title-new {
        padding: var(--spacing-lg) var(--spacing-xl) 0;
    }

    .dental-feature-description-new {
        padding: var(--spacing-sm) var(--spacing-xl) var(--spacing-xl);
    }
    
    .albania-advantage-card {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-xl);
    }
    
    .advantage-icon-new {
        width: 70px;
        height: 70px;
        font-size: 28px;
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-sm);
    }
    
    .testimonial-quote-text {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-sm);
    }
    
    .testimonial-author {
        font-size: var(--font-size-xs);
    }
    
    .dental-title {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }
    
    .dental-subtitle {
        font-size: clamp(1.125rem, 3vw, 1.5rem);
    }
    
    .dental-features-grid-new {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .dental-feature-card-new {
        min-height: auto;
    }
    
    .feature-image-wrapper {
        height: 160px;
    }
    
    .albania-advantage-card {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-xl);
    }
    
    .advantage-icon-new {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    /* Beauty Aesthetics Section Mobile */
    .beauty-aesthetics-section {
        padding: var(--spacing-3xl) 0;
    }

    .beauty-hero-image {
        margin: var(--spacing-xl) auto var(--spacing-2xl);
        border-radius: var(--radius-lg);
    }

    .beauty-hero-image img {
        height: 300px;
    }

    .beauty-treatments-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0;
    }

    .beauty-treatment-card {
        min-height: auto;
        padding: var(--spacing-lg);
    }

    .beauty-treatment-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
        margin-bottom: var(--spacing-lg);
    }

    .beauty-treatment-image {
        width: 100%;
        height: 180px;
        margin: 0 0 var(--spacing-md);
    }

    .beauty-treatment-content {
        text-align: left;
        align-items: stretch;
        min-width: 0;
    }

    .beauty-view-all-card .beauty-treatment-content {
        text-align: center;
    }

    .beauty-treatment-title {
        font-size: var(--font-size-lg);
    }

    .beauty-treatment-description {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-md);
    }

    .beauty-treatment-link {
        align-self: center;
    }
    
    /* Surgery Section Mobile — snap carousel */
    .surgery-carousel-wrapper {
        padding: 0;
        margin-left: calc(-1 * var(--spacing-md, 1rem));
        margin-right: calc(-1 * var(--spacing-md, 1rem));
        padding-left: var(--spacing-md, 1rem);
        padding-right: var(--spacing-md, 1rem);
    }

    .surgery-treatments-grid {
        padding-right: 2.5rem;
        gap: 0.85rem;
    }
    
    .surgery-carousel-nav-btn {
        width: 44px;
        height: 44px;
        font-size: 0.9rem;
    }
    
    .surgery-carousel-prev {
        left: 0.15rem;
    }
    
    .surgery-carousel-next {
        right: 0.15rem;
    }
    
    .surgery-treatment-card {
        min-width: min(78vw, 260px);
        max-width: 280px;
        padding: var(--spacing-md);
    }
    
    .surgery-treatment-image-wrapper {
        height: 150px;
        margin-bottom: var(--spacing-sm);
    }
    
    .surgery-treatment-title {
        font-size: 1.05rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .surgery-treatment-description {
        font-size: 0.875rem;
    }

    .testimonial-content {
        padding: var(--spacing-xl) var(--spacing-lg);
    }

    .cta-title {
        font-size: clamp(1.75rem, 5vw, 2rem);
    }

    .cta-subtitle {
        font-size: var(--font-size-lg);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .services,
    .about,
    .testimonials {
        padding: var(--spacing-3xl) 0;
    }
    
    .cta-banner {
        padding: var(--spacing-3xl) 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .btn {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: var(--font-size-sm);
    }

    .btn-hero,
    .btn-cta {
        font-size: var(--font-size-base);
        padding: var(--spacing-md) var(--spacing-xl);
    }

    .service-card {
        aspect-ratio: 3 / 4;
        min-width: 300px;
    }
    
    .service-image-wrapper {
        flex: 0 0 45%;
    }
    
    .service-content {
        flex: 0 0 55%;
        padding: var(--spacing-md) var(--spacing-lg);
        overflow: hidden;
    }
    
    .service-icon-badge {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .service-title {
        font-size: var(--font-size-base);
    }
    
    .service-description {
        font-size: var(--font-size-xs);
    }
    
    .section-header {
        margin-bottom: var(--spacing-2xl);
    }
    
    .testimonial-controls {
        gap: var(--spacing-md);
    }
    
    .testimonial-btn {
        width: 45px;
        height: 45px;
        font-size: var(--font-size-base);
    }
    
    /* Before/After Section Small Mobile */
    .comparison-wrapper {
        aspect-ratio: 2 / 3; /* Even taller on small screens */
    }
    
    .slider-button {
        width: 40px;
        height: 40px;
    }
    
    .slider-button i {
        font-size: 11px;
    }
    
    .comparison-label {
        font-size: 10px;
        padding: 4px var(--spacing-xs);
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-sm);
    }
    
    /* Dental Service Section Small Mobile */
    .dental-service-section {
        padding: var(--spacing-2xl) 0;
    }
    
    .dental-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }
    
    .dental-subtitle {
        font-size: clamp(1rem, 3vw, 1.25rem);
    }
    
    .dental-stats-banner {
        padding: var(--spacing-md);
    }
    
    .dental-stats-banner .stat-number {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }
    
    .dental-feature-title-new {
        font-size: clamp(1.125rem, 3vw, 1.25rem);
        padding: var(--spacing-md) var(--spacing-lg) 0;
    }
    
    .dental-feature-description-new {
        font-size: var(--font-size-sm);
        padding: var(--spacing-sm) var(--spacing-lg) var(--spacing-lg);
    }
    
    .feature-image-wrapper {
        height: 180px;
    }
    
    .albania-advantage-card {
        padding: var(--spacing-lg);
    }
    
    .advantage-icon-new {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .advantage-title-new {
        font-size: clamp(1.25rem, 3vw, 1.5rem);
    }
    
    .advantage-text-new {
        font-size: var(--font-size-sm);
    }
}

/* ============================================
   Scroll Reveal Animation Classes
   ============================================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   Loading State - Professional Feel
   ============================================ */
.page-loading {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.page-loaded {
    opacity: 1;
}

/* ============================================
   Ripple Effect for Buttons
   ============================================ */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: rippleAnimation 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleAnimation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ============================================
   Scroll Progress Bar
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px rgba(46, 134, 171, 0.3);
    width: 0;
}

/* ============================================
   Home — Why us (warm panel + gold icon badges)
   ============================================ */
.home-why-choose {
    position: relative;
    padding: clamp(1.5rem, 3vw, 2rem) 0;
    margin: 0;
    background: transparent;
}

.home-why-choose__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

.home-why-choose__media {
    margin: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 24px 56px rgba(120, 80, 40, 0.16),
        0 0 0 1px rgba(184, 132, 90, 0.12);
}

.home-why-choose__media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.home-why-choose__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #b8845a;
    margin: 0 0 var(--spacing-sm);
}

.home-why-choose__title {
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 700;
    color: #2c241d;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 var(--spacing-md);
    max-width: 22ch;
}

.home-why-choose__intro {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #4a4038;
    margin: 0 0 var(--spacing-xl);
    max-width: 52ch;
}

.home-why-choose__intro strong {
    color: #2c241d;
    font-weight: 600;
}

.home-why-choose__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.home-why-choose__item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
    text-align: left;
    transition: transform 0.25s ease;
}

.home-why-choose__item:hover {
    transform: translateX(4px);
}

.home-why-choose__item:hover .home-why-choose__iconbox {
    box-shadow:
        0 12px 28px rgba(154, 107, 63, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.home-why-choose__iconbox {
    flex-shrink: 0;
    width: 3.75rem;
    height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(184, 132, 90, 0.35);
    border-radius: 14px;
    background: linear-gradient(145deg, #fff9f0 0%, #f3e2c8 45%, #e8cfa8 100%);
    color: #9a6b3f;
    font-size: 1.25rem;
    box-shadow:
        0 8px 20px rgba(154, 107, 63, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.home-why-choose__item-text h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: #2c241d;
    margin: 0 0 0.35rem;
    line-height: 1.3;
}

.home-why-choose__item-text p {
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.65;
    color: #6b5a4a;
    max-width: 36em;
}

@media (max-width: 900px) {
    .home-why-choose__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .home-why-choose__title {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .home-why-choose {
        padding: var(--spacing-md) 0;
    }

    .home-why-choose__list {
        gap: var(--spacing-lg);
    }

    .home-why-choose__iconbox {
        width: 3.25rem;
        height: 3.25rem;
        font-size: 1.1rem;
        border-radius: 12px;
    }

    .home-why-choose__item:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-why-choose__item,
    .home-why-choose__iconbox {
        transition: none;
    }

    .home-why-choose__item:hover {
        transform: none;
    }
}

/* ============================================
   Trust Badges Header (Integrated in Services Section)
   ============================================ */
.trust-badges-header {
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    position: relative;
    text-align: center;
}

/* Trust Badges Title */
.trust-badges-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-2xl);
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.trust-badges-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-full);
}

/* Subtle decorative line above trust badges */
.trust-badges-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-full);
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-badge-item {
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
    transition: var(--transition-smooth);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(46, 134, 171, 0.15);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.trust-badge-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--primary-color);
}

.trust-badge-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 134, 171, 0.3);
    transition: var(--transition-smooth);
}

.trust-badge-item:hover .trust-badge-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(46, 134, 171, 0.4);
}

.trust-badge-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.trust-badge-text {
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

/* ============================================
   Floating CTA Button
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-full);
    box-shadow: 0 8px 30px rgba(46, 134, 171, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    text-decoration: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.floating-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(46, 134, 171, 0.5);
}

.floating-cta i {
    font-size: var(--font-size-lg);
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: var(--spacing-xl);
    left: var(--spacing-xl);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(46, 134, 171, 0.3);
    z-index: 999;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    font-size: var(--font-size-lg);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(46, 134, 171, 0.4);
}

.back-to-top:active {
    transform: translateY(-2px);
}

/* ============================================
   Enhanced Service Card Hover Effects
   ============================================ */
.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

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

.service-image-wrapper {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-hero-image {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-link {
    color: var(--primary-color);
    transform: translateX(5px);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(8px);
}

/* ============================================
   Section Dividers
   ============================================ */
.beauty-aesthetics-section::before,
.before-after-section::before,
.dental-service-section::before,
.wellness-section::before,
.surgery-section::before,
.about::before,
.testimonials::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(46, 134, 171, 0.3), 
        rgba(255, 182, 185, 0.3), 
        transparent
    );
    margin: 0 auto var(--spacing-2xl);
    max-width: 200px;
}

/* Enhanced Button Animations */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

.btn-hero:hover::after {
    width: 400px;
    height: 400px;
}

/* Enhanced Focus States for Accessibility */
.btn:focus-visible,
.floating-cta:focus-visible,
.back-to-top:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

/* Image Loading State */
img[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

/* Enhanced Surgery Treatment Card Hover */
.surgery-treatment-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.surgery-treatment-card:hover .surgery-treatment-image {
    transform: scale(1.08);
}

.surgery-treatment-image {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.surgery-treatment-card:hover .surgery-treatment-link {
    color: var(--primary-color);
    transform: translateX(5px);
}

.surgery-treatment-link i {
    transition: transform 0.3s ease;
}

.surgery-treatment-card:hover .surgery-treatment-link i {
    transform: translateX(8px);
}

/* ============================================
   Responsive Styles for New Elements
   ============================================ */
@media (max-width: 768px) {
    .trust-badges-header {
        padding: var(--spacing-2xl) 0 var(--spacing-xl);
        margin-bottom: var(--spacing-xl);
    }
    
    .trust-badges-title {
        font-size: clamp(1.75rem, 4vw, 2.25rem);
        margin-bottom: var(--spacing-xl);
    }
    
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .trust-badge-item {
        padding: var(--spacing-md);
    }
    
    .trust-badge-icon {
        width: 60px;
        height: 60px;
        font-size: var(--font-size-xl);
    }
    
    .trust-badge-title {
        font-size: var(--font-size-base);
    }
    
    .trust-badge-text {
        font-size: var(--font-size-xs);
    }
    
    .floating-cta {
        bottom: var(--spacing-lg);
        right: var(--spacing-lg);
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: var(--font-size-sm);
    }
    
    .floating-cta span {
        display: none;
    }
    
    .floating-cta i {
        font-size: var(--font-size-lg);
    }
    
    .back-to-top {
        bottom: var(--spacing-lg);
        left: var(--spacing-lg);
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .trust-badges-header {
        padding: var(--spacing-xl) 0 var(--spacing-lg);
        margin-bottom: var(--spacing-lg);
    }
    
    .trust-badges-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: var(--spacing-lg);
    }
    
    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .trust-badge-icon {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-lg);
    }
    
    .floating-cta {
        bottom: var(--spacing-md);
        right: var(--spacing-md);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
    
    .back-to-top {
        bottom: calc(var(--spacing-md) + 60px);
        left: var(--spacing-md);
        width: 40px;
        height: 40px;
        font-size: var(--font-size-base);
    }
    
    .service-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .surgery-treatment-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
}

/* ============================
   Dental Procedure Section
   (Reusable: Emax, Zirconia, Veneers, etc.)
   ============================ */
.dental-procedure {
    padding: var(--spacing-xxl, 80px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.dental-procedure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl, 64px);
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.dental-procedure-media {
    border-radius: var(--radius-xl, 16px);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(30, 80, 120, 0.12);
}

.dental-procedure-media:not(.dental-procedure-media--stacked) {
    aspect-ratio: 4 / 3;
}

.dental-procedure-media:not(.dental-procedure-media--stacked) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dental-procedure-media:not(.dental-procedure-media--stacked):hover img {
    transform: scale(1.04);
}

/* Stacked variant — two images vertically, fills column height */
.dental-procedure-media--stacked {
    display: grid;
    grid-template-rows: 1.15fr 1fr;
    gap: 14px;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    height: 100%;
    min-height: 480px;
}

.dental-procedure-figure {
    margin: 0;
    border-radius: var(--radius-xl, 16px);
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(30, 80, 120, 0.12);
    position: relative;
    background: #f0f4f8;
}

.dental-procedure-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dental-procedure-figure:hover img {
    transform: scale(1.04);
}

.dental-procedure-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md, 16px);
}

.dental-procedure-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-color, #3a8bbf);
    background: rgba(58, 139, 191, 0.08);
    padding: 6px 14px;
    border-radius: 999px;
    align-self: flex-start;
}

.dental-procedure-title {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark, #1c2b3a);
    margin: 0;
}

.dental-procedure-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-medium, #4a5568);
    margin: 0;
    font-weight: 500;
}

.dental-procedure-body {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-medium, #5a6878);
    margin: 0;
}

.dental-procedure-benefits {
    list-style: none;
    padding: 0;
    margin: var(--spacing-sm, 8px) 0 0;
    display: grid;
    gap: var(--spacing-sm, 12px);
}

.dental-procedure-benefits li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-medium, #4a5568);
}

.dental-procedure-benefits i {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(58, 139, 191, 0.12), rgba(58, 139, 191, 0.04));
    color: var(--primary-color, #3a8bbf);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.dental-procedure-benefits strong {
    color: var(--text-dark, #1c2b3a);
    font-weight: 600;
}

.dental-procedure-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: var(--spacing-md, 16px);
    padding: var(--spacing-md, 18px);
    background: rgba(58, 139, 191, 0.05);
    border-radius: var(--radius-lg, 12px);
    border: 1px solid rgba(58, 139, 191, 0.1);
}

.dental-spec {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dental-spec-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light, #8794a3);
}

.dental-spec-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark, #1c2b3a);
}

.dental-procedure-content .btn {
    align-self: flex-start;
    margin-top: var(--spacing-sm, 12px);
}

@media (max-width: 900px) {
    .dental-procedure-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl, 32px);
    }

    .dental-procedure-content .btn,
    .dental-procedure-eyebrow {
        align-self: center;
    }

    .dental-procedure-content {
        text-align: center;
        align-items: center;
    }

    .dental-procedure-benefits li {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .dental-procedure {
        padding: var(--spacing-xl, 48px) 0;
    }

    .dental-procedure-specs {
        grid-template-columns: 1fr;
    }
}

/* -- Emax section enhancements ------------------------ */

/* Before / After labels on split-photo figures */
.dental-figure-label {
    position: absolute;
    left: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0, 0, 0, 0.46);
    padding: 4px 11px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: none;
    z-index: 2;
}

.dental-figure-label--before { top: 12px; }
.dental-figure-label--after  { top: calc(50% + 10px); }

/* Spec label icons */
.dental-spec-label i {
    margin-right: 4px;
    font-size: 0.65rem;
    opacity: 0.65;
}

/* Savings callout banner */
.dental-savings-callout {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.08), rgba(46, 134, 171, 0.03));
    border: 1px solid rgba(46, 134, 171, 0.18);
    border-radius: var(--radius-md, 12px);
    padding: 16px 18px;
}

.dental-savings-callout > i {
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--primary-color, #2E86AB);
    margin-top: 2px;
}

.dental-savings-callout > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 0.92rem;
    color: var(--text-medium, #4a5568);
    line-height: 1.5;
}

.dental-savings-callout strong {
    color: var(--primary-dark, #1E6B8A);
    font-weight: 700;
}

.dental-savings-callout span {
    font-size: 0.82rem;
    color: var(--text-light, #6C757D);
}

/* CTA row (main button + WhatsApp) */
.dental-cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.dental-cta-row .btn {
    align-self: center;
}

/* WhatsApp button */
.dental-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1da851;
    text-decoration: none;
    border: 1.5px solid rgba(37, 211, 102, 0.38);
    border-radius: var(--radius-full, 9999px);
    padding: 10px 20px;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.dental-wa-btn:hover {
    background: rgba(37, 211, 102, 0.07);
    border-color: #25D366;
    color: #17923f;
    transform: translateY(-1px);
}

.dental-wa-btn i { font-size: 1.05rem; }

@media (max-width: 900px) {
    .dental-cta-row { justify-content: center; }
}

/* -- Emax image carousel ----------------------------- */
.emax-gallery {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.emax-gallery__track {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-xl, 20px);
    overflow: hidden;
    box-shadow: var(--shadow-large);
    background: #f0f4f8;
}

.emax-gallery__slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.emax-gallery__slide--active {
    opacity: 1;
    pointer-events: auto;
}

.emax-gallery__slide img,
.emax-gallery__slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.emax-gallery__slide--video {
    background: #000;
}

/* Controls row */
.emax-gallery__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-shrink: 0;
}

.emax-gallery__arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(46, 134, 171, 0.3);
    background: transparent;
    color: var(--primary-color, #2E86AB);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.emax-gallery__arrow:hover {
    background: var(--primary-color, #2E86AB);
    border-color: var(--primary-color, #2E86AB);
    color: #fff;
    transform: scale(1.08);
}

.emax-gallery__dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.emax-gallery__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: rgba(46, 134, 171, 0.22);
    cursor: pointer;
    padding: 0;
    transition: var(--transition-smooth);
}

.emax-gallery__dot--active {
    background: var(--primary-color, #2E86AB);
    transform: scale(1.3);
}

.emax-gallery__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-light, #6C757D);
    line-height: 1.4;
    text-align: center;
    padding: 0 8px;
}

.emax-gallery__trust i {
    color: var(--primary-color, #2E86AB);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.emax-gallery__trust strong {
    color: var(--text-medium, #4a5568);
    font-weight: 600;
}

/* -- Emax patient testimonial card ------------------- */
.dental-procedure-testimonial {
    position: relative;
    background: #fff;
    border-radius: var(--radius-xl, 16px);
    box-shadow: 0 14px 36px rgba(30, 80, 120, 0.12);
    padding: 28px 28px 24px;
    margin: 0;
    overflow: hidden;
}

.dental-procedure-testimonial__quote-mark {
    position: absolute;
    top: -10px;
    left: 16px;
    font-size: 7rem;
    line-height: 1;
    color: var(--primary-color, #2E86AB);
    opacity: 0.07;
    font-family: Georgia, serif;
    pointer-events: none;
    user-select: none;
}

.dental-procedure-testimonial__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}

.dental-procedure-testimonial__stars i {
    color: #f5b400;
    font-size: 0.9rem;
}

.dental-procedure-testimonial__text {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-dark, #1c2b3a);
    margin: 0 0 16px;
    position: relative;
    z-index: 1;
}

.dental-procedure-testimonial__cite {
    display: block;
    font-style: normal;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-light, #6C757D);
    letter-spacing: 0.02em;
}

@media (max-width: 900px) {
    .dental-procedure-testimonial {
        padding: 22px 20px 20px;
    }
    .dental-procedure-testimonial__text {
        font-size: 0.98rem;
    }
}

/* -- Emax "by the numbers" stat tile ---------------- */
.dental-procedure-stats {
    display: flex;
    align-items: stretch;
    margin: 0;
    padding: 18px 20px;
    background: rgba(58, 139, 191, 0.05);
    border: 1px solid rgba(58, 139, 191, 0.1);
    border-radius: var(--radius-lg, 12px);
    gap: 0;
}

.dental-procedure-stats__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
    padding: 6px 12px;
    position: relative;
}

/* Vertical divider between items */
.dental-procedure-stats__item + .dental-procedure-stats__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(58, 139, 191, 0.18);
}

.dental-procedure-stats__number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary-color, #2E86AB);
    letter-spacing: -0.01em;
}

.dental-procedure-stats__label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light, #6C757D);
    line-height: 1.3;
    margin: 0;
}

@media (max-width: 600px) {
    .dental-procedure-stats {
        flex-direction: column;
        gap: 0;
        padding: 16px;
    }
    .dental-procedure-stats__item {
        padding: 12px 8px;
    }
    .dental-procedure-stats__item + .dental-procedure-stats__item::before {
        left: 15%;
        top: 0;
        width: 70%;
        height: 1px;
    }
}

/* -- Emax full-width CTA row ------------------------- */
.dental-procedure-cta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl, 40px);
    padding: 0 var(--spacing-md);
}

/* Shared size — overrides .btn and .btn-primary via higher specificity */
.dental-procedure-cta-row .dental-procedure-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 240px;
    min-height: 56px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.dental-procedure-cta--whatsapp {
    background: #25D366;
    color: #ffffff;
    border: 2px solid #25D366;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);
}

.dental-procedure-cta--whatsapp:hover {
    background: #1ebe57;
    border-color: #1ebe57;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

.dental-procedure-cta--whatsapp i {
    font-size: 1.2rem;
}

@media (max-width: 600px) {
    .dental-procedure-cta-row {
        flex-direction: column;
        gap: 12px;
    }
    .dental-procedure-cta-row .dental-procedure-cta {
        width: 100%;
        min-width: 0;
    }
}

/* ============================================
   Premium Materials Section
   ============================================ */
.premium-materials {
    background: #fafaf7;
    padding: 96px 0;
    border-top: 1px solid rgba(139, 115, 75, 0.12);
    border-bottom: 1px solid rgba(139, 115, 75, 0.12);
}

.pm-grid {
    display: grid;
    grid-template-columns: 45fr 55fr;
    gap: 64px;
    align-items: center;
}

/* --- Image column --- */
.pm-image-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
    /* drop-shadow follows the mask shape, unlike box-shadow which follows border-box */
    filter: drop-shadow(0 24px 60px rgba(80, 60, 30, 0.18)) drop-shadow(0 4px 14px rgba(80, 60, 30, 0.08));
}

.pm-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    /* Tooth-row mask: 10 rounded bumps along the top, straight rectangular bottom */
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 500' preserveAspectRatio='none'><path fill='white' d='M 0 7 Q 5 0 10 7 Q 15 0 20 7 Q 25 0 30 7 Q 35 0 40 7 Q 45 0 50 7 Q 55 0 60 7 Q 65 0 70 7 Q 75 0 80 7 Q 85 0 90 7 Q 95 0 100 7 L 100 500 L 0 500 Z'/></svg>");
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 500' preserveAspectRatio='none'><path fill='white' d='M 0 7 Q 5 0 10 7 Q 15 0 20 7 Q 25 0 30 7 Q 35 0 40 7 Q 45 0 50 7 Q 55 0 60 7 Q 65 0 70 7 Q 75 0 80 7 Q 85 0 90 7 Q 95 0 100 7 L 100 500 L 0 500 Z'/></svg>");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

/* --- Simple frame variant (used on fillers.html — no tooth mask) --- */
.pm-image-wrap--simple {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pm-image-wrap--simple img {
    border-radius: 22px !important;
    border: 1.5px solid rgba(184, 132, 90, 0.22) !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.pm-image-wrap--simple:hover {
    transform: translateY(-6px);
}

.pm-image-wrap--simple:hover img {
    transform: scale(1.03);
}

.pm-image-wrap--simple .pm-tooth-ornament,
.pm-image-wrap--simple .pm-badge {
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s ease;
}

.pm-image-wrap--simple:hover .pm-tooth-ornament {
    transform: translate(-3px, -3px) rotate(-6deg);
    box-shadow: 0 8px 22px rgba(80, 60, 30, 0.18);
}

.pm-image-wrap--simple:hover .pm-badge {
    transform: translate(3px, 3px);
    box-shadow: 0 8px 22px rgba(80, 60, 30, 0.18);
}

/* Reposition the syringe ornament for the simple variant (no mask = no top scallop) */
.pm-image-wrap--simple .pm-tooth-ornament {
    top: 22px;
}

/* Tooth-silhouette ornament — top-left, balances CE badge in bottom-right */
.pm-tooth-ornament {
    position: absolute;
    top: 38px;
    left: 22px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 252, 247, 0.94);
    border: 1.5px solid #e8e2d4;
    box-shadow: 0 4px 14px rgba(80, 60, 30, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6b4a30;
    font-size: 16px;
    pointer-events: none;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2;
}

.pm-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #fff;
    color: #5c4a1e;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 999px;
    border: 1.5px solid #e8e2d4;
    box-shadow: 0 4px 14px rgba(80, 60, 30, 0.12);
    pointer-events: none;
}

/* --- Content column --- */
.pm-eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7c6235;
    margin: 0 0 14px;
}

.pm-heading {
    font-size: clamp(1.55rem, 2.4vw, 2.1rem);
    font-weight: 700;
    line-height: 1.28;
    color: #1a2332;
    margin: 0 0 20px;
}

.pm-anchor {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(124, 98, 53, 0.45);
    text-underline-offset: 4px;
    transition: text-decoration-color 0.2s;
}
.pm-anchor:hover {
    text-decoration-color: #7c6235;
}

.pm-lead {
    font-size: 1.025rem;
    line-height: 1.72;
    color: #4a5568;
    margin: 0 0 36px;
}

/* --- 2×2 pillar grid --- */
.pm-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.pm-pillar {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid rgba(139, 115, 75, 0.13);
    border-radius: 14px;
    padding: 18px 16px;
    box-shadow: 0 2px 10px rgba(80, 60, 30, 0.05);
}

.pm-pillar__icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: rgba(124, 98, 53, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c6235;
    font-size: 1rem;
}

.pm-pillar__body {
    min-width: 0;
}

.pm-pillar__title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1a2332;
    margin: 0 0 4px;
}

.pm-pillar__text {
    font-size: 0.82rem;
    line-height: 1.55;
    color: #64748b;
    margin: 0;
}

/* --- Trust strip pills --- */
.pm-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pm-trust-strip li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #5c4a1e;
    background: rgba(124, 98, 53, 0.08);
    border: 1px solid rgba(124, 98, 53, 0.18);
    border-radius: 999px;
    padding: 6px 14px;
    letter-spacing: 0.02em;
}

.pm-trust-strip li i {
    color: #7c6235;
    font-size: 0.78rem;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .pm-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pm-image-col {
        order: -1; /* image above content when stacked */
        max-width: 560px;
        margin: 0 auto;
    }
    .pm-tooth-ornament {
        top: 26px;
        left: 16px;
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .premium-materials {
        padding: 64px 0;
    }
    .pm-pillars {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .pm-heading {
        font-size: 1.45rem;
    }
}

/* ============================================
   Featured Procedures / Dental Services Grid
   ============================================ */
.dental-services {
    background: #ffffff;
    padding: 88px 0 96px;
}

.dental-services-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-color, #3a8bbf);
    background: rgba(58, 139, 191, 0.08);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.dental-services .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 52px;
}

.dental-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Card (the <a> is the card) --- */
.dental-service-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: var(--radius-xl, 16px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dental-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(58, 139, 191, 0.14);
    border-color: rgba(58, 139, 191, 0.18);
    text-decoration: none;
}

/* --- Card image area --- */
.dental-service-card-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: var(--radius-xl, 16px) var(--radius-xl, 16px) 0 0;
}

.dental-service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* --- Card body --- */
.dental-service-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dental-service-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark, #1c2b3a);
    margin: 0 0 8px;
    line-height: 1.3;
}

.dental-service-card-description {
    font-size: 0.92rem;
    color: var(--text-medium, #64748b);
    line-height: 1.6;
    margin: 0 0 auto;
    padding-bottom: 16px;
}

.dental-service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-color, #3a8bbf);
    margin-top: 12px;
}

.dental-service-card-link i {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dental-service-card:hover .dental-service-card-link i {
    transform: translateX(4px);
}

/* --- Responsive --- */
@media (max-width: 1100px) {
    .dental-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .dental-services {
        padding: 64px 0 72px;
    }
    .dental-services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    /* .dental-service-card-image height removed — aspect-ratio handles all breakpoints */
}

/* ============================================
   Dental Services Carousel Chrome
   ============================================ */
.dental-services-carousel {
    position: relative;
}

/* Track — horizontal flex, scroll-snap, no scrollbar */
.dental-services-carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0px;
    padding-bottom: 8px;
    /* Hide scrollbar */
    scrollbar-width: none;
    outline: none;
}
.dental-services-carousel-track::-webkit-scrollbar {
    display: none;
}

/* Card widths inside carousel — 3 visible on desktop */
.dental-services-carousel-track .dental-service-card {
    flex: 0 0 calc((100% - 48px) / 3);
    scroll-snap-align: start;
}

/* Prev / Next arrow buttons */
.dental-services-carousel-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color, #3a8bbf);
    font-size: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    z-index: 2;
}
.dental-services-carousel-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.dental-services-carousel-btn--prev { left: -28px; }
.dental-services-carousel-btn--next { right: -28px; }
.dental-services-carousel-btn[hidden] { display: none; }

/* Pagination dots */
.dental-services-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.dental-services-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s ease, width 0.25s ease, border-radius 0.25s ease;
}
.dental-services-carousel-dot.is-active {
    background: var(--primary-color, #3a8bbf);
    width: 22px;
    border-radius: 999px;
}

/* Tablet: 2 cards visible */
@media (max-width: 1099px) {
    .dental-services-carousel-track .dental-service-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
    .dental-services-carousel-btn--prev { left: 8px; }
    .dental-services-carousel-btn--next { right: 8px; }
}

/* Mobile: 1 card + peek */
@media (max-width: 699px) {
    .dental-services-carousel-track .dental-service-card {
        flex: 0 0 calc(100% - 32px);
    }
    .dental-services-carousel-btn {
        display: none;
    }
}

/* Few cards (≤2): center on desktop when all visible */
.dental-services-carousel--few .dental-services-carousel-track {
    justify-content: center;
    gap: clamp(20px, 3vw, 32px);
}

@media (min-width: 1100px) {
    .dental-services-carousel--few .dental-services-carousel-track .dental-service-card {
        flex: 0 0 360px;
        max-width: 380px;
    }
}

/* Reduced motion: disable smooth scrolling */
@media (prefers-reduced-motion: reduce) {
    .dental-services-carousel-track {
        scroll-behavior: auto;
    }
}

/* ============================
   Veneers Cinematic Section
   Dark, premium "punctuation" beat
   ============================ */
.veneers-cinematic {
    position: relative;
    padding: clamp(64px, 9vw, 120px) 0;
    background: #1a1d22;
    color: #f5f1ea;
    overflow: hidden;
    isolation: isolate;
}

.veneers-cinematic-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 50% at 30% 50%, rgba(212, 168, 110, 0.10), transparent 70%),
        radial-gradient(40% 40% at 80% 30%, rgba(60, 90, 120, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.veneers-cinematic .container {
    position: relative;
    z-index: 1;
}

.veneers-cinematic-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md, 16px);
}

.veneers-cinematic-media {
    position: relative;
    border-radius: var(--radius-xl, 16px);
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.04);
    aspect-ratio: 4 / 5;
    background: #000;
}

.veneers-cinematic-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.veneers-cinematic-mute,
.veneers-cinematic-play {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #f5f1ea;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.2s ease;
    z-index: 2;
    padding: 0;
}

.veneers-cinematic-mute:hover,
.veneers-cinematic-play:hover {
    background: rgba(0, 0, 0, 0.75);
}

.veneers-cinematic-media:hover .veneers-cinematic-mute,
.veneers-cinematic-media:hover .veneers-cinematic-play,
.veneers-cinematic-media:focus-within .veneers-cinematic-mute,
.veneers-cinematic-media:focus-within .veneers-cinematic-play {
    opacity: 1;
}

.veneers-cinematic-mute {
    top: 14px;
    right: 14px;
}

.veneers-cinematic-play {
    bottom: 14px;
    right: 14px;
}

.veneers-cinematic-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md, 16px);
}

.veneers-cinematic-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #d4a86e;
    align-self: flex-start;
}

.veneers-cinematic-title {
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #fbf8f2;
    margin: 0;
}

.veneers-cinematic-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d8d2c5;
    margin: 0;
    font-weight: 500;
}

.veneers-cinematic-body {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #b3ad9f;
    margin: 0;
}

.veneers-cinematic-benefits {
    list-style: none;
    padding: 0;
    margin: var(--spacing-sm, 8px) 0 0;
    display: grid;
    gap: var(--spacing-sm, 12px);
}

.veneers-cinematic-benefits li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #c8c2b4;
}

.veneers-cinematic-benefits i {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(212, 168, 110, 0.12);
    color: #d4a86e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.veneers-cinematic-benefits strong {
    color: #f5f1ea;
    font-weight: 600;
}

.veneers-cinematic-cta {
    align-self: flex-start;
    margin-top: var(--spacing-md, 16px);
}

@media (max-width: 900px) {
    .veneers-cinematic-grid {
        grid-template-columns: 1fr;
        gap: clamp(24px, 5vw, 36px);
    }
    .veneers-cinematic-content {
        text-align: center;
        align-items: center;
    }
    .veneers-cinematic-eyebrow,
    .veneers-cinematic-cta {
        align-self: center;
    }
    .veneers-cinematic-benefits li {
        text-align: left;
    }
    .veneers-cinematic-mute,
    .veneers-cinematic-play {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .veneers-cinematic-video {
        display: none;
    }
    .veneers-cinematic-media {
        background-image: url("pics/dental-veneers-poster.jpg");
        background-size: cover;
        background-position: center;
    }
}

/* ============================
   Zirconia Cinematic Section
   The "daytime twin" of Veneers — light, cool, pearl/silver register
   Layout: content LEFT, video RIGHT (alternates with Veneers)
   ============================ */
.zirconia-cinematic {
    position: relative;
    padding: clamp(64px, 9vw, 120px) 0;
    background: linear-gradient(180deg, #f7f9fb 0%, #ffffff 50%, #eef2f6 100%);
    color: #1c2433;
    overflow: hidden;
    isolation: isolate;
}

.zirconia-cinematic-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(55% 50% at 80% 35%, rgba(120, 160, 200, 0.10), transparent 70%),
        radial-gradient(45% 40% at 15% 65%, rgba(200, 215, 230, 0.18), transparent 75%);
    pointer-events: none;
    z-index: 0;
}

.zirconia-cinematic .container {
    position: relative;
    z-index: 1;
}

.zirconia-cinematic-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md, 16px);
}

.zirconia-cinematic-media {
    position: relative;
    border-radius: var(--radius-xl, 16px);
    overflow: hidden;
    box-shadow:
        0 24px 60px rgba(60, 90, 120, 0.18),
        0 0 0 1px rgba(180, 200, 220, 0.35);
    aspect-ratio: 4 / 5;
    background: #e8edf2;
}

.zirconia-cinematic-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.zirconia-cinematic-mute,
.zirconia-cinematic-play {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    color: #2c4258;
    border: 1px solid rgba(60, 90, 120, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.2s ease;
    z-index: 2;
    padding: 0;
    box-shadow: 0 4px 12px rgba(60, 90, 120, 0.15);
}

.zirconia-cinematic-mute:hover,
.zirconia-cinematic-play:hover {
    background: rgba(255, 255, 255, 0.98);
}

.zirconia-cinematic-media:hover .zirconia-cinematic-mute,
.zirconia-cinematic-media:hover .zirconia-cinematic-play,
.zirconia-cinematic-media:focus-within .zirconia-cinematic-mute,
.zirconia-cinematic-media:focus-within .zirconia-cinematic-play {
    opacity: 1;
}

.zirconia-cinematic-mute {
    top: 14px;
    right: 14px;
}

.zirconia-cinematic-play {
    bottom: 14px;
    right: 14px;
}

.zirconia-cinematic-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md, 16px);
}

.zirconia-cinematic-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #5a7a99;
    align-self: flex-start;
}

.zirconia-cinematic-title {
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #1c2433;
    margin: 0;
}

.zirconia-cinematic-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #3a4a5e;
    margin: 0;
    font-weight: 500;
}

.zirconia-cinematic-body {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #5a6a7e;
    margin: 0;
}

.zirconia-cinematic-benefits {
    list-style: none;
    padding: 0;
    margin: var(--spacing-sm, 8px) 0 0;
    display: grid;
    gap: var(--spacing-sm, 12px);
}

.zirconia-cinematic-benefits li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #4a5a6e;
}

.zirconia-cinematic-benefits i {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(180, 200, 220, 0.45), rgba(220, 230, 240, 0.65));
    color: #5a7a99;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: inset 0 0 0 1px rgba(180, 200, 220, 0.5);
}

.zirconia-cinematic-benefits strong {
    color: #1c2433;
    font-weight: 600;
}

.zirconia-cinematic-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: var(--spacing-md, 16px) 0 0;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(232, 240, 248, 0.5));
    border-radius: var(--radius-lg, 12px);
    border: 1px solid rgba(180, 200, 220, 0.45);
    box-shadow: 0 8px 24px rgba(60, 90, 120, 0.06);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.zirconia-cinematic-specs__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 16px;
    border-right: 1px solid rgba(180, 200, 220, 0.4);
    text-align: left;
}

.zirconia-cinematic-specs__item:first-child {
    padding-left: 0;
}

.zirconia-cinematic-specs__item:last-child {
    border-right: none;
    padding-right: 0;
}

.zirconia-cinematic-specs__label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #7a8a9e;
    margin: 0;
}

.zirconia-cinematic-specs__value {
    font-size: 0.92rem;
    font-weight: 600;
    color: #1c2433;
    margin: 0;
    line-height: 1.3;
}

.zirconia-cinematic-cta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: clamp(32px, 5vw, 56px);
}

.zirconia-cinematic-cta {
    align-self: center;
    min-width: 260px;
}

@media (max-width: 700px) {
    .zirconia-cinematic-specs {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 0;
        padding: 16px;
    }
    .zirconia-cinematic-specs__item {
        padding: 0 12px;
        border-right: 1px solid rgba(180, 200, 220, 0.4);
    }
    .zirconia-cinematic-specs__item:nth-child(2n) {
        border-right: none;
    }
    .zirconia-cinematic-specs__item:nth-child(odd) {
        padding-left: 0;
    }
}

@media (max-width: 900px) {
    .zirconia-cinematic-grid {
        grid-template-columns: 1fr;
        gap: clamp(24px, 5vw, 36px);
    }
    .zirconia-cinematic-content {
        text-align: center;
        align-items: center;
        order: 2;
    }
    .zirconia-cinematic-media {
        order: 1;
    }
    .zirconia-cinematic-eyebrow,
    .zirconia-cinematic-cta {
        align-self: center;
    }
    .zirconia-cinematic-benefits li {
        text-align: left;
    }
    .zirconia-cinematic-mute,
    .zirconia-cinematic-play {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .zirconia-cinematic-video {
        display: none;
    }
    .zirconia-cinematic-media {
        background-image: url("pics/dental-zirconia-poster.jpg");
        background-size: cover;
        background-position: center;
    }
}

/* ============================
   Invisalign Cinematic Section
   Phone-frame design — warm cream + sage palette
   Distinct silhouette so it never repeats Veneers/Zirconia rectangles
   Layout: phone LEFT, content RIGHT (alternates with Zirconia)
   ============================ */
.invisalign-cinematic {
    position: relative;
    padding: clamp(72px, 9vw, 130px) 0;
    background: linear-gradient(180deg, #fdfaf5 0%, #f8f1e3 55%, #f4ede0 100%);
    color: #2a2620;
    overflow: hidden;
    isolation: isolate;
}

.invisalign-cinematic-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(45% 45% at 25% 45%, rgba(118, 156, 138, 0.18), transparent 70%),
        radial-gradient(35% 35% at 80% 70%, rgba(218, 198, 162, 0.25), transparent 75%);
    pointer-events: none;
    z-index: 0;
}

.invisalign-cinematic .container {
    position: relative;
    z-index: 1;
}

.invisalign-cinematic-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md, 16px);
}

.invisalign-cinematic-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Phone frame — minimalist, brand-neutral iPhone-style */
.invisalign-phone {
    position: relative;
    width: min(280px, 80%);
    aspect-ratio: 9 / 19;
    background: #1a1a1a;
    border-radius: 36px;
    padding: 8px;
    box-shadow:
        0 30px 60px rgba(80, 60, 30, 0.18),
        0 12px 24px rgba(80, 60, 30, 0.10),
        0 0 0 1px rgba(40, 30, 20, 0.08),
        inset 0 0 0 2px rgba(255, 255, 255, 0.06);
    transform: rotate(-3deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    isolation: isolate;
}

.invisalign-phone:hover {
    transform: rotate(-1deg) translateY(-4px);
}

.invisalign-phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 18px;
    background: #1a1a1a;
    border-radius: 999px;
    z-index: 2;
}

.invisalign-phone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 28px;
    background: #000;
}

.invisalign-cinematic-mute,
.invisalign-cinematic-play {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #5a7060;
    border: 1px solid rgba(120, 140, 120, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.2s ease;
    z-index: 3;
    padding: 0;
    box-shadow: 0 6px 16px rgba(80, 60, 30, 0.18);
}

.invisalign-cinematic-mute:hover,
.invisalign-cinematic-play:hover {
    background: #ffffff;
}

.invisalign-cinematic-media:hover .invisalign-cinematic-mute,
.invisalign-cinematic-media:hover .invisalign-cinematic-play,
.invisalign-cinematic-media:focus-within .invisalign-cinematic-mute,
.invisalign-cinematic-media:focus-within .invisalign-cinematic-play {
    opacity: 1;
}

.invisalign-cinematic-mute {
    top: 18px;
    right: 18px;
}

.invisalign-cinematic-play {
    bottom: 18px;
    right: 18px;
}

.invisalign-cinematic-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md, 16px);
}

.invisalign-cinematic-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6e8a78;
    align-self: flex-start;
}

.invisalign-cinematic-title {
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #2a2620;
    margin: 0;
}

.invisalign-cinematic-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a443a;
    margin: 0;
    font-weight: 500;
}

.invisalign-cinematic-body {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #6a6354;
    margin: 0;
}

.invisalign-cinematic-benefits {
    list-style: none;
    padding: 0;
    margin: var(--spacing-sm, 8px) 0 0;
    display: grid;
    gap: var(--spacing-sm, 12px);
}

.invisalign-cinematic-benefits li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #58524a;
}

.invisalign-cinematic-benefits i {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(168, 192, 174, 0.45), rgba(212, 226, 210, 0.55));
    color: #5a7060;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: inset 0 0 0 1px rgba(160, 184, 168, 0.5);
}

.invisalign-cinematic-benefits strong {
    color: #2a2620;
    font-weight: 600;
}

/* Mini timeline — unique to Invisalign */
.invisalign-timeline {
    margin-top: var(--spacing-md, 18px);
    padding: 22px 18px 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(248, 240, 224, 0.4));
    border-radius: var(--radius-lg, 12px);
    border: 1px solid rgba(180, 168, 138, 0.3);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

.invisalign-timeline::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 36px;
    height: 2px;
    background: linear-gradient(90deg, #6e8a78 0%, #a8c0ae 50%, #d4a86e 100%);
    opacity: 0.55;
    z-index: 0;
}

.invisalign-timeline__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.invisalign-timeline__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #6e8a78;
    box-shadow: 0 0 0 4px rgba(110, 138, 120, 0.18);
    margin-bottom: 6px;
}

.invisalign-timeline__dot--final {
    background: #d4a86e;
    box-shadow: 0 0 0 4px rgba(212, 168, 110, 0.22);
}

.invisalign-timeline__label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2a2620;
    letter-spacing: 0.02em;
}

.invisalign-timeline__sub {
    font-size: 0.72rem;
    font-weight: 500;
    color: #7a7264;
    line-height: 1.3;
}

.invisalign-cinematic-cta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: clamp(36px, 5vw, 60px);
}

.invisalign-cinematic-cta {
    align-self: center;
    min-width: 260px;
}

@media (max-width: 900px) {
    .invisalign-cinematic-grid {
        grid-template-columns: 1fr;
        gap: clamp(28px, 5vw, 44px);
    }
    .invisalign-cinematic-content {
        text-align: center;
        align-items: center;
        order: 2;
    }
    .invisalign-cinematic-media {
        order: 1;
    }
    .invisalign-cinematic-eyebrow {
        align-self: center;
    }
    .invisalign-cinematic-benefits li {
        text-align: left;
    }
    .invisalign-cinematic-mute,
    .invisalign-cinematic-play {
        opacity: 1;
    }
    .invisalign-phone {
        width: min(240px, 70vw);
    }
}

@media (prefers-reduced-motion: reduce) {
    .invisalign-phone {
        transform: none;
    }
    .invisalign-phone:hover {
        transform: none;
    }
    .invisalign-phone-video {
        display: none;
    }
    .invisalign-phone {
        background-image: url("pics/dental-invisalign-poster.jpg");
        background-size: cover;
        background-position: center;
    }
}

/* ============================
   Trust Marquee
   Slow horizontal scroll between carousel and Emax deep-dive
   Premium luxury-fashion pattern
   ============================ */
.trust-marquee {
    background: linear-gradient(135deg, #161a22 0%, #1f2632 50%, #161a22 100%);
    color: #f0e7d3;
    padding: 22px 0;
    overflow: hidden;
    border-top: 1px solid rgba(212, 168, 110, 0.18);
    border-bottom: 1px solid rgba(212, 168, 110, 0.18);
    position: relative;
    isolation: isolate;
}

.trust-marquee::before,
.trust-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.trust-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #161a22 0%, transparent 100%);
}

.trust-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #161a22 0%, transparent 100%);
}

.trust-marquee__track {
    display: flex;
    width: max-content;
    animation: trust-marquee-scroll 60s linear infinite;
    will-change: transform;
}

.trust-marquee:hover .trust-marquee__track {
    animation-play-state: paused;
}

.trust-marquee__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 28px;
    padding-right: 28px;
}

.trust-marquee__item {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f0e7d3;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.trust-marquee__glyph {
    color: #d4a86e;
    font-size: 0.7rem;
    line-height: 1;
    transform: translateY(-1px);
}

.trust-marquee__sep {
    color: rgba(212, 168, 110, 0.5);
    font-size: 0.9rem;
    user-select: none;
    line-height: 1;
}

@keyframes trust-marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 700px) {
    .trust-marquee {
        padding: 18px 0;
    }
    .trust-marquee__item {
        font-size: 0.74rem;
        letter-spacing: 0.14em;
        gap: 10px;
    }
    .trust-marquee__group {
        gap: 22px;
        padding-right: 22px;
    }
    .trust-marquee__track {
        animation-duration: 45s;
    }
    .trust-marquee::before,
    .trust-marquee::after {
        width: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .trust-marquee__track {
        animation: none;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
    .trust-marquee__group:last-child {
        display: none;
    }
}

/* ============================
   Why Albania — editorial moment
   New palette: warm bronze / dusty terracotta
   Layout: content LEFT, image RIGHT
   ============================ */
.why-albania {
    position: relative;
    padding: clamp(72px, 9vw, 130px) 0;
    background: linear-gradient(180deg, #faf6f1 0%, #f5ece0 55%, #f1e4d4 100%);
    color: #2c241d;
    overflow: hidden;
    isolation: isolate;
}

.why-albania-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(50% 45% at 80% 20%, rgba(184, 132, 90, 0.16), transparent 70%),
        radial-gradient(40% 40% at 15% 85%, rgba(220, 178, 132, 0.20), transparent 75%);
    pointer-events: none;
    z-index: 0;
}

.why-albania .container {
    position: relative;
    z-index: 1;
}

.why-albania-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md, 16px);
}

.why-albania-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md, 16px);
}

.why-albania-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #b8845a;
    align-self: flex-start;
}

.why-albania-title {
    font-size: clamp(2rem, 3.6vw, 2.9rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.012em;
    color: #2c241d;
    margin: 0;
}

.why-albania-lead {
    font-size: 1.12rem;
    line-height: 1.6;
    color: #4a3f33;
    margin: 0;
    font-weight: 500;
}

.why-albania-lead em {
    font-style: italic;
    color: #b8845a;
    font-weight: 600;
}

.why-albania-body {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #6e604f;
    margin: 0;
}

.why-albania-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: var(--spacing-md, 18px);
    padding: 24px 16px;
    background: linear-gradient(135deg, rgba(255, 252, 247, 0.7), rgba(245, 234, 218, 0.55));
    border-radius: var(--radius-lg, 12px);
    border: 1px solid rgba(184, 132, 90, 0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.why-albania-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 0 12px;
    border-right: 1px solid rgba(184, 132, 90, 0.22);
}

.why-albania-stat:last-child {
    border-right: none;
}

.why-albania-stat__number {
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    font-weight: 700;
    color: #b8845a;
    letter-spacing: -0.01em;
    line-height: 1;
}

.why-albania-stat__label {
    font-size: 0.74rem;
    font-weight: 500;
    color: #6e604f;
    letter-spacing: 0.04em;
    line-height: 1.4;
}

.why-albania-media {
    position: relative;
}

.why-albania-figure {
    position: relative;
    margin: 0;
    border-radius: var(--radius-xl, 18px);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow:
        0 30px 70px rgba(120, 80, 40, 0.18),
        0 0 0 1px rgba(184, 132, 90, 0.15);
}

.why-albania-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-albania-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 252, 247, 0.92);
    color: #6b4a30;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(120, 80, 40, 0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.why-albania-badge__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c8554e;
    box-shadow: 0 0 0 3px rgba(200, 85, 78, 0.22);
}

@media (max-width: 900px) {
    .why-albania-grid {
        grid-template-columns: 1fr;
        gap: clamp(28px, 5vw, 44px);
    }
    .why-albania-content {
        text-align: center;
        align-items: center;
    }
    .why-albania-eyebrow {
        align-self: center;
    }
    .why-albania-figure {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 600px) {
    .why-albania-stats {
        grid-template-columns: 1fr;
        gap: 16px 0;
        padding: 20px 16px;
    }
    .why-albania-stat {
        border-right: none;
        border-bottom: 1px solid rgba(184, 132, 90, 0.22);
        padding-bottom: 16px;
    }
    .why-albania-stat:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* ============================
   How It Works — Vertical Editorial Timeline
   ============================ */
.process-timeline {
    position: relative;
    padding: clamp(72px, 9vw, 120px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
    color: #1c2433;
}

.process-timeline-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--spacing-xxl, 64px);
    padding: 0 var(--spacing-md, 16px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.process-timeline-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-color, #3a8bbf);
}

.process-timeline-title {
    font-size: clamp(1.9rem, 3.4vw, 2.7rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.012em;
    color: #1c2433;
    margin: 0;
}

.process-timeline-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #5a6878;
    margin: 0;
}

.process-timeline-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 760px;
    position: relative;
}

/* The connecting vertical line */
.process-timeline-list::before {
    content: "";
    position: absolute;
    left: 33px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg,
        rgba(58, 139, 191, 0.55) 0%,
        rgba(58, 139, 191, 0.30) 50%,
        rgba(58, 139, 191, 0.10) 100%);
    border-radius: 2px;
}

.process-timeline-step {
    display: flex;
    align-items: flex-start;
    gap: clamp(20px, 3vw, 32px);
    padding: 22px 0 32px;
    position: relative;
}

.process-timeline-step:last-child {
    padding-bottom: 0;
}

.process-timeline-step__marker {
    position: relative;
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid rgba(58, 139, 191, 0.25);
    box-shadow:
        0 8px 24px rgba(58, 139, 191, 0.12),
        0 0 0 6px #ffffff,
        inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.process-timeline-step:hover .process-timeline-step__marker {
    transform: scale(1.05);
    border-color: rgba(58, 139, 191, 0.5);
    box-shadow:
        0 12px 30px rgba(58, 139, 191, 0.20),
        0 0 0 6px #ffffff,
        inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.process-timeline-step__number {
    position: absolute;
    top: -10px;
    right: -12px;
    background: var(--primary-color, #3a8bbf);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 4px 9px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(58, 139, 191, 0.35);
}

.process-timeline-step__icon {
    font-size: 1.45rem;
    color: var(--primary-color, #3a8bbf);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-timeline-step:hover .process-timeline-step__icon {
    transform: scale(1.1);
}

.process-timeline-step__content {
    flex: 1;
    padding-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.process-timeline-step__eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #93a3b6;
}

.process-timeline-step__title {
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    font-weight: 700;
    color: #1c2433;
    margin: 0;
    line-height: 1.25;
}

.process-timeline-step__text {
    font-size: 0.97rem;
    line-height: 1.65;
    color: #5a6878;
    margin: 0;
    max-width: 540px;
}

/* Mobile-injected carousel dots — hidden on desktop (shown via mobile-ux.css ≤768px) */
.landing-testimonials-dots,
.process-timeline-dots {
    display: none;
}

@media (max-width: 600px) {
    .process-timeline-list::before {
        left: 26px;
    }
    .process-timeline-step__marker {
        width: 54px;
        height: 54px;
    }
    .process-timeline-step__icon {
        font-size: 1.2rem;
    }
    .process-timeline-step__number {
        font-size: 0.62rem;
        padding: 3px 7px;
        top: -8px;
        right: -10px;
    }
    .process-timeline-step {
        gap: 18px;
        padding: 18px 0 26px;
    }
}

/* ============================
   Smile Showcase — editorial real-results gallery
   Asymmetric magazine layout, the middle card is featured (taller)
   ============================ */
.smile-showcase {
    position: relative;
    padding: clamp(72px, 9vw, 120px) 0;
    background: #ffffff;
    color: #1c2433;
}

.smile-showcase-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--spacing-xxl, 56px);
    padding: 0 var(--spacing-md, 16px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.smile-showcase-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #b8845a;
}

.smile-showcase-title {
    font-size: clamp(1.9rem, 3.4vw, 2.7rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.012em;
    color: #1c2433;
    margin: 0;
}

.smile-showcase-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: #5a6878;
    margin: 0;
    max-width: 580px;
}

.smile-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    grid-template-rows: auto;
    align-items: center;
    gap: clamp(20px, 2.5vw, 32px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md, 16px);
}

.smile-showcase-card {
    margin: 0;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: var(--radius-xl, 18px);
    overflow: hidden;
    box-shadow:
        0 18px 40px rgba(28, 36, 51, 0.08),
        0 0 0 1px rgba(28, 36, 51, 0.04);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.smile-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 28px 60px rgba(28, 36, 51, 0.14),
        0 0 0 1px rgba(184, 132, 90, 0.18);
}

.smile-showcase-card__media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f0f4f8;
}

.smile-showcase-card--featured .smile-showcase-card__media {
    aspect-ratio: 1 / 1;
}

.smile-showcase-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.smile-showcase-card:hover .smile-showcase-card__media img {
    transform: scale(1.05);
}

.smile-showcase-card__chip {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.94);
    color: #6b4a30;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(28, 36, 51, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.smile-showcase-card__body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.smile-showcase-card__procedure {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #b8845a;
}

.smile-showcase-card__title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #1c2433;
    margin: 0;
    line-height: 1.3;
}

.smile-showcase-card__text {
    font-size: 0.92rem;
    line-height: 1.55;
    color: #5a6878;
    margin: 0;
}

.smile-showcase-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: clamp(36px, 5vw, 56px);
    padding: 0 var(--spacing-md, 16px);
    text-align: center;
}

.smile-showcase-disclaimer {
    font-size: 0.82rem;
    color: #93a3b6;
    margin: 0;
    max-width: 560px;
    font-style: italic;
}

.smile-showcase-cta {
    min-width: 240px;
}

@media (max-width: 1000px) {
    .smile-showcase-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .smile-showcase-card--featured {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }
    .smile-showcase-card--featured .smile-showcase-card__media {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 640px) {
    .smile-showcase-grid {
        grid-template-columns: 1fr;
    }
    .smile-showcase-card--featured {
        grid-column: auto;
    }
}

/* ============================
   Lip Fillers Cinematic Section
   Warm rose / blush palette — distinct from dental's gold/pearl/sage
   Layout: video LEFT, content RIGHT
   ============================ */
.lip-cinematic {
    position: relative;
    padding: clamp(72px, 9vw, 130px) 0;
    background: linear-gradient(180deg, #fbf3ee 0%, #f7e6dd 55%, #f1d9cd 100%);
    color: #3a2820;
    overflow: hidden;
    isolation: isolate;
}

.lip-cinematic-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(50% 45% at 18% 30%, rgba(204, 132, 124, 0.18), transparent 70%),
        radial-gradient(40% 40% at 82% 75%, rgba(232, 178, 162, 0.22), transparent 75%);
    pointer-events: none;
    z-index: 0;
}

.lip-cinematic .container {
    position: relative;
    z-index: 1;
}

.lip-cinematic-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md, 16px);
}

.lip-cinematic-media {
    position: relative;
    border-radius: var(--radius-xl, 16px);
    overflow: hidden;
    box-shadow:
        0 28px 70px rgba(140, 80, 60, 0.22),
        0 0 0 1px rgba(204, 132, 124, 0.18);
    aspect-ratio: 4 / 5;
    background: #2a1a16;
}

.lip-cinematic-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lip-cinematic-mute,
.lip-cinematic-play {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 252, 247, 0.92);
    color: #8a4d44;
    border: 1px solid rgba(204, 132, 124, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.2s ease;
    z-index: 2;
    padding: 0;
    box-shadow: 0 4px 12px rgba(140, 80, 60, 0.22);
}

.lip-cinematic-media:hover .lip-cinematic-mute,
.lip-cinematic-media:hover .lip-cinematic-play,
.lip-cinematic-media:focus-within .lip-cinematic-mute,
.lip-cinematic-media:focus-within .lip-cinematic-play {
    opacity: 1;
}

.lip-cinematic-mute { top: 14px; right: 14px; }
.lip-cinematic-play { bottom: 14px; right: 14px; }

.lip-cinematic-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md, 16px);
}

.lip-cinematic-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #b56757;
    align-self: flex-start;
}

.lip-cinematic-title {
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.012em;
    color: #3a2820;
    margin: 0;
}

.lip-cinematic-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #5e3f33;
    margin: 0;
    font-weight: 500;
}

.lip-cinematic-lead em {
    font-style: italic;
    color: #b56757;
    font-weight: 600;
}

.lip-cinematic-body {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #7a5648;
    margin: 0;
}

.lip-cinematic-body strong {
    color: #3a2820;
    font-weight: 600;
}

.lip-cinematic-benefits {
    list-style: none;
    padding: 0;
    margin: var(--spacing-sm, 8px) 0 0;
    display: grid;
    gap: var(--spacing-sm, 12px);
}

.lip-cinematic-benefits li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #6d4d40;
}

.lip-cinematic-benefits i {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(204, 132, 124, 0.18), rgba(232, 178, 162, 0.32));
    color: #b56757;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: inset 0 0 0 1px rgba(204, 132, 124, 0.28);
}

.lip-cinematic-benefits strong { color: #3a2820; font-weight: 600; }

.lip-cinematic-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: var(--spacing-md, 16px) 0 0;
    padding: 18px 16px;
    background: linear-gradient(135deg, rgba(255, 250, 245, 0.7), rgba(248, 224, 212, 0.5));
    border-radius: var(--radius-lg, 12px);
    border: 1px solid rgba(204, 132, 124, 0.28);
}

.lip-cinematic-specs__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 14px;
    border-right: 1px solid rgba(204, 132, 124, 0.22);
}

.lip-cinematic-specs__item:last-child { border-right: none; }
.lip-cinematic-specs__item:first-child { padding-left: 0; }

.lip-cinematic-specs__label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a07266;
    margin: 0;
}

.lip-cinematic-specs__value {
    font-size: 0.92rem;
    font-weight: 600;
    color: #3a2820;
    margin: 0;
    line-height: 1.3;
}

.lip-cinematic-cta-row {
    display: flex;
    justify-content: center;
    margin-top: clamp(36px, 5vw, 56px);
}

.lip-cinematic-cta {
    min-width: 280px;
}

@media (max-width: 900px) {
    .lip-cinematic-grid {
        grid-template-columns: 1fr;
        gap: clamp(28px, 5vw, 44px);
    }
    .lip-cinematic-content { text-align: center; align-items: center; }
    .lip-cinematic-eyebrow { align-self: center; }
    .lip-cinematic-benefits li { text-align: left; }
    .lip-cinematic-mute,
    .lip-cinematic-play { opacity: 1; }
}

@media (max-width: 700px) {
    .lip-cinematic-specs { grid-template-columns: repeat(2, 1fr); gap: 14px 0; padding: 16px; }
    .lip-cinematic-specs__item { padding: 0 10px; border-right: 1px solid rgba(204, 132, 124, 0.22); }
    .lip-cinematic-specs__item:nth-child(2n) { border-right: none; }
    .lip-cinematic-specs__item:nth-child(odd) { padding-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .lip-cinematic-video { display: none; }
    .lip-cinematic-media {
        background-image: url("fillers%20img/lip-fillers-cinematic-poster.jpg");
        background-size: cover;
        background-position: center;
    }
}

/* ============================
   Nose Fillers Cinematic Section
   Dark cinematic — gold + warm charcoal (sibling of Veneers)
   Layout: content LEFT, video RIGHT (alternates with Lip cinematic above)
   ============================ */
.nose-cinematic {
    position: relative;
    padding: clamp(72px, 9vw, 130px) 0;
    background: #181b21;
    color: #f0e7d3;
    overflow: hidden;
    isolation: isolate;
}

.nose-cinematic-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(55% 50% at 78% 35%, rgba(212, 168, 110, 0.14), transparent 70%),
        radial-gradient(40% 40% at 18% 75%, rgba(80, 70, 60, 0.20), transparent 75%);
    pointer-events: none;
    z-index: 0;
}

.nose-cinematic .container {
    position: relative;
    z-index: 1;
}

.nose-cinematic-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md, 16px);
}

.nose-cinematic-media {
    position: relative;
    border-radius: var(--radius-xl, 16px);
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.04);
    aspect-ratio: 4 / 5;
    background: #000;
}

.nose-cinematic-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nose-cinematic-mute,
.nose-cinematic-play {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #f5f1ea;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.2s ease;
    z-index: 2;
    padding: 0;
}

.nose-cinematic-media:hover .nose-cinematic-mute,
.nose-cinematic-media:hover .nose-cinematic-play,
.nose-cinematic-media:focus-within .nose-cinematic-mute,
.nose-cinematic-media:focus-within .nose-cinematic-play {
    opacity: 1;
}

.nose-cinematic-mute { top: 14px; right: 14px; }
.nose-cinematic-play { bottom: 14px; right: 14px; }

.nose-cinematic-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md, 16px);
}

.nose-cinematic-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #d4a86e;
    align-self: flex-start;
}

.nose-cinematic-title {
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #fbf8f2;
    margin: 0;
}

.nose-cinematic-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d8d2c5;
    margin: 0;
    font-weight: 500;
}

.nose-cinematic-body {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #b3ad9f;
    margin: 0;
}

.nose-cinematic-benefits {
    list-style: none;
    padding: 0;
    margin: var(--spacing-sm, 8px) 0 0;
    display: grid;
    gap: var(--spacing-sm, 12px);
}

.nose-cinematic-benefits li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #c8c2b4;
}

.nose-cinematic-benefits i {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(212, 168, 110, 0.12);
    color: #d4a86e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.nose-cinematic-benefits strong { color: #f5f1ea; font-weight: 600; }

.nose-cinematic-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: var(--spacing-md, 16px) 0 0;
    padding: 18px 16px;
    background: rgba(212, 168, 110, 0.06);
    border-radius: var(--radius-lg, 12px);
    border: 1px solid rgba(212, 168, 110, 0.22);
}

.nose-cinematic-specs__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 14px;
    border-right: 1px solid rgba(212, 168, 110, 0.18);
}

.nose-cinematic-specs__item:last-child { border-right: none; }
.nose-cinematic-specs__item:first-child { padding-left: 0; }

.nose-cinematic-specs__label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #b3ad9f;
    margin: 0;
}

.nose-cinematic-specs__value {
    font-size: 0.92rem;
    font-weight: 600;
    color: #f5f1ea;
    margin: 0;
    line-height: 1.3;
}

.nose-cinematic-cta-row {
    display: flex;
    justify-content: center;
    margin-top: clamp(36px, 5vw, 56px);
}

.nose-cinematic-cta {
    min-width: 320px;
}

@media (max-width: 900px) {
    .nose-cinematic-grid {
        grid-template-columns: 1fr;
        gap: clamp(28px, 5vw, 44px);
    }
    .nose-cinematic-content {
        text-align: center;
        align-items: center;
        order: 2;
    }
    .nose-cinematic-media { order: 1; }
    .nose-cinematic-eyebrow { align-self: center; }
    .nose-cinematic-benefits li { text-align: left; }
    .nose-cinematic-mute, .nose-cinematic-play { opacity: 1; }
}

@media (max-width: 700px) {
    .nose-cinematic-specs { grid-template-columns: repeat(2, 1fr); gap: 14px 0; padding: 16px; }
    .nose-cinematic-specs__item { padding: 0 10px; border-right: 1px solid rgba(212, 168, 110, 0.18); }
    .nose-cinematic-specs__item:nth-child(2n) { border-right: none; }
    .nose-cinematic-specs__item:nth-child(odd) { padding-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .nose-cinematic-video { display: none; }
    .nose-cinematic-media {
        background-image: url("fillers%20img/nose-fillers-poster.jpg");
        background-size: cover;
        background-position: center;
    }
}

/* ============================
   Endolift Cinematic #1 — pearl / silver palette (laser precision)
   Layout: content LEFT, video RIGHT
   ============================ */
.endolift-cinematic {
    position: relative;
    padding: clamp(72px, 9vw, 130px) 0;
    background: linear-gradient(180deg, #f6f8fb 0%, #eef2f7 55%, #e6ecf3 100%);
    color: #1c2738;
    overflow: hidden;
    isolation: isolate;
}
.endolift-cinematic-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(50% 45% at 80% 25%, rgba(120, 160, 200, 0.18), transparent 70%),
        radial-gradient(40% 40% at 18% 75%, rgba(180, 200, 220, 0.20), transparent 75%);
    pointer-events: none; z-index: 0;
}
.endolift-cinematic .container { position: relative; z-index: 1; }
.endolift-cinematic-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    max-width: 1280px; margin: 0 auto;
    padding: 0 var(--spacing-md, 16px);
}
.endolift-cinematic-media {
    position: relative;
    border-radius: var(--radius-xl, 16px);
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(60, 90, 130, 0.20), 0 0 0 1px rgba(180, 200, 220, 0.45);
    aspect-ratio: 4 / 5;
    background: #d6dde6;
}
.endolift-cinematic-video,
.endolift-process-video {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.endolift-cinematic-mute,
.endolift-cinematic-play {
    position: absolute; width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.92); color: #2c4258;
    border: 1px solid rgba(60, 90, 130, 0.22);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px; opacity: 0;
    transition: opacity 0.3s ease, background 0.2s ease;
    z-index: 2; padding: 0;
    box-shadow: 0 4px 12px rgba(60, 90, 130, 0.18);
}
.endolift-cinematic-media:hover .endolift-cinematic-mute,
.endolift-cinematic-media:hover .endolift-cinematic-play,
.endolift-cinematic-media:focus-within .endolift-cinematic-mute,
.endolift-cinematic-media:focus-within .endolift-cinematic-play { opacity: 1; }
.endolift-cinematic-mute { top: 14px; right: 14px; }
.endolift-cinematic-play { bottom: 14px; right: 14px; }
.endolift-cinematic-content { display: flex; flex-direction: column; gap: var(--spacing-md, 16px); }
.endolift-cinematic-eyebrow {
    display: inline-block; font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: #6489ad; align-self: flex-start;
}
.endolift-cinematic-title {
    font-size: clamp(1.9rem, 3.4vw, 2.8rem); font-weight: 700;
    line-height: 1.15; letter-spacing: -0.012em;
    color: #1c2738; margin: 0;
}
.endolift-cinematic-lead { font-size: 1.1rem; line-height: 1.6; color: #3a4a5e; margin: 0; font-weight: 500; }
.endolift-cinematic-body { font-size: 0.98rem; line-height: 1.75; color: #5a6a7e; margin: 0; }
.endolift-cinematic-benefits {
    list-style: none; padding: 0; margin: var(--spacing-sm, 8px) 0 0;
    display: grid; gap: var(--spacing-sm, 12px);
}
.endolift-cinematic-benefits li {
    display: flex; gap: 14px; align-items: flex-start;
    font-size: 0.95rem; line-height: 1.55; color: #4a5a6e;
}
.endolift-cinematic-benefits i {
    flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px;
    background: linear-gradient(135deg, rgba(180, 200, 220, 0.45), rgba(220, 230, 240, 0.65));
    color: #5a7a99;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px;
    box-shadow: inset 0 0 0 1px rgba(180, 200, 220, 0.5);
}
.endolift-cinematic-benefits strong { color: #1c2738; font-weight: 600; }
.endolift-cinematic-specs {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    margin: var(--spacing-md, 16px) 0 0;
    padding: 18px 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.65), rgba(232, 240, 248, 0.55));
    border-radius: var(--radius-lg, 12px);
    border: 1px solid rgba(180, 200, 220, 0.5);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.endolift-cinematic-specs__item {
    display: flex; flex-direction: column; gap: 4px;
    padding: 0 14px;
    border-right: 1px solid rgba(180, 200, 220, 0.45);
}
.endolift-cinematic-specs__item:last-child { border-right: none; }
.endolift-cinematic-specs__item:first-child { padding-left: 0; }
.endolift-cinematic-specs__label {
    font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.1em; color: #7a8a9e; margin: 0;
}
.endolift-cinematic-specs__value {
    font-size: 0.92rem; font-weight: 600; color: #1c2738;
    margin: 0; line-height: 1.3;
}
.endolift-cinematic-cta-row { display: flex; justify-content: center; margin-top: clamp(36px, 5vw, 56px); }
.endolift-cinematic-cta { min-width: 280px; }
@media (max-width: 900px) {
    .endolift-cinematic-grid { grid-template-columns: 1fr; gap: clamp(28px, 5vw, 44px); }
    .endolift-cinematic-content { text-align: center; align-items: center; order: 2; }
    .endolift-cinematic-media { order: 1; }
    .endolift-cinematic-eyebrow { align-self: center; }
    .endolift-cinematic-benefits li { text-align: left; }
    .endolift-cinematic-mute, .endolift-cinematic-play { opacity: 1; }
}
@media (max-width: 700px) {
    .endolift-cinematic-specs { grid-template-columns: repeat(2, 1fr); gap: 14px 0; padding: 16px; }
    .endolift-cinematic-specs__item { padding: 0 10px; border-right: 1px solid rgba(180, 200, 220, 0.45); }
    .endolift-cinematic-specs__item:nth-child(2n) { border-right: none; }
    .endolift-cinematic-specs__item:nth-child(odd) { padding-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .endolift-cinematic-video { display: none; }
    .endolift-cinematic-media {
        background-image: url("endolift%20content/endolift-1-poster.jpg");
        background-size: cover; background-position: center;
    }
}

/* ============================
   Endolift Cinematic #2 — deep navy / teal (process / how it works)
   Layout: video LEFT, content RIGHT
   ============================ */
.endolift-process {
    position: relative; padding: clamp(72px, 9vw, 130px) 0;
    background: #0f1a26; color: #e6eef7;
    overflow: hidden; isolation: isolate;
}
.endolift-process-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(50% 45% at 28% 35%, rgba(60, 140, 180, 0.18), transparent 70%),
        radial-gradient(40% 40% at 80% 75%, rgba(80, 160, 180, 0.12), transparent 75%);
    pointer-events: none; z-index: 0;
}
.endolift-process .container { position: relative; z-index: 1; }
.endolift-process-grid {
    display: grid; grid-template-columns: 1fr 1.3fr;
    gap: clamp(40px, 6vw, 80px); align-items: center;
    max-width: 1280px; margin: 0 auto;
    padding: 0 var(--spacing-md, 16px);
}
.endolift-process-media {
    position: relative; border-radius: var(--radius-xl, 16px);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(120, 200, 220, 0.10);
    aspect-ratio: 4 / 5; background: #000;
}
.endolift-process-mute,
.endolift-process-play {
    position: absolute; width: 38px; height: 38px; border-radius: 50%;
    background: rgba(0, 0, 0, 0.55); color: #e6eef7;
    border: 1px solid rgba(120, 200, 220, 0.30);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px; opacity: 0;
    transition: opacity 0.3s ease, background 0.2s ease;
    z-index: 2; padding: 0;
}
.endolift-process-media:hover .endolift-process-mute,
.endolift-process-media:hover .endolift-process-play,
.endolift-process-media:focus-within .endolift-process-mute,
.endolift-process-media:focus-within .endolift-process-play { opacity: 1; }
.endolift-process-mute { top: 14px; right: 14px; }
.endolift-process-play { bottom: 14px; right: 14px; }
.endolift-process-content { display: flex; flex-direction: column; gap: var(--spacing-md, 16px); }
.endolift-process-eyebrow {
    display: inline-block; font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: #6cc5d6; align-self: flex-start;
}
.endolift-process-title {
    font-size: clamp(1.9rem, 3.4vw, 2.8rem); font-weight: 700;
    line-height: 1.15; letter-spacing: -0.012em;
    color: #f4f9fc; margin: 0;
}
.endolift-process-lead { font-size: 1.1rem; line-height: 1.6; color: #c7d4e0; margin: 0; font-weight: 500; }
.endolift-process-steps {
    list-style: none; padding: 0; margin: var(--spacing-md, 16px) 0 0;
    display: grid; gap: 18px;
}
.endolift-process-steps li {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 14px 16px;
    background: rgba(108, 197, 214, 0.06);
    border: 1px solid rgba(108, 197, 214, 0.16);
    border-radius: 12px;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.endolift-process-steps li:hover {
    background: rgba(108, 197, 214, 0.10);
    border-color: rgba(108, 197, 214, 0.28);
}
.endolift-process-step__num {
    flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(108, 197, 214, 0.20), rgba(108, 197, 214, 0.08));
    color: #6cc5d6;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
    border: 1px solid rgba(108, 197, 214, 0.32);
}
.endolift-process-steps h3 {
    font-size: 1rem; font-weight: 700; color: #f4f9fc;
    margin: 0 0 4px; letter-spacing: -0.01em;
}
.endolift-process-steps p {
    font-size: 0.9rem; line-height: 1.6; color: #a7b4c2; margin: 0;
}
@media (max-width: 900px) {
    .endolift-process-grid { grid-template-columns: 1fr; gap: clamp(28px, 5vw, 44px); }
    .endolift-process-content { text-align: left; align-items: stretch; }
    .endolift-process-eyebrow,
    .endolift-process-title,
    .endolift-process-lead { text-align: center; align-self: center; }
    .endolift-process-mute, .endolift-process-play { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    .endolift-process-video { display: none; }
    .endolift-process-media {
        background-image: url("endolift%20content/endolift-2-poster.jpg");
        background-size: cover; background-position: center;
    }
}
