/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #9b59b6;
    --highlight-color: #1abc9c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.highlight {
    color: var(--highlight-color);
}

.text-center {
    text-align: center;
}

/* Button Styles */
.btn-primary, .btn-secondary, .btn-outline, .btn-emergency {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background-color: var(--highlight-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #16a085;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    color: var(--highlight-color);
    border: 2px solid var(--highlight-color);
}

.btn-outline:hover {
    background-color: var(--highlight-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-emergency {
    background-color: #e74c3c;
    color: var(--white);
    font-weight: 600;
}

.btn-emergency:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Header & Navigation */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 60px;
    width: auto;
}

.logo-text h1 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.logo-text p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    padding: 5px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--highlight-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--highlight-color);
}

.appointment-btn {
    background-color: var(--highlight-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
}

.appointment-btn:hover {
    background-color: #16a085;
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}


/* =========================
   HOMEPAGE HERO SECTION
========================= */

.hero {
    padding: 45px 0 50px;
    background: linear-gradient(
        135deg,
        #eef8ff 0%,
        #ffffff 55%,
        #eaf9f5 100%
    );
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 45px;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    margin-bottom: 10px;
    color: #159f8c;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.hero-title {
    margin-bottom: 15px;
    color: #17365d;
    font-size: clamp(2.25rem, 4vw, 3.35rem);
    line-height: 1.14;
    font-weight: 700;
}

.hero-title .highlight {
    display: block;
    color: #18b99a;
}

.hero-qualification {
    margin-bottom: 16px;
    color: #315b7d;
    font-size: 1rem;
    font-weight: 600;
}

.hero-subtitle {
    max-width: 640px;
    margin-bottom: 25px;
    color: #687986;
    font-size: 1.02rem;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.hero-buttons a:hover {
    transform: translateY(-2px);
}

.btn-whatsapp-hero {
    background: #25d366 !important;
    color: #ffffff !important;
    border: none;
    text-decoration: none !important;
}

.btn-whatsapp-hero:hover {
    background: #128c7e !important;
    color: #ffffff !important;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(190px, 1fr));
    gap: 13px 20px;
    margin-top: 27px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #17365d;
    font-size: 0.93rem;
    font-weight: 600;
}

.feature-item i {
    flex-shrink: 0;
    color: #159f8c;
    font-size: 1.05rem;
}

.hero-image-card {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(23, 54, 93, 0.18);
}

.hero-doctor {
    width: 100%;
    height: 100%;
    display: block;
     object-fit: cover;
    object-position: center 10%;
    transform: none ;

}


.doctor-badge {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 28px rgba(23, 54, 93, 0.18);
    backdrop-filter: blur(8px);
}

.doctor-badge strong,
.doctor-badge span,
.doctor-badge small {
    display: block;
}

.doctor-badge strong {
    margin-bottom: 3px;
    color: #17365d;
    font-size: 1.05rem;
    font-weight: 700;
}

.doctor-badge span {
    color: #159f8c;
    font-size: 0.9rem;
    font-weight: 600;
}

.doctor-badge small {
    margin-top: 3px;
    color: #687786;
    font-size: 0.8rem;
}
/* Stats Section */
.stats {
    background-color: var(--primary-color);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
}

.stat-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--highlight-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Services Preview */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(26, 188, 156, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--highlight-color);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-link {
    color: var(--highlight-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-color);
}

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: var(--white);
    padding: 40px 0;
}

.emergency-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.emergency-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.emergency-text h3 i {
    margin-right: 10px;
}

.emergency-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--highlight-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--highlight-color);
    padding-left: 5px;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--highlight-color);
    margin-top: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--highlight-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom i {
    color: #e74c3c;
    margin: 0 5px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: var(--white);
}

/* WhatsApp Popup Modal */
.whatsapp-modal {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 300px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 1001;
    display: none;
    animation: fadeInUp 0.3s ease;
    overflow: hidden;
}

.whatsapp-modal.active {
    display: block;
}

.modal-header {
    background: #075e54;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h4 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.modal-body {
    padding: 15px;
}

.modal-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    text-decoration: none;
    color: #333;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    border: 1px solid #eee;
}

.modal-option:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.modal-option i {
    font-size: 24px;
}

.modal-option .fa-phone-alt { color: #25D366; }
.modal-option .fa-whatsapp { color: #075e54; }

.modal-option div strong {
    display: block;
    font-size: 1rem;
}

.modal-option div small {
    font-size: 0.8rem;
    color: #666;
}

/* =========================
   CENTERS OF EXCELLENCE
========================= */

.centers-excellence {
    padding: 90px 0;
    background: linear-gradient(
        135deg,
        #f5f8fb 0%,
        #edf7f5 100%
    );
}

.centers-heading {
    max-width: 780px;
    margin: 0 auto 50px;
    text-align: center;
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.excellence-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 315px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid rgba(23, 54, 93, 0.07);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(23, 54, 93, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.excellence-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 90px;
    border-radius: 0 0 0 100%;
    background: rgba(26, 188, 156, 0.08);
}

.excellence-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(23, 54, 93, 0.14);
}

.excellence-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-bottom: 24px;
    border-radius: 18px;
    background: rgba(26, 188, 156, 0.11);
    color: var(--highlight-color);
    font-size: 1.8rem;
}

.excellence-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
    color: #17365d;
    font-size: 1.2rem;
}

.excellence-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 22px;
    color: #657582;
    font-size: 0.96rem;
    line-height: 1.75;
}

.excellence-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--highlight-color);
    text-decoration: none;
    font-weight: 600;
}

.excellence-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.excellence-link:hover i {
    transform: translateX(5px);
}

.excellence-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 45px;
    padding: 30px 35px;
    border-radius: 20px;
    background: #17365d;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(23, 54, 93, 0.18);
}

.excellence-cta h3 {
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 1.35rem;
}

.excellence-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.excellence-cta .btn-primary {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 16px 38px;
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 992px) {
    .excellence-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .centers-excellence {
        padding: 70px 0;
    }

    .excellence-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .excellence-grid {
        grid-template-columns: 1fr;
    }

    .excellence-card {
        min-height: auto;
        padding: 26px;
    }

    .excellence-cta {
        padding: 25px;
    }

    .excellence-cta .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* Centers Section */
.centers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.center-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.center-map {
    height: 250px;
    overflow: hidden;
}

.center-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.center-info {
    padding: 20px;
}

.center-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Specialties Grid - FIXED TEXT VISIBILITY */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.specialty-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    color: var(--primary-color);
}

.specialty-item:hover {
    transform: translateX(10px);
    background: var(--highlight-color);
    color: white;
}

.specialty-item i {
    font-size: 24px;
    color: var(--highlight-color);
}

.specialty-item:hover i {
    color: white;
}

.specialty-item span {
    font-weight: 500;
    color: var(--primary-color);
}

.specialty-item:hover span {
    color: white;
}

/* =========================
   ADVANCED INFRASTRUCTURE
========================= */

.infrastructure-header {
    margin-top: 70px;
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
    align-items: stretch;
}

.infrastructure-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(23, 54, 93, 0.08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(23, 54, 93, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}
.infra-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #eef5f8;
}

.infra-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.infrastructure-card:hover .infra-image img {
    transform: scale(1.05);
}

.infra-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px 26px 30px;
}

.infrastructure-card::before {
    content: "";
    position: absolute;
    top: 240px;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 4px;
    background: var(--highlight-color);
}

.infrastructure-card:hover {
    transform: translateY(-7px);
    border-color: rgba(26, 188, 156, 0.25);
    box-shadow: 0 20px 42px rgba(23, 54, 93, 0.14);
}

.infrastructure-card h3 {
    min-height: 58px;
    margin: 0;
    color: #17365d;
    font-size: 1.15rem;
    line-height: 1.45;
}

.infra-description {
    min-height: 82px;
    margin: 16px 0 22px;
    color: #667582;
    font-size: 0.93rem;
    line-height: 1.7;
}

.infrastructure-card ul {
    display: grid;
    gap: 12px;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.infrastructure-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0;
    color: #506471;
    font-size: 0.9rem;
    line-height: 1.5;
}

.infrastructure-card ul li i {
    flex: 0 0 auto;
    width: auto;
    margin-top: 4px;
    color: var(--highlight-color);
    font-size: 0.8rem;
}

/* Stroke Excellence checklist */
.stroke-points {
    display: grid;
    gap: 12px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.stroke-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #506471;
    line-height: 1.6;
}

.stroke-points li i {
    flex: 0 0 auto;
    margin-top: 5px;
}

/* Tablet */
@media (max-width: 992px) {
    .infrastructure-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .infrastructure-card:last-child {
        grid-column: 1 / -1;
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .infrastructure-header {
        margin-top: 55px;
    }

    .infrastructure-grid {
        grid-template-columns: 1fr;
    }

    .infrastructure-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .infrastructure-card h3,
    .infra-description {
        min-height: auto;
    }
}

@media (max-width: 480px) {

    .infra-image {
        height: 220px;
    }

    .infra-content {
        padding: 24px 22px 26px;
    }

    .infrastructure-card::before {
        top: 220px;
    }

    .infrastructure-card h3 {
        font-size: 1.05rem;
    }

}
/* Health Tips - FIXED TEXT VISIBILITY */
.health-tips {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: rgb(255, 255, 255);
}

.health-tips .section-title {
    color: rgb(255, 255, 255);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tip-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    color: rgb(255, 255, 255);
}

.tip-card h4 {
    color: var(--highlight-color);
    margin-bottom: 15px;
}

.tip-card ul, .tip-card p {
    margin: 0;
    padding-left: 20px;
    color: rgb(0, 0, 0);
}

.tip-card li {
    margin-bottom: 8px;
    color: rgb(0, 0, 0);
}

/* =========================
   DOCTOR INTRODUCTION
========================= */

.doctor-intro {
    padding: 90px 0;
    background: #ffffff;
}

.doctor-intro-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-eyebrow {
    margin-bottom: 10px;
    color: var(--highlight-color);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.doctor-profile {
    display: grid;
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
    gap: 55px;
    align-items: center;
}

.doctor-photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #f4f9fc;
    box-shadow: 0 20px 50px rgba(23, 54, 93, 0.15);
}

.doctor-profile-photo {
    display: block;
    width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: center 15%;
}

.doctor-photo-info {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(23, 54, 93, 0.18);
    backdrop-filter: blur(8px);
}

.doctor-photo-info h3 {
    margin-bottom: 3px;
    color: #17365d;
    font-size: 1.08rem;
}

.doctor-photo-info p {
    margin-bottom: 2px;
    color: var(--highlight-color);
    font-size: 0.92rem;
    font-weight: 600;
}

.doctor-photo-info span {
    color: var(--text-light);
    font-size: 0.8rem;
}

.doctor-bio {
    color: var(--text-color);
}

.doctor-bio p {
    margin-bottom: 18px;
    color: #5f6f7c;
    font-size: 1rem;
    line-height: 1.8;
}

.doctor-lead {
    color: #17365d !important;
    font-size: 1.12rem !important;
    font-weight: 600;
}

.qualification-box {
    margin: 28px 0;
    padding: 24px;
    border-left: 4px solid var(--highlight-color);
    border-radius: 12px;
    background: #f4faf9;
}

.qualification-box h3 {
    margin-bottom: 18px;
    color: #17365d;
    font-size: 1.18rem;
}

.doctor-qualifications {
    margin: 0;
    padding: 0;
    list-style: none;
}

.doctor-qualifications li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: #566875;
}

.doctor-qualifications i {
    margin-top: 4px;
    color: var(--highlight-color);
}

.doctor-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.area-tag {
    padding: 7px 14px;
    border-radius: 50px;
    background: rgba(26, 188, 156, 0.1);
    color: #159f8c;
    font-size: 0.82rem;
    font-weight: 600;
}

.doctor-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.doctor-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.doctor-highlights{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin:28px 0;
}

.highlight-box{
    flex:1;
    min-width:140px;
    padding:18px;
    background:#f7fbfd;
    border-radius:14px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
}

.highlight-box h3{
    color:#18b99a;
    margin-bottom:6px;
    font-size:1.8rem;
}

.highlight-box span{
    color:#667;
    font-size:.9rem;
}

@media (max-width: 992px) {
    .doctor-profile {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .doctor-photo-card {
        max-width: 560px;
        margin: 0 auto;
    }

    .doctor-bio {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .doctor-intro {
        padding: 65px 0;
    }

    .doctor-profile-photo {
        height: 430px;
    }

    .doctor-photo-info {
        right: 14px;
        bottom: 14px;
        left: 14px;
        padding: 14px 16px;
    }

    .qualification-box {
        padding: 20px;
    }

    .doctor-actions {
        flex-direction: column;
    }

    .doctor-actions a {
        width: 100%;
    }
}
/* =========================
   WHY CHOOSE US
========================= */

.why-choose-us {
    padding: 90px 0;
    background: #ffffff;
}

.why-heading {
    max-width: 780px;
    margin: 0 auto 50px;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.why-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    border: 1px solid rgba(23, 54, 93, 0.08);
    border-radius: 18px;
    background: #f8fbfd;
    box-shadow: 0 10px 28px rgba(23, 54, 93, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(23, 54, 93, 0.12);
}

.why-icon {
    flex: 0 0 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: rgba(26, 188, 156, 0.12);
    color: var(--highlight-color);
    font-size: 1.55rem;
    transition: transform 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.08);
}

.why-card h3 {
    margin-bottom: 8px;
    color: #17365d;
    font-size: 1.12rem;
}

.why-card p {
    margin: 0;
    color: #657582;
    font-size: 0.94rem;
    line-height: 1.7;
}

.why-cta {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    margin-top: 42px;
    padding: 26px 30px;
    border-radius: 18px;
    background: linear-gradient(135deg, #eef8ff, #edf9f6);
    border: 1px solid rgba(26, 188, 156, 0.12);
}

.why-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--highlight-color);
    color: #ffffff;
    font-size: 1.3rem;
}

.why-cta-text h3 {
    margin-bottom: 4px;
    color: #17365d;
    font-size: 1.2rem;
}

.why-cta-text p {
    margin: 0;
    color: #687986;
}

.why-cta .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 70px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-cta {
        grid-template-columns: auto 1fr;
    }

    .why-cta .btn-outline {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .why-card {
        padding: 24px;
    }

    .why-icon {
        flex-basis: 54px;
        width: 54px;
        height: 54px;
        font-size: 1.35rem;
    }

    .why-cta {
        padding: 24px;
    }
}

/* Page Hero Styles */
.page-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    color: var(--white);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* About Page Styles - FIXED with Images */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
}

.neuro-pattern {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.2), rgba(52, 152, 219, 0.2));
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.neuro-pattern i {
    font-size: 120px;
    color: rgba(26, 188, 156, 0.3);
}

.stats-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    display: flex;
    justify-content: space-around;
    border-radius: 0 0 10px 10px;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--highlight-color);
    margin-bottom: 5px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(26, 188, 156, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--highlight-color);
}

/* Appointment Page Styles */
.appointment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.benefits-list {
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.benefit-item i {
    color: var(--highlight-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.emergency-box {
    background-color: #ffeaea;
    border-left: 4px solid #e74c3c;
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
}

.emergency-box h3 {
    color: #e74c3c;
    margin-bottom: 10px;
}

.appointment-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--highlight-color);
    box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 20px;
    text-align: center;
}

.form-note a {
    color: var(--highlight-color);
}

.whatsapp-booking {
    background-color: #25D366;
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 60px;
}

.whatsapp-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.whatsapp-icon {
    font-size: 4rem;
}

.whatsapp-text {
    flex: 1;
    min-width: 300px;
}

.whatsapp-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.btn-whatsapp {
    background-color: var(--white);
    color: #25D366;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background-color: #f5f5f5;
    transform: translateY(-3px);
    color: #128C7E;
}

.whatsapp-note {
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.9;
}

.appointment-tips {
    margin-top: 80px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tip-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-card i {
    font-size: 2.5rem;
    color: var(--highlight-color);
    margin-bottom: 20px;
}

/* Contact Page Styles - FIXED Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-methods {
    margin: 30px 0;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateX(10px);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 188, 156, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon i {
    font-size: 24px;
    color: var(--highlight-color);
}

.method-details h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.method-details p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.method-link {
    color: var(--highlight-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
}

.operating-hours {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.operating-hours h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hours-grid {
    display: grid;
    gap: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.hours-item .day {
    font-weight: 500;
    color: var(--primary-color);
}

.hours-item .time {
    color: var(--text-light);
}

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Success Message */
.success-message, .error-message {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.map-section {
    margin-top: 60px;
}

.map-container {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.emergency-contact-banner {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    padding: 40px;
    border-radius: 15px;
    margin: 60px 0;
    color: white;
}

.emergency-contact-banner .emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.emergency-icon i {
    font-size: 60px;
}

.faq-section {
    margin-top: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: var(--white);
    transition: var(--transition);
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-question h4 {
    margin: 0;
    font-size: 1rem;
}

.faq-question i:last-child {
    transition: var(--transition);
}

.faq-item.active .faq-question i:last-child {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 300px;
}

/* Doctors Page Styles */
.lead-doctor {
    margin-bottom: 80px;
}

.doctor-profile-large {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.doctor-image-large {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    padding: 40px;
    text-align: center;
    position: relative;
}

.doctor-avatar-large {
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.doctor-avatar-large i {
    font-size: 80px;
    color: white;
}



.doctor-details-large {
    padding: 40px;
}

.doctor-details-large h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.doctor-qualification {
    color: var(--highlight-color);
    font-weight: 500;
    margin-bottom: 5px;
}

.doctor-experience {
    color: var(--text-light);
    margin-bottom: 20px;
}

.specialization-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.tag {
    background: rgba(26, 188, 156, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--highlight-color);
}

.doctor-achievements ul {
    list-style: none;
    padding: 0;
}

.doctor-achievements ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.doctor-achievements ul li i {
    color: var(--highlight-color);
    width: 20px;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.doctor-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.doctor-card:hover {
    transform: translateY(-10px);
}

.doctor-card-image {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    padding: 30px;
}

.doctor-avatar-card {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.doctor-avatar-card i {
    font-size: 50px;
    color: white;
}

.doctor-card-content {
    padding: 20px;
}

.doctor-card-content h3 {
    margin-bottom: 5px;
}

.doctor-title {
    color: var(--highlight-color);
    font-weight: 500;
    margin-bottom: 5px;
}

.doctor-qual {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.doctor-specialty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
    font-size: 14px;
}

.doctor-specialty i {
    color: var(--highlight-color);
}

.doctor-exp, .doctor-availability {
    font-size: 14px;
    color: var(--text-light);
    margin: 10px 0;
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
    margin-top: 10px;
    display: inline-block;
}

.support-staff {
    margin-top: 60px;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.staff-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.staff-card:hover {
    transform: translateY(-5px);
}

.staff-card i {
    font-size: 40px;
    color: var(--highlight-color);
    margin-bottom: 15px;
}

/* Testimonials - ADDED IMAGE STYLES */
.testimonials {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    padding: 80px 0;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-content {
    position: relative;
    padding: 20px;
    text-align: center;
}

.testimonial-content .fa-quote-left {
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(26, 188, 156, 0.2);
    font-size: 30px;
}

.testimonial-content .fa-quote-right {
    position: absolute;
    bottom: 0;
    right: 0;
    color: rgba(26, 188, 156, 0.2);
    font-size: 30px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
}

.testimonial-author {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.testimonial-info h4 {
    margin-bottom: 5px;
}

.rating {
    color: #f39c12;
    margin-top: 10px;
}

/* Services Page Styles */
.service-category {
    margin-bottom: 80px;
}

.service-header {
    text-align: center;
    margin-bottom: 40px;
}

.service-category-icon {
    width: 80px;
    height: 80px;
    background: rgba(26, 188, 156, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-category-icon i {
    font-size: 40px;
    color: var(--highlight-color);
}

.service-header h2 {
    color: var(--primary-color);
}

.category-description {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse .service-details {
    direction: ltr;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--highlight-color);
    width: 20px;
}

.treatment-approach {
    margin-top: 30px;
    padding: 20px;
    background: rgba(26, 188, 156, 0.05);
    border-radius: 10px;
}

.image-placeholder {
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.1), rgba(52, 152, 219, 0.1));
    height: 300px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.image-placeholder i {
    font-size: 60px;
    color: var(--highlight-color);
}

.diagnostic-services {
    margin-top: 80px;
}

.diagnostic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.diagnostic-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.diagnostic-card:hover {
    transform: translateY(-5px);
}

.diagnostic-icon {
    width: 80px;
    height: 80px;
    background: rgba(26, 188, 156, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.diagnostic-icon i {
    font-size: 40px;
    color: var(--highlight-color);
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes doctorTalk {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.05) rotate(2deg); }
    75% { transform: scale(1.05) rotate(-2deg); }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Animation Classes */
.fade-in { animation: fadeIn 1s ease-out; }
.slide-in-left { animation: slideInLeft 1s ease-out; }
.slide-in-right { animation: slideInRight 1s ease-out; }
.pulse { animation: pulse 2s infinite; }
.doctor-talk { animation: doctorTalk 3s infinite; }
.heartbeat { animation: heartbeat 1.5s ease infinite; }

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.doctor-avatar {
    animation: doctorTalk 5s infinite;
}

.speech-bubble {
    animation: float 4s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .appointment-container,
    .contact-container,
    .service-content,
    .doctor-profile,
    .doctor-profile-large {
        grid-template-columns: 1fr;
    }
    
    .service-content.reverse {
        direction: ltr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 20px 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .emergency-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero {
        padding-top: 130px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .appointment-form,
    .contact-form-container {
        padding: 25px;
    }
    
    .whatsapp-modal {
        width: 280px;
        right: 15px;
        bottom: 80px;
    }
    
    .doctor-profile {
        text-align: center;
    }
    
    .doctor-avatar-large {
        width: 180px;
        height: 180px;
    }
    
    .doctor-avatar-large i {
        font-size: 70px;
    }
    
    .centers-grid {
        grid-template-columns: 1fr;
    }
    
    .strengths-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
    
    .diagnostic-grid {
        grid-template-columns: 1fr;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .infrastructure-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   HERO RESPONSIVE
========================= */

@media (max-width: 992px) {
    .hero {
        padding: 35px 0 45px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .hero-image-card {
        max-width: 600px;
        height: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 25px 0 35px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-qualification {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-image-card {
        height: 420px;
        border-radius: 18px;
    }

    .doctor-badge {
        right: 14px;
        bottom: 14px;
        left: 14px;
    }
}

/* =========================
   DISABLE HERO TITLE LETTER ANIMATION
========================= */

.hero-title,
.hero-title span,
.hero-title .highlight,
.hero-title span span {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-title span:not(.highlight) {
    display: inline;
}

.hero-title .highlight {
    display: block;
}
/* Keep hero content below the fixed header */
.hero {
    padding-top: 75px !important;
}


/* =========================
   OUR CENTERS
========================= */

.our-centers {
    padding: 90px 0;
    background: #f7fbfd;
}

.our-centers .centers-heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.location-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 14px 35px rgba(0,0,0,.08);
    transition:.35s;
    display:flex;
    flex-direction:column;
}

.location-card:hover{
    transform:translateY(-10px);
    box-shadow:0 24px 50px rgba(0,0,0,.14);
}

.location-image{
    position:relative;
    overflow:hidden;
    height:360px;
    border-radius:22px 22px 0 0;
    background:#eef5f8;
}

.location-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s ease;
}

.location-card:hover .location-image img{
    transform:scale(1.05);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-content{
    padding:30px;
    display:flex;
    flex-direction:column;
    gap:18px;
    flex:1;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(26, 188, 156, 0.12);
    color: var(--highlight-color);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.location-content h3 {
    margin-bottom: 12px;
    color: #17365d;
    font-size: 1.24rem;
    line-height: 1.35;
}

.location-description {
    margin-bottom: 18px;
    color: #657582;
    font-size: 0.93rem;
    line-height: 1.7;
}

.location-services {
    display: grid;
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.location-services li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #506471;
    font-size: 0.9rem;
    line-height: 1.5;
}

.location-services i {
    margin-top: 3px;
    color: var(--highlight-color);
}

.location-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease;
}

.location-btn:hover {
    transform: translateY(-2px);
}

.location-btn-primary {
    background: var(--highlight-color);
    color: #ffffff;
}

.location-btn-outline {
    border: 1px solid var(--highlight-color);
    background: transparent;
    color: var(--highlight-color);
}

.centers-bottom-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding: 28px 30px;
    border-radius: 18px;
    background: linear-gradient(135deg, #17365d, #214f78);
    color: #ffffff;
}

.centers-bottom-cta h3 {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 1.22rem;
}

.centers-bottom-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.centers-bottom-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 210px;
    padding: 15px 24px;
}

.location-phone {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 18px 0;
}

.location-phone-item {
    padding: 12px 14px;
    background: #f5f9fb;
    border: 1px solid rgba(20, 75, 95, 0.12);
    border-radius: 12px;
}

.location-phone-item span {
    display: block;
    margin-bottom: 4px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #65747c;
}

.location-phone-item a {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
}

.location-phone-item a:hover {
    text-decoration: underline;
}

.location-btn-emergency {
    background: #c62828;
    border-color: #c62828;
    color: #ffffff;
}

.location-btn-emergency:hover {
    background: #a91f1f;
    border-color: #a91f1f;
    color: #ffffff;
}
@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .location-card:last-child {
        grid-column: 1 / -1;
        max-width: 560px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .our-centers {
        padding: 70px 0;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .centers-bottom-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .centers-bottom-cta .btn-primary {
        width: 100%;
    }
     .location-image {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .location-content {
        padding: 22px;
    }

    .location-actions {
        grid-template-columns: 1fr;
    }

    .location-image {
    height: 230px;
    }
    .location-phone {
    grid-template-columns: 1fr;
}
}

/* =========================
   GOOGLE REVIEWS SECTION
========================= */

.testimonials {
    padding: 90px 0;
    background: #f7fafc;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 45px;
    align-items: stretch;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px;
    border: 1px solid rgba(23, 54, 93, 0.08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(23, 54, 93, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-7px);
    border-color: rgba(26, 188, 156, 0.25);
    box-shadow: 0 20px 42px rgba(23, 54, 93, 0.14);
}

.testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 22px;
}

.google-review-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #506471;
    font-size: 0.82rem;
    font-weight: 700;
}

.google-review-label i {
    color: #4285f4;
    font-size: 1rem;
}

.rating {
    display: flex;
    gap: 3px;
    color: #f4b400;
    font-size: 0.88rem;
}

.testimonial-content {
    position: relative;
    flex: 1;
}

.testimonial-content .quote-icon {
    display: block;
    margin-bottom: 15px;
    color: rgba(26, 188, 156, 0.22);
    font-size: 2rem;
}

.testimonial-content p {
    margin: 0;
    color: #586b78;
    font-size: 0.95rem;
    line-height: 1.75;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid rgba(23, 54, 93, 0.08);
}

.testimonial-avatar {
    display: flex;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(26, 188, 156, 0.12);
    color: var(--highlight-color);
    font-size: 0.88rem;
    font-weight: 800;
}

.testimonial-info h4 {
    margin: 0 0 4px;
    color: #17365d;
    font-size: 0.98rem;
}

.testimonial-info p {
    margin: 0 0 3px;
    color: #667582;
    font-size: 0.8rem;
}

.testimonial-info small {
    color: #94a1aa;
    font-size: 0.74rem;
}

.google-reviews-action {
    margin-top: 38px;
    text-align: center;
}

.google-reviews-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 13px 24px;
    border: 1px solid rgba(23, 54, 93, 0.12);
    border-radius: 10px;
    background: #ffffff;
    color: #17365d;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(23, 54, 93, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.google-reviews-btn i {
    color: #4285f4;
}

.google-reviews-btn:hover {
    transform: translateY(-3px);
    background: #f8fbfd;
    box-shadow: 0 13px 28px rgba(23, 54, 93, 0.13);
}

@media (max-width: 992px) {
    .testimonial-slider {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 70px 0;
    }

    .testimonial-slider {
        grid-template-columns: 1fr;
        margin-top: 35px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 24px 21px;
    }

    .testimonial-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}
/* =========================
   PREMIUM CTA SECTION
========================= */

.cta-section {
    position: relative;
   padding: 70px 0 80px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(18, 52, 86, 0.97),
            rgba(20, 106, 120, 0.94)
        );
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -130px;
    right: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: -160px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
}

.cta-eyebrow {
    margin: 0 0 14px;
    color: #8fe3d3;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.cta-content h2 {
    max-width: 800px;
    margin: 0 auto 20px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
}

.cta-content h2 span {
    color: #8fe3d3;
}

.cta-description {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
    line-height: 1.8;
}

.cta-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 16px;
    max-width: 700px;
    margin: 35px auto 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    width: 100%;
    padding: 14px 23px;
}

.cta-section .btn-primary {
    border: 1px solid var(--highlight-color);
    background: var(--highlight-color);
    color: #ffffff;
}

.cta-section .btn-primary:hover {
    transform: translateY(-3px);
    background: #16a98c;
}

.cta-section .btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    backdrop-filter: blur(5px);
}

.cta-section .btn-outline:hover {
    transform: translateY(-3px);
    border-color: #ffffff;
    background: #ffffff;
    color: #17365d;
}

.cta-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    text-align: left;
    backdrop-filter: blur(7px);
}

.cta-trust-item i {
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: rgba(143, 227, 211, 0.14);
    color: #8fe3d3;
    font-size: 1rem;
}

.cta-trust-item strong {
    display: block;
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 0.91rem;
}

.cta-trust-item span {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.76rem;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .cta-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 75px 0;
    }

    .cta-buttons {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 35px auto 0;
    }

    .cta-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .cta-trust-grid {
        grid-template-columns: 1fr;
    }

    .cta-trust-item {
        max-width: 370px;
        width: 100%;
        margin: 0 auto;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}
.btn-emergency {
    border: 1px solid #dc3545;
    background: #dc3545;
    color: #ffffff;
}

.btn-emergency:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(220, 53, 69, 0.35);
}


/* ==================================================
   SERVICES PAGE
================================================== */

html {
    scroll-behavior: smooth;
}

/* Prevent anchored sections from hiding behind sticky header */
.service-detail-card {
    scroll-margin-top: 120px;
}


/* SERVICES HERO */

.services-page-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 85px;
    text-align: center;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(24, 188, 155, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 75%,
            rgba(31, 69, 104, 0.09),
            transparent 30%
        ),
        linear-gradient(135deg, #f7fffd 0%, #ffffff 55%, #f5f9fc 100%);
}

.services-page-hero::before,
.services-page-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.services-page-hero::before {
    width: 280px;
    height: 280px;
    top: -120px;
    right: -80px;
    background: rgba(24, 188, 155, 0.08);
}

.services-page-hero::after {
    width: 220px;
    height: 220px;
    bottom: -120px;
    left: -70px;
    background: rgba(31, 69, 104, 0.06);
}

.services-page-hero .container {
    position: relative;
    z-index: 2;
    max-width: 950px;
}

.services-page-hero h1 {
    max-width: 850px;
    margin: 12px auto 22px;
    color: #173654;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.15;
    font-weight: 800;
}

.services-page-hero > .container > p:not(.section-eyebrow) {
    max-width: 780px;
    margin: 0 auto;
    color: #617184;
    font-size: 1.06rem;
    line-height: 1.8;
}

.services-hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 32px;
}

.services-hero-actions .btn-primary,
.services-hero-actions .btn-outline {
    min-height: 50px;
}


/* SERVICES OVERVIEW */

.services-overview {
    padding: 90px 0;
    background: #ffffff;
}

.services-overview-heading {
    max-width: 790px;
    margin: 0 auto 55px;
    text-align: center;
}

.services-overview-heading .section-title {
    margin-bottom: 16px;
}


/* SERVICE DETAIL CARD */

.service-detail-card {
    position: relative;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 28px;
    margin-bottom: 34px;
    padding: 38px;
    border: 1px solid #e4eeed;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(22, 54, 84, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-4px);
    border-color: rgba(24, 188, 155, 0.42);
    box-shadow: 0 20px 48px rgba(22, 54, 84, 0.12);
}

.service-detail-card:nth-of-type(even) {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffd 100%);
}


/* SERVICE ICON */

.service-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, #18bc9b, #0da98a);
    color: #ffffff;
    font-size: 1.75rem;
    box-shadow: 0 12px 26px rgba(24, 188, 155, 0.22);
}

.service-detail-content {
    min-width: 0;
}

.service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 27px;
    margin-bottom: 8px;
    padding: 0 10px;
    border-radius: 50px;
    background: #e7f8f4;
    color: #08a888;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.service-detail-content h2 {
    margin: 0 0 13px;
    color: #173654;
    font-size: clamp(1.55rem, 3vw, 2rem);
    line-height: 1.25;
}

.service-intro {
    max-width: 930px;
    margin-bottom: 28px;
    color: #617184;
    font-size: 1rem;
    line-height: 1.75;
}


/* TWO-COLUMN SERVICE INFORMATION */

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.service-detail-grid > div {
    padding: 24px;
    border: 1px solid #e4efed;
    border-radius: 17px;
    background: #f8fbfb;
}

.service-detail-grid h3 {
    position: relative;
    margin: 0 0 17px;
    padding-bottom: 12px;
    color: #173654;
    font-size: 1.05rem;
    font-weight: 750;
}

.service-detail-grid h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    border-radius: 10px;
    background: #18bc9b;
}


/* SERVICE LIST */

.service-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #53677b;
    font-size: 0.94rem;
    line-height: 1.55;
}

.service-list li i {
    flex: 0 0 auto;
    margin-top: 4px;
    color: #18bc9b;
    font-size: 0.84rem;
}


/* STROKE EMERGENCY NOTE */

.service-emergency-note {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    margin-top: 24px;
    padding: 20px 22px;
    border-left: 4px solid #ef5a5a;
    border-radius: 12px;
    background: #fff5f5;
}

.service-emergency-note > i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: #ef5a5a;
    font-size: 1.35rem;
}

.service-emergency-note strong {
    display: block;
    margin-bottom: 5px;
    color: #b83636;
    font-size: 1rem;
}

.service-emergency-note p {
    margin: 0;
    color: #725454;
    line-height: 1.65;
}


/* SERVICES CTA */

.services-page-cta {
    padding: 70px 0;
    background: linear-gradient(135deg, #173654 0%, #214c6c 100%);
}

.services-page-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.services-page-cta .section-eyebrow {
    margin-bottom: 10px;
    color: #63e0c5;
}

.services-page-cta h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.25;
}

.services-page-cta p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

.services-page-cta-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 13px;
}

.services-page-cta .btn-primary {
    background: #18bc9b;
    color: #ffffff;
}

.services-page-cta .btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: transparent;
    color: #ffffff;
}

.services-page-cta .btn-secondary:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: #173654;
}


/* TABLET */

@media (max-width: 992px) {

    .services-page-hero {
        padding: 75px 0 70px;
    }

    .services-overview {
        padding: 75px 0;
    }

    .service-detail-card {
        grid-template-columns: 70px minmax(0, 1fr);
        gap: 22px;
        padding: 30px;
    }

    .service-detail-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

    .services-page-cta-content {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* MOBILE */

@media (max-width: 768px) {

    .services-page-hero {
        padding: 60px 0 58px;
    }

    .services-page-hero h1 {
        font-size: 2.15rem;
    }

    .services-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .services-hero-actions a {
        justify-content: center;
        width: 100%;
    }

    .services-overview {
        padding: 60px 0;
    }

    .services-overview-heading {
        margin-bottom: 38px;
    }

    .service-detail-card {
        display: block;
        margin-bottom: 24px;
        padding: 24px 20px;
        border-radius: 18px;
    }

    .service-detail-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 18px;
        border-radius: 16px;
        font-size: 1.35rem;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-detail-grid > div {
        padding: 20px 18px;
    }

    .service-intro {
        margin-bottom: 22px;
    }

    .service-emergency-note {
        padding: 18px;
    }

    .services-page-cta {
        padding: 55px 0;
    }

    .services-page-cta-actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .services-page-cta-actions a {
        justify-content: center;
        width: 100%;
    }
}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .services-page-hero h1 {
        font-size: 1.85rem;
    }

    .services-page-hero > .container > p:not(.section-eyebrow) {
        font-size: 0.95rem;
    }

    .service-detail-card {
        padding: 22px 17px;
    }

    .service-detail-content h2 {
        font-size: 1.45rem;
    }

    .service-detail-grid > div {
        padding: 18px 16px;
    }

    .service-list li {
        font-size: 0.9rem;
    }
}


/* =========================================================
   CONTACT PAGE - OUR CENTERS
========================================================= */

.contact-centers-section {
    padding: 90px 0 40px;
}

.contact-centers-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.contact-centers-heading .section-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--highlight-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.contact-centers-heading .section-title {
    margin-bottom: 15px;
}

.contact-centers-heading p {
    margin: 0;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.75;
}

.contact-centers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.contact-center-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15, 61, 76, 0.1);
    border-radius: 20px;
    box-shadow: 0 14px 40px rgba(15, 61, 76, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-center-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 55px rgba(15, 61, 76, 0.16);
}

.contact-center-image {
    position: relative;
    height: 235px;
    overflow: hidden;
    background: #e7eef0;
}

.contact-center-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}

.contact-center-card:hover .contact-center-image img {
    transform: scale(1.05);
}

.contact-center-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: #ffffff;
    background: rgba(12, 58, 72, 0.92);
    border-radius: 30px;
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.18);
    font-size: 0.82rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.contact-center-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px;
}

.contact-center-title {
    min-height: 90px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e8edef;
}

.contact-center-title h3 {
    margin: 0 0 9px;
    color: var(--primary-color);
    font-size: 1.25rem;
    line-height: 1.35;
}

.contact-center-title span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--highlight-color);
    font-size: 0.92rem;
    font-weight: 700;
}

.contact-center-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 23px 0;
}

.contact-center-detail {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: flex-start;
}

.contact-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--highlight-color);
    background: rgba(16, 185, 129, 0.1);
    border-radius: 10px;
    font-size: 0.95rem;
}

.contact-center-detail h4 {
    margin: 0 0 5px;
    color: var(--primary-color);
    font-size: 0.92rem;
}

.contact-center-detail p,
.contact-center-detail a {
    margin: 0;
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.65;
}

.contact-center-detail a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

.contact-center-detail a:hover {
    color: var(--highlight-color);
}

.contact-center-map {
    height: 225px;
    margin-top: auto;
    overflow: hidden;
    background: #e5e7eb;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
}

.contact-center-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-center-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    margin-top: 18px;
}

.center-call-btn,
.center-directions-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 11px 13px;
    border-radius: 10px;
    font-size: 0.86rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.center-call-btn {
    color: #ffffff;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.center-directions-btn {
    color: var(--primary-color);
    background: #ffffff;
    border: 1px solid rgba(15, 61, 76, 0.25);
}

.center-call-btn:hover,
.center-directions-btn:hover {
    transform: translateY(-2px);
}

.center-call-btn:hover {
    color: #ffffff;
    background: var(--highlight-color);
    border-color: var(--highlight-color);
}

.center-directions-btn:hover {
    color: #ffffff;
    background: var(--primary-color);
    border-color: var(--primary-color);
}


/* =========================================================
   CONTACT CENTERS - TABLET
========================================================= */

@media (max-width: 1100px) {
    .contact-centers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-center-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 14px);
        margin: 0 auto;
    }
}


/* =========================================================
   CONTACT CENTERS - MOBILE
========================================================= */

@media (max-width: 768px) {
    .contact-centers-section {
        padding: 65px 0 25px;
    }

    .contact-centers-heading {
        margin-bottom: 32px;
    }

    .contact-centers-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-center-card:last-child {
        grid-column: auto;
        width: 100%;
    }

    .contact-center-image {
        height: 220px;
    }

    .contact-center-title {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .contact-center-content {
        padding: 21px 18px;
    }

    .contact-center-image {
        height: 205px;
    }

    .contact-center-map {
        height: 215px;
    }

    .contact-center-actions {
        grid-template-columns: 1fr;
    }

    .center-call-btn,
    .center-directions-btn {
        width: 100%;
    }
}


