:root {
    --primary-color: #f37021;
    /* Vibrant Orange */
    --primary-light: #fff5eb;
    /* Light Orange */
    --primary-glow: rgba(243, 112, 33, 0.4);
    --secondary-color: #004a99;
    /* Deep Blue */
    --secondary-glow: rgba(0, 74, 153, 0.3);
    --accent-color: #ff8c00;
    /* Bright Orange */
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-padding {
    padding: 100px 0;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 14px 0 var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 112, 33, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--secondary-glow);
}

.btn-secondary-white {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary-white:hover {
    background-color: var(--white);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* --- LOGO & TOP BAR --- */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -1px;
    line-height: 1;
}

.logo span {
    color: var(--secondary-color);
}

.logo small {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

/* --- NAVIGATION --- */
header {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-cta {
    margin-left: 30px;
}

.menu-toggle {
    display: none;
}

/* --- HERO SLIDER --- */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 5;
    color: #fff;
    transform: translateY(60px);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.2s ease;
}

.slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -3px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    color: var(--primary-color);
    background: none;
    -webkit-text-fill-color: initial;
    display: inline;
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    margin: 0 auto 50px;
    font-weight: 400;
    max-width: 650px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-btns {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-premium {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(243, 112, 33, 0.3);
}

.slider-controls {
    position: absolute;
    bottom: 60px;
    width: 100%;
    z-index: 10;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    width: 45px;
    border-radius: 10px;
    background: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-glow);
}

@media (max-width: 768px) {
    .hero-slider {
        height: auto;
        min-height: 550px;
    }

    .slide {
        padding: 100px 0 80px;
        align-items: flex-start;
    }

    .hero-btns .btn {
        width: 100%;
    }
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

/* --- GRIDS & CARDS --- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card,
.trust-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #edf2f7;
    height: 100%;
}

.service-card:hover,
.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.read-more {
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    margin-top: 15px;
}

/* --- HOSPITAL FOOTER (Isolated from WordPress) --- */
.hospital-footer {
    background-color: #0d1117;
    color: var(--white);
    padding: 80px 0 30px;
    width: 100%;
}

.hospital-footer-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px;
    align-items: start;
}

.hospital-footer-about p {
    color: rgba(255, 255, 255, 0.7) !important;
    max-width: 300px;
}

.hospital-footer-heading {
    color: var(--white) !important;
    margin-bottom: 30px !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    position: relative;
    padding-bottom: 15px;
}

.hospital-footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

.hospital-footer-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.hospital-footer-list li {
    margin-bottom: 12px !important;
    list-style: none !important;
}

.hospital-footer-list a {
    color: rgba(255, 255, 255, 0.6) !important;
    transition: var(--transition);
    font-size: 0.95rem !important;
    text-decoration: none !important;
}

.hospital-footer-list a:hover {
    color: var(--secondary-color) !important;
    padding-left: 5px;
}

.hospital-footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hospital-legal-links a {
    color: rgba(255, 255, 255, 0.5) !important;
    text-decoration: none !important;
    transition: var(--transition);
}

.hospital-legal-links a:hover {
    color: var(--white) !important;
}

/* --- RESPONSIVE DESIGN --- */

@media (max-width: 992px) {
    .section-padding {
        padding: 60px 0;
    }

    .container-flex.hero-container {
        flex-direction: column !important;
        text-align: center;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image-bg {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: 350px;
        margin-top: 30px;
    }

    .hero-stats {
        justify-content: center;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr !important;
    }

    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Handled by modular.css mobile menu */
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
}