:root {
    --primary: #276b8e;
    --primary-dark: #1d506b;
    --secondary: #50ba5a;
    --secondary-dark: #3e9146;
    --text-dark: #2c3e50;
    --text-light: #5d6d7e;
    --white: #ffffff;
    --bg-light: #f8fbff;
    --gold: #fbc531;
    --shadow: 0 10px 30px rgba(39, 107, 142, 0.1);
    --shadow-hover: 0 20px 40px rgba(39, 107, 142, 0.2);
    --gradient: linear-gradient(135deg, #276b8e 0%, #50ba5a 100%);
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 30px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2; /* Tighter line height for multi-line titles */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Utilities */
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(39, 107, 142, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(80, 186, 90, 0.3);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
}

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

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

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

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

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Top Bar */
.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

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

.top-bar-content i {
    margin-right: 8px;
    color: var(--secondary);
}

.phone-link a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

/* Navbar */
nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
    transition: color 0.3s;
}

.menu-toggle:hover {
    color: var(--secondary);
}

/* Booking Section */
.booking {
    background-color: var(--white);
    padding: 100px 0;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

.booking-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    border: 1px solid #eee;
}

.iframe-container {
    width: 100%;
    height: 580px; /* Visible window height */
    overflow: hidden;
    position: relative;
    background: #fdfdfd;
    -webkit-overflow-scrolling: auto; 
}

#bookingForm {
    width: 100%;
    height: 700px; /* Calculated: 120px (offset) + 580px (window). No extra height = no scrolling. */
    border: none;
    position: absolute;
    top: -120px; 
    left: 0;
    pointer-events: auto;
    overflow: hidden !important; 
    touch-action: pan-x pan-y;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}

.info-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(10px);
}

.info-card i {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-card h4 {
    margin-bottom: 5px;
    color: var(--primary);
}

.info-card p {
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 991px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .iframe-container {
        height: 540px; /* Visible window height */
    }
    
    #bookingForm {
        top: -65px;
        height: 605px; /* Calculated: 65px (offset) + 540px (window). No extra height = no scrolling. */
        -webkit-overflow-scrolling: auto;
    }
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 120px);
    padding: 60px 0;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(80, 186, 90, 0.08), transparent 40%),
                radial-gradient(circle at bottom left, rgba(39, 107, 142, 0.08), transparent 40%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(39, 107, 142, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.trust-indicators {
    display: flex;
    gap: 30px;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.text-gold { color: var(--gold); }
.color-green { color: var(--secondary); }

.hero-image {
    position: relative;
}

.floating-img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
    animation: float 6s ease-in-out infinite;
}

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

/* Affiliates */
.affiliates {
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.section-tagline {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 25px;
}

.affiliate-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 10px 0;
}

.affiliate-logos img {
    height: 35px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.affiliate-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.15; /* Specific tight tracking for section headers */
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

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

.benefit-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Services */
.services {
    padding: 100px 0;
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #eee;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.service-content {
    display: none;
}

.service-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.service-item {
    background: var(--white);
    padding: 0;
    border-radius: var(--radius-md);
    border: 1px solid #eee;
    transition: all 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 3px solid var(--bg-light);
    transition: transform 0.5s ease;
}

.service-item:hover .service-img {
    transform: scale(1.05);
}

.service-item h4 {
    color: var(--primary);
    margin: 20px 25px 10px;
    font-size: 1.2rem;
}

.service-item p {
    margin: 0 25px 25px;
    font-size: 0.95rem;
    color: var(--text-light);
    flex-grow: 1;
}

.centered-btn {
    text-align: center;
    margin-top: 50px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #fff;
}

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

.about-image img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Outfit';
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}

/* CTA Banner */
.cta-banner {
    padding: 100px 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Transformations Section */
.transformations {
    background-color: var(--bg-light);
    overflow: hidden;
    padding: 120px 0; /* More spacious top/bottom padding */
}

.transformation-carousel-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 50px;
}

.transformation-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    padding: 20px 0;
    scroll-behavior: smooth;
}

.transformation-carousel::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.transformation-item {
    flex: 0 0 300px;
    scroll-snap-align: center;
    background: var(--white);
    padding: 10px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.transformation-item:hover {
    transform: scale(1.03);
}

.transformation-item img {
    width: 100%;
    height: auto;
    border-radius: calc(var(--radius-md) - 5px);
    display: block;
}

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

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

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

@media (max-width: 768px) {
    .transformation-item {
        flex: 0 0 260px;
    }
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}

.reviews-widget-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Trustindex Custom Styling to match image */
.ti-widget {
    display: flex !important;
    align-items: center !important;
    gap: 60px !important;
}

.ti-footer {
    flex: 0 0 200px !important;
    margin-top: 0 !important;
    text-align: center;
    border-right: 1px solid #eee;
    padding-right: 40px;
}

.ti-rating-large {
    font-size: 1.8rem !important;
    display: block;
    margin-bottom: 10px;
    color: #000;
}

.ti-footer .ti-stars {
    margin-bottom: 10px;
    display: block;
}

.ti-footer .ti-rating-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.ti-large-logo img {
    max-width: 100px !important;
}

.ti-reviews-container {
    flex: 1 !important;
    position: relative;
    overflow: hidden;
}

.ti-reviews-container-wrapper {
    display: flex !important;
    gap: 20px !important;
}

.ti-review-item {
    flex: 0 0 32%;
    background: transparent !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 10px !important;
    box-shadow: none !important;
    min-height: 250px;
}

.ti-inner {
    background: #fff !important;
    border: 1px solid #eee !important;
    border-radius: 12px !important;
    padding: 25px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02) !important;
}

.ti-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.ti-profile-img img {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
}

.ti-name {
    font-weight: 700 !important;
    font-size: 1rem !important;
}

.ti-date {
    font-size: 0.8rem !important;
    color: #888 !important;
}

.ti-review-content {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    color: #444 !important;
}

.ti-read-more {
    color: #888 !important;
    font-size: 0.8rem !important;
    text-decoration: none;
    margin-top: 10px;
    display: block;
}

/* Navigation Arrows */
.ti-controls {
    display: flex !important;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: -20px;
    right: -20px;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.ti-next, .ti-prev {
    width: 40px !important;
    height: 40px !important;
    background: #fff !important;
    border: 1px solid #eee !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
    pointer-events: auto;
}

.ti-next::after, .ti-prev::after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 2px solid #555;
    border-right: 2px solid #555;
}

.ti-prev::after { transform: rotate(-135deg); margin-left: 3px; }
.ti-next::after { transform: rotate(45deg); margin-right: 3px; }

@media (max-width: 991px) {
    .reviews {
        padding: 50px 0;
    }

    /* Stack badge and carousel vertically */
    .ti-widget, 
    .ti-widget-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .ti-footer {
        width: 100% !important;
        border-right: none !important;
        padding-right: 0 !important;
        border-bottom: 1px solid #eee !important;
        padding-bottom: 30px !important;
        margin-bottom: 30px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .ti-reviews-container {
        width: 100% !important;
        position: relative !important;
        overflow: hidden !important;
    }

    /* Restore flex for the carousel logic */
    .ti-reviews-container-wrapper {
        display: flex !important;
        flex-direction: row !important;
        transition: transform 0.3s ease !important;
    }

    .ti-review-item {
        flex: 0 0 100% !important; /* One review at a time on mobile */
        width: 100% !important;
        margin: 0 !important;
        padding: 20px !important;
        min-height: auto !important;
    }

    .ti-controls {
        display: flex !important;
        left: -5px !important;
        right: -5px !important;
    }

    .ti-next, .ti-prev {
        width: 35px !important;
        height: 35px !important;
        background: rgba(255,255,255,0.9) !important;
    }
}

.cta-banner .hero-btns {
    justify-content: center;
}

/* Footer */
footer {
    padding: 80px 0 30px;
    background: #111;
    color: #fff;
}

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

.footer-brand img {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.socials a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.socials a:hover {
    background: var(--secondary);
}

.footer-contact h4, .footer-hours h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h4::after, .footer-hours h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary);
}

.footer-contact p {
    margin-bottom: 15px;
    color: #bbb;
}

.footer-contact i {
    color: var(--secondary);
    margin-right: 10px;
}

.footer-hours ul {
    list-style: none;
}

.footer-hours li {
    margin-bottom: 10px;
    color: #bbb;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
/* ==========================================
   FINAL MOBILE RESPONSIVE SWEEP (100% COVERAGE)
   ========================================== */

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

    /* Unified Section Spacing */
    section, 
    .benefits, 
    .services, 
    .about, 
    .reviews {
        padding: 50px 0 !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 0 80px !important; /* Extra bottom padding for the floating button */
        text-align: center;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image {
        order: -1; /* Image on top for better mobile visual flow */
        max-width: 300px;
        margin: 0 auto 20px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .badge {
        display: inline-block;
        margin: 0 auto 15px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.1rem;
        line-height: 1.2;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 320px;
    }

    .trust-indicators {
        justify-content: center;
        flex-direction: row;
        gap: 15px;
        margin-top: 20px;
    }

    /* About Section Mobile Fix */
    .about-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .about-text h2 br {
        display: none; /* Flow naturally on mobile */
    }

    .about-image {
        order: -1; /* Image first */
        max-width: 100%;
        width: 320px;
        margin: 0 auto;
    }

    .stats {
        justify-content: center;
        gap: 30px;
    }

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

    .footer-contact h4::after, 
    .footer-hours h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .socials {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: 0.3s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        max-height: 500px;
        padding: 20px 0;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 15px;
    }

    .menu-toggle {
        display: block;
    }

    /* Grids */
    .service-grid {
        grid-template-columns: 1fr;
    }

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

    .transformation-item {
        flex: 0 0 280px;
    }

    /* Booking Iframe Adjustments */
    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    /* Full Width Mobile Booking Fix */
    .booking .container {
        padding: 0 !important;
        max-width: 100% !important;
    }

    .booking-card {
        padding: 0;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
    }

    .iframe-container {
        height: 560px; /* Slightly taller for mobile */
        border-radius: 0;
        background: #9bd3e9;
    }

    #bookingForm {
        top: -85px; /* Shifted up more to hide the "Helping Lara Smile" header text */
        width: 114%; 
        left: -7%; 
        height: 645px; /* Adjusted height: 85 + 560 */
        -webkit-overflow-scrolling: auto;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 10px;
    }

    .transformation-item {
        flex: 0 0 250px;
    }

    .tab-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
        flex: 1 1 auto;
        text-align: center;
    }

    .services-tabs {
        flex-wrap: wrap;
    }
}
/* Promotion Section Redesign */
.promo-section {
    background: #f8fbff;
    padding: 80px 0;
}

.promo-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Content Left, Image Right */
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(11, 102, 106, 0.08);
    border: 1px solid rgba(0,0,0,0.03);
    max-width: 1100px;
    margin: 0 auto;
}

.promo-content {
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-image {
    position: relative;
    height: 100%;
    background: #eef2f6;
}

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

.promo-logo-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 150px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    z-index: 5;
    pointer-events: none;
}

.promo-logo-overlay img {
    width: 100%;
    height: auto !important;
}

.offer-label {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.promo-content h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    line-height: 1.1;
    color: var(--secondary);
}

.price-banner {
    display: inline-flex;
    flex-direction: column;
    background: var(--primary-light);
    border-left: 5px solid var(--primary);
    padding: 15px 25px;
    margin-bottom: 35px;
    border-radius: 4px;
}

.price-main {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-alt {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-top: 5px;
}

.promo-list {
    list-style: none;
    padding: 0;
    margin: 0 0 45px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.promo-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-light);
}

.promo-list li i {
    color: #2ecc71; /* Green checkmark for positivity */
    font-size: 1.2rem;
}

.promo-note {
    font-size: 0.8rem;
    color: #999;
    margin-top: 20px;
    font-style: italic;
}

/* Mobile Adjustments for Promo */
@media (max-width: 991px) {
    .promo-card {
        grid-template-columns: 1fr;
        margin: 0 15px;
    }

    .promo-image {
        order: -1;
        height: 280px; /* Fixed height on mobile to prevent "too long" look */
    }

    .promo-content {
        padding: 40px 25px;
        text-align: center;
    }

    .price-banner {
        align-self: center;
        text-align: center;
        border-left: none;
        border-top: 5px solid var(--primary);
    }

    .promo-content h2 {
        font-size: 2.1rem;
    }

    .promo-list li {
        justify-content: flex-start;
        text-align: left;
    }
}

/* Global Scroll Lock Fix */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Floating Call Button */
.floating-call-btn {
    display: none; /* Hidden on desktop */
}

@media (max-width: 991px) {
    .floating-call-btn {
        display: flex;
        position: fixed;
        bottom: 25px;
        right: 25px;
        width: 55px;
        height: 55px;
        background: #25d366; 
        color: #fff;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        z-index: 9999; /* Ensure it stays above everything */
        animation: pulsePhone 2s infinite;
        text-decoration: none;
    }
}

@keyframes pulsePhone {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* CRO Trust Bar */
.trust-bar {
    background: var(--white);
    padding: 25px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
}

.trust-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item i {
    color: var(--primary);
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(11, 102, 106, 0.1));
}

.trust-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
}

@media (max-width: 991px) {
    .trust-bar {
        padding: 40px 0;
    }
    
    .trust-bar-wrapper {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .trust-item {
        flex-direction: column;
        gap: 8px;
    }
}

/* High-Impact Values Bar */
.impact-values {
    padding: 60px 0;
    background: var(--white);
}

.impact-bar {
    background: #0a1128; /* Dark Navy as per image */
    padding: 30px 40px;
    border-radius: 60px; /* Pill shape */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    box-shadow: 0 15px 35px rgba(10, 17, 40, 0.2);
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.impact-icon {
    background: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.impact-icon i {
    color: #1a4d2e; /* Dark green as in original reference image */
    font-size: 2rem;
}

.impact-text h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--white);
    letter-spacing: 0.5px;
    font-weight: 700;
}

.impact-text p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

.impact-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 30px;
}

@media (max-width: 1024px) {
    .impact-bar {
        flex-direction: column;
        border-radius: 30px;
        padding: 40px 30px;
        gap: 30px;
    }
    
    .impact-divider {
        width: 60%;
        height: 1px;
        margin: 10px 0;
    }
    
    .impact-item {
        width: 100%;
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
}

/* Team Section */
.team {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.doctor-profile {
    display: flex;
    gap: 40px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 60px;
    align-items: flex-start;
}

.doctor-image-wrapper {
    flex: 0 0 320px;
    position: relative;
}

.doctor-portrait {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.reg-number {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(11, 102, 106, 0.9);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.doctor-info {
    flex: 1;
}

.doctor-title {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.doctor-info h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.degree {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
}

.doctor-bio {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.doctor-hobbies {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.team-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-member-img {
    height: 300px;
}

.team-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-detail {
    padding: 20px;
    text-align: center;
}

.team-detail h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.team-detail p {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .doctor-profile {
        flex-direction: column;
        padding: 30px;
    }
    
    .doctor-image-wrapper {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .doctor-portrait {
        height: 350px;
    }
}
