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

body {
    font-family: 'Roboto', sans-serif;
    color: #2c3e50;
    line-height: 1.6;
    background: #fff;
}

h1,
h2,
h3,
h4,
.logo h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;

}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

header.site-header {
    background: #fff;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: #0d6efd;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

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

.top-bar a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

.site-header-top {
    background: linear-gradient(90deg, #0b5ed7 0%, #0d6efd 45%, #146c43 100%);
    color: #fff;
    font-size: 0.8125rem;
    padding: 0.45rem 0;
}

.site-header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.site-header-top-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.7rem;
}

.site-header-top-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
}

.site-header-top-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.site-header-top-link:hover {
    opacity: 0.9;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-header-top-link--muted {
    font-weight: 500;
    opacity: 0.92;
    font-size: 0.8125rem;
    gap: 0.25rem;
}

.site-header-top-sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.35);
    margin: 0 0.15rem;
}

.main-header {
    padding: 0.85rem 0 1rem;
}

.main-header .container,
.main-header .site-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    gap: 0.75rem 1rem;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}

.site-brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 50%, #146c43 100%);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.35);
}

.site-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.site-brand-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.15rem, 2.5vw, 1.55rem);
    font-weight: 700;
    color: #0d6efd;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.site-brand-tagline {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.logo h1 {
    font-size: 1.8rem;
    color: #0d6efd;
    letter-spacing: -0.5px;
}

.logo p {
    font-size: 0.8rem;
    color: #6c757d;
}

.site-header-nav {
    width: 100%;
    order: 3;
}

.site-header-actions {
    display: none;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

.site-header-staff-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: #f1f5f9;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.site-header-staff-link:hover {
    color: #0d6efd;
    background: #e0f2fe;
}

.site-header-staff-link:focus-visible {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

/* Navigation */
.nav-links {
    display: flex;
    list-style: none;
    gap: 0.35rem 1.35rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.nav-item {
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s ease, box-shadow 0.2s ease;
    padding: 0.35rem 0.15rem;
    border-radius: 6px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-link:focus-visible {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

.nav-link:hover {
    color: #0d6efd;
}

.nav-link.is-active {
    color: #0d6efd;
    font-weight: 600;
}

.nav-link.is-active::after {
    content: '';
    position: absolute;
    left: 0.15rem;
    right: 0.15rem;
    bottom: 0;
    height: 2px;
    border-radius: 2px;
    background: #0d6efd;
}

.nav-link--utility {
    font-size: 0.875rem;
    color: #64748b;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: #f1f5f9;
}

.nav-link--utility:hover {
    color: #0d6efd;
    background: #e0f2fe;
}

.nav-item--mobile-cta {
    display: none;
}

.nav-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: #0d6efd;
    color: #fff !important;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.35rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-mobile-cta:hover {
    background: #0b5ed7;
    color: #fff !important;
}

/* Desktop appointment button */
.appointment-btn {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: #fff;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
    display: none;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(13, 110, 253, 0.35);
}

.appointment-btn:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(13, 110, 253, 0.45);
}

.site-header-cta i {
    font-size: 0.95rem;
}

/* Mobile menu toggle */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    color: #0d6efd;
    padding: 0;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    order: 2;
    flex-shrink: 0;
}

.menu-toggle:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.menu-toggle:focus-visible {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

.menu-toggle-lines {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 14px;
}

.menu-toggle-bar {
    display: block;
    height: 2px;
    width: 100%;
    background: #0d6efd;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
}

.site-header-menu-toggle.is-open .menu-toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.site-header-menu-toggle.is-open .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

.site-header-menu-toggle.is-open .menu-toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background: #0d6efd;
    color: #fff;
}

.btn-primary:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: #fff;
    color: #0d6efd;
}

.btn-light {
    background: #fff;
    color: #0d6efd;
    border: 1px solid #ddd;
}

/*  ============================== Hero slider images ===========================*/
.hero-slider .slide-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Ensure slider container has correct height on all devices */
.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 500px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 450px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }
}

/* Doctor card images – fixed aspect ratio, full coverage */
.doctor-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    /* forces 4:3 box */
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Any other images that might appear (e.g., team page, gallery) */
.team-card img,
.gallery img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* For background images that might be used elsewhere */
[class*="bg"] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 500px;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 800px;
    z-index: 2;
}

.slide-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.slide-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.slide-content .btn {
    margin: 0 0.5rem;
    padding: 0.75rem 1.5rem;
}

.slide-content .btn-outline {
    border-color: #fff;
    background: transparent;
    color: #fff;
}

.slide-content .btn-outline:hover {
    background: #fff;
    color: #0d6efd;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.6);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: #0d6efd;
    opacity: 1;
}


/* ---------- RESPONSIVE ---------- */
@media (min-width: 576px) {
    .top-bar .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .insurance-logos {
        flex-direction: row;
        justify-content: center;
    }

    .insurance-item {
        width: auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .hero-slider {
        height: 80vh;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.2rem;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }

    .site-brand {
        order: 0;
        flex-shrink: 0;
    }

    .site-header-nav {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.75rem 1.25rem;
        flex: 1;
        width: auto;
        min-width: 0;
        order: 1;
    }

    .site-header-actions {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.45rem;
    }

    .site-header-staff-link {
        font-size: 0.8125rem;
        padding: 0.4rem 0.65rem;
        gap: 0.3rem;
    }

    .nav-links {
        display: flex !important;
        flex-direction: row;
        flex: 1;
        min-width: 0;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        white-space: nowrap;
        column-gap: 0.35rem;
        border-top: none;
        margin-top: 0;
        padding: 0;
        overflow: visible;
    }

    .site-header-nav .nav-link {
        font-size: 0.8125rem;
        padding: 0.35rem 0.2rem;
        white-space: nowrap;
    }

    .site-brand-title {
        font-size: 1.2rem;
    }

    .site-brand-mark {
        width: 38px;
        height: 38px;
    }

    .nav-item--mobile-cta {
        display: none;
    }

    .appointment-btn {
        display: inline-flex;
        align-items: center;
        flex-shrink: 0;
        padding: 0.55rem 1rem;
        font-size: 0.875rem;
    }

    .main-header .container,
    .main-header .site-header-bar {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem 0.65rem;
    }

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

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

@media (min-width: 992px) and (max-width: 1320px) {
    .site-header-main .site-brand-tagline {
        display: none;
    }

    .site-header-nav .nav-link {
        font-size: 0.75rem;
        padding: 0.3rem 0.12rem;
    }

    .site-header-staff-link {
        font-size: 0.75rem;
        padding: 0.35rem 0.55rem;
    }

    .appointment-btn {
        padding: 0.5rem 0.85rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 450px;
    }

    .slide-content h1 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .slide-content .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        margin: 0 0.3rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }

    .slide-content h1 {
        font-size: 1.2rem;
    }

    .slide-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
}

.insurance-premium {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle medical pattern overlay */
.insurance-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path fill="%230d6efd" d="M50,15 L65,35 L50,55 L35,35 L50,15 Z M50,45 L65,65 L50,85 L35,65 L50,45 Z"/><circle cx="50" cy="50" r="8"/><circle cx="50" cy="50" r="15" fill="none" stroke="%230d6efd" stroke-width="1"/></svg>');
    background-repeat: repeat;
    background-size: 40px;
    pointer-events: none;
}

.insurance-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0 2.5rem;
    position: relative;
    z-index: 1;
}

.insurance-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(13, 110, 253, 0.1);
    position: relative;
    overflow: hidden;
}

.insurance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    border-color: #0d6efd;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d6efd10, #0d6efd20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: 0.3s;
}

.card-icon i {
    font-size: 2.5rem;
    color: #0d6efd;
}

.insurance-card:hover .card-icon {
    background: #0d6efd;
    transform: scale(1.05);
}

.insurance-card:hover .card-icon i {
    color: #fff;
}

.insurance-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.insurance-card p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.card-badge {
    display: inline-block;
    background: #0d6efd10;
    color: #0d6efd;
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    transition: 0.3s;
}

.insurance-card:hover .card-badge {
    background: #0d6efd;
    color: #fff;
}

.insurance-note-premium {
    background: #fff;
    border-radius: 3rem;
    padding: 1rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #2c3e50;
    border: 1px solid rgba(13, 110, 253, 0.2);
    position: relative;
    z-index: 1;
}

.insurance-note-premium i {
    color: #0d6efd;
    font-size: 1.3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .insurance-cards {
        gap: 1.5rem;
    }

    .insurance-card {
        padding: 1.5rem;
    }

    .card-icon {
        width: 70px;
        height: 70px;
    }

    .card-icon i {
        font-size: 2rem;
    }

    .insurance-card h3 {
        font-size: 1.1rem;
    }

    .insurance-note-premium {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        font-size: 0.9rem;
    }
}

.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================  Highlights ==========================*/
.highlights {
    padding: 60px 0;
    background: #f8f9fa;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.highlight-card i {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 15px;
}

.highlight-card h3 {
    margin-bottom: 10px;
}

/* Stats Counter Section */
.stats-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: #fff;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Common Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #0d6efd;
    margin: 12px auto 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-content {
    padding: 24px;
}

.card h3 {
    margin-bottom: 12px;
}

.read-more {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    transition: gap 0.3s;
}

.read-more i {
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Facilities */
.facility-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.facility-card i {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 15px;
}

.facility-card h3 {
    margin-bottom: 10px;
}

/* Doctors */
.doctor-card {
    text-align: center;
}

.doctor-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: #e9ecef;
    transition: transform 0.5s ease;
}

.doctor-card:hover img {
    transform: scale(1.05);
}

/* Insurance */
.insurance-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.insurance-item {
    background: #fff;
    padding: 12px 30px;
    border-radius: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    color: #2c3e50;
    transition: all 0.3s;
}

.insurance-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}



/* Additional styles for diagnostics page */
.diagnostics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.diag-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.diag-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.diag-card i {
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 15px;
}

.diag-card h3 {
    margin-bottom: 10px;
}

.diag-card ul {
    text-align: left;
    margin-top: 15px;
    list-style: none;
}

.diag-card ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.diag-card ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #0d6efd;
}

/* Improved Why Choose Section */
.why-choose {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 50px 40px;
    margin-top: 50px;
    text-align: center;
}

.why-choose h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #0d6efd;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.feature-item {
    background: #fff;
    border-radius: 16px;
    padding: 25px 15px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 0.9rem;
    color: #6c757d;
}

.outsource-note {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid #0d6efd;
    text-align: left;
}

@media (max-width: 768px) {
    .why-choose {
        padding: 30px 20px;
    }

    .features-grid {
        gap: 20px;
    }
}

/* Testimonials */
.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-card i {
    color: #0d6efd;
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 15px;
    display: inline-block;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    margin-top: 10px;
    color: #0d6efd;
}

/* Final CTA */
.final-cta {
    background: #0d6efd;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #2c3e50;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-grid h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid ul li {
    margin-bottom: 10px;
}

.footer-grid a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-grid a:hover {
    color: #0d6efd;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #0d6efd;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #445566;
    font-size: 0.9rem;
}

/* Sticky Buttons */
.sticky-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #28a745;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    text-decoration: none;
    transition: 0.3s;
}

.sticky-call.whatsapp {
    background: #25d366;
    bottom: 90px;
}

.sticky-call:hover {
    transform: scale(1.05);
}

/* ========== RESPONSIVE NAVBAR ========== */
@media (max-width: 992px) {
    .site-brand {
        order: 1;
        flex: 1;
        min-width: 0;
    }

    .menu-toggle {
        display: flex;
        order: 2;
    }

    .main-header .container,
    .main-header .site-header-bar {
        justify-content: space-between;
    }

    .site-header-nav {
        order: 3;
    }

    .site-header-nav--open {
        padding: 0.25rem 0 0.5rem;
        background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
        border: 1px solid #e2e8f0;
        border-radius: 14px;
        margin-top: 0.35rem;
        box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 0.25rem;
        padding: 1rem 1rem 0.75rem;
        margin: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    .nav-links.show {
        display: flex;
    }

    .site-header-nav--open .site-header-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 0 1rem 1rem;
        gap: 0.5rem;
        border-top: 1px solid #e2e8f0;
        margin-top: 0.25rem;
        padding-top: 0.85rem;
    }

    .site-header-nav--open .site-header-staff-link {
        width: 100%;
        justify-content: center;
    }

    .nav-link {
        justify-content: center;
        padding: 0.65rem 0.75rem;
        border-radius: 10px;
    }

    .nav-link.is-active::after {
        display: none;
    }

    .nav-link.is-active {
        background: #e0f2fe;
    }

    .nav-item--mobile-cta {
        display: list-item;
        width: 100%;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid #e2e8f0;
    }

    .appointment-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 60px 0;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .final-cta h2 {
        font-size: 1.6rem;
    }

    .sticky-call {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/*================ about us ==========================*/
        /* ===== ABOUT PAGE STYLES ===== */
        .about-hero {
            background: linear-gradient(135deg, #0d6efd, #0a58ca);
            color: #fff;
            padding: 4rem 0;
            text-align: center;
        }
        .about-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .about-hero p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        .about-intro {
            padding: 4rem 0;
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
        }
        .about-grid img {
            width: 100%;
            border-radius: 1rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .mission-vision {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin: 3rem 0;
        }
        .mission-card, .vision-card {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            transition: 0.3s;
        }
        .mission-card i, .vision-card i {
            font-size: 2.5rem;
            color: #0d6efd;
            margin-bottom: 1rem;
        }
        .why-choose-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .why-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }
        .why-item i {
            font-size: 1.5rem;
            color: #0d6efd;
            margin-top: 0.2rem;
        }
        .stats-about {
            background: linear-gradient(135deg, #0d6efd, #0a58ca);
            color: #fff;
            padding: 4rem 0;
            text-align: center;
        }
        .stats-grid-about {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .stat-item-about h3 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }
        .director-message {
            background: #f8f9fa;
            padding: 3rem;
            border-radius: 1rem;
            text-align: center;
            margin: 3rem 0;
        }
        .director-message i {
            font-size: 3rem;
            color: #0d6efd;
            margin-bottom: 1rem;
        }
        .final-cta-about {
            background: #0d6efd;
            color: #fff;
            text-align: center;
            padding: 4rem 0;
        }
        @media (min-width: 768px) {
            .about-grid {
                grid-template-columns: 1fr 1fr;
            }
            .mission-vision {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .about-hero h1 {
                font-size: 1.8rem;
            }
            .stats-item-about h3 {
                font-size: 2rem;
            }
            .director-message {
                padding: 1.5rem;
            }
        }
/*=============== docter ======================*/
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #0d6efd;
    margin: 12px auto 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.doctor-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    text-align: center;
}

.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.doctor-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: #e9ecef;
}

.doctor-info {
    padding: 24px;
}

.doctor-info h3 {
    margin-bottom: 5px;
}

.specialty {
    color: #0d6efd;
    font-weight: 500;
    margin-bottom: 8px;
}

.experience {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.read-more {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}

/*================== Our Team=============================*/
.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #0d6efd;
    margin: 12px auto 0;
}

.team-category {
    margin-bottom: 60px;
}

.team-category h2 {
    font-size: 1.8rem;
    color: #0d6efd;
    border-left: 4px solid #0d6efd;
    padding-left: 15px;
    margin-bottom: 30px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background: #e9ecef;
    transition: transform 0.5s ease;
}

.team-card:hover img {
    transform: scale(1.03);
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    margin-bottom: 5px;
}

.designation {
    color: #0d6efd;
    font-weight: 500;
    margin-bottom: 8px;
}

.experience {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 12px;
}


/*================== contact ===============================*/
.contact-hero {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-hero h1 span {
    color: #ffd966;
}

.contact-hero p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: -2rem 0 3rem;
}

.quick-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: #2c3e50;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border: 1px solid #eee;
}

.quick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #0d6efd;
}

.quick-icon {
    width: 70px;
    height: 70px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.quick-icon i {
    font-size: 2rem;
    color: #0d6efd;
}

.quick-card h4 {
    margin-bottom: 0.5rem;
}

.quick-card p {
    color: #6c757d;
    margin: 0;
}

.contact-info-section {
    padding: 2rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

.contact-info-card,
.contact-form-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-card h3,
.contact-form-card h3 {
    margin-bottom: 1.5rem;
    color: #0d6efd;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail-icon {
    width: 45px;
    height: 45px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon i {
    font-size: 1.2rem;
    color: #0d6efd;
}

.contact-detail-text h5 {
    margin-bottom: 0.25rem;
}

.contact-detail-text p,
.contact-detail-text a {
    color: #6c757d;
    text-decoration: none;
}

.contact-detail-text a:hover {
    color: #0d6efd;
}

.social-links-container {
    margin-top: 2rem;
}

.social-links-grid {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.social-link-item {
    width: 40px;
    height: 40px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    transition: 0.3s;
}

.social-link-item:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateY(-3px);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group label i {
    margin-right: 0.5rem;
    color: #0d6efd;
}

.form-control,
select.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
}

.form-control:focus,
select.form-control:focus {
    outline: none;
    border-color: #0d6efd;
}

textarea.form-control {
    resize: vertical;
}

.btn-submit {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    display: block;
}

.final-cta {
    background: #0d6efd;
    color: #fff;
    text-align: center;
    padding: 3rem 0;
}

.final-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 1.5rem;
    }

    .quick-card {
        padding: 1rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 1rem;
    }

    .map-container iframe {
        height: 250px;
    }

    .final-cta h2 {
        font-size: 1.4rem;
    }
}



/*============================ Appoment ========================================*/
.appointment-form {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem 1rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    display: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
}

textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

.note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

/*====================== Contact ======================================*/
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #0d6efd;
}

.contact-info p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-info i {
    width: 1.25rem;
    color: #0d6efd;
    margin-top: 0.2rem;
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.map-container iframe {
    width: 100%;
    height: 250px;
    display: block;
}

.contact-form {
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    margin-bottom: 1.25rem;
    color: #2c3e50;
}

/* Form elements already defined in global styles, but ensure they are full width */
.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0d6efd;
}

.contact-form button {
    margin-top: 0.5rem;
}

/* Tablet and up */
@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .contact-info {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

/* Large screens */
@media (min-width: 992px) {
    .map-container iframe {
        height: 350px;
    }
}

/* Ensure proper spacing on very small devices */
@media (max-width: 576px) {
    .contact-info p {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .contact-info i {
        width: auto;
    }
}

/* —— Site footer (enhanced) —— */
footer.site-footer {
    position: relative;
    background: linear-gradient(165deg, #152535 0%, #1e3248 42%, #162433 100%);
    color: #e8eef5;
    padding: 0 0 28px;
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.18);
}

.site-footer-accent {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #0d6efd, #4dabf7, #0d6efd);
}

.site-footer-inner {
    padding-top: 52px;
}

.site-footer-brand h3 {
    font-size: 1.35rem;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}

.site-footer-tagline {
    color: #8fb9e8;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.site-footer-address,
.site-footer-contact {
    margin-bottom: 0.65rem;
    line-height: 1.55;
    color: #cfd8e3;
}

.site-footer-link {
    color: #e8eef5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer-link:hover {
    color: #7ec8ff;
}

.site-footer-icon {
    color: #0d6efd;
    width: 1.1rem;
    margin-right: 10px;
}

footer.site-footer .footer-grid h3 {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 18px;
    font-size: 1.1rem;
    color: #fff;
}

footer.site-footer .footer-grid h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #0d6efd, #4dabf7);
}

.site-footer-services li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    color: #d5dee9;
}

.site-footer-check-icon {
    color: #5eb3ff;
    font-size: 0.72rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.site-footer-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer-hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.92rem;
}

.site-footer-hours-list li:last-child {
    border-bottom: none;
}

.site-footer-hours-label {
    color: #9fb4cc;
    font-weight: 500;
}

.site-footer-hours-value {
    color: #f0f4f8;
    font-weight: 600;
    text-align: right;
}

.site-footer-cta {
    margin: 36px 0 8px;
}

.site-footer-cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.35rem 1.5rem;
    border-radius: 14px;
    background: rgba(13, 110, 253, 0.12);
    border: 1px solid rgba(13, 110, 253, 0.35);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.site-footer-cta-title {
    display: block;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 4px;
}

.site-footer-cta-text {
    margin: 0;
    font-size: 0.9rem;
    color: #b8d4f5;
}

.site-footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-footer-btn-primary {
    background: #0d6efd;
    color: #fff;
    box-shadow: 0 4px 14px rgba(13, 110, 253, 0.45);
}

.site-footer-btn-primary:hover {
    background: #0b5ed7;
    color: #fff;
    transform: translateY(-1px);
}

.site-footer-btn-outline {
    background: transparent;
    color: #e8eef5;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.site-footer-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

footer.site-footer .copyright {
    border-top-color: rgba(255, 255, 255, 0.12);
    padding-top: 24px;
    margin-top: 8px;
}

.copyright-sub {
    margin: 8px 0 0;
    font-size: 0.82rem;
    color: #8fa6bd;
}

@media (max-width: 576px) {
    .site-footer-cta-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .site-footer-cta-actions {
        justify-content: stretch;
    }

    .site-footer-btn {
        flex: 1;
        min-width: 0;
    }
}
