/* CSS RESET & VARIABLES */
:root {
    --primary: #0a1128;        /* Dark Navy */
    --secondary: #1b75d0;      /* Core Blue */
    --secondary-rgb: 27, 117, 208;
    --accent: #2563eb;         /* Bright Blue */
    --accent-light: #eff6ff;   /* Light blue background */
    --text-main: #475569;      /* Charcoal body text */
    --text-dark: #0f172a;      /* Bold headings color */
    --text-light: #94a3b8;     /* Muted/light text */
    --bg-light: #f8fafc;       /* Light gray background */
    --white: #ffffff;
    --border-color: #e2e8f0;
    --font-main: 'Outfit', sans-serif;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.06), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* UTILITY CLASSES */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-tag svg {
    width: 16px;
    height: 16px;
    fill: var(--secondary);
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 800;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

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

.btn-primary:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 117, 208, 0.25);
}

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

.btn-white:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--transition);
}

.btn:hover .btn-arrow {
    background-color: var(--white);
    color: var(--secondary);
    transform: translateX(4px);
}

/* TOP INFO BAR */
.topbar {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.topbar-info {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-item svg {
    width: 14px;
    height: 14px;
    stroke: var(--secondary);
    fill: none;
}

.topbar-socials {
    display: flex;
    gap: 16px;
    align-items: center;
}

.topbar-socials a {
    color: rgba(255, 255, 255, 0.7);
}

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

/* NAVBAR / HEADER */
.header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.sticky {
    box-shadow: var(--shadow-md);
    padding: 8px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.logo svg {
    width: 32px;
    height: 32px;
    fill: var(--secondary);
}

.logo span {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--secondary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.search-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    padding: 8px;
}

.mobile-toggle svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* SEARCH OVERLAY */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 17, 40, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.search-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.search-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 2rem;
    padding: 10px;
    transition: var(--transition);
}

.search-close:hover {
    color: var(--secondary);
    transform: rotate(90deg);
}

.search-form {
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
    position: relative;
}

.search-input {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.5rem;
    padding: 15px 0;
    outline: none;
    font-family: var(--font-main);
    transition: var(--transition);
}

.search-input:focus {
    border-bottom-color: var(--secondary);
}

/* HERO SECTION */
.hero {
    background: radial-gradient(circle at 80% 20%, rgba(27, 117, 208, 0.06) 0%, rgba(255, 255, 255, 0) 60%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(27, 117, 208, 0.03);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
    color: var(--text-dark);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Overlapping circles medical aesthetics */
.doctor-circle-container {
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(27, 117, 208, 0.08) 0%, rgba(37, 99, 235, 0.02) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.doctor-img-main {
    width: 88%;
    height: 88%;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid var(--white);
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

/* Float elements */
.hero-shape-1 {
    position: absolute;
    top: 20px;
    left: 10px;
    animation: bounce 6s infinite ease-in-out;
    z-index: 0;
    opacity: 0.8;
}

.hero-shape-2 {
    position: absolute;
    bottom: 40px;
    right: 10px;
    animation: bounce 5s infinite ease-in-out 1s;
    z-index: 3;
    opacity: 0.8;
}

.hero-shape-3 {
    position: absolute;
    top: 50%;
    right: -20px;
    animation: pulse 4s infinite ease-in-out;
    z-index: 0;
    opacity: 0.5;
}

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

@keyframes pulse {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.4; }
    50% { transform: translateY(-50%) scale(1.08); opacity: 0.8; }
}

/* FEATURE CARDS SECTION */
.features {
    padding: 60px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background-color: var(--white);
    padding: 32px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--secondary);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--accent-light);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-box {
    background-color: var(--secondary);
    color: var(--white);
}

.feature-icon-box svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-main);
}

/* ABOUT HOSPITAL SECTION */
.about {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Big translucent background text */
.about-bg-text {
    position: absolute;
    font-size: 9.5vw;
    font-weight: 800;
    color: rgba(27, 117, 208, 0.025);
    -webkit-text-stroke: 1px rgba(27, 117, 208, 0.05);
    z-index: 0;
    text-transform: uppercase;
    letter-spacing: 15px;
    pointer-events: none;
    white-space: nowrap;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-images-wrapper {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
}

.about-img-frame-1 {
    width: 70%;
    height: 340px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: absolute;
    top: 20px;
    left: 0;
    border: 6px solid var(--white);
    z-index: 2;
}

.about-img-frame-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-frame-2 {
    width: 60%;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: absolute;
    bottom: 20px;
    right: 0;
    border: 6px solid var(--white);
    z-index: 3;
}

.about-img-frame-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 60px;
    left: 20%;
    width: 110px;
    height: 110px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-xl);
    z-index: 10;
    border: 4px solid var(--white);
    animation: bounce 6s infinite ease-in-out;
}

.about-badge .years {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge .text {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-top: 2px;
}

.about-decor-circle {
    position: absolute;
    top: 10px;
    right: 30%;
    width: 60px;
    height: 60px;
    border: 2px dashed var(--secondary);
    border-radius: 50%;
    z-index: 1;
    animation: rotate 20s infinite linear;
    opacity: 0.4;
}

.about-decor-dots {
    position: absolute;
    bottom: 10px;
    left: -20px;
    z-index: 1;
    opacity: 0.6;
}

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

.about-content h2 {
    margin-bottom: 20px;
}

.about-bullets {
    margin: 28px 0 36px;
}

.about-bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.about-bullet-icon {
    width: 24px;
    height: 24px;
    background-color: var(--accent-light);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.about-bullet-icon svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
}

.about-bullet-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.about-bullet-text p {
    font-size: 0.9rem;
    color: var(--text-main);
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.video-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.video-btn {
    width: 54px;
    height: 54px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
}

.video-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(27, 117, 208, 0.4);
    animation: pulse-ring 1.8s infinite;
    z-index: -1;
}

.video-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    margin-left: 2px;
}

.video-text {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.video-btn-wrapper:hover .video-btn {
    background-color: var(--primary);
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* DOCTOR SPOTLIGHT BANNER */
.spotlight-banner {
    padding: 60px 0;
    background-color: #121b2a;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.spotlight-banner::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 35%;
    height: 100%;
    background: radial-gradient(circle, rgba(27, 117, 208, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.spotlight-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.spotlight-left {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.spotlight-avatar-frame {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-xl);
    flex-shrink: 0;
    position: relative;
}

.spotlight-avatar-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotlight-content {
    max-width: 600px;
}

.spotlight-tag {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}

.spotlight-title {
    font-size: 2.1rem;
    color: var(--white);
    font-weight: 700;
    line-height: 1.25;
}

.spotlight-banner .btn-white {
    flex-shrink: 0;
}


/* EMERGENCY CONTACT SECTION */
.emergency {
    padding: 100px 0;
    position: relative;
}

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

.emergency-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 440px;
    border: 6px solid var(--white);
}

.emergency-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.emergency-image::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px dashed var(--secondary);
    border-radius: 50%;
    right: -20px;
    top: -20px;
    z-index: 1;
    opacity: 0.4;
    animation: rotate 20s infinite linear;
}

.emergency-content h2 {
    margin-bottom: 20px;
}

.emergency-list {
    margin: 24px 0 32px;
}

.emergency-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.emergency-list-item svg {
    width: 18px;
    height: 18px;
    color: var(--secondary);
    flex-shrink: 0;
}

.emergency-contacts-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-box-card {
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.contact-box-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-lg);
}

.contact-box-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-box-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.contact-box-info h5 {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-box-info p {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.05rem;
}

/* TESTIMONIALS SECTION */
.testimonials {
    padding: 100px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: left;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.01);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::after {
    content: '“';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: rgba(27, 117, 208, 0.08);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.stars {
    display: flex;
    gap: 4px;
    color: #fbbf24;
    margin-bottom: 20px;
}

.stars svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.testimonial-text {
    color: var(--text-main);
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.7;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--bg-light);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    font-size: 1.05rem;
    font-weight: 700;
}

.client-details p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* STATISTICS SECTION */
.stats {
    padding: 100px 0;
}

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

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

.stat-card {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.stat-number {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}



/* PARTNER LOGOS */
.partners {
    padding: 50px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.partners-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    opacity: 0.6;
}

.partner-logo {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-light);
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
}

.partner-logo:hover {
    color: var(--secondary);
    opacity: 1;
}

/* NEWSLETTER BANNER */
.newsletter {
    padding: 80px 0;
    background-color: #121b2a;
    color: var(--white);
    position: relative;
    z-index: 10;
}

.newsletter::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 90%, rgba(27, 117, 208, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.newsletter-content h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 800;
}

.newsletter-content p {
    color: #94a3b8;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 6px 6px 20px;
    border-radius: 40px;
    transition: var(--transition);
}

.newsletter-form:focus-within {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(27, 117, 208, 0.25);
}

.newsletter-input {
    flex-grow: 1;
    background: none;
    border: none;
    color: var(--white);
    font-size: 0.95rem;
    outline: none;
    padding: 10px 0;
    font-family: var(--font-main);
}

.newsletter-input::placeholder {
    color: #64748b;
}

.newsletter-form .btn {
    padding: 12px 24px;
}

/* FOOTER */
.footer {
    background-color: var(--primary);
    color: #94a3b8;
    padding: 80px 0 30px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-desc {
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-social-btn:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col-title {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary);
}

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

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-links a svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    color: var(--secondary);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--secondary);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-info h5 {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
}

.footer-copyright-links {
    display: flex;
    gap: 24px;
}

.footer-copyright-links a:hover {
    color: var(--white);
}

/* BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: none;
    outline: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary);
    transform: translateY(-4px);
}

.back-to-top svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
}

/* MULTI-PAGE PAGE HEADERS */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, #152243 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--secondary);
}
.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(27, 117, 208, 0.1) 0%, rgba(0,0,0,0) 60%);
    transform: rotate(-45deg);
    pointer-events: none;
}
.page-header h1 {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}
.breadcrumbs a {
    color: var(--secondary);
}
.breadcrumbs span {
    color: rgba(255, 255, 255, 0.4);
}

/* SERVICES PAGE GRID */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 80px 0;
}
.service-card-expanded {
    background-color: var(--white);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: left;
}
.service-card-expanded:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-lg);
}
.service-icon-expanded {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}
.service-card-expanded:hover .service-icon-expanded {
    background-color: var(--secondary);
    color: var(--white);
}
.service-icon-expanded svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}
.service-title-expanded {
    font-size: 1.4rem;
    margin-bottom: 14px;
    font-weight: 700;
}
.service-desc-expanded {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
}

/* CONTACT PAGE LAYOUT */
.contact-section-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    padding: 80px 0;
}
.contact-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}
.contact-form-title {
    font-size: 1.8rem;
    margin-bottom: 24px;
    font-weight: 800;
    color: var(--text-dark);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.9rem;
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
    background-color: #f8fafc;
}
.form-control:focus {
    background-color: var(--white);
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(27, 117, 208, 0.15);
}
textarea.form-control {
    resize: vertical;
    min-height: 140px;
}
.map-container {
    margin-top: 30px;
    height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid, .emergency-grid, .stats-grid, .newsletter-grid, .contact-section-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-images-wrapper {
        height: 400px;
    }
    .about-img-frame-1 {
        height: 300px;
    }
    .about-img-frame-2 {
        height: 240px;
    }
    .about-badge {
        bottom: 40px;
    }
    .services-page-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
    .nav-menu {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background-color: var(--white);
        flex-direction: column;
        padding: 40px 24px;
        align-items: flex-start;
        gap: 24px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 999;
    }
    .nav-menu.open {
        left: 0;
    }
    .mobile-toggle {
        display: block;
    }
    .nav-actions .btn-primary {
        display: none;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .doctor-circle-container {
        width: 320px;
        height: 320px;
    }
    .hero-shape-1, .hero-shape-2, .hero-shape-3 {
        transform: scale(0.7);
    }
    .section-title {
        font-size: 2rem;
    }
    .spotlight-flex {
        flex-direction: column;
        align-items: flex-start;
    }
    .spotlight-avatar-frame {
        width: 120px;
        height: 120px;
    }
    .spotlight-title {
        font-size: 1.6rem;
    }
    .emergency-contacts-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .features-grid, .services-page-grid, .testimonials-grid, .stats-cards-grid {
        grid-template-columns: 1fr;
    }
    .about-images-wrapper {
        height: 300px;
    }
    .about-img-frame-1 {
        height: 220px;
    }
    .about-img-frame-2 {
        height: 180px;
    }
    .about-badge {
        width: 80px;
        height: 80px;
        bottom: 30px;
    }
    .about-badge .years {
        font-size: 1.3rem;
    }
    .about-badge .text {
        font-size: 0.55rem;
    }
    .about-decor-circle, .about-decor-dots {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-form {
        flex-direction: column;
        padding: 10px;
        border-radius: 20px;
    }
    .newsletter-input {
        padding: 10px 15px;
        width: 100%;
        text-align: center;
    }
    .newsletter-form .btn {
        width: 100%;
        margin-top: 10px;
    }
}
