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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #1a3d5c;
    --accent-color: #4a90d9;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --gold: #d4af37;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo-horizontal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-horizontal i {
    font-size: 28px;
    color: var(--primary-color);
}

.logo h1 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}
.logo img {
    width: 40px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

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

.header-contact {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.header-contact a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-color);
    transition: color 0.3s;
}

.header-contact a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--secondary-color);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.65) 0%, rgba(26, 61, 92, 0.92) 100%);
    z-index: 1;
}

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

/* Hero Section */
.hero {
    min-height: 620px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 820px;
    margin: 0 auto;
}

.hero-title {
    font-size: 52px;
    margin-bottom: 16px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 26px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 14px;
}

.hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto 35px;
}

.hero-trust-signals {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 35px;
}

.trust-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--secondary-color);
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-hero-cta:hover {
    background: #c9a635;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.55);
    color: var(--secondary-color);
}

/* Before & After Badges */
.ba-intro {
    text-align: center;
    max-width: 700px;
    margin: -20px auto 30px;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    padding: 0 20px;
}

.ba-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.ba-badge-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ba-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--white);
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.ba-badge i {
    font-size: 14px;
    color: var(--gold);
}


/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


/* Before & After Section */
.before-after {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.ba-gallery-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.ba-gallery {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
}

.ba-gallery::-webkit-scrollbar {
    display: none;
}

.ba-item {
    flex: 0 0 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.ba-item:hover {
    transform: translateY(-10px);
}

.ba-item img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.ba-nav-btn {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
    z-index: 10;
}

.ba-nav-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* Stats Counter */
.stats {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
}

/* Experience Section */
.experience {
    padding: 80px 0;
}

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

.experience-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.experience-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.video-placeholder {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 100px 50px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.video-placeholder:hover {
    background: var(--border-color);
}

.video-placeholder i {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* CTA Form */
.cta-form {
    background: var(--light-bg);
    padding: 80px 0;
    text-align: center;
}

.cta-form h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-form p {
    margin-bottom: 40px;
    font-size: 18px;
}

.simple-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.simple-form input {
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    width: 100%;
}

.simple-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.simple-form .iti {
    display: block;
    width: 100%;
}

/* Video Testimonials */
.video-testimonials {
    padding: 80px 0;
    background: var(--white);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.8;
}

.video-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.video-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
}

.video-slider::-webkit-scrollbar {
    display: none;
}

.video-item {
    flex: 0 0 480px;
    cursor: pointer;
    position: relative;
}

.video-thumbnail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.video-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.video-thumbnail img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.play-button i {
    font-size: 28px;
    color: var(--primary-color);
    margin-left: 5px;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 1);
}

.video-item.playing .video-thumbnail {
    display: none;
}

.video-item iframe {
    width: 100%;
    height: 320px;
    border-radius: 15px;
    border: none;
}

.video-nav-btn {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
    z-index: 10;
}

.video-nav-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* Review Ratings */
.review-ratings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.rating-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.rating-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.rating-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.rating-header i {
    font-size: 32px;
    color: var(--primary-color);
}

.rating-header h4 {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}
.rating-header img {
    width: 150px;
}

.rating-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.star-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
}

.stars {
    color: var(--gold);
    font-size: 24px;
}

.rating-text {
    color: #666;
    font-size: 14px;
}

/* Services */
.services {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-card.featured {
    position: relative;
    border: 3px solid var(--gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.best-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-info {
    background: var(--accent-color);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-info:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.pricing-card.featured-package {
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(44, 95, 141, 0.3);
}

.pricing-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.featured-package .pricing-header {
    background: var(--secondary-color);
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f9d776 50%, #d4af37 100%);
    color: var(--secondary-color);
    padding: 8px 22px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    border: 2px solid #f9d776;
    margin-bottom: 14px;
}

.offer-badge.premium {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    animation: shine 2s infinite;
}

@keyframes shine {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(255, 215, 0, 0.7); }
}

.pricing-header h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.package-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

.pricing-body {
    padding: 40px 30px;
}

.price {
    text-align: center;
    margin-bottom: 30px;
}

.old-price {
    display: block;
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.current-price {
    display: block;
    font-size: 48px;
    color: var(--primary-color);
    font-weight: 700;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: var(--success-color);
    font-size: 16px;
    margin-top: 2px;
}

/* About Us */
.about-us {
    padding: 80px 0;
}

.about-us .section-title {
    text-align: center;
    margin-bottom: 50px;
}

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

.about-text p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

.about-video-wrapper {
    position: relative;
    cursor: pointer;
}

.about-video-thumbnail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.about-video-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
}

.about-video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.video-play-btn i {
    font-size: 32px;
    color: var(--primary-color);
    margin-left: 6px;
}

.about-video-thumbnail:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background: rgba(255, 255, 255, 1);
}

.about-video-wrapper.playing .about-video-thumbnail {
    display: none;
}

.about-video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 15px;
    border: none;
}

/* Accreditations */
.accreditations {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

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

.accreditations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 50px;
    align-items: start;
}

.accreditation-item {
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.accreditation-item:hover {
    transform: translateY(-5px);
}

.accreditation-item img {
    max-width: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.accreditation-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
}

/* Journey Timeline */
.journey {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-icon {
    flex: 0 0 120px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-icon span {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.timeline-content p {
    color: #666;
    line-height: 1.8;
}

/* Accreditations */

.accreditations h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin: 30px 0 20px;
}

.accreditations p {
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

/* FAQ */
.faq {
    padding: 0 0 80px 0;
}

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

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    transition: background 0.3s;
}

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

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--light-bg);
}

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

.faq-answer p {
    padding: 20px;
    color: #666;
    line-height: 1.8;
}

/* WhatsApp Contact Section */
.whatsapp-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.whatsapp-box {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-icon {
    flex: 0 0 120px;
    width: 120px;
    height: 120px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.whatsapp-icon i {
    font-size: 70px;
    color: #25D366;
}

.whatsapp-content {
    flex: 1;
}

.whatsapp-content h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.whatsapp-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: var(--white);
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp i {
    font-size: 24px;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
    background: var(--light-bg);
}

.why-choose-wrapper {
    display: flex;
    flex-direction: column;
    gap: 45px;
    align-items: center;
}

.why-choose-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 900px;
}

.why-choose-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
}

.why-choose-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.clinic-slide {
    display: none;
    animation: fadeIn 0.8s ease-in-out;
}

.clinic-slide.active {
    display: block;
}

.clinic-slide img {
    width: 100%;
    height: auto;
    display: block;
}

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

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: var(--white);
    transform: scale(1.3);
}

.why-choose-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-content: start;
    width: 100%;
    max-width: 1000px;
}

.why-choose-right .feature-box {
    padding: 18px;
    gap: 14px;
}

.why-choose-right .feature-icon-box {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
}

.why-choose-right .feature-icon-box i {
    font-size: 22px;
}

.why-choose-right .feature-content h3 {
    font-size: 15px;
}

.why-choose-right .feature-content p {
    font-size: 13px;
}

.feature-box {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-icon-box {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #c9a635 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
    display: inline-block;
}

/* Contracted Institutions */
.contracted-institutions {
    padding: 80px 0;
    background: var(--white);
}

.contracted-institutions .section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

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

.institution-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.institution-card h3 {
    font-size: 20px;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 16px;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-link i {
    font-size: 20px;
    color: var(--white);
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 75px;
    height: 75px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 999;
    transition: all 0.3s;
}

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

/* intlTelInput Custom Styles */
.iti {
    width: 100%;
    display: block;
}

.iti__flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    padding: 1px;
}

.iti__selected-flag {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 8px 0 15px;
    background: transparent;
    border: none;
}

.iti input[type="tel"] {
    padding-left: 60px !important;
}

.iti__country-list {
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    max-height: 200px;
    overflow-y: auto;
}

.iti__country:hover {
    background-color: var(--light-bg);
}

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

.iti__flag-box, .iti__country-name{
    color: var(--text-color);
}

/* Contact Popup Modal */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background: var(--white);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: popupSlideIn 0.4s ease;
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-bg);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.popup-close:hover {
    background: #ff6b6b;
    color: var(--white);
    transform: rotate(90deg);
}

.popup-close i {
    font-size: 20px;
}

.popup-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 40px 30px 30px;
    text-align: center;
    color: var(--white);
    border-radius: 20px 20px 0 0;
}

.popup-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.popup-icon i {
    font-size: 40px;
    color: var(--white);
}

.popup-header h3 {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 700;
}

.popup-header p {
    font-size: 15px;
    opacity: 0.95;
    line-height: 1.6;
}

.popup-form {
    padding: 35px 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(44, 95, 141, 0.1);
}

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.popup-note {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.popup-note i {
    color: var(--success-color);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);
    z-index: 2000;
    transition: right 0.3s;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.close-menu {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-menu nav ul {
    list-style: none;
    padding: 20px;
}

.mobile-menu nav li {
    margin-bottom: 20px;
}

.mobile-menu nav a {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
}

.mobile-contact {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-whatsapp-btn {
    background: #25D366;
    color: var(--white);
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

.mobile-whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.mobile-whatsapp-btn i {
    font-size: 22px;
}

.mobile-contact-link {
    color: var(--primary-color);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    padding: 10px 0;
}

.mobile-contact-link i {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-nav, .header-contact {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

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

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

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

    .timeline::before {
        left: 40px;
    }

    .timeline-item {
        flex-direction: row !important;
    }

    .timeline-icon {
        flex: 0 0 80px;
    }

    .timeline-icon span {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 16px;
    }
}

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

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

    .input-group {
        flex-direction: column;
    }

    .radio-group {
        flex-direction: column;
    }

    .radio-btn {
        max-width: 100%;
    }

    /* Before-After Mobile Fix */
    .before-after {
        overflow: hidden;
    }

    .before-after .section-title {
        padding: 0 20px;
    }

    .before-after .container {
        padding: 0;
        max-width: 100%;
    }

    .ba-gallery-wrapper {
        flex-direction: column;
        gap: 0;
    }

    .ba-gallery {
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 20px;
        margin: 0;
        width: 100%;
    }

    .ba-gallery::-webkit-scrollbar {
        display: none;
    }

    .ba-nav-btn {
        display: none;
    }

    .ba-item {
        flex: 0 0 80vw;
        max-width: 350px;
        scroll-snap-align: center;
    }

    .ba-item img {
        height: auto;
        min-height: 280px;
        object-fit: cover;
    }

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

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

    /* Video Testimonials Mobile Fix */
    .video-testimonials {
        overflow: hidden;
    }

    .video-testimonials .section-title,
    .video-testimonials .section-intro {
        padding: 0 20px;
    }

    .video-testimonials .container {
        padding: 0;
        max-width: 100%;
    }

    .video-slider-wrapper {
        flex-direction: column;
        gap: 0;
        margin-bottom: 40px;
    }

    .video-slider {
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 10px 20px;
        margin: 0;
        width: 100%;
    }

    .video-slider::-webkit-scrollbar {
        display: none;
    }

    .video-nav-btn {
        display: none;
    }

    .video-item {
        flex: 0 0 80vw;
        max-width: 400px;
        scroll-snap-align: center;
    }

    .video-thumbnail img,
    .video-item iframe {
        height: auto;
        aspect-ratio: 16/9;
    }

    .review-ratings {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-item h3 {
        font-size: 36px;
    }

    .accreditations {
        padding: 20px 0;
    }

    .accreditations .section-title {
        margin-bottom: 20px;
    }

    .accreditations-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
    }

    .accreditation-item {
        padding: 0;
    }

    .accreditation-item img {
        max-width: 60px;
        max-height: 55px;
    }

    .accreditation-label {
        font-size: 10px;
    }

    .why-choose-wrapper {
        gap: 30px;
    }

    .why-choose-right {
        grid-template-columns: 1fr 1fr;
    }

    .why-choose-title {
        font-size: 32px;
    }

    .contracted-institutions .section-title {
        font-size: 32px;
    }

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

    .footer-content {
        gap: 30px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}

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

    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 40px 0;
    }

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

    /* Smaller mobile adjustments */
    .ba-item {
        flex: 0 0 85vw;
        max-width: 320px;
    }

    .video-item {
        flex: 0 0 85vw;
        max-width: 350px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 32px;
    }

    .stat-item p {
        font-size: 14px;
    }

    .accreditations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 0;
    }

    .accreditation-item img {
        max-width: 55px;
        max-height: 48px;
    }

    .why-choose-right {
        grid-template-columns: 1fr;
    }

    .why-choose-title {
        font-size: 26px;
    }

    .feature-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .feature-icon-box {
        flex: 0 0 60px;
    }

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

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

    .whatsapp-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .whatsapp-content h2 {
        font-size: 26px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-link {
        font-size: 14px;
    }
}

/* =============================================
   HERO TRUST SIGNALS
   ============================================= */
.hero-trust-signals {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.trust-signal-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 8px 18px;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.trust-signal-item i {
    color: var(--gold);
    font-size: 14px;
}

/* =============================================
   TECHNIQUE COMPARISON TABLE
   ============================================= */
.tech-comparison {
    padding: 80px 0;
    background: var(--white);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    margin-top: 50px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

.comparison-table thead tr {
    background: #1e2d3d;
}

.comparison-table thead th {
    padding: 22px 28px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.comparison-table thead th:first-child {
    border-radius: 16px 0 0 0;
}

.comparison-table thead th.vita-col {
    background: #1e2d3d;
    color: var(--gold);
    border-radius: 0 16px 0 0;
    font-size: 17px;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    background: var(--white);
    transition: background 0.2s;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: #fafafa;
}

.comparison-table tbody td {
    padding: 25px 28px;
    vertical-align: top;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.comparison-table tbody td:first-child {
    font-weight: 700;
    color: var(--text-color);
    font-size: 15px;
    min-width: 170px;
}

.comparison-table tbody td:first-child small {
    display: block;
    font-weight: 400;
    color: #aaa;
    font-size: 12px;
    margin-top: 4px;
}

.comparison-table tbody td.vita-col {
    background: #fffdf0;
    border-left: 2px solid #e8d87a;
}

.comparison-table tbody td.vita-col .vita-value {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #b8860b;
    margin-bottom: 5px;
}

/* =============================================
   ADVANCED CARE & SUPPORT
   ============================================= */
.advanced-care {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.care-card {
    background: var(--white);
    border-radius: 15px;
    padding: 28px 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    transition: all 0.3s;
    border-left: 4px solid var(--primary-color);
}

.care-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-left-color: var(--accent-color);
}

.care-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.care-icon i {
    font-size: 22px;
    color: var(--white);
}

.care-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 7px;
}

.care-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* =============================================
   MEDIA COVERAGE & AWARDS
   ============================================= */
.media-awards {
    padding: 80px 0;
    background: var(--secondary-color);
}

.media-awards .section-title {
    color: var(--white);
}

.media-awards .section-intro {
    color: rgba(255, 255, 255, 0.75);
}

.awards-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 55px;
}

.award-card {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 28px 22px;
    text-align: center;
    min-width: 180px;
    max-width: 220px;
    flex: 1;
    transition: all 0.3s;
}

.award-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.award-card i {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.award-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.4;
}

.award-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.media-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 40px;
}

.media-logos-label {
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.media-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
    flex-wrap: wrap;
}

.media-logo-item img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.55;
    transition: all 0.3s;
    display: block;
}

.media-logo-item img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* =============================================
   MEDICAL TEAM
   ============================================= */
.medical-team {
    padding: 80px 0;
    background: var(--white);
}

.founder-showcase {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 20px;
    padding: 50px;
    color: var(--white);
    margin-bottom: 70px;
    box-shadow: 0 15px 50px rgba(26, 61, 92, 0.25);
    position: relative;
    overflow: hidden;
}

.founder-showcase::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.founder-showcase::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.founder-img-wrap {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 1;
}

.founder-img-wrap img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.founder-details {
    position: relative;
    z-index: 1;
}

.founder-label {
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.founder-details h3 {
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.1;
}

.founder-role-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    font-weight: 400;
    font-style: italic;
}

.founder-details p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 14px;
}

.founder-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.founder-tag {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

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

.doctor-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.doctor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.14);
    border-color: var(--primary-color);
}

.doctor-photo {
    width: 100%;
    height: 270px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.doctor-info {
    padding: 22px 20px;
}

.doctor-info h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    line-height: 1.3;
}

.doctor-title-text {
    font-size: 12px;
    color: #999;
    margin-bottom: 14px;
    display: block;
    font-weight: 500;
}

.doctor-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.specialty-tag {
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 4px 11px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(44, 95, 141, 0.15);
}

/* =============================================
   DOCTOR-LED INTRO
   ============================================= */
.doctor-led-intro {
    background: linear-gradient(135deg, #f0f5fb 0%, #e8f0f8 100%);
    border-radius: 15px;
    padding: 35px 40px;
    margin-bottom: 50px;
    border-left: 5px solid var(--primary-color);
}

.doctor-led-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.3;
}

.doctor-led-intro p {
    font-size: 15px;
    color: #555;
    line-height: 1.85;
    margin: 0;
}

/* =============================================
   MAX2 QUALITY COMMITMENT CARD
   ============================================= */
.max2-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 42px 48px;
    margin-top: 55px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.max2-label {
    display: inline-block;
    background: #dde9f5;
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.max2-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 18px;
    line-height: 1.25;
}

.max2-list {
    list-style: none;
    margin-bottom: 22px;
    padding: 0;
}

.max2-list li {
    color: #444;
    font-size: 15px;
    padding: 5px 0 5px 22px;
    position: relative;
    line-height: 1.5;
}

.max2-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background: var(--primary-color);
    border-radius: 50%;
}

.max2-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 28px;
}

.btn-max2 {
    display: inline-flex;
    align-items: center;
    background: var(--secondary-color);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-max2:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(44, 95, 141, 0.3);
}

/* =============================================
   PRICING FIXED NOTE
   ============================================= */
.pricing-fixed-note {
    background: linear-gradient(135deg, #fff8e6, #fffbf0);
    border: 1px solid #e8d87a;
    border-radius: 10px;
    padding: 12px 20px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #7a6000;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.pricing-fixed-note i {
    color: #c9a635;
    font-size: 16px;
    flex-shrink: 0;
}

/* =============================================
   SPECIALIST BADGE (Afro Card)
   ============================================= */
.specialist-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #1a252f, #2c3e50);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-card.specialist {
    position: relative;
    border: 2px solid #1a3d5c;
    box-shadow: 0 10px 35px rgba(26, 61, 92, 0.2);
}

/* =============================================
   RESPONSIVE - NEW SECTIONS
   ============================================= */
@media (max-width: 992px) {
    .doctor-led-intro {
        padding: 28px 30px;
    }

    .max2-card {
        padding: 32px 35px;
    }

    .max2-title {
        font-size: 24px;
    }

    .founder-showcase {
        grid-template-columns: 260px 1fr;
        gap: 35px;
        padding: 40px;
    }

    .founder-img-wrap img {
        height: 360px;
    }

    .founder-details h3 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .hero-trust-signals {
        gap: 8px;
    }

    .trust-signal-item {
        font-size: 12px;
        padding: 6px 12px;
    }

    .doctor-led-intro {
        padding: 22px 20px;
    }

    .doctor-led-title {
        font-size: 17px;
    }

    .max2-card {
        padding: 28px 22px;
        margin-top: 40px;
    }

    .max2-title {
        font-size: 21px;
    }

    .founder-showcase {
        grid-template-columns: 1fr;
        padding: 30px 25px;
        gap: 30px;
    }

    .founder-img-wrap img {
        height: 280px;
    }

    .founder-details h3 {
        font-size: 28px;
    }

    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .doctor-photo {
        height: 200px;
    }

    .awards-row {
        gap: 12px;
    }

    .award-card {
        min-width: 140px;
        padding: 20px 15px;
    }

    .media-logos-row {
        gap: 25px;
    }

    .media-logo-item img {
        height: 22px;
    }

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

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

    .doctor-photo {
        height: 260px;
    }

    .awards-row {
        flex-direction: column;
        align-items: center;
    }

    .award-card {
        max-width: 100%;
        width: 100%;
    }

    .media-logos-row {
        gap: 20px;
    }

    .media-logo-item img {
        height: 18px;
    }
}


/* Hide: Contracted Institutions */
.contracted-institutions { display: none !important; }
