/* ===== INPATIENT BILLING HERO SECTION (MATCHES DME STYLE) ===== */
.hero-section {
    position: relative;
    padding: 180px 0 140px;
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2f8 100%);
    color: var(--primary);
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
    overflow: hidden;
}



.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: linear-gradient(90deg, var(--primary), #005b96);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 1.3rem;
    margin: 0 auto 2rem;
    color: #444;
    font-weight: 500;
}

.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 6px 15px rgba(0, 52, 102, 0.3);
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 52, 102, 0.4);
}

/* Floating Squares — Updated to Your Brand Colors */
.floating-squares {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.square {
    position: absolute;
    border-radius: 4px;
    filter: blur(4px);
    opacity: 0.12;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    transition: none !important;
    z-index: 2;
    pointer-events: none;
}

.square-1 {
    width: 80px;
    height: 80px;
    background: #003466;
    top: 20%;
    left: 10%;
}

.square-2 {
    width: 120px;
    height: 120px;
    background: #f3b3b3;
    bottom: 15%;
    right: 12%;
}

.square-3 {
    width: 60px;
    height: 60px;
    background: #003466;
    top: 60%;
    left: 20%;
}

.square-4 {
    width: 100px;
    height: 100px;
    background: #f3b3b3;
    top: 35%;
    right: 25%;
}

.square-5 {
    width: 70px;
    height: 70px;
    background: #003466;
    bottom: 30%;
    left: 30%;
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid var(--gray-200);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 52, 102, 0.18);
}

.feature-icon {
    font-size: 2.8rem;
    color: #e68493;
    /* DME uses pink — you can change to #1caf12 if preferred */
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 14px;
    font-weight: 600;
}

/* Ensure proper section spacing */
section {
    padding: 100px 0;
}

/* ===== WHY CHOOSE US SECTION STYLES (From DME Page) ===== */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
}

.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid var(--gray-200);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 52, 102, 0.18);
}

.feature-icon {
    font-size: 2.8rem;
    color: var(--secondary);
    /* This is #e68493 (pink) — change to #1caf12 if you prefer green */
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 14px;
    font-weight: 600;
}

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-icon {
    font-size: 1.6rem;
    color: var(--secondary);
}

/* ===== INPATIENT CHALLENGES SECTION — DEEP BLUE BACKGROUND ===== */
.inpatient-challenges-section {
    background: linear-gradient(135deg, #002a55, #003466);
    padding: 100px 0;
    color: white;
}

.inpatient-challenges-section .section-title-light {
    color: white;
    margin-bottom: 2rem;
}

.inpatient-challenges-section .lead {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

/* Challenge Card Styling */
.challenge-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.challenge-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.challenge-icon {
    font-size: 1.8rem;
    color: #1caf12;
    margin-bottom: 16px;
    display: inline-block;
}

.inpatient-challenges-section .challenge-card h5 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 12px;
    font-weight: 600;
}

.inpatient-challenges-section .challenge-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== PROVEN RESULTS SECTION ===== */
.results-section {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.results-section .section-title {
    color: white;
    margin-bottom: 60px;
}

.result-counter {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.results-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 0;
}


/* ===== MODERN INTERACTIVE CTA ===== */
.modern-cta-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #eef2f8 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.modern-cta-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 80" xmlns="http://www.w3.org/2000/svg"><path fill="%23003466" fill-opacity="0.03" d="M0,32L120,48C240,64,480,96,720,96C960,96,1200,64,1320,48L1440,32L1440,80L1320,80C1200,80,960,80,720,80C480,80,240,80,120,80L0,80Z"/></svg>') no-repeat;
    background-size: cover;
}

.cta-title {
    font-size: 2.3rem;
    color: #003466;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-lead {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.6;
}

/* Stats */
.stats-row {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat-item {
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 52, 102, 0.08);
    border: 1px solid #e0e6f0;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1caf12;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 4px;
}

/* Form Card */
.cta-form-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 52, 102, 0.12);
    border: 1px solid #e8ecf5;
}

.form-title {
    font-size: 1.4rem;
    color: #003466;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-control,
.form-select {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #1caf12;
    box-shadow: 0 0 0 3px rgba(28, 175, 18, 0.15);
}

/* Submit Button */
.btn-cta-submit {
    background: #1caf12;
    color: white;
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 10px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-cta-submit:hover {
    background: #0f9a0f;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(28, 175, 18, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .cta-title {
        font-size: 1.9rem;
    }

    .cta-lead {
        font-size: 1.05rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse.show {
        overflow-y: auto;
        max-height: 80vh;
        overflow-x: hidden;
    }

    .dropdown-menu.show {
        max-height: 80vh;
        overflow-y: auto;
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        width: 95%;
        margin: 0 auto;
        z-index: 1060;
    }

    .dropdown-menu.show .row,
    .dropdown-menu.show .col-md-3,
    .dropdown-menu.show .col-md-9 .dropdown-menu.show:-webkit-scrollbar-track {
        /* max-width: 100%; */
        max-width: 100%;
        flex: 0 0 100%;
        width: 100%;
    }

    .dropdown-menu.show .col-md-9 {
        max-height: calc(80vh - 56px);
        overflow-y: auto;
    }

    .dropdown-menu.show::-webkit-scrollbar,
    .dropdown-menu.show .col-md-9::-webkit-scrollbar {
        width: 6px;
    }

    .dropdown-menu.show::-webkit-scrollbar-track,
    .dropdown-menu.show .col-md-9::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
    }

    .dropdown-menu.show::-webkit-scrollbar-thumb,
    .dropdown-menu.show .col-md-9::-webkit-scrollbar-thumb {
        background-color: rgba(0, 52, 102, 0.3);
        border-radius: 3px;
    }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #003466;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 52, 102, 0.3);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #1caf12;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 52, 102, 0.4);
}