/* ========================================
   LifeSCC - Weight Loss Landing Page Styles
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #008446;
    --primary-dark: #006835;
    --primary-light: #E6F4ED;
    --secondary-color: #F59E0B;
    --accent-color: #8B5CF6;
    --dark-bg: #1F2937;
    --darker-bg: #111827;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --white: #FFFFFF;
    --light-bg: #F9FAFB;
    --border-color: #E5E7EB;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --gradient-primary: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --gradient-secondary: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Skip to Content Link (Accessibility) */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 8px 0;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Base Styles */
body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

section {
    scroll-margin-top: 60px;
    scroll-margin-bottom: 120px;
    padding: 60px 0;
}

/* Section Specific Styles */
.hero-section {
    padding: 60px 0 60px !important;
}

.lead-form-section {
    background: var(--white);
}

.lead-form-section .form-container {
    max-width: 900px;
    padding: 50px;
    margin: 0 auto;
}

.lead-form-section .form-container h2,
.lead-form-section .form-container form {
    position: relative;
    z-index: 1;
}

.treatments-section {
    background: var(--light-bg);
}

.before-after-section {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
}

.cta-mid-section {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
}

.cta-mid-section .form-container {
    max-width: 700px;
    padding: 60px 50px;
    margin: 0 auto;
    text-align: center;
}

.cta-mid-section .form-container h2,
.cta-mid-section .form-container p,
.cta-mid-section .form-container button {
    position: relative;
    z-index: 1;
}

.testimonials-section {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
}

.offers-section {
    background: var(--white);
    overflow-x:hidden;
}

.why-choose-section {
    background: var(--light-bg);
}

.branches-section {
    background: var(--white);
}

.faq-section {
    background: var(--light-bg);
}

.faq-section .accordion {
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    background: var(--white);
}

.about-section .about-content {
    max-width: 900px;
    margin: 0 auto;
}

.final-form-section {
    background: linear-gradient(135deg, #E6F4ED 0%, #F0F9F4 100%);
}

.final-form-section .form-container {
    max-width: 800px;
    padding: 50px;
    margin: 0 auto;
}

/* Icon Animations */
@keyframes pulse-slow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

@keyframes bounce-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float-left-right {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

.icon-pulse {
    animation: pulse-slow 2s ease-in-out infinite;
}

.icon-rotate {
    animation: rotate 3s linear infinite;
}

.icon-bounce {
    animation: bounce-soft 2s ease-in-out infinite;
}

.icon-float {
    display: inline-block;
    animation: float-left-right 1.2s ease-in-out infinite;
}

.icon-shake:hover {
    animation: shake 0.5s ease-in-out;
}

/* Sticky Top Bar */
.top-offer-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.top-offer-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offer-text,
.countdown-text {
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.countdown-timer {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 8px;
    line-height: normal;
}

/* Sticky Header (moved to bottom) */
.sticky-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding: 16px 0;
    transition: all 0.3s ease;
}

.sticky-header.scrolled {
    padding: 12px 0;
    box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.12);
}

/* Logo Styling */
.navbar-brand {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.header-logo {
    height: 65px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar-brand:hover .header-logo {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.sticky-header.scrolled .header-logo {
    height: 55px;
}

/* Header Phone */
.header-phone {
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 12px;
}

.header-phone:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.phone-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: all 0.3s ease;
}

.header-phone:hover .phone-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 4px 15px rgba(0, 132, 70, 0.3);
}

.phone-details {
    line-height: 1.3;
}

.phone-label {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.header-phone:hover .phone-number {
    color: var(--primary-color);
}

/* Header Button */
.sticky-header .btn-primary {
    padding: 12px 28px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0, 132, 70, 0.25);
}

.sticky-header .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 132, 70, 0.35);
}

/* Mobile Responsive Header */
@media (max-width: 991px) {
    .header-logo {
        height: 55px;
        max-width: 160px;
    }
    
    .sticky-header {
        padding: 5px;
    }
}

@media (max-width: 768px) {
    /* Hero Section - Background Carousel on Mobile */
    .hero-section {
        padding: 20px 0 !important;
        min-height: inherit;
    }

    /* Show Hero Background Carousel on Mobile */
    .hero-carousel-bg {
        display: block !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        opacity: 0.25;
    }

    .hero-carousel-bg .carousel-inner,
    .hero-carousel-bg .carousel-item,
    .hero-carousel-bg .carousel-item img {
        width: 100%;
    }

    /* Hero Content with higher z-index */
    .hero-content {
        position: relative;
        z-index: 2;
        padding-top: 40px;
    }

    /* Remove margin-top from hero content column on mobile */
    .hero-section .col-lg-6.order-lg-1.order-1 {
        margin-top: 0 !important;
    }

    /* Make title and text more visible with background */
    .hero-title {
        text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
        background: rgba(255, 255, 255, 0.85);
        padding: 16px;
        border-radius: 16px;
        backdrop-filter: blur(10px);
    }

    .hero-section .fs-5 {
        background: rgba(255, 255, 255, 0.85);
        padding: 12px;
        border-radius: 12px;
        backdrop-filter: blur(10px);
    }

    section {
        scroll-margin-top: 60px;
        scroll-margin-bottom: 120px;
        padding:30px 0;
    }
    
    /* Trust Badges - Single Line on Mobile */
    .hero-section .badge-pill {
        font-size: 9px;
        padding: 6px 12px;
        white-space: nowrap;
    }
    
    .hero-section .d-flex.gap-3.mb-4 {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        gap: 8px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-bottom: 0 !important;
        position: relative;
        bottom: -10px;
        z-index: 99;
    }
    
    .hero-section .d-flex.gap-3.mb-4::-webkit-scrollbar {
        display: none;
    }

    /* Hide CTA buttons on smaller devices */
    .hero-section .d-flex.gap-3.flex-nowrap.mt-4 {
        display: none !important;
    }
    
    /* Lead Form - Mobile Optimization */
    .lead-form-section {
        padding: 20px 0 !important;
    }
    
    .lead-form-section .form-container {
        padding: 30px 20px;
    }

    .lead-form-section h2 {
        font-size: 18px;
        margin-bottom: 20px !important;
    }

    /* Hide form labels on mobile */
    .form-container .form-label {
        display: none;
    }
    
    /* Top Offer Bar - Single Line on Mobile */
    .top-offer-bar .container {
        flex-direction: row;
        gap: 8px;
        text-align: center;
        justify-content: space-between;
    }
    
    .offer-text,
    .countdown-text {
        width: auto;
        justify-content: center;
        font-size: 11px;
        padding: 0 15px 0 0;
        margin: 0 auto;
        text-align: center;
    }
    
    .countdown-text .small {
        font-size: 12px;
    }
    
    /* Header */
    .header-logo {
        height: 50px;
        max-width: 130px;
    }
    
    .btn-header-mobile {
        padding: 10px 18px;
        font-size: 14px;
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .header-logo {
        height: 45px;
        max-width: 110px;
    }
    
    .btn-header-mobile {
        padding: 9px 14px;
        font-size: 12px;
    }
    
    .btn-header-mobile .me-2 {
        margin-right: 6px !important;
    }
}

@media (max-width: 480px) {
    .header-logo {
        height: 40px;
        max-width: 100px;
    }
    
    .btn-header-mobile {
        padding: 8px 12px;
        font-size: 11px;
    }
}

/* Sticky Right Buttons */
.sticky-right-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sticky-btn {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    text-decoration: none;
}

.sticky-btn.whatsapp {
    background: #25D366;
}

.sticky-btn.whatsapp:hover {
    background: #128C7E;
    transform: scale(1.1);
}

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

.sticky-btn.call:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* Sticky Bottom Bar */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 16px 0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 998;
}

.bottom-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 50%, #F0F9FF 100%);
    overflow: hidden;
}

/* Hero Background Carousel - Hidden on Desktop */
.hero-carousel-bg {
    display: none;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Trust Badges */
.badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 132, 70, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.badge-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 132, 70, 0.4);
}

/* Hero Quick Stats */
.hero-stats {
    padding: 20px 0;
    border-top: 2px solid rgba(0, 132, 70, 0.1);
}

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

.stat-mini-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-mini-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 132, 70, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

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

.hero-title {
    font-size: 46px;
    margin-bottom: 24px;
    color: var(--text-dark);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(90deg, rgba(0, 132, 70, 0.2) 0%, rgba(0, 132, 70, 0.3) 100%);
    z-index: -1;
    border-radius: 4px;
}

.hero-section .fs-5 {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-gray);
    font-weight: 400;
}

/* Pain Points - Modern Innovative Design */
.pain-points {
    background: 
        linear-gradient(135deg, 
            rgba(230, 244, 237, 0.95) 0%, 
            rgba(209, 250, 229, 0.9) 50%, 
            rgba(167, 243, 208, 0.85) 100%);
    padding: 40px;
    border-radius: 28px;
    margin-bottom: 32px;
    border: 1px solid rgba(0, 132, 70, 0.2);
    box-shadow: 
        0 20px 60px rgba(0, 132, 70, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.pain-points::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 132, 70, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse-slow 4s ease-in-out infinite;
}

.pain-points::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse-slow 4s ease-in-out infinite 2s;
}

.pain-points > * {
    position: relative;
    z-index: 1;
}

.pain-points h3 {
    color: #065F46;
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pain-points h3::before {
    content: '⚡';
    font-size: 32px;
    filter: drop-shadow(0 4px 8px rgba(0, 132, 70, 0.3));
    animation: bounce-soft 2s ease-in-out infinite;
}

.pain-points ul {
    display: grid;
    gap: 12px;
}

.pain-points li {
    font-size: 15px;
    font-weight: 500;
    padding: 16px 20px;
    margin-bottom: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(255, 255, 255, 0.6) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 132, 70, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.pain-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #10B981 0%, #059669 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}


.pain-points li .fas {
    color: #DC2626;
    font-size: 16px;
    transition: all 0.3s ease;
}

.pain-points li:hover .fas {
    transform: rotate(90deg) scale(1.2);
}

/* Solution Text - Modern Style */
.solution-text {
    background: linear-gradient(135deg, 
        rgba(209, 250, 229, 0.95) 0%, 
        rgba(167, 243, 208, 0.9) 50%, 
        rgba(134, 239, 172, 0.85) 100%);
    padding: 24px 28px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 16px;
    color: #065F46;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 
        0 8px 32px rgba(16, 185, 129, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.solution-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #10B981 0%, #059669 100%);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.solution-text .fas {
    color: #10B981;
    font-size: 20px;
    margin-right: 12px;
    vertical-align: middle;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
}

/* Hero CTA Buttons - Enhanced Glass Style */
.hero-section .btn-lg {
    font-weight: 700;
    letter-spacing: 0.3px;
}

.hero-section .btn-primary {
    box-shadow: 0 10px 40px rgba(0, 132, 70, 0.35), 
                inset 0 2px 0 rgba(255, 255, 255, 0.25),
                0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-section .btn-primary:hover {
    box-shadow: 0 15px 50px rgba(0, 132, 70, 0.45),
                inset 0 2px 0 rgba(255, 255, 255, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.2);
}

.hero-section .btn-outline-primary {
    box-shadow: 0 8px 32px rgba(0, 132, 70, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Carousel Container */
.carousel-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 500px;
    position: relative;
    border: 8px solid white;
}

.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 132, 70, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel-item.active img {
    animation: kenburns 8s ease-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: white;
    opacity: 0.6;
    border: none;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    width: 40px;
    border-radius: 6px;
    opacity: 1;
    background-color: var(--primary-color);
}

/* Form Styling */
.form-container {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(230, 244, 237, 0.9) 50%, 
        rgba(209, 250, 229, 0.9) 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 132, 70, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 132, 70, 0.1);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 132, 70, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.form-container::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(0, 132, 70, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.form-container > * {
    position: relative;
    z-index: 1;
}

.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 132, 70, 0.1);
}

/* Form Labels */
.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

/* Buttons - Glass Morphism Style */
.btn {
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

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

.btn-primary {
    background: linear-gradient(135deg, rgba(0, 132, 70, 0.95) 0%, rgba(0, 104, 53, 0.95) 50%, rgba(0, 77, 39, 0.95) 100%);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 132, 70, 0.3), 
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 132, 70, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(0, 132, 70, 1) 0%, rgba(0, 104, 53, 1) 50%, rgba(0, 77, 39, 1) 100%);
}

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

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 132, 70, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    border-color: var(--primary-dark);
    box-shadow: 0 12px 40px rgba(0, 132, 70, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

/* Light Button Variant (for offer cards) */
.btn-light {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    color: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    font-weight: 700;
}

.btn-light:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 100%);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* Button Sizes */
.btn-lg {
    padding: 16px 40px;
    font-size: 17px;
    border-radius: 50px;
}

/* Treatment Cards */
.treatment-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

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

.treatment-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* Before & After Cards */
.ba-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.ba-image {
    width: 100%;
    height: auto;
    min-height: 300px;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Before & After Section */
.before-after-section .row {
    margin-bottom: 0;
}

.before-after-section .ba-card .p-3 {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 100%;
    min-height: 280px;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: var(--primary-light);
    font-family: Georgia, serif;
    line-height: 1;
    display: none;
}

/* Testimonials Carousel */
#testimonialsCarousel {
    padding: 20px 0;
}

#testimonialsCarousel .carousel-item {
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

#testimonialsCarousel .carousel-control-prev,
#testimonialsCarousel .carousel-control-next {
    width: 50px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

#testimonialsCarousel .carousel-control-prev:hover,
#testimonialsCarousel .carousel-control-next:hover {
    opacity: 1;
}

#testimonialsCarousel .carousel-indicators {
    margin-bottom: -30px;
}

#testimonialsCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.5;
    transition: all 0.3s ease;
}

#testimonialsCarousel .carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.2);
}

/* YouTube Video Testimonials Section */
.youtube-testimonials-section {
    background: var(--white);
    position: relative;
}

.youtube-video-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.youtube-video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 132, 70, 0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

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

.video-info {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(249, 250, 251, 1) 100%);
}

.video-info h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
}

.video-info p {
    font-size: 14px;
    line-height: 1.6;
}

/* YouTube Carousel Controls */
#youtubeCarousel .carousel-control-prev,
#youtubeCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    opacity: 0.9;
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

#youtubeCarousel .carousel-control-prev {
    left: -25px;
}

#youtubeCarousel .carousel-control-next {
    right: -25px;
}

#youtubeCarousel .carousel-control-prev:hover,
#youtubeCarousel .carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 132, 70, 0.4);
}

#youtubeCarousel .carousel-control-prev-icon,
#youtubeCarousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

#youtubeCarousel .carousel-indicators {
    margin-bottom: -40px;
}

#youtubeCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.5;
    transition: all 0.3s ease;
    margin: 0 6px;
}

#youtubeCarousel .carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.3);
    background-color: var(--primary-dark);
}

/* YouTube Testimonials Responsive */
@media (max-width: 991px) {
    #youtubeCarousel .carousel-control-prev,
    #youtubeCarousel .carousel-control-next {
        width: 45px;
        height: 45px;
    }

    #youtubeCarousel .carousel-control-prev {
        left: -10px;
    }

    #youtubeCarousel .carousel-control-next {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .youtube-video-card {
        border-radius: 20px;
    }

    .video-info {
        padding: 24px 20px !important;
    }

    .video-info h4 {
        font-size: 18px;
    }

    .video-info p {
        font-size: 13px;
    }

    #youtubeCarousel .carousel-control-prev,
    #youtubeCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    #youtubeCarousel .carousel-control-prev {
        left: 5px;
    }

    #youtubeCarousel .carousel-control-next {
        right: 5px;
    }

    #youtubeCarousel .carousel-indicators {
        margin-bottom: -30px;
    }
}

@media (max-width: 480px) {
    .youtube-video-card {
        border-radius: 16px;
    }

    .video-info {
        padding: 20px 16px !important;
    }

    .video-info h4 {
        font-size: 16px;
        margin-bottom: 8px !important;
    }

    .video-info p {
        font-size: 12px;
    }

    #youtubeCarousel .carousel-control-prev,
    #youtubeCarousel .carousel-control-next {
        width: 36px;
        height: 36px;
    }

    #youtubeCarousel .carousel-control-prev-icon,
    #youtubeCarousel .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
}

/* Treatments Carousel - Mobile Only */
#treatmentsCarousel {
    padding: 20px 0 50px;
    position: relative;
}

#treatmentsCarousel .carousel-item {
    transition: transform 0.6s ease-in-out;
    padding: 0 10px;
}

#treatmentsCarousel .carousel-control-prev,
#treatmentsCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    opacity: 0.9;
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

#treatmentsCarousel .carousel-control-prev {
    left: 0px;
}

#treatmentsCarousel .carousel-control-next {
    right: 0px;
}

#treatmentsCarousel .carousel-control-prev:hover,
#treatmentsCarousel .carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

#treatmentsCarousel .carousel-control-prev-icon,
#treatmentsCarousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

#treatmentsCarousel .carousel-indicators {
    margin-bottom: -20px;
}

#treatmentsCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.5;
    transition: all 0.3s ease;
    margin: 0 4px;
}

#treatmentsCarousel .carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.3);
    background-color: var(--primary-dark);
}

#treatmentsCarousel .treatment-card {
    margin: 0;
}

#testimonialsCarousel .carousel-inner {
    padding: 20px 0 60px;
}

/* Smooth fade effect for testimonials */
#testimonialsCarousel .carousel-item-next,
#testimonialsCarousel .carousel-item-prev,
#testimonialsCarousel .carousel-item.active {
    display: block;
}

#testimonialsCarousel .carousel-item-next:not(.carousel-item-start),
#testimonialsCarousel .carousel-item-prev:not(.carousel-item-end),
#testimonialsCarousel .active.carousel-item-start,
#testimonialsCarousel .active.carousel-item-end {
    opacity: 0;
}

/* Offer Cards - Modern Gradient Style */
.offer-card {
    background: linear-gradient(135deg, 
        rgba(0, 132, 70, 0.95) 0%, 
        rgba(0, 104, 53, 0.98) 50%, 
        rgba(0, 77, 39, 1) 100%);
    color: var(--white);
    padding: 50px 35px;
    border-radius: 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 132, 70, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.offer-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 132, 70, 0.5),
                inset 0 2px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
}

.offer-card:hover::before {
    transform: scale(1.2);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.offer-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
}

.offer-card:hover::after {
    transform: scale(1.3);
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
}

.offer-card > * {
    position: relative;
    z-index: 1;
}

.offer-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.offer-card .display-4 {
    font-size: 48px;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    margin: 20px 0;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.offer-card p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Secondary Offer Card - Purple Gradient */
.offer-card.secondary {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.95) 0%, 
        rgba(124, 58, 237, 0.98) 50%, 
        rgba(99, 102, 241, 1) 100%);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.offer-card.secondary:hover {
    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.5),
                inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.offer-card.secondary::after {
    background: radial-gradient(circle, rgba(233, 213, 255, 0.1) 0%, transparent 70%);
}

.offer-card.secondary:hover::after {
    background: radial-gradient(circle, rgba(233, 213, 255, 0.15) 0%, transparent 70%);
}

/* Tertiary Offer Card - Orange/Gold Gradient */
.offer-card.tertiary {
    background: linear-gradient(135deg, 
        rgba(245, 158, 11, 0.95) 0%, 
        rgba(217, 119, 6, 0.98) 50%, 
        rgba(194, 65, 12, 1) 100%);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.offer-card.tertiary:hover {
    box-shadow: 0 30px 80px rgba(245, 158, 11, 0.5),
                inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.offer-card.tertiary::after {
    background: radial-gradient(circle, rgba(255, 237, 213, 0.1) 0%, transparent 70%);
}

.offer-card.tertiary:hover::after {
    background: radial-gradient(circle, rgba(255, 237, 213, 0.15) 0%, transparent 70%);
}

/* Offer Card Badge/Icon */
.offer-card .offer-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

/* Offer Card Button Override */
.offer-card .btn-light {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 255, 255, 0.95) 100%);
    color: var(--primary-dark);
    font-weight: 800;
    padding: 16px 40px;
    font-size: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-card .btn-light:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0.98) 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3),
                inset 0 2px 0 rgba(255, 255, 255, 1);
}

.offer-card.secondary .btn-light:hover {
    color: #7C3AED;
}

.offer-card.tertiary .btn-light:hover {
    color: #D97706;
}

/* Why Choose Icons */
.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.why-icon:hover {
    transform: scale(1.05);
}

.why-icon.color-1 {
    background: linear-gradient(135deg, #008446 0%, #006835 100%);
}

.why-icon.color-2 {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.why-icon.color-3 {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.why-icon.color-4 {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.why-icon.color-5 {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.why-icon.color-6 {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

/* Why Items */
.why-item {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.why-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Features Background / Stats Section */
.features-bg {
    background: url('https://themegenix.net/wp/suxnix/wp-content/uploads/2022/09/formula_bg.jpg') center/cover no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    color: #fff;
    overflow: hidden;
}

.features-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 132, 70, 0.9) 0%, rgba(0, 77, 39, 0.85) 100%);
    z-index: 1;
}

.features-bg .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid
;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-item {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s 
ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 255, 255, 0.1));
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    color: #FFD700;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 215, 0, 0.25);
}

.stat-icon svg {
    width: 45px;
    height: 45px;
    stroke-width: 2;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: #FFD700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Responsive Stats */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .stat-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stat-item {
        padding: 24px 16px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .stat-number {
        font-size: 25px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

/* Branch Cards */
.branches-scroll-container {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 24px;
    padding: 20px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-bg);
}

.branches-scroll-container::-webkit-scrollbar {
    height: 10px;
}

.branches-scroll-container::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 10px;
}

.branches-scroll-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.branches-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.branch-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    min-width: 350px;
    flex-shrink: 0;
}

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

.branch-card iframe {
    width: 100%;
    height: 250px;
    border: none;
}

/* Branch scroll arrows (optional) */
.branches-section .scroll-hint {
    text-align: center;
    margin-top: 20px;
    color: var(--text-gray);
    font-size: 14px;
}

.branches-section .scroll-hint i {
    animation: bounce-horizontal 2s ease-in-out infinite;
}

@keyframes bounce-horizontal {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

@media (max-width: 768px) {
    .branch-card {
        min-width: 300px;
    }
    
    /* Testimonials Carousel - Mobile Optimization */
    #testimonialsCarousel .carousel-inner {
        padding: 0px 0 40px;
    }

    #testimonialsCarousel .carousel-control-prev,
    #testimonialsCarousel .carousel-control-next {
        width: 40px;
        opacity: 1;
    }

    #testimonialsCarousel .carousel-indicators {
        margin-bottom: -20px;
    }

    #testimonialsCarousel .carousel-indicators button {
        width: 10px;
        height: 10px;
    }

    .testimonial-card {
        min-height: auto;
        padding: 24px;
    }

    /* Before & After Carousel - Mobile Only */
    #beforeAfterCarousel {
        padding: 20px 0 50px;
    }

    #beforeAfterCarousel .carousel-inner {
        padding: 0 10px 0px;
    }

    #beforeAfterCarousel .carousel-control-prev,
    #beforeAfterCarousel .carousel-control-next {
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        border-radius: 50%;
        opacity: 0.9;
        top: 50%;
        transform: translateY(-50%);
    }

    #beforeAfterCarousel .carousel-control-prev {
        left: 0px;
    }

    #beforeAfterCarousel .carousel-control-next {
        right: 0px;
    }

    #beforeAfterCarousel .carousel-control-prev:hover,
    #beforeAfterCarousel .carousel-control-next:hover {
        opacity: 1;
        transform: translateY(-50%) scale(1.1);
    }

    #beforeAfterCarousel .carousel-indicators {
        margin-bottom: -25px;
    }

    #beforeAfterCarousel .carousel-indicators button {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: var(--primary-color);
        opacity: 0.5;
        margin: 0 4px;
    }

    #beforeAfterCarousel .carousel-indicators button.active {
        opacity: 1;
        transform: scale(1.3);
    }

    #beforeAfterCarousel .ba-card {
        margin: 0 auto;
        max-width: 90%;
    }
}

/* Accordion Styling */
.accordion-button {
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary-dark);
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 132, 70, 0.1);
}

/* Responsive Styles */
/* Desktop - Large Screens */
@media (min-width: 1200px) {
    .ba-image {
        min-height: 320px;
        max-height: 420px;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 44px;
    }

    .carousel-container,
    .carousel-item img {
        height: 400px;
    }

    .sticky-right-buttons {
        right: 10px;
    }

    /* Before & After responsive for tablets */
    .ba-image {
        min-height: 280px;
        max-height: 380px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
        letter-spacing: -0.5px;
        text-align: center;
    }

    .hero-section .fs-5 {
        font-size: 16px;
        text-align: center;
    }

    .fs-5 {
        font-size: 1.15rem !important;
    }

    .badge-pill {
        font-size: 12px;
        padding: 6px 12px;
    }

    .stat-mini-number {
        font-size: 28px;
    }

    .stat-mini-label {
        font-size: 11px;
    }

    /* Pain Points - Tablet Responsive */
    .pain-points {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .pain-points h3 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .pain-points h3::before {
        font-size: 22px;
    }

    .pain-points li {
        padding: 10px 14px;
        font-size: 12px;
    }

    .solution-text {
        padding: 14px 16px;
        font-size: 13px;
    }

    .sticky-bottom-bar .container {
        flex-direction: column;
        text-align: center;
    }

    .top-offer-bar .container {
        justify-content: center;
        text-align: center;
    }

    .sticky-right-buttons {
        flex-direction: column;
        right: -7px;
        top: 50%;
        transform: translateY(-50%);
        bottom: auto;
    }

    .form-container {
        padding: 12px !important;
    }

    .carousel-container,
    .carousel-item img {
        height: 350px;
    }

    .carousel-container {
        border-radius: 20px;
        border-width: 4px;
    }

    .section-padding,
    .cta-section {
        padding: 60px 0;
    }

    .cta-mid-section .form-container {
        max-width: 700px;
        padding: 30px;
        margin: 0 auto;
        text-align: center;
    }

    /* Hero CTA buttons - stack on very small screens */
    .hero-section .flex-nowrap {
        flex-direction: column;
        align-items: stretch;
    }

    .mb-5 {
        margin-bottom: 1rem !important;
    }

    .hero-section .btn-lg {
        width: 100%;
        padding: 14px 32px;
        font-size: 16px;
        border-radius: 50px;
    }

    /* Before & After responsive for mobile */
    .ba-image {
        min-height: 250px;
        max-height: 350px;
    }

    .before-after-section .row {
        gap: 0px;
    }

    /* Offer Cards - Mobile Responsive */
    .offer-card {
        padding: 40px 28px;
        border-radius: 24px;
    }

    .offer-card h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .offer-card .display-4 {
        font-size: 40px;
        margin: 16px 0;
    }

    .offer-card p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .offer-card .offer-icon {
        font-size: 48px;
        margin-bottom: 16px;
    }

    .offer-card .btn-light {
        padding: 14px 32px;
        font-size: 15px;
    }

    /* Form Responsive - Mobile */
    .form-control,
    .form-select {
        font-size: 14px;
        padding: 10px 14px;
    }

    .form-control-lg,
    .form-select-lg {
        font-size: 14px;
        padding: 12px 16px;
    }

    .form-label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .col-6 .form-control,
    .col-6 .form-select {
        font-size: 13px;
        padding: 10px 12px;
    }
    .sticky-header {
        bottom: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 20px;
        line-height: 1.2;
        padding: 12px;
        border-radius: 12px;
        margin: 0 0 6px 0;
        padding-top: 18px;
    }

    .hero-section .fs-5 {
        font-size: 15px !important;
        padding: 10px;
        border-radius: 10px;
        line-height: normal;
    }

    .badge-pill {
        font-size: 11px;
        padding: 5px 10px;
    }

    .stat-mini-number {
        font-size: 24px;
    }

    .stat-mini-label {
        font-size: 10px;
    }

    /* Hide CTA buttons on smaller devices */
    .hero-section .d-flex.gap-3.flex-nowrap.mt-4 {
        display: none !important;
    }

    /* Adjust hero carousel background opacity for very small screens */
    .hero-carousel-bg {
        opacity: 0.2;
    }

    /* Before & After responsive for small mobile */
    .ba-image {
        min-height: 220px;
        max-height: 300px;
    }

    .before-after-section .ba-card .p-3 {
        padding: 16px !important;
        font-size: 14px;
    }

    /* Offer Cards - Small Mobile */
    .offer-card {
        padding: 35px 24px;
        border-radius: 20px;
    }

    .offer-card h3 {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .offer-card .display-4 {
        font-size: 36px;
        margin: 14px 0;
    }

    .offer-card p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .offer-card .offer-icon {
        font-size: 44px;
        margin-bottom: 14px;
    }

    .offer-card .btn-light {
        padding: 12px 28px;
        font-size: 14px;
        width: 100%;
    }

    /* Form Responsive - Small Mobile */
    .form-control,
    .form-select {
        font-size: 13px;
        padding: 9px 12px;
    }

    .form-control-lg,
    .form-select-lg {
        font-size: 13px;
        padding: 10px 14px;
    }

    .form-label {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .col-6 .form-control,
    .col-6 .form-select {
        font-size: 12px;
        padding: 9px 10px;
    }

    .carousel-container,
    .carousel-item img {
        height: 280px;
    }

    .carousel-container {
        border-radius: 16px;
    }

    /* Pain Points - Small Mobile */
    .pain-points {
        padding: 16px 14px;
        border-radius: 16px;
        margin-bottom: 0;
    }

    .pain-points h3 {
        font-size: 14px;
        margin-bottom: 12px;
        gap: 8px;
        margin: 0 0 5px 0 !important;
    }

    .pain-points h3::before {
        font-size: 20px;
    }

    .pain-points ul {
        display: inline;
        gap: 12px;
        width: 100px;
    }

    .pain-points li {
        padding: 8px 12px;
        font-size: 11px;
        border-radius: 12px;
        margin: 0 !important;
    }

    .pain-points li .fas {
        font-size: 11px;
    }

    .solution-text {
        padding: 12px 14px;
        font-size: 12px;
        border-radius: 14px;
        margin-top: 5px;
    }

    .solution-text .fas {
        font-size: 14px;
        margin-right: 8px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }
}

/* Footer Styles */
.footer {
    background: var(--white);
    padding: 60px 0 60px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 0;
    /* min-height: 308px; */
    position: relative;
    bottom: 0;
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: inline-block;
}

.footer h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.footer-contact p {
    font-size: 15px;
    line-height: 1.8;
}

.footer-contact a {
    transition: color 0.3s ease;
}

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

.footer-contact i {
    font-size: 16px;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-links.text-lg-end {
    justify-content: flex-end;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 132, 70, 0.3);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

/* Footer Bottom */
.footer-bottom {
    border-color: var(--border-color) !important;
}

.footer-links a {
    transition: color 0.3s ease;
}

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

/* Footer Responsive */
@media (max-width: 991px) {
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-logo {
        height: 50px;
        max-width: 160px;
    }

    .footer h5 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .footer-contact p {
        font-size: 14px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .footer-bottom {
        margin-top: 24px !important;
        padding-top: 24px !important;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .footer-links a {
        margin-right: 0 !important;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }

    .footer-logo {
        height: 45px;
        max-width: 140px;
    }

    .footer h5 {
        font-size: 15px;
    }

    .footer-contact p {
        font-size: 13px;
    }

    .social-links {
        gap: 10px;
    }

    .social-icon {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
}

/* Print Styles */
@media print {
    .sticky-top-bar,
    .sticky-right-buttons,
    .sticky-bottom-bar,
    .footer {
        display: none;
    }
}
@media (min-width: 767px) {

.pain-points::before, .pain-points::after {
    display: none;
}
.pain-points {
    background: none !important;
    padding: 0;
    border-radius: 0;
    margin-bottom: 32px;
    border: none;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: none;
}

.pain-points li {
    font-size: 15px;
    font-weight: 500;
    padding: 0;
    margin-bottom: 0;
    transition: all 0.4s 
cubic-bezier(0.4, 0, 0.2, 1);
    background: none;
    border-radius: 16px;
    border: none;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.pain-points ul {
    display: grid;
    gap: 0px;
}

.stats-grid {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
    display: flex;
    justify-content: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.stat-item {
position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s 
ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    flex: 1;
    flex: 1 1 30%;
}
}

.form-container form p {
    padding: 0;
    margin: 0;
}

@media (min-width: 768px) {
.modal-body p {
    padding: 0;
    margin: 0;
}

.modal-body .col-md-4 {
    width: 50%;
}

.modal-body .col-md-4:last-child {
    width: 100%;
}
}