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

:root {
    --primary-color: #4FB3D9;
    --secondary-color: #FFB347;
    --accent-color: #95D7AE;
    --text-color: #2D4356;
    --background-light: #F7FBFC;
    --shadow-color: rgba(79, 179, 217, 0.1);
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-light);
}

.app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    background-color: white;
    box-shadow: 0 4px 12px var(--shadow-color);
    padding: 1rem 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0 1rem;
    transition: transform 0.3s ease-in-out;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    text-align: center;
}

.language-switcher button {
    padding: 0.2rem 0.5rem;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .language-switcher button {
        padding: 0.2rem 0.4rem;
        font-size: 0.7rem;
    }
}
.nav-links a:hover {
    color: var(--primary-color);
    background-color: var(--shadow-color);
}

.menu-icon {
    display: none;
}

.menu-icon div {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: 0.3s;
}



.language-switcher button {
    padding: 0.5rem 1rem;
    border: 1.5px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .language-switcher button {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
        border-width: 1px;
    }
}
.language-switcher button:hover {
    background: var(--primary-color);
    color: white;
}

.content {
    flex: 1;
    padding: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section {
    margin-bottom: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 8px 20px var(--shadow-color);
}

.section h1, .section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero {
    text-align: center;
    padding: 4rem 2rem; /* Reduced padding from 8rem to 4rem */
    background: linear-gradient(135deg, #F7FBFC 0%, #E3F4F9 100%);
    margin-bottom: 4rem;
    border-radius: 0 0 50px 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(79, 179, 217, 0.1)" stroke-width="3"/></svg>');
    background-size: 40px 40px;
    opacity: 0.5;
}

.hero h1 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.6rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

.features, .doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    padding: 2rem 4rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 0;
}

.contact-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
    border: 1px solid rgba(79, 179, 217, 0.14);
    border-radius: 18px;
    box-shadow: 0 8px 24px var(--shadow-color);
    padding: 1.5rem;
    grid-column: span 3;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.contact-card p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.7;
}

.contact-card a {
    color: var(--text-color);
    text-decoration: none;
}

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

.contact-page {
    max-width: 1280px;
}

.contact-hero-section {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-hero-copy,
.contact-highlight {
    background: white;
    border-radius: 28px;
    box-shadow: 0 16px 40px rgba(79, 179, 217, 0.12);
    border: 1px solid rgba(79, 179, 217, 0.12);
}

.contact-hero-copy {
    padding: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #f1fbff 100%);
}

.contact-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(79, 179, 217, 0.12);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.contact-intro {
    max-width: 42rem;
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-action {
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 1.25rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(79, 179, 217, 0.18);
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 0 12px 24px rgba(79, 179, 217, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(79, 179, 217, 0.14);
}

.contact-action span {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.contact-action strong {
    font-size: 1.1rem;
    color: var(--text-color);
}

.contact-action-primary {
    background: linear-gradient(135deg, rgba(79, 179, 217, 0.16) 0%, rgba(149, 215, 174, 0.16) 100%);
}

.contact-highlight {
    padding: 2rem;
    background: linear-gradient(180deg, #2d4356 0%, #38556e 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-highlight h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.contact-highlight p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.8;
}

.contact-qr-panel {
    margin-top: 1.25rem;
    width: fit-content;
    max-width: 100%;
    padding: 0.75rem 0.85rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.contact-qr-link,
.home-quick-qr-link,
.whatsapp-qr-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.contact-qr-label {
    color: white;
    font-size: 0.82rem;
    margin-bottom: 0.65rem;
}

.contact-qr-panel img {
    width: 124px;
    max-width: 100%;
    border-radius: 14px;
    border: 3px solid rgba(255, 255, 255, 0.12);
}

.contact-card-wide {
    grid-column: span 6;
}

.contact-card-hours,
.contact-social-card {
    grid-column: span 6;
}

.contact-social-links {
    flex-wrap: wrap;
}

.contact-social-links a {
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(79, 179, 217, 0.1);
}

.doctors-section {
    padding: 1rem 0 3rem;
}

.doctors-section h1 {
    color: var(--text-color);
    font-size: 2rem;
    margin: 0 4rem 1rem;
}

.feature-card, .doctor-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 24px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(79, 179, 217, 0.1);
}

.feature-card:hover, .doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(79, 179, 217, 0.2);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.doctor-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--background-light);
}

.doctor-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.doctor-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.doctor-desc {
    font-size: 0.95rem;
    color: #666;
}

.footer {
    background-color: var(--text-color);
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.8rem;
    color: #cbd5e1;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .logo img {
        height: 60px !important;
    }

    .menu-icon {
        order: 2;
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        margin-left: 0;
        position: absolute;
        top: 1.25rem;
        right: 1rem;
    }

    .language-switcher {
        display: flex;
        gap: 0.35rem;
        align-items: center;
        justify-content: center;
        width: 100%;
        flex-basis: 100%;
        order: 3;
        margin-left: 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 12px var(--shadow-color);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }
    .hero h1 {
        font-size: 2.5rem;
    }

    .content {
        padding: 2rem 1rem;
    }
    
    .features, .doctors-grid, .contact-info {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .contact-info {
        padding: 0;
    }

    .contact-hero-section {
        grid-template-columns: 1fr;
    }

    .contact-hero-copy,
    .contact-highlight {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-action {
        min-width: 0;
    }

    .contact-card,
    .contact-card-wide,
    .contact-card-hours,
    .contact-social-card {
        grid-column: span 1;
    }
    
    .section {
        padding: 2rem 1.5rem;
    }

    .doctors-section h1 {
        margin: 0 1rem 1rem;
        font-size: 1.75rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .whatsapp-qr {
        text-align: center;
        margin: 1rem auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Carousel Styles */
.carousel-section {
    margin: 2rem auto;
    max-width: 800px; /* Adjust as needed */
    position: relative;
    padding: 0 1rem;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.carousel-slide {
    display: none;
}

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

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.3);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
    background-color: var(--primary-color);
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

.whatsapp-qr {
    margin-top: 1rem;
    text-align: left;
}

.whatsapp-qr-link {
    align-items: flex-start;
}

.whatsapp-qr p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}

.whatsapp-qr img {
    border-radius: 8px;
    border: 2px solid white;
}

/* Redesign Overrides */
body {
    background:
        radial-gradient(circle at top left, rgba(79, 179, 217, 0.12), transparent 28%),
        linear-gradient(180deg, #f5fbff 0%, #eef6fb 100%);
}

.navbar {
    width: min(1360px, calc(100% - 32px));
    margin: 0.9rem auto 0;
    padding: 1rem 1.5rem;
    justify-content: space-between;
    gap: 1.25rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
}

.logo img {
    height: 94px !important;
}

.menu-icon {
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(79, 179, 217, 0.16);
    background: white;
    padding: 0.4rem;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(79, 179, 217, 0.08);
}

.menu-icon:hover {
    background: rgba(79, 179, 217, 0.08);
}

.menu-icon div {
    width: 22px;
    height: 2.5px;
    display: block;
}

.nav-links {
    flex: 1;
    justify-content: center;
    gap: 0.75rem;
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 700;
    color: #425b70;
}

.nav-cta,
.language-switcher,
.hero-actions,
.nav-mobile-language {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-cta {
    flex-shrink: 0;
}

.nav-action,
.language-switcher button,
.nav-mobile-language button,
.mobile-quick-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.8rem 1.05rem;
    border-radius: 999px;
    border: 1px solid rgba(79, 179, 217, 0.18);
    background: white;
    color: var(--text-color);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(79, 179, 217, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav-action:hover,
.language-switcher button:hover,
.nav-mobile-language button:hover,
.mobile-quick-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(79, 179, 217, 0.15);
}

.nav-action-call,
.mobile-quick-call {
    background: linear-gradient(135deg, #4fb3d9 0%, #72cbe4 100%);
    color: white;
    border-color: transparent;
}

.nav-action-whatsapp,
.mobile-quick-whatsapp {
    background: linear-gradient(135deg, #95d7ae 0%, #c0ebc2 100%);
    border-color: transparent;
}

.language-switcher button,
.nav-mobile-language button {
    cursor: pointer;
}

.nav-mobile-actions {
    display: none;
}

.mobile-language-inline {
    display: none;
}

.mobile-header-tools {
    display: none;
}

.content {
    max-width: 1320px;
    padding: 2.25rem 1.5rem 6rem;
}

.home-content,
.page-content {
    padding-top: 2.5rem;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(79, 179, 217, 0.12);
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.home-hero,
.page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.95fr);
    gap: 1.75rem;
    margin-bottom: 1.75rem;
}

.home-hero-copy,
.home-trust-panel,
.page-hero-copy,
.page-hero-aside,
.trust-card,
.pathway-card,
.service-card,
.info-panel,
.mini-info-card,
.doctor-profile-card,
.action-banner {
    border-radius: 28px;
    border: 1px solid rgba(79, 179, 217, 0.12);
    box-shadow: 0 18px 42px rgba(79, 179, 217, 0.12);
}

.home-hero-copy,
.page-hero-copy,
.page-hero-aside,
.info-panel,
.doctor-profile-card,
.service-card,
.pathway-card,
.action-banner {
    background: white;
}

.home-hero-copy,
.page-hero-copy {
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 251, 255, 0.98) 100%);
}

.home-hero h1,
.page-hero h1 {
    font-size: clamp(2.2rem, 3.2vw, 3.45rem);
    line-height: 1.08;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.home-hero-summary,
.page-lead {
    font-size: 1.12rem;
    line-height: 1.9;
    max-width: 50rem;
    margin-bottom: 1.5rem;
}

.page-supporting {
    font-size: 1rem;
    color: #5c7384;
    margin: 0;
}

.hero-points {
    display: grid;
    gap: 0.85rem;
    margin: 1.5rem 0 1.75rem;
}

.hero-point {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(79, 179, 217, 0.08);
    border: 1px solid rgba(79, 179, 217, 0.1);
    color: #3d566a;
    font-weight: 600;
}

.home-trust-panel {
    padding: 2rem;
    background: linear-gradient(180deg, #2d4356 0%, #35536d 100%);
    color: white;
}

.home-trust-panel h2,
.page-hero-aside h2 {
    font-size: 1.7rem;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.trust-detail {
    padding: 1rem 0;
}

.trust-detail + .trust-detail {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-detail span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.trust-detail strong {
    display: block;
    font-size: 1.15rem;
    line-height: 1.5;
    color: white;
    margin-bottom: 0.4rem;
}

.trust-detail p {
    color: rgba(255, 255, 255, 0.84);
    margin: 0;
    font-size: 0.95rem;
}

.home-quick-qr {
    margin-top: 1rem;
    width: fit-content;
    max-width: 100%;
    padding: 0.75rem 0.85rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.home-quick-qr-label {
    color: white;
    font-size: 0.82rem;
    margin-bottom: 0.65rem;
}

.home-quick-qr img {
    width: 124px;
    max-width: 100%;
    border-radius: 14px;
    border: 3px solid rgba(255, 255, 255, 0.12);
}

.trust-strip,
.pathway-grid,
.info-panel-grid {
    display: grid;
    gap: 1.5rem;
}

.answer-section,
.faq-section {
    margin: 1.75rem 0;
}

.answer-section-header {
    margin-bottom: 1.1rem;
}

.answer-section-header h2 {
    color: var(--text-color);
    font-size: clamp(1.75rem, 2.5vw, 2.4rem);
    line-height: 1.15;
    margin-bottom: 0.55rem;
}

.answer-grid,
.faq-list {
    display: grid;
    gap: 1.15rem;
}

.answer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.answer-card,
.faq-item {
    padding: 1.4rem 1.45rem;
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(79, 179, 217, 0.12);
    box-shadow: 0 18px 42px rgba(79, 179, 217, 0.12);
}

.answer-card h3,
.faq-item h3 {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.45;
    margin-bottom: 0.6rem;
}

.answer-card p,
.faq-item p {
    margin: 0;
    color: #5c7384;
    line-height: 1.8;
}

.trust-strip,
.pathway-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-card,
.pathway-card,
.info-panel {
    padding: 1.6rem;
    background: white;
}

.trust-card h3,
.pathway-card h3,
.info-panel h2,
.service-card h3 {
    color: var(--text-color);
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
}

.pathway-card {
    text-decoration: none;
    color: inherit;
}

.pathway-card:hover {
    transform: translateY(-4px);
}

.home-gallery {
    max-width: none;
    margin: 2rem 0;
    padding: 1.25rem;
    border-radius: 28px;
    background: white;
    box-shadow: 0 18px 42px rgba(79, 179, 217, 0.12);
}

.carousel-container {
    border-radius: 22px;
}

.page-hero-aside {
    padding: 2rem;
}

.services-aside,
.vaccine-aside {
    background: linear-gradient(180deg, #2d4356 0%, #39556e 100%);
    color: white;
}

.services-aside p,
.vaccine-aside p {
    color: rgba(255, 255, 255, 0.86);
}

.mini-info-card {
    padding: 1.15rem 1.2rem;
    background: rgba(79, 179, 217, 0.08);
}

.mini-info-card + .mini-info-card {
    margin-top: 1rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}

.service-card {
    grid-column: span 4;
    padding: 1.8rem;
    color: inherit;
    text-decoration: none;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
    grid-column: span 6;
}

.service-card-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    background: rgba(79, 179, 217, 0.12);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.service-card p:last-child {
    margin-bottom: 0;
}

.service-card-linked {
    background: linear-gradient(135deg, rgba(79, 179, 217, 0.12) 0%, rgba(149, 215, 174, 0.14) 100%);
}

.action-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    margin-top: 1rem;
}

.action-banner h2 {
    font-size: 1.6rem;
    margin-bottom: 0.65rem;
    color: var(--text-color);
}

.action-banner p {
    margin: 0;
    color: #5c7384;
}

.doctors-section,
.doctor-profile-grid {
    padding: 0;
}

.doctor-profile-grid {
    gap: 1.5rem;
}

.doctor-profile-card {
    text-align: left;
    padding: 2rem;
}

.doctor-profile-top {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.doctor-profile-top img {
    width: 170px;
    height: 220px;
    border-radius: 22px;
    object-fit: cover;
    object-position: center top;
    background: #f5fbff;
    border: 1px solid rgba(79, 179, 217, 0.12);
    margin-bottom: 0;
}

.doctor-profile-intro {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.doctor-profile-intro .specialty {
    color: var(--secondary-color);
    font-weight: 700;
}

.doctor-profile-card .credentials {
    white-space: pre-line;
    margin: 1.5rem 0;
    font-size: 0.98rem;
    line-height: 1.85;
    color: #5a7386;
}

.doctor-profile-card .namecard img {
    width: 220px;
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: contain;
    border: 0;
    background: transparent;
}

.vaccine-page .section {
    margin-bottom: 2rem;
}

.vaccine-section {
    padding: 2.5rem 2rem;
}

.vaccine-table {
    font-size: 0.95rem;
}

.vaccine-mobile-cards {
    display: none;
}

.mobile-quick-bar {
    display: none;
}

@media (max-width: 1100px) {
    .navbar {
        padding: 1rem 1.1rem;
    }

    .nav-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        width: calc(100% - 16px);
        min-height: 84px;
        margin-top: 0.55rem;
        padding: 0.95rem 9.1rem 0.95rem 1rem;
        border-radius: 24px;
        position: sticky;
        top: 0.6rem;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .logo {
        min-width: 0;
    }

    .logo a {
        display: inline-flex;
        align-items: center;
    }

    .logo img {
        height: 66px !important;
    }

    .language-switcher,
    .menu-icon {
        display: none !important;
    }

    .mobile-header-tools {
        position: absolute;
        top: 50%;
        right: 0.9rem;
        transform: translateY(-50%);
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        z-index: 230;
    }

    .mobile-lang-toggle,
    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(79, 179, 217, 0.16);
        background: white;
        color: var(--text-color);
        box-shadow: 0 8px 18px rgba(79, 179, 217, 0.08);background: linear-gradient(135deg, #95d7ae 0%, #c0ebc2 100%);
    border-color: transparent;
    }

    .mobile-lang-toggle {
        min-width: 5.2rem;
        height: 2.65rem;
        padding: 0 0.78rem;
        border-radius: 999px;
        font-size: 0.76rem;
        font-weight: 800;
    }

    .mobile-menu-toggle {
        width: 2.85rem;
        height: 2.85rem;
        padding: 0.48rem;
        border-radius: 14px;
        flex-direction: column;
        gap: 4px;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 18px;
        height: 2.4px;
        background: var(--primary-color);
        border-radius: 999px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 0.55rem);
        left: auto;
        right: 0;
        align-items: stretch;
        gap: 0.35rem;
        width: min(220px, calc(100vw - 24px));
        padding: 0.5rem;
        margin-top: 0;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(79, 179, 217, 0.12);
        border-radius: 16px;
        box-shadow: 0 14px 26px rgba(45, 67, 86, 0.12);
        text-align: center;
        overflow: visible;
        z-index: 220;
    }

    .nav-links.active {
        display: grid;
    }

    .nav-links a {
        width: 100%;
        min-width: 0;
        padding: 0.62rem 0.7rem;
        border-radius: 12px;
        background: rgba(247, 251, 252, 0.95);
        box-shadow: none;
        border: 1px solid rgba(79, 179, 217, 0.14);
        font-size: 0.78rem;
        line-height: 1.25;
    }

    .nav-mobile-actions {
        display: none;
    }

    .nav-mobile-language button {
        flex: 1;
    }

    .content,
    .home-content,
    .page-content {
        padding: 1.5rem 1rem 7rem;
    }

    .home-hero,
    .page-hero,
    .trust-strip,
    .pathway-grid,
    .info-panel-grid,
    .answer-grid,
    .faq-list {
        grid-template-columns: 1fr;
    }

    .home-hero-copy,
    .home-trust-panel,
    .page-hero-copy,
    .page-hero-aside,
    .service-card,
    .doctor-profile-card,
    .action-banner,
    .info-panel,
    .contact-hero-copy,
    .contact-highlight {
        padding: 1.6rem 1.3rem;
        border-radius: 24px;
    }

    .home-quick-qr,
    .contact-qr-panel {
        width: 100%;
        padding: 0.7rem 0.8rem;
    }

    .home-quick-qr img,
    .contact-qr-panel img {
        width: 112px;
    }

    .home-hero h1,
    .page-hero h1 {
        font-size: 2rem;
    }

    .hero-actions,
    .action-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .nav-action,
    .action-banner .nav-action {
        width: 100%;
    }

    .home-gallery {
        padding: 0.9rem;
    }

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

    .service-card,
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: span 1;
    }

    .doctor-profile-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .doctor-profile-top img {
        width: 142px;
        height: 184px;
    }

    .vaccine-section {
        padding: 1.5rem 1rem;
    }

    .table-container {
        display: none;
    }

    .vaccine-mobile-cards {
        display: grid;
        gap: 1rem;
    }

    .vaccine-mobile-card {
        padding: 1rem;
        border-radius: 20px;
        background: white;
        border: 1px solid rgba(79, 179, 217, 0.12);
        box-shadow: 0 14px 28px rgba(79, 179, 217, 0.1);
    }

    .vaccine-mobile-age {
        color: var(--primary-color);
        font-size: 1.15rem;
        margin-bottom: 0.9rem;
    }

    .vaccine-mobile-section + .vaccine-mobile-section {
        margin-top: 0.9rem;
        padding-top: 0.9rem;
        border-top: 1px solid #e8f1f6;
    }

    .vaccine-mobile-label {
        margin: 0 0 0.45rem;
        color: #5f7c90;
        font-size: 0.78rem;
        font-weight: 800;
        line-height: 1.5;
        text-transform: uppercase;
    }

    .vaccine-mobile-body {
        font-size: 0.95rem;
        line-height: 1.7;
        color: var(--text-color);
    }

    .vaccine-mobile-body br {
        display: block;
        content: "";
        margin-bottom: 0.3rem;
    }

    .vaccine-empty {
        color: #7a8f9f;
    }

    .mobile-quick-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(18px);
        box-shadow: 0 -10px 30px rgba(45, 67, 86, 0.12);
        z-index: 250;
    }

    .mobile-quick-link {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .navbar {
        min-height: 78px;
        padding-right: 8.2rem;
    }

    .logo img {
        height: 60px !important;
    }

    .mobile-header-tools {
        right: 0.72rem;
        gap: 0.34rem;
    }

    .mobile-lang-toggle {
        min-width: 4.55rem;
        height: 2.4rem;
        padding: 0 0.64rem;
        font-size: 0.7rem;
    }

    .mobile-menu-toggle {
        width: 2.55rem;
        height: 2.55rem;
        padding: 0.38rem;
    }

    .mobile-menu-toggle span {
        width: 17px;
    }
}
