@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #10b981;
    --primary-hover: #059669;
    --primary-light: #ecfdf5;
    --navy: #1f2937;
    --navy-light: #374151;
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --bg-white: #f9fafb;
    --bg-light: #ffffff;
    --bg-tint: #f0fdf4;
    --azure: #3b82f6;
    --border: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 5rem 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-emergency {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary);
    color: white;
    padding: 0.55rem 1.25rem;
    border-radius: 0.625rem;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-emergency i {
    width: 1rem;
    height: 1rem;
}

.btn-emergency:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

/* Header */
header {
    min-height: 2rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    width: 240px;
}

.logo i {
    background-color: var(--primary);
    color: white;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.625rem;
    font-size: 1.1rem;
}

.logo img {
    height: 6.5rem;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.logo-text strong {
    font-size: 1rem;
    color: var(--navy);
}


nav ul {
    display: flex;
    gap: 1.5rem;
}

nav ul li a {
    font-weight: 500;
    color: var(--text-muted);
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 0;
    transition: var(--transition);
}

.book-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

.book-link i {
    width: 1.1rem;
    height: 1.1rem;
}

.book-link:hover {
    color: var(--primary-hover);
    transform: translateY(-1px);
}

/* Media Query for Mobile (Tablets and below) */
@media (max-width: 992px) {
    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    .logo {
        order: 1;
        flex: 1;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        order: 2;
        flex-shrink: 0;
    }

    /* Hide book link but keep emergency visible */
    .book-link {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.75rem;
        height: 2.75rem;
        background: var(--primary-light);
        border: 1.5px solid rgba(16, 185, 129, 0.2);
        border-radius: 0.625rem;
        color: var(--primary);
        order: 3;
        transition: background 0.2s ease, transform 0.15s ease;
        flex-shrink: 0;
    }

    .mobile-nav-toggle:hover {
        background: rgba(16, 185, 129, 0.15);
    }

    .mobile-nav-toggle:active {
        transform: scale(0.93);
    }

    .mobile-nav-toggle i {
        width: 1.375rem;
        height: 1.375rem;
    }

    #main-nav {
        position: fixed;
        top: 4rem;
        left: -100%;
        width: 100%;
        height: calc(100vh - 4rem);
        background: white;
        transition: left 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    }

    #main-nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 0;
        align-items: stretch;
    }

    nav ul li {
        border-bottom: 1px solid var(--border);
    }

    nav ul li:first-child {
        border-top: 1px solid var(--border);
    }

    nav ul li a {
        display: block;
        padding: 1.25rem 0.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--navy);
    }

    nav ul li a:hover,
    nav ul li a.active {
        color: var(--primary);
        padding-left: 1rem;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0fdf9 0%, #ffffff 100%);
    min-height: calc(100vh - 4rem);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-image-wrapper {
    position: relative;
}

.hero-img {
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.stats-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    padding: 1.5rem 2.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 2.5rem;
    z-index: 10;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-number.blue {
    color: var(--azure);
}

/* Services */
.services {
    background-color: var(--bg-light);
    text-align: center;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: left;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* Philosophy */
.philosophy .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.philosophy-img {
    border-radius: 2rem;
    width: 100%;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.philosophy-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.bullet-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.bullet-item i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* Departments */
.departments {
    background-color: var(--bg-light);
    text-align: center;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.department-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.dept-img-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.dept-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.department-card:hover .dept-img {
    transform: scale(1.1);
}

.dept-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    width: 100%;
}

.dept-overlay h3 {
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dept-body {
    padding: 1.75rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dept-body p {
    font-weight: bold;
    font-size: 1.375rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.dept-links {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    flex: 1;
}

.dept-link {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.dept-link::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.learn-more {
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    font-size: 0.9375rem;
    transition: gap 0.2s ease;
}

.learn-more i {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

.learn-more:hover {
    gap: 0.875rem;
    color: var(--primary-hover);
}

.learn-more:hover i {
    transform: translateX(3px);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--bg-white);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 1.5rem;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow);
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    color: #fbbf24;
}

.stars svg {
    fill: #fbbf24 !important;
    stroke: none !important;
    width: 20px;
    height: 20px;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.patient-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-light);
}

.patient-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.patient-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Global Buttons for Grid Footers */
.grid-footer {
    display: flex !important;
    justify-content: center !important;
    margin: 4rem 0 0 0;
    width: 100%;
}

.btn-green-light {
    background-color: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    display: inline-flex;
}

.btn-green-light:hover {
    background-color: var(--primary-hover);
}

/* Stats Banner */
.stats-banner {
    background: var(--bg-white);
}

.stats-banner-grid {
    padding: 2.5rem 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    border-top: 1px solid var(--border);
}

.banner-stat {
    text-align: center;
}

.banner-stat .number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.banner-stat .number.green {
    color: var(--primary);
}

.banner-stat .number.blue {
    color: var(--azure);
}

.banner-stat .label {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #059669 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
    padding: 6rem 0;
    overflow: hidden;
}

@media (max-width: 576px) {
    .logo img {
        height: 3.5rem;
    }

    .logo-text strong {
        font-size: 1rem;
    }

    .logo-text span {
        font-size: 0.65rem;
    }

    .logo {
        gap: 0.4rem;
        font-size: 1rem;
    }
}

.cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    /* Prevents breaking on small screens */
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: white;
    color: #059669;
    padding: 0.75rem 1.5rem;
    border-radius: 0.625rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid white;
}

.cta-btn i {
    width: 1.1rem;
    height: 1.1rem;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-footer-info {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cta-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.cta-info-item {
    text-align: center;
}

.cta-info-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.cta-info-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Fix for the hacky cta-margin and other cta-content styles */
.cta-content {
    margin: 0 auto;
    max-width: 800px;
}

@media (max-width: 991px) {
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 850px) {
    .cta-info-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .cta-footer-info {
        margin-top: 3.5rem;
        padding-top: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.125rem;
    }
}

/* Footer */
footer {
    background-color: #020617;
    /* Deep navy */
    color: #94a3b8;
    /* Slate gray */
    padding: 6rem 0 3rem 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-logo {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-box {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-box i {
    color: white;
    width: 1.5rem;
    height: 1.5rem;
}

.footer-col p {
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-socials {
    display: flex;
    gap: 1.25rem;
    margin-top: 2rem;
}

.social-link {
    color: white;
    opacity: 0.7;
    transition: var(--transition);
}

.social-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.social-link i {
    width: 2.25rem !important;
    height: 1.25rem !important;
    font-size: 25px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-links a {
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item i {
    color: var(--primary);
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #64748b;
}

.footer-legal {
    display: flex;
    gap: 2.5rem;
}

.footer-legal a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .section-padding {
        padding: 3.5rem 0;
    }

    /* Hero */
    .hero .container,
    .philosophy .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
        order: 2;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image-wrapper {
        order: 1;
    }

    .stats-card {
        position: absolute;
        bottom: 0.5rem;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        margin: 0;
        width: auto;
        white-space: nowrap;
        gap: 2rem;
        padding: 0.875rem 1.5rem;
        border-radius: 1rem;
        font-size: 0.9rem;
    }

    /* Section Header */
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* Departments */
    .departments-grid {
        grid-template-columns: 1fr;
    }

    /* Stats Banner */
    .stats-banner-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta {
        padding: 4rem 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    /* Footer */
    footer {
        padding: 4rem 0 2rem 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-logo,
    .footer-socials {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
        padding-top: 2rem;
    }

    .footer-legal {
        justify-content: center;
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-image-wrapper {
        padding-bottom: 1.5rem;
    }

    .stats-card {
        gap: 1.5rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .stats-banner-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .banner-stat .number {
        font-size: 2rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn {
        justify-content: center;
    }

    .cta-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-top {
        gap: 2rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ==========================================================================
   Page Specific Styles
   ========================================================================== */

/* --- Global Page Hero (About, Services, Departments) --- */
.page-hero {
    background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
    padding: 5rem 0 4rem;
    text-align: center;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 99px;
    margin-bottom: 1.5rem;
}

.page-hero-badge i {
    width: 1rem;
    height: 1rem;
}

.page-hero h1 {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.page-hero h1 span {
    color: var(--primary);
}

.page-hero p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.page-hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- About Page --- */
.story {
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.story-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.story-img-wrapper {
    position: relative;
}

.story-img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
}

.story-float {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    bottom: -2rem;
    left: -2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.story-float-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary-light);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.mvv-section {
    background: var(--bg-white);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mvv-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.mvv-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary-light);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.mvv-icon i {
    width: 2rem;
    height: 2rem;
}

.mvv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mvv-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.values-section {
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-item {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    transition: var(--transition);
}

.value-item:hover {
    border-color: var(--primary);
    background: var(--bg-white);
}

.value-tag {
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.75rem;
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leadership {
    background: var(--bg-white);
}

.leader-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.leader-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.leader-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.leader-info {
    padding: 1.5rem;
    text-align: center;
}

.leader-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.leader-info span {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
}

.accreditations {
    background: white;
    text-align: center;
}

.accred-flex {
    display: flex;
    justify-content: center;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0.7;
}

.accred-logo {
    height: 3rem;
    filter: grayscale(1);
    transition: 0.3s;
}

.accred-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* --- Services Page --- */
.stats-strip {
    background: white;
    border-bottom: 1px solid var(--border);
}

.stats-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    padding: 10px 0;
}

.strip-stat {
    text-align: center;
    padding: 0 1.5rem;
    border-right: 1px solid var(--border);
}

.strip-stat:last-child {
    border-right: none;
}

.strip-stat .num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.strip-stat .num.blue {
    color: var(--azure);
}

.strip-stat .lbl {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.service-categories {
    background: var(--bg-white);
}

.category-tabs {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.cat-tab {
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1.5px solid var(--border);
    background: white;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.cat-tab:hover,
.cat-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.services-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.svc-card {
    background: white;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.5s ease forwards;
}

.svc-card.hide {
    display: none;
}

.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.12);
}

.svc-card-top {
    padding: 2rem 2rem 1.5rem;
}

.svc-icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.svc-icon-box.green {
    background: var(--primary-light);
    color: var(--primary);
}

.svc-icon-box.blue {
    background: #eff6ff;
    color: #3b82f6;
}

.svc-icon-box.red {
    background: #fff1f2;
    color: #ef4444;
}

.svc-icon-box.purple {
    background: #f5f3ff;
    color: #8b5cf6;
}

.svc-icon-box.orange {
    background: #fff7ed;
    color: #f97316;
}

.svc-icon-box.teal {
    background: #f0fdfa;
    color: #14b8a6;
}

.svc-icon-box i {
    width: 1.6rem;
    height: 1.6rem;
}

.svc-card-top h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.svc-card-top p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.svc-divider {
    height: 1px;
    background: var(--border);
    margin: 0 2rem;
}

.svc-card-bottom {
    padding: 1.25rem 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    flex: 1;
}

.svc-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.svc-feature i {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
    flex-shrink: 0;
}

.svc-card-footer {
    padding: 0 2rem 1.75rem;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9375rem;
    transition: gap 0.2s ease;
}

.svc-link i {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

.svc-link:hover {
    gap: 0.875rem;
}

.svc-link:hover i {
    transform: translateX(3px);
}

.why-us {
    background: white;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-us-img-wrapper {
    position: relative;
}

.why-us-img {
    border-radius: 2rem;
    width: 100%;
    display: block;
}

.why-us-badge {
    position: absolute;
    bottom: 2rem;
    right: -1.5rem;
    background: white;
    border-radius: 1.25rem;
    padding: 1.25rem 1.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.why-us-badge .big-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.why-us-badge .badge-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.why-us-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.why-us-content>p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.why-feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.why-feature-icon i {
    width: 1.375rem;
    height: 1.375rem;
}

.why-feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.why-feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.process {
    background: var(--bg-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--azure));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-num {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    box-shadow: 0 0 0 6px var(--primary-light);
}

.process-step h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.services-cta {
    background: linear-gradient(135deg, #059669 0%, #1d4ed8 100%);
    padding: 5rem 0;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.services-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* --- Departments Page --- */
.dept-filter {
    background: white;
    border-bottom: 1px solid var(--border);
    top: 4rem;
    z-index: 100;
}

.dept-filter-inner {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.dept-filter-inner::-webkit-scrollbar {
    display: none;
}

.filter-tab {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 3px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    transition: var(--transition);
}

.filter-tab i {
    width: 1rem;
    height: 1rem;
}

.filter-tab:hover,
.filter-tab.active {
    color: var(--primary);
}

.filter-tab.active {
    border-bottom-color: var(--primary);
}

.depts-section {
    background: var(--bg-white);
}

.depts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.depts-grid .dept-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-align: left;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.depts-grid .dept-card.hide {
    display: none;
}

.dept-card-img {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.dept-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.depts-grid .dept-card:hover .dept-card-img img {
    transform: scale(1.07);
}

.dept-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.75) 0%, transparent 55%);
}

.dept-card-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 99px;
}

.dept-card-title-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    color: white;
}

.dept-card-title-overlay h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.dept-card-body {
    padding: 1.5rem 1.75rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dept-card-body p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.dept-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.specialty-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 99px;
    background: var(--primary-light);
    color: var(--primary);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.dept-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.dept-doctors-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.dept-doctors-count i {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.dept-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    transition: gap 0.2s ease;
}

.dept-learn-more i {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

.dept-learn-more:hover {
    gap: 0.75rem;
}

.dept-learn-more:hover i {
    transform: translateX(3px);
}

.featured-dept {
    background: var(--navy);
    color: white;
}

.featured-dept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-dept-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.featured-dept-content h2 span {
    color: var(--primary);
}

.featured-dept-content p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

.featured-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.featured-stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.25rem;
}

.featured-stat .f-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.featured-stat .f-lbl {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.featured-dept-img {
    border-radius: 2rem;
    width: 100%;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.expertise {
    background: white;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.expertise-card {
    background: var(--bg-white);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.expertise-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: transparent;
}

.expertise-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.expertise-icon i {
    width: 1.5rem;
    height: 1.5rem;
}

.expertise-icon.green {
    background: var(--primary-light);
    color: var(--primary);
}

.expertise-icon.blue {
    background: #eff6ff;
    color: #3b82f6;
}

.expertise-icon.red {
    background: #fff1f2;
    color: #ef4444;
}

.expertise-icon.purple {
    background: #f5f3ff;
    color: #8b5cf6;
}

.expertise-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.expertise-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.depts-cta {
    background: linear-gradient(135deg, #059669 0%, #1d4ed8 100%);
    padding: 5rem 0;
    text-align: center;
}

.depts-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.depts-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* --- Contact Page --- */
body.contact-page .page-hero {
    background: linear-gradient(135deg, #f0fdf9 0%, #ffffff 100%);
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: -3rem;
    position: relative;
    z-index: 5;
}

.info-card {
    background: white;
    padding: 2.25rem 1.5rem;
    border-radius: 1.25rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.info-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.info-card-icon i {
    width: 1.6rem;
    height: 1.6rem;
}

.info-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.info-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-box {
    background: white;
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.form-box h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.full-width {
    grid-column: span 2;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.625rem;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border-radius: 0.75rem;
    border: 1.5px solid var(--border);
    font-family: inherit;
    font-size: 0.9375rem;
    background: #f8fafc;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.3);
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.action-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.action-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.action-btns {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    border-radius: 0.875rem;
    font-weight: 700;
    font-size: 0.9375rem;
    transition: var(--transition);
    border: 1.5px solid transparent;
}

.action-btn i {
    width: 1.2rem;
    height: 1.2rem;
}

.btn-teal {
    background: var(--primary);
    color: white;
}

.btn-teal:hover {
    background: var(--primary-hover);
    transform: translateX(5px);
}

.btn-outlined {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outlined:hover {
    background: var(--primary-light);
    transform: translateX(5px);
}

.btn-blue-outlined {
    border-color: #3b82f6;
    color: #3b82f6;
}

.btn-blue-outlined:hover {
    background: #eff6ff;
    transform: translateX(5px);
}

.map-placeholder {
    height: 350px;
    background: #f1f5f9;
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
    margin-top: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.travel-info {
    background: var(--bg-white);
}

.travel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.travel-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
}

.travel-card i {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.travel-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.travel-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--primary);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.05);
}

.faq-item.active {
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.faq-question h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    padding-right: 1.5rem;
}

.faq-icon-box {
    width: 1.5rem;
    height: 1.5rem;
    min-width: 1.5rem;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-item.active .faq-icon-box {
    background: var(--primary);
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.faq-answer-inner {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Footer Logo Specific Styling */
.footer-logo img {
    height: 5.5rem;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Makes the logo purely white */
}

.footer-logo .logo-text {
    line-height: 1.3;
}

.footer-logo .logo-text strong {
    color: white;
    font-size: 1.1rem;
}

.footer-logo .logo-text span {
    color: var(--primary-light);
}

/* Responsive Overrides for All Pages */
@media (max-width: 1024px) {

    .mvv-grid,
    .leader-grid,
    .values-grid,
    .info-cards-grid,
    .travel-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .depts-grid,
    .expertise-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {

    .story-grid,
    .leader-grid,
    .services-main-grid,
    .why-us-grid,
    .depts-grid,
    .featured-dept-grid,
    .form-grid,
    .travel-grid,
    .faq-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2.25rem;
    }

    .page-hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-main {
        grid-template-columns: 1fr;
    }
}
/* privacy policy  */
.Kamal-policy h1{
    text-align: center;
    width: 100%;
    background-color: green;
    margin-top: 10px;
    padding: 5px;
    color: #fff;
    font-size: 28px;
    font-weight: 500;
}

.Kamal-policy p{
    margin-top: 10px;
    font-size: 18px;
}
.Information{
    margin-top: 20px;
}

.kamal-information h2{
    font-size: 20px;
}
.kamal-information p{
    font-size: 18px;
    margin-top: 5px;
}

.Security{
  margin-top: 20px;   
}

.data-quality h2{
    font-size: 20px;
}

.data-quality p{
    font-size: 18px;
    margin-top: 5px;
}

.Disclosure{
    margin-top: 20px;
}

.data-disclosure h2{
    font-size: 20px;
}

.data-disclosure p{
    margin-top: 5px;
    font-size: 18px;
}

.Consent{
    margin-top: 20px;
}

.policies h2{
    font-size: 20px;
}

.policies p{
    margin-top: 5px;
    font-size: 18px;
}

.container{
    margin-bottom: 20px;
}

.link{
    color: blue;
}

.terms{
    list-style-type: disc; 
    padding-left: 20px;
}

.Kamal-policy p{
    font-size: 16px;
    margin-bottom: 10px;
}
