/* =========================================
   REFINE SMP - Premium Design System
   Modern SMP Clinic Design with Black/Brown Theme
   ========================================= */

/* =========================================
   1. CSS Variables & Reset
   ========================================= */
:root {
    /* Primary Colors - Black & Brown Theme */
    --primary-black: #0A0A0A;
    --primary-dark: #0A0A0A;
    --primary-brown: #8B6331;
    --dark-brown: #5C3D1F;
    --light-brown: #D4A574;
    --accent-gold: #C9A961;
    --accent-gold-light: #D4A574;
    --primary-gold: #C9A961; /* Alias for accent-gold for policy pages */
    --dark-gold: #8B6331; /* Alias for primary-brown for policy pages */

    /* Neutral Colors */
    --dark-gray: #161616;
    --medium-gray: #2d2d2d;
    --light-gray: #f5f5f5;
    --light-bg: #f5f5f5;
    --off-white: #fafafa;
    --pure-white: #ffffff;

    /* Text Colors */
    --text-primary: #000000;
    --text-secondary: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --text-dark: #000000; /* Alias for text-primary for policy pages */

    /* Shadows & Effects */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.3);

    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --header-height: 80px;
    --container-max: 1400px;
    --section-padding: 100px 0;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* scroll-behavior: smooth; - DISABLED: Using JavaScript for precise control */
    overflow-x: hidden;
    /* scroll-padding-top: 155px; - DISABLED: Using JavaScript for precise control */
}

body {
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--pure-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =========================================
   2. Loading Screen
   ========================================= */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 120px;
    height: 120px;
}

.loader-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary-brown);
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.loader-circle:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-top-color: var(--accent-gold);
    animation-delay: 0.2s;
}

.loader-circle:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-top-color: var(--light-brown);
    animation-delay: 0.4s;
}

.loader-text {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--pure-white);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* =========================================
   3. Header & Navigation
   ========================================= */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-base);
}

.header-transparent {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
    backdrop-filter: blur(10px);
}

.header-transparent::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
    backdrop-filter: blur(5px);
    pointer-events: none;
    z-index: -1;
}

.header-scrolled {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
    backdrop-filter: blur(10px);
}

.header-scrolled::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
    backdrop-filter: blur(5px);
    pointer-events: none;
    z-index: -1;
}

/* Scrolling Ticker */
.ticker-wrapper {
    background: var(--primary-brown);
    overflow: hidden;
    position: relative;
    height: 45px;
    display: flex;
    align-items: center;
}

.ticker-content {
    display: flex;
    animation: scroll-ticker 40s linear infinite;
    white-space: nowrap;
    align-items: center;
    height: 100%;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 60px;
    color: var(--pure-white);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.ticker-item::after {
    content: "•";
    margin: 0 60px;
    color: var(--accent-gold);
    font-size: 18px;
}

@keyframes scroll-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Main Navigation */
.navbar {
    padding: 20px 0;
    transition: var(--transition-base);
}

.header-scrolled .navbar {
    padding: 20px 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
    text-decoration: none;
}

.logo:hover {
    text-decoration: none;
}

.logo img {
    height: 60px;
    transition: var(--transition-base);
}

.header-scrolled .logo img {
    height: 60px;
}

.logo-text {
    margin-left: 15px;
    color: var(--pure-white);
    text-decoration: none;
}

.logo-text * {
    text-decoration: none;
}

.logo-name {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
    white-space: nowrap;
    margin-bottom: 0;
}

.logo-tagline {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--light-brown);
    margin-top: 0;
    text-decoration: none;
    line-height: 1.3;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin-left: auto;
}

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

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

.nav-menu a {
    color: var(--pure-white);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
    padding: 8px 12px;
    transition: var(--transition-base);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-brown);
    transition: var(--transition-base);
}

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

.nav-menu .portal-link {
    background: var(--accent-gold);
    color: var(--dark-brown);
    padding: 8px 16px;
    border-radius: 20px;
    transition: var(--transition-smooth);
    font-weight: 600;
    border: 2px solid var(--accent-gold);
    white-space: nowrap;
    font-size: 14px;
}

.nav-menu .portal-link:hover {
    background: transparent;
    color: var(--accent-gold);
    transform: translateY(-1px);
}

.nav-menu .btn-nav {
    background: var(--primary-brown);
    color: var(--pure-white);
    padding: 10px 20px;
    border-radius: 30px;
    transition: var(--transition-smooth);
    white-space: nowrap;
    font-size: 14px;
}

.nav-menu .btn-nav:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 99, 49, 0.4);
}

.nav-menu .staff-portal {
    background: transparent;
    border: 2px solid var(--primary-brown);
    padding: 10px;
    border-radius: 50%;
    white-space: nowrap;
    margin-left: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu .staff-portal:hover {
    background: var(--primary-brown);
    color: var(--pure-white);
}

.staff-portal-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.nav-menu .staff-portal:hover .staff-portal-icon {
    filter: brightness(0) invert(1);
}

/* Footer Staff Portal Icon */
.footer-staff-portal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 2px solid var(--primary-brown);
    border-radius: 50%;
    transition: var(--transition-base);
    background: transparent;
}

.footer-staff-portal:hover {
    background: var(--primary-brown);
    border-color: var(--accent-gold);
}

.footer-staff-portal-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(44%) sepia(57%) saturate(1020%) hue-rotate(16deg) brightness(94%) contrast(89%);
}

.footer-staff-portal:hover .footer-staff-portal-icon {
    filter: brightness(0) invert(1);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background: var(--pure-white);
    margin: 4px 0;
    transition: var(--transition-base);
}

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

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* =========================================
   4. Hero Section with Parallax
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(139, 99, 49, 0.3) 100%
    );
    z-index: 2;
}

/* Ghosted Background Text */
.hero-ghost-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(139, 99, 49, 0.1);
    text-transform: uppercase;
    z-index: 3;
    pointer-events: none;
    white-space: nowrap;
}

.hero-content {
    position: relative;
    z-index: 4;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.hero-text {
    max-width: 700px;
}

.hero-subtitle {
    color: var(--light-brown);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--pure-white);
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title span {
    color: var(--light-brown);
}


.hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 30px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 99, 49, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.btn-outline:hover {
    background: var(--pure-white);
    color: var(--primary-black);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--pure-white);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--pure-white);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll-wheel {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 25px; }
}

/* =========================================
   5. Sections Base Styles
   ========================================= */
section {
    position: relative;
    padding: var(--section-padding);
    /* scroll-margin-top: 155px; - DISABLED: Using JavaScript for precise control */
}

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

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

.section-subtitle {
    color: var(--primary-brown);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--primary-black);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Dark Sections */
.section-dark {
    background: var(--primary-black);
    color: var(--pure-white);
}

.section-dark .section-title {
    color: var(--pure-white);
}

.section-dark .section-description {
    color: rgba(255, 255, 255, 0.8);
}

/* =========================================
   6. About Section with Parallax Text
   ========================================= */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-bg-text {
    position: absolute;
    top: 50%;
    left: -10%;
    transform: translateY(-50%);
    font-size: 15vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(139, 99, 49, 0.05);
    text-transform: uppercase;
    z-index: 0;
    pointer-events: none;
}

.about-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    padding: 10px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-icon i {
    color: var(--pure-white);
    font-size: 20px;
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-black);
}

.feature-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.about-image {
    position: relative;
}

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

.about-overlay {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--primary-brown);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    box-shadow: var(--shadow-lg);
}

.about-overlay .number {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
}

.about-overlay .text {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* =========================================
   7. Services/Treatments Grid
   ========================================= */
.services-section {
    background: var(--light-gray);
    padding-bottom: 70px;
}

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

.service-card {
    background: var(--pure-white);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
}

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

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    padding-top: 5px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.service-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-brown);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-base);
}

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

.service-link i {
    margin-left: 8px;
}

/* =========================================
   7. Process Section (Grid Layout)
   ========================================= */
.process-section {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.process-step {
    background: var(--pure-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

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

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-brown);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    color: var(--primary-brown);
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.process-cta {
    text-align: center;
    margin-top: 60px;
}

/* =========================================
   8. Gallery with Before/After Slider
   ========================================= */
.gallery-section {
    background: var(--primary-black);
    color: var(--pure-white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--primary-brown);
    color: var(--pure-white);
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-brown);
    transform: translateY(-2px);
}

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

    /* Practitioners Page Mobile Styles */
    .practitioner-hero {
        height: 50vh;
        min-height: 400px;
    }

    .hero-logo-section {
        flex-direction: column;
        gap: 15px;
    }

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

    .hero-logo-img {
        width: 60px;
        height: 60px;
    }

    .practitioner-hero-title {
        font-size: 2rem;
    }

    .practitioner-hero-subtitle {
        font-size: 0.8rem;
    }

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

    .practitioner-image-section {
        position: static;
    }

    .practitioner-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .practitioner-info h2 {
        font-size: 1.8rem;
    }

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

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .practitioner-philosophy,
    .practitioner-cta {
        padding: 25px;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: var(--medium-gray);
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

/* Before/After Slider */
.before-after-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.before-after-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.before-side,
.after-side {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.before-img,
.after-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.side-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--pure-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.slider-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--accent-gold);
    transform: translateX(-50%);
    z-index: 3;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border: 4px solid var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.slider-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.slider-button:active {
    cursor: grabbing;
}

.slider-arrows {
    display: flex;
    gap: 2px;
    color: var(--primary-dark);
    font-size: 16px;
    font-weight: 900;
}

/* Video Gallery Items */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Action Shot Gallery Items */
.action-shot {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.action-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.action-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--pure-white);
    opacity: 0;
    transition: var(--transition);
}

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

.action-overlay h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.action-overlay p {
    font-size: 14px;
    text-align: center;
}


.gallery-info {
    padding: 25px;
    background: var(--medium-gray);
}

.gallery-info h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--pure-white);
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* =========================================
   9. Trust Badges Section
   ========================================= */
.trust-badges {
    padding: 80px 0;
    background: var(--pure-white);
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

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

@media (max-width: 768px) {
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 400px;
    }

    .badge-item {
        padding: 25px 15px;
        aspect-ratio: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .badge-item img {
        width: 30px;
        height: 30px;
        margin-bottom: 10px;
    }

    .badge-item span {
        font-size: 14px;
        line-height: 1.2;
    }
}

.badge-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: var(--pure-white);
}

.badge-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-brown);
}

.badge-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.badge-item span {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-black);
    line-height: 1.3;
    display: block;
}

/* Custom badge icons now use image files */

/* =========================================
   Laser Pricing Tables
   ========================================= */
.laser-pricing-section {
    grid-column: 1 / -1;
    margin-bottom: 40px;
}

.laser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.laser-category {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
}

.laser-category h4 {
    color: var(--accent-gold);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 10px;
}

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

.price-group h5 {
    color: var(--primary-dark);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--light-gray);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.price-row span:first-child {
    color: var(--text-secondary);
    font-size: 14px;
}

.price-row span:last-child {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 16px;
}

.price-row.featured {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-dark);
    padding: 12px 15px;
    border-radius: 8px;
    margin: 5px 0;
    border: none;
}

.price-row.featured span {
    color: var(--primary-dark);
    font-weight: 700;
}

/* Additional Services Grid */
.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
    grid-column: 1 / -1; /* Make it span full width of parent grid */
    width: 100%;
}

.service-category {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-category h4 {
    color: var(--accent-gold);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 10px;
}

.special-note {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
}

.special-note strong {
    color: var(--primary-dark);
}

/* Special Offers Section */
.special-offers-section {
    grid-column: 1 / -1;
    margin-top: 60px;
    padding: 40px 30px;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--accent-gold) 100%);
    border-radius: 20px;
}

.special-offers-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.special-offers-section h3 {
    color: var(--pure-white);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.special-offers-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

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

.offer-card {
    background: var(--pure-white);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gold);
}

.offer-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.offer-card h4 {
    color: var(--primary-dark);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.offer-discount {
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-size: 24px;
    font-weight: 900;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 15px;
}

.offer-card p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 15px;
}

.offer-note {
    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
    border-top: 1px solid var(--light-gray);
    padding-top: 15px;
}

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

    .laser-category {
        padding: 20px;
    }

    .additional-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-category {
        padding: 20px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .special-offers-section {
        padding: 30px 20px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .additional-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* =========================================
   10. Studio Showcase Section
   ========================================= */
.studio-section {
    padding: 70px 0;
    background: var(--light-bg);
}

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

.studio-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    aspect-ratio: 1 / 1;
}

.studio-image:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.studio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

/* SMP Logo Watermarks */
.gallery-item::after,
.studio-image::after,
.about-image::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 15%;
    height: 15%;
    background-image: url('../images/smp-icon-transparent.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    z-index: 10;
    pointer-events: none;
    min-width: 30px;
    min-height: 30px;
    max-width: 80px;
    max-height: 80px;
}

.studio-description {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
}

.studio-description p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .studio-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .studio-image {
        aspect-ratio: 1 / 1;
    }

    /* Hide the third studio image on mobile */
    .studio-image:nth-child(3) {
        display: none;
    }

    .studio-description {
        margin-top: 30px;
    }

    .studio-description p {
        font-size: 16px;
    }
}

/* =========================================
   11. Testimonials with Carousel
   ========================================= */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="100" fill="%23000000">"</text></svg>') no-repeat center;
    background-size: 300px;
}

.testimonials-carousel {
    position: relative;
    margin: 40px 0;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 0;
}

.star {
    color: var(--accent-gold);
    font-size: 18px;
    margin-right: 2px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0 20px 0;
}

.carousel-btn {
    background: var(--primary-brown);
    color: var(--pure-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--accent-gold);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition-base);
}

.dot.active {
    background: var(--primary-brown);
}

.dot:hover {
    background: var(--accent-gold);
}

.testimonial-item {
    text-align: center;
    padding: 40px;
}

.testimonial-card {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 40px;
    margin: 20px;
    box-shadow: var(--shadow-hover);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 20px 0 30px 0;
    font-style: italic;
}

.testimonial-content {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-style: italic;
}

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

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-image {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
}

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

.author-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary-black);
}

.author-info p {
    color: var(--primary-brown);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Responsive */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
        margin: 0 auto;
    }

    .testimonials-track {
        gap: 25px;
        justify-content: center;
    }

    .testimonials-carousel {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(100% - 40px);
        margin: 0 auto;
        max-width: 350px;
    }

    .testimonials-track {
        gap: 20px;
        justify-content: flex-start;
        padding: 0;
    }

    .testimonials-carousel {
        overflow: hidden;
    }
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--accent-gold);
    font-size: 18px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.carousel-dot.active {
    background: var(--primary-brown);
    transform: scale(1.3);
}

/* =========================================
   11. FAQ Section
   ========================================= */
.faq-section {
    padding: 100px 0;
    background: var(--light-gray);
}

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

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

.faq-item {
    background: var(--pure-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-brown);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-icon {
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    transition: var(--transition);
    color: var(--primary-brown);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.faq-answer a {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* =========================================
   12. Contact Section
   ========================================= */
.contact-section {
    padding: 100px 0;
    background: var(--primary-black);
    color: var(--pure-white);
}

.contact-section .section-title {
    color: rgba(255, 255, 255, 0.9);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    margin-top: 60px;
}

.contact-form-wrapper {
    background: var(--pure-white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

.contact-form {
    width: 100%;
}

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

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 15px 8px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    background: var(--pure-white);
    color: var(--primary-black);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-brown);
    box-shadow: 0 0 0 3px rgba(139, 99, 49, 0.1);
}

.form-group label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 16px;
    pointer-events: none;
    transition: var(--transition);
    background: var(--pure-white);
    padding: 0 5px;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: 0;
    font-size: 12px;
    color: var(--primary-brown);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 25px;
}

.form-group textarea + label {
    top: 25px;
}

.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: 0;
}

.form-group select {
    cursor: pointer;
}

.form-group select option:first-child {
    color: var(--text-light);
}

.btn-block {
    width: 100%;
    margin-top: 20px;
}

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

.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-card h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--pure-white);
    font-weight: 600;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.info-item i {
    color: var(--primary-brown);
    font-size: 20px;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--pure-white);
    font-weight: 600;
}

.info-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
    font-size: 14px;
}

.info-text a {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 500;
}

.info-text a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* Contact Buttons */
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-brown);
    color: var(--pure-white);
    padding: 10px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    margin-top: 5px;
}

.contact-btn:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 99, 49, 0.3);
}

.contact-btn .btn-icon {
    width: 35.2px;
    height: 35.2px;
    object-fit: contain;
}

.contact-btn-phone:hover {
    background: #2e8b57;
}

.contact-btn-email:hover {
    background: #4169e1;
}

/* =========================================
   12. Footer
   ========================================= */
.footer {
    background: var(--primary-black);
    color: var(--pure-white);
    padding: 80px 0 30px;
}

.footer-top {
    margin-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--pure-white);
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.footer-logo-text h3 {
    font-size: 24px;
    margin: 0;
    color: var(--pure-white);
    font-weight: 600;
    line-height: 1;
}

.footer-tagline {
    font-size: 12px;
    color: var(--primary-brown);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    line-height: 1.4;
    display: block;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 100px;
    height: 100px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    padding: 8px;
}

.footer-social a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Facebook icon specific sizing */
.footer-social a img[alt="Facebook"] {
    width: 115% !important;
    height: 115% !important;
}

/* Google Business SVG specific sizing */
.footer-social a img[alt="Google Business"] {
    width: 90% !important;
    height: 90% !important;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary-brown);
    margin-right: 12px;
    width: 16px;
    text-align: center;
}

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

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

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-brown);
    transform: translateX(5px);
    display: inline-block;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition-base);
}

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

/* =========================================
   13. Floating Home Button
   ========================================= */
.floating-home-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: var(--primary-brown);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 999;
    text-decoration: none;
    padding: 12px;
    box-shadow: var(--shadow-md);
}

.floating-home-btn:hover {
    background: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.floating-home-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-base);
}

.floating-home-btn:hover img {
    transform: scale(1.1);
}

/* =========================================
   14. Animations & Utilities
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.parallax-element {
    transition: transform 0.5s ease-out;
}

/* Text Selection */
::selection {
    background: var(--primary-brown);
    color: var(--pure-white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-brown);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* =========================================
   15. Practitioners Page Styles
   ========================================= */
.practitioner-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.practitioner-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.practitioner-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.practitioner-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(139, 99, 49, 0.6));
    z-index: -1;
}

.practitioner-hero-content {
    text-align: center;
    color: var(--pure-white);
    z-index: 1;
}

.hero-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.hero-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.hero-logo-text {
    text-align: left;
}

.practitioner-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1;
}

.practitioner-hero-subtitle {
    font-size: 1rem;
    color: var(--light-brown);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 5px;
    line-height: 1.4;
}

.practitioner-profile {
    padding: 80px 0;
    background: var(--pure-white);
}

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

.practitioner-image-section {
    position: sticky;
    top: 100px;
}

.practitioner-main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.practitioner-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-brown);
    color: var(--pure-white);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.practitioner-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-brown);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

.practitioner-info h2 {
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 10px;
}

.practitioner-info h3 {
    font-size: 1.2rem;
    color: var(--primary-brown);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.practitioner-bio {
    color: var(--text-secondary);
    line-height: 1.8;
}

.practitioner-bio p {
    margin-bottom: 20px;
}

.practitioner-bio h4 {
    color: var(--primary-black);
    font-size: 1.3rem;
    margin: 30px 0 15px;
}

.expertise-list,
.certification-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.expertise-list li,
.certification-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid var(--light-bg);
}

.expertise-list li:before,
.certification-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-brown);
    font-weight: bold;
    font-size: 1.2rem;
}

.practitioner-philosophy {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid var(--primary-brown);
}

.practitioner-cta {
    background: linear-gradient(135deg, var(--primary-black), var(--dark-brown));
    color: var(--pure-white);
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
    text-align: center;
}

.practitioner-cta h4 {
    color: var(--pure-white);
    margin-bottom: 15px;
}

.practitioner-cta p {
    margin-bottom: 25px;
}

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

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

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

.reason-card {
    background: var(--pure-white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-base);
}

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

.reason-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.reason-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.reason-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.reason-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Info Icons */
.info-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 999;
    transition: var(--transition-base);
}

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

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 50px;
    height: 50px;
    background: var(--primary-brown);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: var(--transition-base);
}

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

.back-to-top:hover {
    background: var(--dark-brown);
    transform: translateY(-3px);
}

/* Ensure body doesn't have extra space */
body {
    overflow-x: hidden;
}

/* Footer should be the last visible element */
.footer {
    position: relative;
    z-index: 1;
}

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

@media (max-width: 1400px) {
    .nav-menu-items {
        gap: 25px;
    }
}

@media (max-width: 1200px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu-items {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--primary-black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease;
        z-index: 1001;
    }

    .nav-menu-items.active {
        right: 0;
    }

    .nav-menu-items li {
        margin: 20px 0;
    }

    .nav-buttons {
        margin-left: 15px;
        gap: 10px;
    }

    .nav-menu .portal-link {
        padding: 8px 14px;
        font-size: 12px;
    }

    .nav-menu .btn-nav {
        padding: 8px 16px;
        font-size: 12px;
    }
}

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

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

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

@media (max-width: 992px) and (min-width: 769px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }


}

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

    .hero-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .hero-description {
        font-size: 16px;
    }

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

    .process-step {
        padding: 30px 20px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

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

    .service-image {
        height: 175px; /* 30% smaller than 250px */
    }

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



    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }

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

    .contact-form-wrapper {
        padding: 30px 20px;
    }

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

    .contact-info-card {
        padding: 30px 20px;
    }

    .testimonial-card {
        margin: 10px;
        padding: 25px 20px;
    }

    .testimonial-text {
        font-size: 16px;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

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

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

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

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

    .footer-social a {
        width: 75px;
        height: 75px;
    }

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

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

    .section-title {
        font-size: 28px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .hero-ghost-text {
        font-size: 30vw;
    }

    /* Stack all nav elements vertically on mobile */
    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .nav-toggle {
        display: flex;
        width: 25px;
        height: 25px;
        margin: 0;
        order: 3; /* Move hamburger to bottom */
    }

    .nav-toggle span {
        height: 2px;
        margin: 3px 0;
    }

    .nav-buttons {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        margin-left: 0;
        width: auto;
        order: 1; /* Move buttons to top */
    }

    .nav-menu .portal-link,
    .nav-menu .btn-nav {
        padding: 5px 10px;
        font-size: 11px;
        text-align: center;
        min-width: 80px;
    }

    /* Footer social buttons in 3x2 grid */
    .footer-social {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        max-width: 280px;
        margin: 0 auto;
    }

    .footer-social a {
        width: 80px;
        height: 80px;
    }
}

/* =========================================
   PRICING PAGE SPECIFIC STYLES
   ========================================= */

/* Pricing Hero Section */
.pricing-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary-dark);
}

.pricing-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pricing-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.pricing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.pricing-ghost-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 3;
    white-space: nowrap;
}

.pricing-hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pricing-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.pricing-title span {
    color: var(--primary-brown);
    -webkit-text-stroke: 3px rgba(0, 0, 0, 0.3);
    text-stroke: 3px rgba(0, 0, 0, 0.3);
}

.pricing-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.pricing-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--pure-white);
    font-weight: 500;
}

.pricing-feature .feature-icon {
    width: 20px;
    height: 20px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Pricing Content */
.pricing-content {
    padding: 100px 0;
    background: var(--light-bg);
}

.pricing-category {
    margin-bottom: 80px;
}

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

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

.pricing-card {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    position: relative;
    border: 2px solid transparent;
}

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

.pricing-card.featured {
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.price {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.price span {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-card p {
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.6;
}

.pricing-note {
    background: rgba(208, 181, 115, 0.1);
    border-left: 4px solid var(--accent-gold);
    padding: 20px 30px;
    margin-top: 40px;
    border-radius: 10px;
}

.pricing-note p {
    color: var(--text-primary);
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

/* Services Grid (for additional services) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-group {
    background: var(--pure-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.service-group:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-group h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    text-align: center;
}

.service-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-group li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-group li:last-child {
    border-bottom: none;
}

.special-offer {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-dark);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
}

.special-offer h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.special-offer p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
    .pricing-features {
        gap: 20px;
    }

    .pricing-feature {
        font-size: 14px;
    }

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

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-ghost-text {
        font-size: 25vw;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        min-height: 500px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .service-group {
        padding: 30px 20px;
    }

    .pricing-ghost-text {
        font-size: 30vw;
    }

    /* Stack all nav elements vertically on mobile */
    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .nav-toggle {
        display: flex;
        width: 25px;
        height: 25px;
        margin: 0;
        order: 3; /* Move hamburger to bottom */
    }

    .nav-toggle span {
        height: 2px;
        margin: 3px 0;
    }

    .nav-buttons {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        margin-left: 0;
        width: auto;
        order: 1; /* Move buttons to top */
    }

    .nav-menu .portal-link,
    .nav-menu .btn-nav {
        padding: 5px 10px;
        font-size: 11px;
        text-align: center;
        min-width: 80px;
    }

    /* Footer social buttons in 3x2 grid */
    .footer-social {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        max-width: 280px;
        margin: 0 auto;
    }

    .footer-social a {
        width: 80px;
        height: 80px;
    }
}

/* =========================================
   Video Highlight Effect
   ========================================= */
.highlight-video {
    animation: highlightPulse 2s ease-in-out;
}

@keyframes highlightPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(139, 99, 49, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 20px rgba(139, 99, 49, 0.1);
    }
}

/* =========================================
   Enhanced Form Validation Styles
   ========================================= */
.form-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1);
}

.form-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
    animation: successSlideIn 0.5s ease;
}

.form-success .success-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: white;
}

.form-success h4 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 600;
}

.form-success p {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
}

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

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn:disabled:hover {
    transform: none;
}