/* ========================================
   CSS Variables & Root Styles
   ======================================== */
:root {
    /* Colors - Elegant & Professional */
    --primary: #2c3e50;
    --primary-light: #34495e;
    --primary-dark: #1a252f;
    --accent: #c9a96e;
    --accent-light: #d4b883;
    --accent-dark: #b89654;

    --text-dark: #2c3e50;
    --text-medium: #5a6c7d;
    --text-light: #8895a3;

    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-cream: #fdfbf7;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

.section-subtitle {
    display: inline-block;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

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

/* ========================================
   Container & Layout
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 1000;
    transform: translateY(-100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.navbar.visible {
    transform: translateY(0);
    opacity: 1;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
    transition: filter 0.3s ease;
}

.navbar.scrolled .logo img {
    filter: invert(1) brightness(0.2);
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

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

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

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar.scrolled .mobile-toggle span {
    background: var(--primary);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

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

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

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1rem;
}

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

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/hero-correct.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.88) 0%, rgba(52, 73, 94, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f4e4c1;
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.3rem;
    max-width: 650px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay-1 {
    animation: fadeIn 1s ease-out 0.2s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.4s both;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.6s both;
}

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

/* ========================================
   Treatments Section
   ======================================== */
.treatments {
    padding: var(--section-padding);
    background: var(--bg-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.treatment-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.treatment-image {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    overflow: hidden;
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.treatment-card[data-treatment="co2"] .treatment-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.treatment-card[data-treatment="hifu"] .treatment-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.treatment-card[data-treatment="cryopen"] .treatment-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.treatment-card[data-treatment="emlift"] .treatment-image {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.treatment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.treatment-card:hover .treatment-overlay {
    opacity: 1;
}

.treatment-content {
    padding: 32px;
}

.treatment-tag {
    display: inline-block;
    background: var(--bg-light);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.treatment-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.treatment-content > p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.treatment-benefits {
    margin: 24px 0;
    padding-left: 0;
}

.treatment-benefits li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.treatment-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.1rem;
}

.treatment-link {
    color: var(--accent);
    font-weight: 600;
    display: inline-block;
    margin-top: 16px;
    transition: var(--transition);
}

.treatment-link:hover {
    color: var(--accent-dark);
    transform: translateX(5px);
}

/* ========================================
   About Section
   ======================================== */
.about {
    padding: var(--section-padding);
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.about-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.about-image-placeholder::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.about-content p {
    color: var(--text-medium);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary);
}

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

/* ========================================
   Reviews Section
   ======================================== */
.reviews {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.rating {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.stars {
    color: #ffc107;
    font-size: 1.5rem;
    letter-spacing: 4px;
}

.rating-text {
    color: var(--text-medium);
    font-weight: 600;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.review-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.review-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-medium);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 16px;
    border-top: 2px solid var(--bg-light);
}

.review-author strong {
    color: var(--primary);
    font-size: 1rem;
}

.review-author span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ========================================
   Booking Section
   ======================================== */
.booking {
    padding: var(--section-padding);
    background: var(--primary);
    color: white;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.booking-info .section-subtitle {
    color: var(--accent-light);
}

.booking-info .section-title {
    color: white;
}

.booking-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

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

.contact-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--accent-light);
    font-size: 0.9rem;
}

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

.contact-item a:hover {
    color: var(--accent-light);
}

.contact-item span {
    color: rgba(255, 255, 255, 0.9);
}

/* Booking Form */
.booking-form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

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

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

textarea {
    resize: vertical;
}

/* Form Messages */
.form-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    animation: slideIn 0.3s ease-out;
}

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

.form-message-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #28a745;
    color: #155724;
}

.form-message-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 1px solid #dc3545;
    color: #721c24;
}

.form-message-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.form-message-success .form-message-icon {
    background: #28a745;
    color: white;
}

.form-message-error .form-message-icon {
    background: #dc3545;
    color: white;
}

.form-message-content strong {
    display: block;
    margin-bottom: 4px;
}

.form-message-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-message-content a {
    color: inherit;
    font-weight: 600;
}

/* Payment Options */
.payment-options {
    text-align: center;
    padding: 24px 0 0;
    margin-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.payment-text {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 16px;
    font-weight: 500;
}

.klarna-logo {
    height: 45px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.klarna-logo:hover {
    opacity: 1;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-light);
}

.social-links {
    display: flex;
    gap: 16px;
}

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: white;
        flex-direction: column;
        padding: 40px 20px;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
    }

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

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .section-title {
        font-size: 1.8rem;
    }

    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Treatment Pages Specific Styles
   ======================================== */

/* Treatment Hero Sections */
.treatment-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hifu-hero {
    background-image: url('images/hifu/hifu-hero-device.webp');
    background-position: center;
}

/* Featured Video Section */
.featured-video-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-video {
    width: 100%;
    height: auto;
    display: block;
}

.cryopen-hero {
    background-image: url('images/cryopen/cryopen-hero.webp');
}

.co2-hero {
    background-image: url('images/co2-laser/co2-header-image-treatment-card.jpeg');
}

.emlift-hero {
    background-image: url('images/emlift/emlift-1.jpeg');
}

.anti-wrinkle-hero {
    background-image: url('images/anti-wrinkle/anti-wrinkle-hero.webp');
}

.dermal-fillers-hero {
    background-image: url('images/dermal-fillers/dermal-fillers-hero.webp');
}

.lip-enhancement-hero {
    background-image: url('images/lip-enhancement/lip-enhancement-hero.jpg');
}

.microneedling-hero {
    background-image: url('images/microneedling/microneedling-hero.jpeg');
}

.skin-boosters-hero {
    background-image: url('images/skin-boosters/skin-boosters-hero.jpg');
}

.prp-hero {
    background-image: url('images/prp-therapy/prp-hero.jpg');
}

.body-sculpting-hero {
    background-image: url('images/body-sculpting/body-sculpting-hero.jpg');
}

.lymphatic-drainage-hero {
    background-image: url('images/lymphatic-drainage.jpeg');
}

/* Treatment Introduction */
.treatment-intro {
    padding: 80px 0;
    background: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.intro-content p {
    margin-bottom: 20px;
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.8;
}

.intro-benefits h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: var(--primary);
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-dark);
    font-size: 1rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Special Offer Banner */
.special-offer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.offer-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 16px;
}

.offer-content p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

/* How It Works Section */
.how-it-works {
    padding: var(--section-padding);
    background: var(--bg-cream);
}

.section-subtitle-large {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 48px;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.process-step {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 24px;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.process-step p {
    color: var(--text-medium);
    line-height: 1.6;
}

.device-showcase {
    text-align: center;
    margin-top: 60px;
}

.device-showcase img {
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Before & After Gallery */
.before-after {
    padding: var(--section-padding);
    background: white;
}

.ba-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 48px;
}

.ba-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.ba-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.ba-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Why Choose Section */
.why-choose {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.feature-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary);
}

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

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: white;
}

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

.faq-item {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.form-note {
    text-align: center;
    margin-top: 16px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Responsive Treatment Pages */
@media (max-width: 968px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .treatment-hero {
        height: 60vh;
        min-height: 400px;
    }

    .offer-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .treatment-hero {
        height: 50vh;
        min-height: 350px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .ba-gallery {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CryoPen Specific Styles
   ======================================== */

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.badge-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.badge-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.badge-item span {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.key-features {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--bg-light);
}

.key-features h4 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--primary);
}

/* Comparison Section */
.comparison-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.comparison-card.modern {
    border: 3px solid var(--accent);
}

.comparison-card h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    text-align: center;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 1rem;
}

.comparison-list.negative li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.3rem;
}

.comparison-list.positive li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Pricing Section */
.pricing-section {
    padding: var(--section-padding);
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.pricing-card {
    background: var(--bg-light);
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

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

.pricing-card.featured {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.pricing-card.featured h3,
.pricing-card.featured .price {
    color: white;
}

.pricing-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent);
    margin: 20px 0;
    font-family: var(--font-heading);
}

.pricing-card p {
    margin-bottom: 24px;
    color: var(--text-medium);
}

.pricing-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
}

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

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.pricing-factors {
    margin-top: 60px;
    text-align: center;
}

.pricing-factors h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
    color: var(--primary);
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.factor {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.factor strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.factor span {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.pricing-guarantees {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.guarantee {
    text-align: center;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
}

.guarantee h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

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

/* Practitioner Section */
.practitioner-section {
    padding: var(--section-padding);
    background: var(--bg-cream);
}

.practitioner-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    margin-top: 48px;
}

.practitioner-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.practitioner-content h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.role {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 24px;
    font-weight: 600;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
    padding: 24px;
    background: white;
    border-radius: 8px;
}

.credentials span {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.practitioner-content h4 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
    color: var(--primary);
}

.approach-points ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.approach-points li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
}

.approach-points li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

blockquote {
    background: var(--primary);
    color: white;
    padding: 24px 32px;
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    margin: 32px 0;
    font-style: italic;
}

blockquote cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    color: var(--accent-light);
    font-size: 0.9rem;
}

/* Treatment Areas Section (EMLift) */
.treatment-areas-section {
    padding: var(--section-padding);
    background: white;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.area-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

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

.area-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.area-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Responsive for CryoPen Page */
@media (max-width: 968px) {
    .trust-badges {
        grid-template-columns: 1fr;
    }

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

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

    .pricing-card.featured {
        transform: scale(1);
    }

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

    .pricing-guarantees {
        grid-template-columns: 1fr;
    }

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

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

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

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

/* ========================================
   Price Guide Page
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.price-guide-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

.price-category {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
}

.price-category h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 32px;
    font-family: var(--font-heading);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 16px;
}

.price-table {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-row {
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.price-row:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.price-row span:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.price-row span:nth-child(2) {
    font-weight: 600;
    color: var(--accent);
    font-size: 1.1rem;
    text-align: right;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.price-note {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.price-note p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--text-medium);
}

@media (max-width: 768px) {
    .price-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .price-row span:nth-child(2) {
        text-align: center;
    }
}

/* ========================================
   About Page
   ======================================== */
.about-story {
    padding: 80px 0;
    background: white;
}

.about-image-box {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.values-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

.team-section {
    padding: 80px 0;
    background: white;
}

.team-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-top: 40px;
    align-items: start;
}

.team-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.team-image img {
    width: 100%;
    height: auto;
}

.team-bio h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.role {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 24px;
}

.credentials {
    margin-top: 32px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.credentials p {
    margin-bottom: 12px;
}

.why-choose-us {
    padding: 80px 0;
    background: var(--bg-cream);
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.reason-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 32px;
    align-items: start;
}

.reason-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-heading);
    opacity: 0.3;
}

.reason-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.cta-section {
    padding: 80px 0;
    background: var(--primary);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

@media (max-width: 968px) {
    .team-profile {
        grid-template-columns: 1fr;
    }
    
    .reason-item {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .reason-number {
        font-size: 3rem;
    }
}

/* ========================================
   CRYOPEN INTERACTIVE WIDGETS
   ======================================== */

/* Assessment Widget */
.assessment-widget {
    padding: 80px 0;
    background: var(--bg-light);
}

.assessment-container {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.assessment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.assessment-header h2 {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--primary);
}

.assessment-header strong {
    font-weight: 600;
}

.assessment-step {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.assessment-subtitle {
    color: var(--text-secondary);
    margin-bottom: 24px;
    display: block;
}

.progress-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 999px;
    margin-bottom: 32px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 999px;
}

.assessment-step-content {
    display: none;
}

.assessment-step-content.active {
    display: block;
    animation: fadeInSlide 0.3s ease;
}

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

.assessment-step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--primary);
}

.step-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    display: block;
}

/* Treatment Options */
.treatment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.treatment-option {
    position: relative;
    padding: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.treatment-option:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.option-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}

.option-icon {
    font-size: 2rem;
}

.option-text h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.option-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.option-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 999px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* Count Options */
.count-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.count-option {
    padding: 24px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

.count-option:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

/* Urgency Options */
.urgency-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.urgency-option {
    padding: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: var(--primary);
    transition: all 0.3s ease;
}

.urgency-option:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.urgency-option .arrow {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.urgency-option:hover .arrow {
    color: white;
}

/* Assessment Form */
.assessment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.back-button {
    margin-top: 16px;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 0.9rem;
}

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

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #10b981;
    color: white;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-message h3 {
    color: var(--primary);
    margin-bottom: 12px;
}

.success-message p {
    color: var(--text-secondary);
}

/* ========================================
   BEFORE/AFTER GALLERY
   ======================================== */

.before-after-gallery {
    padding: 80px 0;
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 24px;
}

.gallery-caption h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.gallery-caption p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.gallery-container {
    max-width: 900px;
    margin: 0 auto;
}

.before-after-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 24px;
    cursor: ew-resize;
    user-select: none;
}

.slider-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.after-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-image-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
}

.before-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 4px;
    transform: translateX(-50%);
    cursor: ew-resize;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.handle-line {
    width: 4px;
    flex: 1;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.handle-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.slider-labels {
    position: absolute;
    width: 100%;
    bottom: 20px;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 5;
}

.label-before,
.label-after {
    padding: 8px 16px;
    background: rgba(0,0,0,0.7);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.gallery-info {
    text-align: center;
    margin-bottom: 24px;
}

.gallery-info h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.gallery-info p {
    color: var(--text-secondary);
    margin: 4px 0;
}

.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
}

.gallery-tab {
    padding: 10px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 999px;
    background: white;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

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

.gallery-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */

.whatsapp-button {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: #25d366;
    color: white;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-button:hover {
    background: #20ba5a;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
}

.whatsapp-button svg {
    width: 24px;
    height: 24px;
}

/* ========================================
   FLOATING CTA
   ======================================== */

.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    padding: 20px 24px;
    max-width: 400px;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 998;
}

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

.floating-cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.floating-cta-text {
    flex: 1;
}

.floating-cta-text strong {
    display: block;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 4px;
}

.floating-cta-text span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 768px) {
    .assessment-container {
        padding: 24px;
    }

    .treatment-options {
        grid-template-columns: 1fr;
    }

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

    .gallery-tabs {
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gallery-item img {
        height: 280px;
    }

    .gallery-caption {
        padding: 20px;
    }

    .whatsapp-button span {
        display: none;
    }

    .whatsapp-button {
        padding: 14px;
    }

    .floating-cta {
        left: 16px;
        right: 16px;
        max-width: none;
        bottom: 80px;
    }

    .floating-cta-content {
        flex-direction: column;
        text-align: center;
    }

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