        :root {
            --primary-navy: #002349;
            --secondary-blue: #1d5cb4;
            --text-dark: #0f172a;
            --text-muted: #475569;
            --bg-light: #f8fafc;
            --bg-card: #ffffff;
            --accent-blue: #eff6ff;
            --border-color: #e2e8f0;
            --radius: 8px;
            --transition: all 0.25s ease-in-out;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: #ffffff;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        h1,
        h2,
        h3,
        h4,
        .serif-text {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--primary-navy);
            line-height: 1.25;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Reusable UI Components */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 30px;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.8px;
            border-radius: var(--radius);
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
        }

        .btn-filled {
            background-color: var(--primary-navy);
            color: #ffffff;
            border: 2px solid var(--primary-navy);
        }

        .btn-filled:hover {
            background-color: var(--secondary-blue);
            border-color: var(--secondary-blue);
            transform: translateY(-2px);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary-navy);
            border: 2px solid var(--primary-navy);
        }

        .btn-outline:hover {
            background-color: var(--accent-blue);
            transform: translateY(-2px);
        }

        .tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--secondary-blue);
            margin-bottom: 16px;
        }

        section {
            padding: 100px 0;
        }

        .section-header {
            max-width: 700px;
            margin: 0 auto 60px auto;
            text-align: center;
        }

        .section-header h2 {
            font-size: 2.6rem;
            margin-bottom: 18px;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 1.05rem;
        }

        /* -----------------------------------------------
           1. NAVBAR & HERO SECTION (Image 1)
        ----------------------------------------------- */
        .navbar {
            background-color: #ffffff;
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 18px 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-text {
            font-size: 1.3rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: var(--primary-navy);
        }

        .nav-links {
            display: flex;
            gap: 40px;
        }

        .nav-links a {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--text-muted);
            letter-spacing: 0.5px;
        }

        .nav-links a:hover {
            color: var(--secondary-blue);
        }

        .nav-btn {
            padding: 10px 22px;
            font-size: 0.8rem;
        }

        .hero {
            background: linear-gradient(135deg, #ffffff 60%, var(--accent-blue) 100%);
            padding: 90px 0;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 3.4rem;
            line-height: 1.15;
            margin-bottom: 24px;
        }

        .hero-content p {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 40px;
            max-width: 540px;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
        }

        .hero-image-container {
            position: relative;
        }

        .hero-placeholder-img {
            width: 100%;
            height: 440px;
            background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-weight: 500;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
        }

        .image-badge {
            position: absolute;
            bottom: -20px;
            left: 24px;
            background-color: #ffffff;
            padding: 16px 24px;
            border-radius: 6px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            gap: 14px;
            border-left: 4px solid var(--secondary-blue);
        }

        .badge-icon {
            background-color: var(--accent-blue);
            color: var(--secondary-blue);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .badge-title {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--primary-navy);
        }

        .badge-subtitle {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* -----------------------------------------------
           2. STATS BAND & MEET DOCTOR (Image 2)
        ----------------------------------------------- */
        .stats-band {
            background-color: var(--primary-navy);
            color: #ffffff;
            padding: 50px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            text-align: center;
            gap: 40px;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .stat-icon {
            margin-bottom: 14px;
            color: #3b82f6;
        }

        .stat-number {
            font-size: 2.4rem;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            opacity: 0.8;
            font-weight: 500;
        }

        .meet-doctor {
            background-color: #ffffff;
        }

        .doctor-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 80px;
            align-items: start;
        }

        .doctor-info h2 {
            font-size: 2.8rem;
            margin-bottom: 8px;
        }

        .doctor-subtitle {
            font-size: 1.1rem;
            color: var(--secondary-blue);
            font-weight: 600;
            margin-bottom: 32px;
        }

        .doctor-description p {
            color: var(--text-muted);
            margin-bottom: 24px;
            font-size: 1.05rem;
        }

        .specialty-pills {
            display: flex;
            gap: 12px;
            margin-top: 40px;
        }

        .pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: var(--accent-blue);
            color: var(--primary-navy);
            padding: 12px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .grid-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .doc-card {
            background-color: var(--bg-light);
            padding: 36px 30px;
            border-radius: var(--radius);
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }

        .doc-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        }

        .doc-card-icon {
            color: var(--secondary-blue);
            margin-bottom: 24px;
        }

        .doc-card h4 {
            font-size: 1.25rem;
            margin-bottom: 12px;
            color: var(--primary-navy);
        }

        .doc-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .doc-card.dark {
            background-color: var(--secondary-blue);
            color: #ffffff;
            border-color: var(--secondary-blue);
        }

        .doc-card.dark h4,
        .doc-card.dark p,
        .doc-card.dark .doc-card-icon {
            color: #ffffff;
        }

        /* -----------------------------------------------
           3. CLINICAL EXPERTISE / SERVICES (Image 3)
        ----------------------------------------------- */
        .services {
            background-color: var(--bg-light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 20px;
        }

        .service-card {
            background-color: var(--bg-card);
            border-radius: var(--radius);
            padding: 40px 28px;
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            border-color: #cbd5e1;
        }

        .service-icon-box {
            background-color: var(--accent-blue);
            color: var(--secondary-blue);
            width: 52px;
            height: 52px;
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
        }

        .service-card h3 {
            font-size: 1.35rem;
            margin-bottom: 16px;
        }

        .service-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 32px;
            flex-grow: 1;
            line-height: 1.5;
        }

        .service-link {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--secondary-blue);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* -----------------------------------------------
           4. ABOUT DETAIL SECTION (Image 4)
        ----------------------------------------------- */
        .about-detail {
            background-color: #ffffff;
        }

        .detail-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .detail-content h2 {
            font-size: 2.8rem;
            margin-bottom: 24px;
        }

        .detail-content p {
            color: var(--text-muted);
            margin-bottom: 40px;
            font-size: 1.05rem;
        }

        .recommendation-rate {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 36px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary-navy);
        }

        .recommendation-rate svg {
            color: #10b981;
        }

        .detail-image-box {
            position: relative;
        }

        .detail-placeholder-img {
            width: 100%;
            height: 420px;
            background: linear-gradient(135deg, #cbd5e1, #94a3b8);
            border-radius: var(--radius);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        }

        .detail-badge {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background-color: #ffffff;
            padding: 24px;
            border-radius: var(--radius);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            max-width: 340px;
            border-top: 4px solid var(--primary-navy);
        }

        .detail-badge h5 {
            font-size: 1.05rem;
            color: var(--primary-navy);
            margin-bottom: 6px;
            font-weight: 700;
        }

        .detail-badge p {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.4;
        }

        /* -----------------------------------------------
           5. CTA SECTION (Image 5)
        ----------------------------------------------- */
        .cta {
            background-color: var(--primary-navy);
            color: #ffffff;
            text-align: center;
            padding: 90px 0;
        }

        .cta h2 {
            color: #ffffff;
            font-size: 2.8rem;
            margin-bottom: 18px;
        }

        .cta p {
            opacity: 0.85;
            max-width: 620px;
            margin: 0 auto 44px auto;
            font-size: 1.1rem;
        }

        .cta-actions {
            display: flex;
            justify-content: center;
            gap: 16px;
        }

        .btn-white {
            background-color: #ffffff;
            color: var(--primary-navy);
            border: 2px solid #ffffff;
        }

        .btn-white:hover {
            background-color: var(--accent-blue);
            border-color: var(--accent-blue);
            transform: translateY(-2px);
        }

        .btn-outline-white {
            background-color: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
        }

        .btn-outline-white:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        /* -----------------------------------------------
           6. WHY CHOOSE US & TESTIMONIAL (Image 6)
        ----------------------------------------------- */
        .why-choose-us {
            background-color: var(--bg-light);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 80px;
        }

        .why-card {
            text-align: center;
            padding: 0 10px;
        }

        .why-icon {
            background-color: var(--accent-blue);
            color: var(--secondary-blue);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px auto;
        }

        .why-card h3 {
            font-size: 1.4rem;
            margin-bottom: 16px;
        }

        .why-card p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .quote-block {
            background-color: var(--secondary-blue);
            color: #ffffff;
            border-radius: var(--radius);
            padding: 60px 80px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(29, 92, 180, 0.12);
        }

        .quote-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            font-style: italic;
            line-height: 1.5;
            margin-bottom: 24px;
            font-weight: 500;
        }

        .quote-author {
            font-size: 0.9rem;
            letter-spacing: 1px;
            opacity: 0.9;
            text-transform: uppercase;
            font-weight: 600;
        }

        /* -----------------------------------------------
           7. EXACT REPLICA FOOTER (Image 7)
        ----------------------------------------------- */
        .exact-footer {
            background-color: #002349;
            /* Matching exact navy code from image */
            color: #ffffff;
            padding: 80px 0 30px 0;
            font-family: 'Inter', sans-serif;
        }

        .footer-main-layout {
            display: grid;
            grid-template-columns: 2fr 1fr 1.3fr 1.2fr;
            gap: 48px;
            align-items: start;
            margin-bottom: 60px;
        }

        .brand-block {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .round-logo-badge {
            background-color: #ffffff;
            width: 110px;
            height: 110px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            padding: 10px;
            text-align: center;
        }

        /* Pure CSS Lotus Icon approximation inside the white badge */
        .badge-lotus-icon {
            width: 42px;
            height: 42px;
            margin-bottom: 4px;
            color: #1d5cb4;
        }

        .badge-logo-text {
            color: #002349;
            font-size: 0.75rem;
            font-weight: 800;
            line-height: 1.1;
        }

        .brand-text-container {
            display: flex;
            flex-direction: column;
        }

        .footer-brand-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.1rem;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.2;
            margin-bottom: 18px;
        }

        .footer-brand-desc {
            color: #cbd5e1;
            font-size: 0.88rem;
            line-height: 1.6;
            max-width: 320px;
            font-weight: 400;
        }

        .footer-column-heading {
            color: #ffffff;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 24px;
            text-transform: uppercase;
        }

        .footer-nav-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-nav-list a {
            color: #cbd5e1;
            font-size: 0.9rem;
            font-weight: 400;
        }

        .footer-nav-list a:hover {
            color: #ffffff;
        }

        .contact-info-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            color: #cbd5e1;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .contact-info-item svg {
            flex-shrink: 0;
            color: #cbd5e1;
            margin-top: 2px;
        }

        .hours-grid-layout {
            width: 100%;
            border-collapse: collapse;
        }

        .hours-grid-layout td {
            padding-bottom: 16px;
            font-size: 0.9rem;
            color: #cbd5e1;
            vertical-align: top;
        }

        .hours-grid-layout tr:last-child td {
            padding-bottom: 0;
        }

        .hours-grid-layout td:first-child {
            font-weight: 400;
            padding-right: 10px;
        }

        .hours-grid-layout td:last-child {
            text-align: right;
            font-weight: 400;
        }

        .footer-divider {
            border: 0;
            height: 1px;
            background-color: rgba(255, 255, 255, 0.1);
            margin-bottom: 30px;
        }

        .copyright-bar {
            text-align: center;
            color: #cbd5e1;
            font-size: 0.88rem;
            font-weight: 400;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .footer-main-layout {
                grid-template-columns: repeat(2, 1fr);
                gap: 48px;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 70px 0;
            }

            .hero-grid,
            .doctor-grid,
            .detail-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .nav-links {
                display: none;
            }

            .stats-grid,
            .why-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .quote-block {
                padding: 40px 24px;
            }

            .quote-text {
                font-size: 1.4rem;
            }

            .hero-content h1 {
                font-size: 2.6rem;
            }

            .section-header h2,
            .doctor-info h2,
            .detail-content h2,
            .cta h2 {
                font-size: 2.2rem;
            }

            .detail-badge {
                position: static;
                margin-top: 24px;
                max-width: 100%;
            }

            .footer-main-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .brand-block {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 480px) {

            .services-grid,
            .grid-cards {
                grid-template-columns: 1fr;
            }

            .hero-actions,
            .cta-actions {
                flex-direction: column;
            }

            .specialty-pills {
                flex-direction: column;
                align-items: flex-start;
            }
        }


        /* ==========================================================================
   PATIENT STORIES STYLES (Screenshot 2026-06-02 164409.png)
   ========================================================================== */
.patient-stories {
    background-color: #f8fafc; /* Gentle subtle canvas backdrop */
    padding: 60px 0;
}

.rating-summary {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stars-row {
    display: flex;
    gap: 4px;
    color: #38bdf8; /* Explicit precise color match for the light blue rating stars */
}

.rating-text {
    font-size: 0.88rem;
    color: #64748b;
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 32px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: transform 0.25s ease-in-out;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.quote-icon-wrapper {
    color: #38bdf8;
    margin-bottom: 20px;
    opacity: 0.8;
}

.testimonial-body {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-color: #2b5c8f;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.author-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #002349;
}

.pill-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 30px;
    width: max-content;
}

.pill-tag.text-blue {
    background-color: #eff6ff;
    color: #1d5cb4;
}

.source-footnote {
    text-align: center;
    font-size: 0.8rem;
    color: #94a3b8;
    font-style: italic;
    margin-top: 40px;
}

/* ==========================================================================
   SPECIALIST CARE STYLES (Screenshot 2026-06-02 164502.png)
   ========================================================================== */
.specialist-care {
    background-color: #ffffff;
    padding: 60px 0;
}

.disciplines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 50px;
}

.discipline-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.01);
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease-in-out;
}

.discipline-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
    transform: translateY(-2px);
}

.card-icon-header {
    color: #1d5cb4;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.discipline-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: #002349;
    margin-bottom: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.discipline-card p {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.action-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1d5cb4;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.action-link:hover {
    color: #002349;
}

.action-center {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-outline-navy {
    background-color: transparent;
    color: #002349;
    border: 2px solid #002349;
    padding: 14px 36px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.25s ease-in-out;
}

.btn-outline-navy:hover {
    background-color: #002349;
    color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .testimonials-grid, 
    .disciplines-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .testimonials-grid, 
    .disciplines-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .patient-stories, 
    .specialist-care {
        padding: 70px 0;
    }
}

/* ==========================================================================
   INQUIRY SECTION STYLES (Screenshot 2026-06-02 165557.png)
   ========================================================================== */
.inquiry-section {
    background-color: #002349; /* Matching exact primary brand theme navy dark canvas */
    color: #ffffff;
    padding: 90px 0;
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.tag-light {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #93c5fd; /* Light blue accent color tag */
    margin-bottom: 20px;
}

.inquiry-info h2 {
    color: #ffffff;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
}

.inquiry-desc {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 520px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.4;
}

.detail-item svg {
    color: #93c5fd;
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-item.phone-highlight {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 10px;
}

.detail-item.phone-highlight svg {
    color: #38bdf8;
}

.form-wrapper {
    display: flex;
    justify-content: flex-end;
}

.form-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 44px 40px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.form-card h3 {
    color: #002349;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 28px;
    font-weight: 700;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: #0f172a;
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #1d5cb4;
}

.form-group input::placeholder {
    color: #94a3b8;
}

.btn-submit {
    background-color: #002349;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 16px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    margin-top: 8px;
}

.btn-submit:hover {
    background-color: #1d5cb4;
}

.form-footnote {
    text-align: center;
    font-size: 0.78rem;
    color: #64748b;
    margin-top: 20px;
    line-height: 1.4;
}

/* ==========================================================================
   LOCATION & SCHEDULE SECTION STYLES (Screenshot 2026-06-02 165616.png)
   ========================================================================== */
.location-schedule {
    background-color: #f8fafc;
    padding: 100px 0;
}

.map-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 50px;
}

.location-card-info {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 40px;
    border-top: 4px solid #1d5cb4; /* Direct matching top active layout accent accentuation color */
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
    display: flex;
    flex-direction: column;
}

.location-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.icon-pin {
    color: #1d5cb4;
    flex-shrink: 0;
}

.location-card-info h4 {
    font-family: 'Inter', sans-serif;
    color: #002349;
    font-size: 1.15rem;
    font-weight: 700;
}

.address-text {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    font-size: 0.92rem;
    margin-bottom: 16px;
    font-weight: 500;
}

.meta-row svg {
    color: #1d5cb4;
}

.directions-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1d5cb4;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    padding-top: 16px;
}

.directions-link:hover {
    color: #002349;
}

.satellite-map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
    min-height: 300px;
    position: relative;
}

.map-placeholder-graphic {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-badge-text {
    background-color: rgba(255, 255, 255, 0.9);
    color: #475569;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* OPD Consultation Hours Table Styling */
.schedule-table-block {
    margin-top: 80px;
}

.schedule-table-block h3 {
    font-family: 'Inter', sans-serif;
    color: #002349;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.table-responsive-wrapper {
    width: 100%;
    overflow-x: auto;
}

.opd-hours-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    text-align: left;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.01);
}

.opd-hours-table th {
    background-color: #f1f5f9;
    color: #475569;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 18px 24px;
    border-bottom: 1px solid #e2e8f0;
}

.opd-hours-table td {
    padding: 18px 24px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.92rem;
    color: #334155;
}

.opd-hours-table tr:last-child td {
    border-bottom: none;
}

.opd-hours-table tr:nth-child(even) {
    background-color: #f8fafc;
}

.location-muted {
    color: #64748b !important;
}

.hours-data {
    font-weight: 600;
    color: #002349 !important;
}

/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .inquiry-grid, .map-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-wrapper {
        justify-content: center;
    }
    
    .form-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .inquiry-section {
        padding: 60px 0;
    }
    .inquiry-info h2 {
        font-size: 2.2rem;
    }
    .opd-hours-table th, .opd-hours-table td {
        padding: 14px 16px;
        font-size: 0.85rem;
    }
}