/* ============================================
       EXTERNAL CSS - COMPLETE LANDING PAGE STYLES
       Colors as per specified variables
    ============================================ */
    :root {
        --primary: #192A3A;
        --secondary: #323A61;
        --accent: #A31A1E;
        --white: #ffffff;
        --black: #000000;
        --overlay-default: rgba(27, 23, 20, 0.20);
        --overlay-hover: rgba(27, 23, 20, 0.62);
        --text-light: #ffffff;
        --card-radius: 16px;
        --zoom-scale: 1.07;
        --hover-speed: 0.45s;
        --gray-bg: #F5F7FA;
        --border-light: #E8ECF0;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    h1, h2, h3, h4, .heading-font {
        font-weight: 700;
        letter-spacing: -0.02em;
    }

    /* Hero Section */
    .hero-section {
        background: linear-gradient(135deg, #F0F4F8 0%, #E8EDF2 100%);
        border-radius: 0 0 2rem 2rem;
        padding: 3rem 0 3rem;
        margin-bottom: 1rem;
    }

    .hero-badge {
        background: rgba(50, 58, 97, 0.12);
        color: var(--secondary);
        font-size: 1.2rem;
        font-weight: 600;
        padding: 1.4rem 1.2rem;
        border-radius: 40px;
        display: inline-block;
        margin-bottom: 1.2rem;
    }

    .hero-title {
        font-size: 3rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 1.2rem;
        color: var(--primary);
    }

    .hero-title span {
        color: var(--accent);
        border-bottom: 3px solid var(--accent);
        display: inline-block;
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: 2rem;
        }
    }

    .btn-primary-custom {
        background: var(--accent);
        color: var(--white);
        padding: 1rem 2rem;
        font-size:20px;
        
        border-radius: 50px;
        font-weight: 600;
        transition: all var(--hover-speed) ease;
        border: none;
        box-shadow: 0 4px 12px rgba(163, 26, 30, 0.25);
    }

    .btn-primary-custom:hover {
        background: var(--secondary);
        color:white;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(50, 58, 97, 0.3);
    }

    .btn-outline-custom {
        background: transparent;
        border: 2px solid var(--primary);
        color: var(--primary);
        font-size:18px;
        padding: 1rem 1.8rem;
        border-radius: 50px;
        font-weight: 600;
        transition: all var(--hover-speed) ease;
    }

    .btn-outline-custom:hover {
        background: var(--primary);
        color: var(--white);
        transform: translateY(-2px);
    }

    /* Cards */
    .service-card, .feature-card, .journey-card {
        background: var(--white);
        border-radius: var(--card-radius);
        padding: 1.8rem;
        transition: all var(--hover-speed) cubic-bezier(0.2, 0.9, 0.4, 1.1);
        border: 1px solid var(--border-light);
        height: 100%;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }

    .service-card:hover, .feature-card:hover, .journey-card:hover {
        transform: translateY(-6px) scale(var(--zoom-scale));
        box-shadow: 0 20px 35px -12px rgba(0,0,0,0.15);
        border-color: var(--accent);
    }

    .icon-circle {
        width: 55px;
        height: 55px;
        background: rgba(163, 26, 30, 0.1);
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.2rem;
    }

    .icon-circle i {
        font-size: 1.8rem;
        color: var(--accent);
    }

    /* Section Title */
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
        color: var(--primary);
    }

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 3px;
        background: var(--accent);
        border-radius: 3px;
    }

    .text-primary-custom {
        color: var(--accent);
    }

    .bg-soft-primary {
        background: rgba(50, 58, 97, 0.04);
    }

    /* Doctor Card */
    .doctor-card {
        background: var(--white);
        border-radius: var(--card-radius);
        overflow: hidden;
        box-shadow: 0 15px 35px -12px rgba(0,0,0,0.1);
        border: 1px solid var(--border-light);
    }

    .doctor-img {
        width: 100%;
        height: 100%;
        min-height: 380px;
        object-fit: cover;
        object-position: top;
    }

    /* Check List */
    .check-list {
        list-style: none;
        padding-left: 0;
    }

    .check-list li {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .check-list li i {
        color: var(--accent);
        font-size: 1.2rem;
        width: 24px;
    }

    /* Accordion Modern */
    .accordion-modern .accordion-item {
        border: none;
        border-bottom: 1px solid var(--border-light);
        background: transparent;
    }

    .accordion-modern .accordion-button {
        background: transparent;
        font-weight: 600;
        padding: 1.2rem 0;
        color: var(--primary);
        box-shadow: none;
    }

    .accordion-modern .accordion-button:not(.collapsed) {
        color: var(--accent);
        background: transparent;
    }

    .accordion-modern .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
    }

    /* Contact Card */
    .contact-card {
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        border-radius: var(--card-radius);
        padding: 2.5rem;
        color: var(--white);
    }

    /* Floating CTA */
    .floating-cta {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        z-index: 1000;
        background: var(--accent);
        border-radius: 60px;
        padding: 0.8rem 1.5rem;
        box-shadow: 0 10px 25px -5px rgba(163,26,30,0.5);
        transition: all var(--hover-speed);
    }

    .floating-cta a {
        color: var(--white);
        text-decoration: none;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .floating-cta:hover {
        transform: scale(1.05);
        background: var(--secondary);
    }

    @media (max-width: 768px) {
        .floating-cta {
            padding: 0.6rem 1.2rem;
            bottom: 1rem;
            right: 1rem;
        }
    }

    .why-consult-item {
        transition: all var(--hover-speed);
    }
    .why-consult-item:hover {
        transform: translateX(8px);
    }
    
    @media (max-width: 768px){
    .btn-outline-custom{
        margin-top: 10px;
    }
}