@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #2478BE;
    --primary-dark: #1A5F9E;
    --secondary-color: #2EBF91;
    --accent-color: #E8F4FD;
    --text-dark: #1E2D3D;
    --text-light: #ffffff;
    --bg-light: #F8FBFF;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --shadow: 0 10px 30px rgba(36, 120, 190, 0.08);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 80px;
}

/* Header & Navbar */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(36, 120, 190, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    padding: 5px;
    border-radius: 8px;
    transition: var(--transition);
}

.logo-link::after {
    content: "Visit Main Website ↗";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--primary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.logo-link:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.header-logo, .footer-logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
    animation: logo-zoom 3s ease-in-out infinite;
}

/* Logo Zoom Animation */
@keyframes logo-zoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.logo-link:hover .header-logo, 
.logo-link:hover .footer-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(36, 120, 190, 0.3));
}

.logo-link {
    position: relative;
    overflow: hidden;
}

/* Shine Effect */
.logo-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.75s;
    pointer-events: none;
}

.logo-link:hover::before {
    left: 150%;
}

.footer-logo {
    height: 60px;
    margin-bottom: 0; /* Adjusted for wrapper */
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-sm {
    padding: 10px 25px;
    font-size: 0.9rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.animate-up, .animate-left, .animate-right, .animate-scale {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible.animate-up { animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.visible.animate-left { animation: fadeInLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.visible.animate-right { animation: fadeInRight 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.visible.animate-scale { animation: scaleIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; }

/* Staggered Delays */
.delay-1 { animation-delay: 0.1s !important; }
.delay-2 { animation-delay: 0.2s !important; }
.delay-3 { animation-delay: 0.3s !important; }
.delay-4 { animation-delay: 0.4s !important; }
.delay-5 { animation-delay: 0.5s !important; }

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    z-index: 2000;
}

/* Floating Buttons Container */
.floating-btns {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

/* Floating WhatsApp */
.floating-whatsapp {
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #128c7e;
}

/* Scroll to Top */
.scroll-top {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2.5rem;
}

/* Base Styles */
section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(36, 120, 190, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(36, 120, 190, 0.4);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    min-height: auto;
    width: 100%;
    max-width: none;
    padding-top: var(--header-height);
    margin: 0;
    background-color: #000;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.hero::before, .hero::after,
.hero-content::before, .hero-content::after,
.banner-grid::before, .banner-grid::after {
    display: none !important;
    content: none !important;
}

.hero-banner-full {
    position: relative;
    width: 100%;
    z-index: 1;
}

.hero-banner-full img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gradient overlay for better text contrast - purely vertical, no side fades */
/*.hero-overlay {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.8) 100%);*/
/*    z-index: 2;*/
/*    box-shadow: none !important;*/
/*    display: block !important;*/
/*}*/

.banner-content {
    padding: 20px 20px 40px;
    position: relative;
    z-index: 5;
    background: transparent;
}

.banner-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.banner-line {
    width: 30px;
    height: 3px;
    background: #FF4B7D;
    margin: 0 auto 12px;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.banner-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

@media (max-width: 992px) {
    .banner-grid {
        grid-template-columns: 1fr;
    }
    .banner-item {
        height: 33.33%;
    }
    .hero {
        height: auto;
        min-height: 100vh;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/*.hero-overlay {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(0, 0, 0, 0.4);*/
/*    z-index: 2;*/
/*}*/

.hero::after {
    display: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-subtitle-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(46, 191, 145, 0.4);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-benefits-box {
    display: inline-block;
    text-align: left;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 25px 35px;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
}

.hero-benefits-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-benefits-list li:last-child {
    margin-bottom: 0;
}

.hero-benefits-list i {
    color: #2EBF91;
    font-size: 1.2rem;
}

.hero-tagline {
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    opacity: 0.9;
}

.hero-trio-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    z-index: 1;
}

.hero-trio-item {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.hero-trio-item:last-child {
    border-right: none;
}

.hero-trio-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.hero-trio-item:hover .hero-trio-img {
    transform: scale(1.05);
}

.hero-trio-label {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(36, 120, 190, 0.8);
    backdrop-filter: blur(5px);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}

.hero-trio-item:hover .hero-trio-label {
    opacity: 1;
    bottom: 40px;
}

@media (max-width: 768px) {
    .hero-trio-grid {
        grid-template-columns: 1fr;
    }
    .hero-trio-item {
        height: 33.33%;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}

.trust-line {
    margin-top: 3rem;
    font-weight: 500;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.trust-line span {
    background: rgba(255, 255, 255, 0.15);
    padding: 5px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Section 2: Pain Points */
.pain-points {
    background-color: white;
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.pain-list {
    list-style: none;
}

.pain-list li {
    margin-bottom: 1.5rem;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.pain-list li:hover {
    transform: translateX(10px);
}

.pain-list li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Section 3: Before/After */
.results {
    background-color: var(--accent-color);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.result-card {
    background: white;
    padding: 30px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    max-width: 600px;
    margin: 0 auto;
}

.result-card:hover {
    transform: translateY(-10px);
}

.result-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 15px;
    align-items: center;
    margin-bottom: 25px;
}

.transformation-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.8;
}

.result-img-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.result-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.result-card:hover .result-img {
    transform: scale(1.05);
}

.img-label {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(36, 120, 190, 0.9);
    color: white;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section 4: Why Us */
.why-us {
    background: var(--primary-color);
    color: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    text-align: center;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.why-card i {
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: inline-block;
    animation: floatIcon 3s ease-in-out infinite;
    transition: var(--transition);
}

.why-card:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(155, 134, 200, 0.5));
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Section 5: Treatments */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.treatment-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.treatment-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(36, 120, 190, 0.2);
    background: #f8ffff;
}

.treatment-card h3 {
    transition: var(--transition);
}

.treatment-card:hover h3 {
    color: var(--primary-color);
    transform: translateX(5px);
}

.treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: 0.3s;
}

.treatment-card:hover::before {
    height: 8px;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
}

/* Section 6: Process */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Section 7: Surgeon */
.surgeon {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.surgeon-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: -20px 20px 0 var(--accent-color);
}

.surgeon-credentials {
    margin: 30px 0;
}

.credential-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.credential-item .icon {
    font-size: 1.2rem;
    background: rgba(46, 191, 145, 0.1);
    color: var(--secondary-color);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.credential-item:hover .icon {
    background: var(--secondary-color);
    color: #fff;
    transform: scale(1.05);
}

.credential-item p {
    margin: 0;
    line-height: 1.4;
    font-size: 0.95rem;
}

.surgeon-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--primary-color);
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
    margin: 30px 0;
    line-height: 1.6;
}

/* Facility Section */
.facility {
    background: linear-gradient(135deg, #f8ffff 0%, #e0f7f9 100%);
    border-radius: 50px;
    margin: 40px 5%;
    padding: 80px 5%;
}

.facility-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.facility-header h3 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.facility-header .subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 30px;
}

.facility-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.facility-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feature-badge {
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(36, 120, 190, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(36, 120, 190, 0.15);
    background: var(--primary-color);
    color: white;
}

.feature-badge i {
    font-size: 1.2rem;
}

/* Section 8: Testimonials */
.testimonials-container {
    width: 100%;
    position: relative;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
}

.testimonials-container::-webkit-scrollbar {
    display: none;
}

.testimonials-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    padding: 20px 10px;
    width: max-content;
}

.testimonial-card {
    flex: 0 0 350px; /* Fixed width for slider */
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    transition: var(--transition);
}

.testimonial-card .stars {
    color: rgb(255, 193, 7); /* Updated to yellow/gold */
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
    flex-grow: 1;
}

.patient-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.avatar {
    width: 48px;
    height: 48px;
    background-color: #0d7a94; /* Dark teal from ref image */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.patient-details {
    display: flex;
    flex-direction: column;
}

.patient-details .name {
    color: #06b6d4; /* Cyan/Blue from ref image */
    font-weight: 700;
    font-size: 1rem;
}

.patient-details .status {
    color: #10b981; /* Green from ref image */
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Video Slider for Testimonials & Doctor Videos */
.video-slider-container {
    width: 100%;
    overflow-x: auto;
    padding: 20px 0 40px;
    cursor: grab;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.video-testimonials, .doctor-videos {
    position: relative;
    overflow: hidden;
}

/* Edge Fades */
.video-testimonials::before, .video-testimonials::after,
.doctor-videos::before, .doctor-videos::after,
.testimonials::before, .testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 5;
    pointer-events: none;
}

.video-testimonials::before, .doctor-videos::before, .testimonials::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

.doctor-videos::before {
    background: linear-gradient(to right, white, transparent);
}

.video-testimonials::after, .doctor-videos::after, .testimonials::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

.doctor-videos::after {
    background: linear-gradient(to left, white, transparent);
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 1px solid rgba(36, 120, 190, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.slider-arrow:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(36, 120, 190, 0.3);
}

.prev-arrow {
    left: -25px;
}

.next-arrow {
    right: -25px;
}

/* Mobile adjustments for arrows */
@media (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .prev-arrow { left: 0; }
    .next-arrow { right: 0; }
}

.video-slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.video-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    padding: 0 10px;
    width: max-content;
}

.video-wrapper {
    flex: 0 0 350px; /* Fixed width for slider items */
    position: relative;
    padding-bottom: 0;
    height: 200px; /* Specific height for slider items */
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: #000;
}

.video-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(36, 120, 190, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-testimonials, .doctor-videos {
    background-color: var(--bg-light);
}

.doctor-videos {
    background-color: white;
}

/* Section 9: Consultation */
.consultation {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 40px;
    margin: 50px auto;
    padding: 80px 5%;
}

/* Section 10: FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

details {
    background: white;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    cursor: pointer;
}

details summary {
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

details summary::after {
    content: '+';
    font-size: 1.5rem;
}

details[open] summary::after {
    content: '-';
}

/* Footer */
footer {
    background: #002527;
    color: white;
    padding: 60px 5% 20px;
    text-align: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-col a:hover {
    color: #006b72;
    transform: translateX(5px);
}

/* Map Section */
.map-location {
    background-color: white;
}

.map-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Mobile Responsive Refinements */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1001;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 15px;
        display: block;
    }

    .navbar { padding: 0 20px; }
    .hero h1 { font-size: 3rem; }
    .results-grid { grid-template-columns: 1fr; }
    .surgeon { grid-template-columns: 1fr; gap: 40px; }
    .pain-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .header-logo { height: 40px; }
    .btn-sm { padding: 8px 15px; font-size: 0.8rem; }
    .header-actions { gap: 10px !important; }
    
    .hero { height: auto; min-height: 100vh; padding: 120px 20px 80px; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .btn-group { flex-direction: column; width: 100%; gap: 15px; }
    .btn-group .btn { width: 100%; justify-content: center; }
    .trust-line { flex-direction: column; gap: 10px; align-items: center; }
    .section-title { font-size: 1.8rem; margin-bottom: 2rem; }
    section { padding: 60px 20px; }
    
    .result-comparison { grid-template-columns: 1fr; }
    .transformation-arrow { transform: rotate(90deg); margin: 10px 0; }
    
    .why-grid, .treatments-grid, .testimonials-grid { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col { text-align: center !important; }
    .footer-logo { margin: 0 auto 20px; }
    
    .floating-btns { bottom: 20px; right: 20px; }
    .floating-whatsapp { width: 50px; height: 50px; font-size: 25px; }
    .scroll-top { width: 40px; height: 40px; font-size: 16px; }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 1002;
    padding: 5px;
}

@media (max-width: 992px) {
    .mobile-menu-btn { display: block; }
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Facility & Surgeon Mobile Adjustments */
@media (max-width: 768px) {
    .facility-header h3 { font-size: 1.8rem; }
    .facility { margin: 20px 0; border-radius: 0; padding: 40px 20px; }
    .feature-badge { width: 100%; justify-content: flex-start; }
    .surgeon-info h2 { text-align: center !important; }
    .surgeon-info h3 { text-align: center; font-size: 1.8rem !important; }
    .surgeon-info p { text-align: center; }
    .surgeon-quote { text-align: center; border-left: none; border-top: 2px solid var(--secondary-color); padding: 20px 0 0; }
}

/* New Content Sections Styling */
.treatment-detail { transition: var(--transition); }
.treatment-detail:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(36, 120, 190, 0.15); }
.comparison table th, .comparison table td { border: 1px solid var(--accent-color); }
.comparison table tr:hover { background: var(--accent-color); }
.hero-content ul li { margin-bottom: 12px; font-weight: 500; }
@media (max-width: 768px) { .treatment-detail > div { flex-direction: column !important; } .comparison table { font-size: 0.9rem; } }

.hover-lift { transition: var(--transition); }
.hover-lift:hover { transform: translateY(-10px); box-shadow: 0 15px 45px rgba(36, 120, 190, 0.15); }

.hero-subtitle-badge { display: inline-block; padding: 8px 25px; background: rgba(46, 191, 145, 0.2); border: 1px solid rgba(46, 191, 145, 0.4); border-radius: 50px; color: #fff; font-size: 1.3rem; font-weight: 600; margin-bottom: 1.5rem; backdrop-filter: blur(5px); text-shadow: 0 2px 4px rgba(0,0,0,0.2); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }

.hero-subtitle-badge:hover { background: rgba(46, 191, 145, 0.3); transform: translateY(-2px); transition: var(--transition); }

/* Consent Forms Dark UI */
.consent-forms {
    background: #fff !important;
    padding: 80px 5% !important;
}

.consent-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.consent-card-horizontal {
    background: linear-gradient(135deg, #1A5F9E 0%, #2478BE 100%);
    border-radius: 40px; /* More rounded as per img 1 */
    display: flex;
    align-items: center;
    padding: 30px 50px;
    gap: 40px;
    box-shadow: 0 20px 50px rgba(36, 120, 190, 0.25);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.15);
}

.consent-card-horizontal:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(36, 120, 190, 0.35);
    background: linear-gradient(135deg, #144e82 0%, #1A5F9E 100%);
}

.consent-thumb {
    width: 100px;
    height: 130px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    padding: 5px;
    position: relative;
    display: block;
}

.consent-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(36, 120, 190, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.consent-thumb:hover .consent-thumb-overlay {
    opacity: 1;
}

.consent-thumb-overlay i {
    color: #fff;
    font-size: 2rem;
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.consent-thumb:hover .consent-thumb-overlay i {
    transform: scale(1);
}

.consent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.consent-thumb:hover img {
    transform: scale(1.1);
}

.consent-info {
    flex-grow: 1;
    text-align: left;
}

.consent-info h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.consent-info p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin: 0;
}

.consent-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-view {
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
    text-decoration: none;
    backdrop-filter: blur(5px);
}

.btn-view:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
}

.btn-download-gold {
    background: #c5a059;
    color: #fff;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-download-gold:hover {
    background: #b38f4d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
}

@media (max-width: 768px) {
    .consent-card-horizontal {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }
    .consent-info {
        text-align: center;
    }
    .consent-actions {
        width: 100%;
        flex-direction: column;
    }
    .btn-view, .btn-download-gold {
        justify-content: center;
    }
}

