/* =============================================
   PAGES.CSS — Shared styles for inner pages
   GreenSense Billing
   ============================================= */

/* ---------- PAGE HERO ---------- */
/* ---------- ROTATING TEXT COMPONENT ---------- */
.text-rotate {
    display: flex;
    flex-wrap: wrap;
    white-space: pre-wrap;
    position: relative;
    overflow: hidden;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    height: 40px;
    align-items: center;
    background-color: #49C2C94D;
    padding: 0px 10px 0px 10px;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-radius: 57px 57px 57px 57px;
    width: fit-content;
    min-width: 170px;
    align-content: center;
    justify-content: center;
}

.text-rotate-word {
    display: inline-flex;
}

.text-rotate-element {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: rotateUp 0.6s forwards;
}

.text-rotate-space {
    white-space: pre;
}

@keyframes rotateUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin-bottom: 36px;
}

.page-hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-green {
    display: inline-block;
    background: #008C85;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary-green:hover {
    background: #006b65;
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline-white {
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background: #fff;
    color: #008C85;
}

/* ---------- SERVICES GRID ---------- */
.services-list-section {
    padding: 80px 20px;
    background: #f8fafa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-big {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef0f2;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card-big:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 140, 133, 0.12);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #008C85, #49c2c9);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
}

.service-card-big h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.service-card-big p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: #008C85;
    font-size: 15px;
    flex-shrink: 0;
}

.service-learn-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #008C85;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 2px solid #008C85;
    transition: gap 0.2s;
}

.service-learn-btn:hover {
    gap: 14px;
    color: #006b65;
}

/* ---------- COMPLIANCE SECTION ---------- */
.compliance-section {
    background: linear-gradient(135deg, #0a2a2a, #0d4a45);
    padding: 70px 20px;
}

.compliance-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.compliance-inner h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.compliance-inner h2 span {
    color: #49c2c9;
}

.compliance-inner>p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
}

.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.compliance-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(72, 194, 201, 0.3);
    border-radius: 50px;
    padding: 12px 22px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.compliance-badge i {
    color: #49c2c9;
    font-size: 18px;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
    padding: 80px 20px;
    background: #fff;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-inner h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.cta-inner p {
    font-size: 18px;
    color: #555;
    margin-bottom: 36px;
}

/* ---------- CONTENT SECTIONS ---------- */
.content-section {
    padding: 80px 20px;
}

.content-section.bg-light {
    background: #f8fafa;
}

.content-section.bg-dark {
    background: linear-gradient(135deg, #0a2a2a, #0d4a45);
}

.content-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #49c2c9;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-heading {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.25;
}

.section-heading.white {
    color: #fff;
}

.section-subtext {
    font-size: 19px;
    color: #555;
    width: 80%;
    margin: 0 auto 30px;
    line-height: 1.75;
}

.section-subtext.white {
    color: rgba(255, 255, 255, 0.8);
}

/* ---------- TWO COLUMN LAYOUT ---------- */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media(max-width:768px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ---------- FEATURE CARDS ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #008C85;
    transition: transform 0.3s;
}

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

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* ---------- STATS BANNER ---------- */
.stats-banner {
    background: #008C85;
    padding: 50px 20px;
}

.stats-banner-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-box .stat-num {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-box .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 6px;
}

/* ---------- PROCESS STEPS ---------- */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
}

.process-step {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

.process-step:last-child {
    border-bottom: none;
}

.step-num {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #008C85, #49c2c9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
    padding: 70px 20px;
    background: #f8fafa;
}

.testimonials-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-top: 4px solid #008C85;
}

.testimonial-card .stars {
    color: #f4b400;
    font-size: 14px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 16px;
}

.testimonial-card cite {
    font-size: 13px;
    font-weight: 700;
    color: #008C85;
    font-style: normal;
}

/* ---------- FAQ SECTION ---------- */
.faq-section {
    padding: 70px 20px;
}

.faq-inner {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
}


.faq-list {
    margin-top: 40px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: background 0.2s;
    gap: 12px;
    text-decoration: none;
}

.faq-question:hover {
    background: #f8fafa;
}

.faq-question .faq-icon {
    flex-shrink: 0;
    font-size: 20px;
    color: #008C85;
    transition: transform 0.3s;
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    background: #fff;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ---------- BOOTSTRAP FAQ ACCORDION ---------- */
.faq-accordion {
    width: 100%;
    margin: 0 auto;
}

.faq-accordion .accordion-item {

    border: none;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px !important;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background-color: #49c2c9;
    color: #ffffff;
    font-weight: 600;
    font-size: 17px;
    padding: 22px 25px;
    box-shadow: none;
    border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #49c2c9;
    color: #ffffff;
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
    background-size: 1.25rem;
}

.faq-accordion .accordion-body {
    padding: 25px;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    background-color: #ffffff;
}


/* ---------- SPECIALTIES PAGE ---------- */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.specialty-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 30px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef0f2;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.specialty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #008C85, #49c2c9);
}

.specialty-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 140, 133, 0.14);
}

.specialty-icon {
    font-size: 36px;
    color: #008C85;
    margin-bottom: 16px;
}

.specialty-card h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.specialty-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.specialty-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.specialty-list li {
    font-size: 13px;
    color: #444;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.specialty-list li::before {
    content: '✓';
    color: #008C85;
    font-weight: 700;
}

/* ---------- CONTACT PAGE ---------- */
.contact-section {
    padding: 80px 20px;
    background: #f8fafa;
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

@media(max-width:768px) {
    .contact-inner {
        grid-template-columns: 1fr;
    }
}

.contact-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.07);
}

.contact-form-wrap h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.contact-form-wrap p {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #333;
    transition: border-color 0.2s;
    outline: none;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #008C85;
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media(max-width:480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.btn-submit {
    width: 100%;
    background: #008C85;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 1px;
    transition: background 0.3s;
    font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
    background: #006b65;
}

.contact-info-wrap h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.contact-info-wrap p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #008C85, #49c2c9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.contact-info-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.contact-info-text p,
.contact-info-text a {
    font-size: 15px;
    color: #555;
    margin: 0;
    text-decoration: none;
}

.contact-info-text a:hover {
    color: #008C85;
}

/* ---------- SCROLLED HEADER ---------- */
.main-header.scrolled {
    background-color: #fff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    border-radius: 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: #0a1a1a;
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

@media(max-width:900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:560px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
}

.footer-brand .logo-text {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.footer-brand .logo-text span {
    color: #49c2c9;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.2s;
}

.footer-social a:hover {
    background: #008C85;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

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

.footer-links li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links li a:hover {
    color: #49c2c9;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* ---------- RESPONSIVE HEADER FIX ---------- */
@media(max-width:768px) {
    .nav-menu {
        display: none;
    }

    .nav-menu.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        padding: 20px;
        z-index: 999;
    }

    .main-header {
        position: relative;
    }
}

/* ---------- EHR FEATURES GRID ---------- */
.ehr-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 40px;
}

.ehr-feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(72, 194, 201, 0.2);
    border-radius: 14px;
    padding: 28px 24px;
    transition: background 0.3s, transform 0.3s;
}

.ehr-feature-card:hover {
    background: rgba(72, 194, 201, 0.08);
    transform: translateY(-4px);
}

.ehr-feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.ehr-feature-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* ---------- BENEFITS TABLE ---------- */
.benefits-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.benefits-table th {
    background: #008C85;
    color: #fff;
    padding: 14px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
}

.benefits-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #444;
}

.benefits-table tr:last-child td {
    border-bottom: none;
}

.benefits-table tr:nth-child(even) td {
    background: #f8fafa;
}

.badge-green {
    color: #008C85;
    font-weight: 700;
}

/* ---------- FIGMA QUERY FORM STYLE (Bootstrap Based) ---------- */
.figma-form-section {
    background: #f8f8f8;
    padding: 60px 0;
}

.figma-form-container {
    background: #ffffff;
    padding: 30px;
    max-width: 960px;
    margin: 0 auto;
}

.figma-input,
.figma-textarea {
    background-color: #f2f2f2 !important;
    border: none !important;
    border-radius: 0 !important;
    line-height: 35px !important;
    padding: 16px 20px !important;
    font-size: 16px !important;
    color: #333 !important;
    box-shadow: none !important;
}

.figma-input::placeholder,
.figma-textarea::placeholder {
    color: #999 !important;
}

.figma-textarea {
    min-height: 220px;
    margin-top: 10px;
}

.figma-captcha-mock {
    margin: 15px 0;
    width: 100%;
    max-width: 300px;
    border: 1px solid #d3d3d3;
    padding: 10px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #ff0000;
}

.figma-btn-submit {
    width: 100%;
    background-color: #4dc7cc !important;
    color: #fff !important;
    border: none !important;
    padding: 18px !important;
    font-size: 26px !important;
    font-weight: 800 !important;
    letter-spacing: 5px !important;
    text-transform: uppercase;
    border-radius: 0 !important;
    margin-top: 15px;
    transition: background 0.3s;
}

.figma-btn-submit:hover {
    background-color: #3cb0b5 !important;
    color: #fff !important;
}

/* ---------- SECURITY TRACK RECORD SECTION ---------- */
.security-track-record {
    background: linear-gradient(rgba(77, 199, 204, 0.9), rgba(0, 140, 133, 0.9)), url('../images/Mask-group.png');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    color: #ffffff;
    text-align: center;
}

.track-content {
    max-width: 1000px;
    margin: 0 auto;
}

.track-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
}

.track-heading {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 700;
    margin: 50px 0;
    line-height: 1.2;
}

.track-btn-wrap {
    margin-top: 40px;
}

.track-btn {
    display: inline-block;
    background-color: #b8e2e4;
    color: #161616;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 10px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.track-btn:hover {
    background-color: #ffffff;
    color: #008C85;
    letter-spacing: 12px;
}

/* ---------- EHR PAGE SPECIFIC DESIGN ---------- */

/* Breadcrumb Area */
.breadcrumb-area {
    background: #fdfdfd;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #999;
}

.breadcrumb-area a {
    color: #999;
    text-decoration: none;
}

.breadcrumb-area span {
    color: #333;
}

/* Intro Quote */
.testimonial-inline {
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    position: relative;
}

.testimonial-inline .quote-icon {
    font-size: 40px;
    color: #008C85;
    opacity: 0.2;
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 16px;
    color: #555;
    margin: 10px 0;
}

.testimonial-inline .author {
    font-weight: 700;
    color: #1a1a1a;
}

.testimonial-inline .stars {
    color: #ffb400;
    font-size: 14px;
}

/* Stats Strip */
.demand-strip {
    background-color: #ffffff;
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.demand-strip h2 {
    font-size: 32px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 15px;
}

.demand-strip p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #000000;
    opacity: 0.9;
}

.phone-box {
    display: inline-block;
    background: #fff;
    color: #4dc7cc !important;
    padding: 12px 40px;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 40px;
}

.ehr-stats-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.ehr-stat-card {
    background: #006b65;
    padding: 25px;
    width: 180px;
    text-align: center;
}

.ehr-stat-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.ehr-stat-card p {
    font-size: 15px;
    margin: 0;
    opacity: 1;
}

/* GreenPay Station */
.greenpay-section {
    background-color: #4dc7cc;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.greenpay-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/Mask-group.png') center center no-repeat;
    background-size: cover;
    opacity: 0.15;
}

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

.greenpay-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.greenpay-section p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.greenpay-section .btn-learn {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 45px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 5px;
    text-decoration: none;
    margin-top: 30px;
    transition: all 0.3s;
}

.greenpay-section .btn-learn:hover {
    background: #fff;
    color: #4dc7cc;
}

/* 9-Card Feature Grid */
.ehr-feature-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.ehr-card-v2 {
    background: #006b65;
    padding: 40px 30px;
    text-align: center;
    color: #fff;
    transition: transform 0.3s;
}

.ehr-card-v2:hover {
    transform: translateY(-8px);
    background: #005a55;
}

.ehr-card-v2 h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.ehr-card-v2 p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.6;
    margin: 0;
}

/* Footer CTA Strip */
.footer-cta-strip {
    background-color: #4dc7cc;
    padding: 60px 20px;
    color: #fff;
}

.cta-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.cta-text-side {
    flex: 1;
}

.cta-text-side h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-text-side p {
    font-size: 15px;
    margin-bottom: 30px;
}

.cta-form-inline {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-form-inline input {
    background: #fff;
    border: none;
    padding: 12px 15px;
    flex: 1;
    min-width: 200px;
}

.btn-book-call {
    background: #fff;
    color: #4dc7cc;
    border: none;
    padding: 12px 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

.cta-img-side {
    flex-shrink: 0;
}

.cta-img-side img {
    max-width: 380px;
    height: auto;
}

@media (max-width: 992px) {
    .ehr-feature-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-flex {
        flex-direction: column;
        text-align: center;
    }

    .cta-form-inline {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .ehr-feature-grid-v2 {
        grid-template-columns: 1fr;
    }

    .ehr-stat-card {
        width: 100%;
    }
}

/* ---------- RCM PAGE SPECIFIC DESIGN ---------- */

/* Zig-Zag Timeline */





.rcm-process-timeline {
    position: relative;
    padding: 60px 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item.reverse {
    flex-direction: row-reverse;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: #008C85;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    background: #fff;
    padding: 20px 40px;
    flex: 1;
    position: relative;
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Connecting Lines (Mockup) */
.timeline-item::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 30px;
    width: 2px;
    height: calc(100% - 20px);
    background: #eee;
}

.timeline-item.reverse::after {
    left: auto;
    right: 30px;
}

.timeline-item:last-child::after {
    display: none;
}

/* Audit Dashboard */
.audit-dashboard {
    background: #fdfdfd;
    border: 1px solid #eee;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.audit-tabs {
    display: flex;
    background: #4dc7cc;
}

.audit-tab {
    flex: 1;
    padding: 15px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

.audit-tab.active {
    background: #006b65;
}

.audit-body {
    padding: 40px;
}

.audit-stats-row {
    display: flex;
    gap: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.audit-stat-box {
    flex: 1;
    text-align: center;
}

.audit-stat-box h4 {
    font-size: 32px;
    font-weight: 800;
    color: #008C85;
    margin-bottom: 5px;
}

.audit-stat-box p {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Icon Blocks */
.rcm-why-card {
    background: #f9f9f9;
    padding: 40px;
    text-align: center;
    height: 100%;
}

.rcm-why-icon {
    width: 80px;
    height: 80px;
    background: #4dc7cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 25px;
}

/* FAQ Accordion */
.faq-container {
    max-width: 900px;
    margin: 40px auto;
}

.faq-item {
    background: #4dc7cc;
    margin-bottom: 10px;
}

.faq-header {
    padding: 15px 25px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-body {
    background: #fff;
    padding: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #4dc7cc;
    border-top: none;
}

.faq-item.active .faq-body {
    height: auto;
    padding: 20px 25px;
}

@media (max-width: 768px) {

    .timeline-item,
    .timeline-item.reverse {
        flex-direction: column;
        text-align: center;
    }

    .timeline-item::after {
        left: 50%;
    }

    .timeline-content {
        padding: 20px 0;
    }

    .audit-stats-row {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .track-heading {
        font-size: 32px;
    }

    .track-btn {
        letter-spacing: 5px;
        padding: 15px 30px;
        font-size: 14px;
    }







    /* Specific Pricing/Audit Styles */
    .audit-intro-grid {
        display: flex;
        align-items: center;
        gap: 60px;
        padding: 80px 0;
    }

    .audit-intro-text {
        flex: 1.2;
    }

    .audit-intro-img {
        flex: 0.8;
    }

    .audit-intro-img img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    }

    .btn-audit-now {
        display: block;
        width: 100%;
        background-color: #4dc7cc;
        color: #fff;
        text-align: center;
        padding: 18px;
        font-weight: 700;
        font-size: 20px;
        letter-spacing: 4px;
        text-decoration: none;
        margin-top: 40px;
        transition: background 0.3s;
    }

    .btn-audit-now:hover {
        background-color: #3cb0b5;
        color: #fff;
    }

    .onboarding-section {
        background-image: url('../images/Group-323.png');
        background-size: cover;
        background-position: center;
        padding: 100px 0;
        color: #fff;
        position: relative;
    }

    .onboarding-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 107, 101, 0.4);
        /* Subtle teal tint for readability */
        z-index: 1;
    }

    .onboarding-section .container {
        position: relative;
        z-index: 2;
    }


    .onboarding-steps {
        max-width: 800px;
        margin: 40px auto;
        text-align: left;
    }

    .onboarding-step {
        margin-bottom: 30px;
    }

    .onboarding-step h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .onboarding-step p {
        font-size: 15px;
        opacity: 0.9;
        line-height: 1.6;
    }

    .get-started-strip {
        background: #eef2f2;
        padding: 30px 0;
        text-align: center;
    }

    .get-started-strip a {
        font-family: 'Inter', sans-serif;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 8px;
        color: #161616;
        text-decoration: none;
        text-transform: uppercase;
        display: block;
        width: 100%;
    }

    .discovery-strip {

        background: #f1f1f1;
        padding: 20px 0;
        text-align: center;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 5px;
        text-transform: uppercase;
        color: #333;
    }

    @media (max-width: 992px) {
        .audit-intro-grid {
            flex-direction: column;
            text-align: center;
        }

        .audit-intro-text {
            order: 1;
        }

        .audit-intro-img {
            order: 2;
        }
    }
}

/* ---------- GREENPAY STATION SPECIFIC DESIGN ---------- */

.greenpay-feature-cols {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.gp-col {
    flex: 1;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
}

.gp-col-header {
    background: #008C85;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
}

.gp-col-header.alt {
    background: #006b65;
}

.gp-col-header.support {
    background: #4dc7cc;
}

.gp-col-body {
    padding: 25px;
}

.gp-feature-item {
    margin-bottom: 25px;
}

.gp-feature-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.gp-feature-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.premium-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.premium-card {
    background: #f9f9f9;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.premium-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.premium-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    min-height: 50px;
}

.premium-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.btn-learn-more-sm {
    display: inline-block;
    background: #008C85;
    color: #fff;
    padding: 8px 25px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .greenpay-feature-cols {
        flex-direction: column;
    }

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

@media (max-width: 600px) {
    .premium-feature-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- SPECIALTIES PAGE SPECIFIC DESIGN ---------- */

.specialty-list-v2 {
    max-width: 1000px;
    margin: 50px auto;
}

.specialty-bar {
    background: #4dc7cc;
    color: #fff;
    padding: 50px 50px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: all 0.3s;
}



.specialty-bar-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.specialty-bar-title {
    font-size: 20px;
    font-weight: 700;
    min-width: 200px;
}

.specialty-bar-desc {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.4;
    padding-right: 20px;
}

.specialty-bar i {
    font-size: 20px;
}

.success-story-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 4px;
    position: relative;
}

.success-story-card .quote-icon {
    color: #4dc7cc;
    font-size: 24px;
    margin-bottom: 15px;
}

.success-story-text {
    font-size: 15px;
    color: #444;
    font-style: italic;
    margin-bottom: 15px;
}

.success-story-author {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 14px;
}

.success-story-stars {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #ffb400;
    font-size: 12px;
}

@media (max-width: 768px) {
    .specialty-bar-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .specialty-bar-title {
        min-width: auto;
    }
}

/* ---------- URGENT CARE PAGE SPECIFIC DESIGN ---------- */

/* Light Hero with Form */
.hero-light {
    background: #fff;
    padding: 100px 0 60px;
}

.hero-light-content h1 {
    font-size: 52px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-light-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    max-width: 650px;
}

.hero-form-inline {
    background: #f8fafa;
    padding: 10px;
    border: 1px solid #eee;
    display: flex;
    gap: 10px;
    margin-top: 40px;
}

.hero-form-inline input {
    border: none;
    padding: 12px;
    flex: 1;
    font-size: 14px;
}

.hero-form-inline .btn-consult {
    background: #008C85;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-weight: 700;
    white-space: nowrap;
}

/* Expertise Stats */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.expertise-box {
    background: #e0f2f1;
    padding: 30px;
    text-align: left;
}

.expertise-box h4 {
    font-size: 28px;
    font-weight: 800;
    color: #008C85;
    margin-bottom: 5px;
}

.expertise-box p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* Success Icon Grid */
.success-numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.success-number-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border-radius: 8px;
}

.success-number-card i {
    font-size: 32px;
    color: #008C85;
    margin-bottom: 15px;
    display: block;
}

.success-number-card h4 {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.success-number-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Portrait Testimonials */
.portrait-testimonial {
    background: #fff;
    border: 1px solid #eee;
    padding: 0;
    overflow: hidden;
    height: 100%;
}

.portrait-img {
    height: 250px;
    overflow: hidden;
}

.portrait-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portrait-content {
    padding: 25px;
}

@media (max-width: 992px) {
    .success-numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .hero-form-inline {
        flex-direction: column;
    }
}

/* ---------- TEXAS BANNER SECTION ---------- */

.texas-banner-container {
    padding: 80px 0;
    background: #fff;
}

.texas-banner {
    background: linear-gradient(135deg, rgba(0, 140, 133, 0.9) 0%, rgba(77, 199, 204, 0.8) 100%), url('../images/Mask-group-3.png');
    /* Using high-fidelity local asset as base */
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    padding: 80px 100px;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 140, 133, 0.15);
}

/* Decorative Wave Pattern Background */
.texas-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('../images/Mask-group.png');
    /* Using existing pattern asset */
    background-size: cover;
    background-position: center right;
    opacity: 0.15;
    mix-blend-mode: overlay;
    z-index: 1;
}

.texas-banner-content {
    flex: 1.2;
    z-index: 3;
    position: relative;
}

.texas-banner-content h2 {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.texas-banner-content p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0;
    max-width: 650px;
}

.texas-banner-img {
    flex: 0.8;
    position: absolute;
    right: 0;
    bottom: -10px;
    height: 110%;
    z-index: 2;
    display: flex;
    align-items: flex-end;
}

.texas-banner-img img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(-20px 0 30px rgba(0, 0, 0, 0.1));
}

@media (max-width: 1200px) {
    .texas-banner {
        padding: 60px;
    }

    .texas-banner-img {
        flex: 0.5;
    }
}

@media (max-width: 992px) {
    .texas-banner {
        padding: 50px 40px;
        flex-direction: column;
        text-align: center;
    }

    .texas-banner-content {
        margin-bottom: 40px;
    }

    .texas-banner-img {
        position: relative;
        height: 350px;
        width: 100%;
        bottom: 0;
        margin-top: 20px;
    }

    .texas-banner-img img {
        width: 100%;
    }

    .texas-banner::before {
        width: 100%;
        opacity: 0.1;
    }
}

/* ---------- ABOUT US: WHAT WE OFFER SECTION ---------- */

.offer-section {
    display: flex;
    align-items: stretch;
    background: #fff;
    overflow: hidden;
}

.offer-image {
    flex: 0 0 45%;
    position: relative;
    min-height: 600px;
}

.offer-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-header {
    text-align: center;
    margin-bottom: 50px;
}

.offer-small-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.offer-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #008C85;
    margin-bottom: 25px;
}

.offer-intro-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.offer-intro-text2 {
    font-size: 20px;
    line-height: 1.6;
    color: #008C85;
    max-width: 800px;
    margin: 0 auto;
}

.service-list-v2 {
    margin-top: 40px;
    padding-left: 100px;
}

.service-item-v2 {
    display: flex;
    align-items: flex-start;
    gap: 200px;
    margin-bottom: 30px;
}

.teal-accent-bar {
    width: 100px;
    height: 15px;
    background: #008C85;
    flex-shrink: 0;
    position: absolute;
    left: 0;
    margin-top: 8px;
}


.service-item-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.service-item-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .offer-section {
        flex-direction: column;
    }

    .offer-image {
        flex: 0 0 auto;
        height: 400px;
        min-height: auto;
    }

    .offer-content {
        padding: 60px 20px;
    }

    .offer-main-title {
        font-size: 32px;
    }
}

/* ---------- HIPAA RESULTS SECTION ---------- */

.hipaa-results-section {
    padding: 100px 0;
    background: #fff;
}

.hipaa-header {
    text-align: center;
    margin-bottom: 60px;
}

.hipaa-header h2 {
    font-size: 42px;
    font-weight: 400;
    color: #333;
}

.hipaa-header h2 span {
    color: #008C85;
    font-weight: 700;
}

.hipaa-grid {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

.hipaa-left {
    flex: 1;
}

.hipaa-left p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.hipaa-status-bars {
    margin-top: 40px;
}

.hipaa-bar {
    background: #008C85;
    color: #fff;
    padding: 12px 25px;
    margin-bottom: 15px;
    border-radius: 4px;
    font-weight: 500;
    display: flex;
    align-items: center;
    max-width: 400px;
}

.hipaa-bar::before {
    content: '•';
    margin-right: 15px;
    font-size: 20px;
}

.hipaa-right {
    flex: 1;
}

.results-table-container {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.results-table-header {
    display: flex;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.results-col-left {
    flex: 1;
    padding: 15px;
}

.results-col-right {
    flex: 1;
    padding: 15px;
}

.header-metric {
    background: #4dc7cc;
}

.header-outcome {
    background: #008C85;
}

.results-row {
    display: flex;
    border-bottom: 1px solid #eee;
}

.results-row:last-child {
    border-bottom: none;
}

.row-metric {
    flex: 1;
    background: #f1f1f1;
    padding: 20px;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

.row-outcome {
    flex: 1;
    background: #f9f9f9;
    padding: 20px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hipaa-footer {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 992px) {
    .hipaa-grid {
        flex-direction: column;
        gap: 40px;
    }

    .hipaa-header h2 {
        font-size: 32px;
    }

    .hipaa-bar {
        max-width: 100%;
    }
}

/* ---------- FIND US HERE SECTION ---------- */
.find-us-here-section {
    background: url('../images/Background.png') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.find-us-here-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 77, 77, 0.4);
    /* Subtle teal overlay */
    z-index: 1;
}

.find-us-here-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.find-us-box {
    border: 1px solid #ffffff;
    width: 100%;
    max-width: 1100px;
    padding: 80px 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.find-us-content {
    width: 100%;
    max-width: 500px;
    color: #ffffff;
    text-align: left;
}

.find-us-content h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.find-us-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    margin-bottom: 30px;
}

.find-us-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.find-us-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.find-us-item i {
    font-size: 20px;
    color: #ffffff;
    margin-top: 2px;
}

@media (max-width: 992px) {
    .find-us-box {
        padding: 60px 40px;
        justify-content: center;
    }

    .find-us-content {
        max-width: 100%;
        text-align: center;
    }

    .find-us-content h2 {
        font-size: 42px;
    }

    .find-us-item {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .find-us-here-section {
        padding: 60px 0;
    }

    .find-us-box {
        padding: 40px 20px;
        margin: 0 15px;
    }

    .find-us-content h2 {
        font-size: 32px;
    }
}

/* ---------- UPGRADE REVENUE SECTION ---------- */
.upgrade-revenue-section {
    background: url('../images/Group-324.png') no-repeat center center;
    background-size: cover;
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.upgrade-revenue-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 140, 133, 0.4);
    /* Teal overlay */
    z-index: 1;
}

.upgrade-revenue-section .container {
    position: relative;
    z-index: 2;
}

.upgrade-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.upgrade-desc {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 10px;
    line-height: 1.6;
}

.upgrade-subdesc {
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 500;
}

.upgrade-form {
    display: flex;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.upgrade-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    background: #ffffff;
    color: #333;
}

.upgrade-form input::placeholder {
    color: #999;
}

.discovery-call-section {
    background: #f5f5f5;
    padding: 30px 0;
    text-align: center;
}

.discovery-btn {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 5px;
    color: #161616;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    width: 100%;
}

@media (max-width: 992px) {
    .upgrade-form {
        flex-direction: column;
    }

    .upgrade-title {
        font-size: 36px;
    }

    .upgrade-desc,
    .upgrade-subdesc {
        font-size: 16px;
    }
}



/* ---------- MEDICAL BILLING PAGE ---------- */
.text-teal {
    color: #49c2c9 !important;
}

.bg-teal {
    background-color: #49c2c9 !important;
}

.hero-medical-billing {
    position: relative;
    color: #fff;
}

.hero-medical-billing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-medical-billing .container {
    position: relative;
    z-index: 2;
}

.btn-explore-more {
    display: inline-block;
    background: #49c2c9;
    color: #fff;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-explore-more:hover {
    background: #3aa8af;
    color: #fff;
    transform: translateY(-2px);
}

.btn-teal {
    background-color: #49c2c9;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-teal:hover {
    background-color: #3aa8af;
    color: #fff;
}

.specialty-item {
    transition: all 0.3s ease;
    border-color: #eee !important;
}

.specialty-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background-color: #fff !important;
    border-color: #49c2c9 !important;
}

.testimonial-card {
    border: none;
}

/* ---------- RCM HERO HEADING ---------- */
.rcm-hero-heading {
    max-width: 920px;
    margin-bottom: 28px;
}

.rcm-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    color: #49c2c9;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
}

.rcm-hero-eyebrow::before {
    content: "";
    width: 42px;
    height: 3px;
    background: #49c2c9;
    border-radius: 999px;
}

.rcm-hero-heading h1 {
    max-width: 860px;
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    text-transform: capitalize;
}

.rcm-hero-heading h1 span {
    display: block;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-medical-billing h1 {
        font-size: 2.2rem !important;
    }

    .hero-medical-billing h2 {
        font-size: 1.4rem !important;
    }

    .rcm-hero-heading {
        margin-bottom: 22px;
    }

    .rcm-hero-eyebrow {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .rcm-hero-eyebrow::before {
        width: 30px;
    }

    .rcm-hero-heading h1 {
        font-size: 36px;
        line-height: 1.12;
    }
}

/* --- RCM PROCESS ZIGZAG --- */
.rcm-process-section {
    padding: 100px 0;
    background: #fff;
}

.process-zigzag-item {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 100px;
    position: relative;
}

.process-zigzag-item:last-child {
    margin-bottom: 0;
}

.process-zigzag-item.reverse {
    flex-direction: row-reverse;
}

.zigzag-visual {
    flex: 0 0 150px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zigzag-number {
    width: 64px;
    height: 64px;
    background: #49c2c9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.zigzag-line {
    position: absolute;
    height: 8px;
    background: #e0e0e0;
    width: 100px;
    z-index: 1;
}

.process-zigzag-item:not(.reverse) .zigzag-line {
    right: 50%;
    margin-right: 32px;
}

.process-zigzag-item.reverse .zigzag-line {
    left: 50%;
    margin-left: 32px;
}

.zigzag-content {
    flex: 1;
    padding-top: 10px;
}

.process-zigzag-item:not(.reverse) .zigzag-content {
    padding-left: 40px;
}

.process-zigzag-item.reverse .zigzag-content {
    padding-right: 40px;
    text-align: right;
}

.zigzag-content h3 {
    font-size: 32px;
    font-weight: 400;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.2;
}

.zigzag-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
}

.process-zigzag-item.reverse .zigzag-content p {
    margin-left: auto;
}

@media (max-width: 992px) {
    .rcm-process-section {
        padding: 60px 0;
    }

    .process-zigzag-item,
    .process-zigzag-item.reverse {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 60px;
    }

    .process-zigzag-item.reverse .zigzag-content {
        text-align: center;
    }

    .zigzag-visual {
        flex: 0 0 auto;
        margin-bottom: 30px;
    }

    .zigzag-line {
        display: none;
    }

    .zigzag-content {
        padding: 0 !important;
    }

    .zigzag-content p {
        margin: 0 auto !important;
    }
}

/* --- RCM COMPARISON V2 --- */
.rcm-comparison-v2-section {
    background-color: #eee;
    padding: 80px 0;
}

.comparison-v2-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px;
}

.comparison-v2-table {
    width: 100%;
    margin-bottom: 50px;
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-v2-table th {
    padding: 20px 15px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    vertical-align: middle;
}

.comparison-v2-table th:first-child {
    background-color: #eee;
}

.comparison-v2-table th:nth-child(2) {
    background-color: #49c2c9;
    border-radius: 0 0 0 0;
}

.comparison-v2-table th:nth-child(3) {
    background-color: #008C85;
    border-radius: 0 0 0 0;
}

.comparison-v2-table th:nth-child(4) {
    background-color: #006b65;
    border-radius: 0 0 0 0;
}

.comparison-v2-table td {
    padding: 30px 20px;
    color: #333;
    font-size: 1.1rem;
    vertical-align: middle;
}

.comparison-v2-table td:first-child {
    font-weight: 500;
    color: #444;
    width: 30%;
    text-align: left;
}

.comparison-v2-table td:not(:first-child) {
    text-align: center;
    font-weight: 700;
}

.comparison-v2-boxes {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

.comparison-v2-box {
    flex: 1;
    border: 1px solid #333;
    padding: 50px 30px;
    text-align: center;
    background: transparent;
}

.comparison-v2-box h4 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.comparison-v2-box p {
    font-size: 1.1rem;
    color: #444;
    margin: 0;
    line-height: 1.4;
    max-width: 350px;
    margin: 0 auto;
}

.comparison-v2-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.comparison-v2-form-row input {
    flex: 1;
    min-width: 200px;
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-discovery-call-v2 {
    width: 100%;
    background-color: #49c2c9;
    color: #fff;
    border: none;
    padding: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.3s;
    cursor: pointer;
}

.btn-discovery-call-v2:hover {
    background-color: #3aa3aa;
}

@media (max-width: 992px) {
    .comparison-v2-boxes {
        flex-direction: column;
    }

    .comparison-v2-table {
        display: block;
        overflow-x: auto;
    }
}

/* --- RCM DECIDING CARDS --- */
.rcm-deciding-section {
    padding: 100px 0;
    background: #fff;
}

.deciding-card {
    display: flex;
    background: #f4f4f4;
    margin-bottom: 30px;
    align-items: stretch;
    border-radius: 4px;
    overflow: hidden;
}

.deciding-icon-box {
    flex: 0 0 250px;
    background: #49c2c9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.deciding-icon-box i {
    font-size: 80px;
    color: #fff;
}

.deciding-content {
    flex: 1;
    padding: 30px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.deciding-content h3 {
    font-size: 32px;
    font-weight: 400;
    color: #333;
    margin-bottom: 25px;
}

.deciding-content p {
    font-size: 1.15rem;
    color: #555;
    margin-top: -10px !important;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .deciding-card {
        flex-direction: column;
    }

    .deciding-icon-box {
        flex: 0 0 150px;
        padding: 30px;
    }

    .deciding-icon-box i {
        font-size: 60px;
    }

    .deciding-content {
        padding: 40px 30px;
        text-align: center;
    }
}


.hero-light-title{
     width: 100%;
    font-size: 54px;
    line-height: 1.2;
    color: #282828;
    font-weight: 500 !important;
    margin-bottom: 20px;
}

.hero-light-content{
    color: #000000 !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
    font-weight: 400 !important;
    margin-bottom: 20px !important;
}

/* ---------- DENIAL MANAGEMENT ADDITIONS ---------- */
.specialty-card-premium {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.specialty-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(73, 194, 201, 0.15) !important;
    background: linear-gradient(to bottom, #ffffff, #f0fbfa) !important;
}

.step-num-v3 {
    width: 60px;
    height: 60px;
    background: #008C85;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    border: 4px solid #fff;
    transition: all 0.3s ease;
}

.process-step-v3:hover .step-num-v3 {
    background: #49c2c9;
    transform: scale(1.1);
}

.custom-bullet-list li {
    position: relative;
}

.assessment-section .contact-card {
    border-top: 5px solid #008C85 !important;
}

/* ---------- CUSTOM ACCORDION V2 (WHITE BG, TEAL CIRCLE ICON) ---------- */
.custom-accordion-v2 .accordion-item {
    border: none;
    transition: all 0.3s ease;
}

.custom-accordion-v2 .accordion-button {
    background-color: #fff !important;
    color: #49c2c9 !important;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
}

.custom-accordion-v2 .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2349c2c9'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-size: 1rem;
    filter: none !important;
    transition: transform 0.3s ease;
}

    .custom-accordion-v2 .accordion-button:not(.collapsed)::after {
        transform: rotate(-180deg);
    }

    .custom-accordion-v2 .accordion-button:focus {
        box-shadow: none !important;
    }

    .custom-accordion-v2 .accordion-button:hover {
        background-color: #f0fbfa !important;
    }

    .custom-accordion-v2 .accordion-body {
        background-color: #fff; border: none;
    }

/* ---------- CALIFORNIA LOCATION PAGE ---------- */
.california-hero {
    background-image: url('../images/Group-763.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    top: -100px;
    position: relative;
    color: #1a1a1a;
    overflow: hidden;
}

.texas-hero {
    background-image: url('../images/Group-1208.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    top: -100px;
    position: relative;
    color: #1a1a1a;
    overflow: hidden;
}

.florida-hero {
    background-image: url('../images/Group-1218-1.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    top: -100px;
    position: relative;
    color: #1a1a1a;
    overflow: hidden;
}

.newyork-hero {
    background-image: url('../images/Group-1225-1.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    top: -100px;
    position: relative;
    color: #1a1a1a;
    overflow: hidden;
}

.illinois-hero {
    background-image: url('../images/Group-1223.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    top: -100px;
    position: relative;
    color: #1a1a1a;
    overflow: hidden;
}

.california-hero,
.texas-hero,
.florida-hero,
.newyork-hero,
.illinois-hero,
.ohio-hero,
.georgia-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    top: -100px;
    position: relative;
    color: #1a1a1a;
    overflow: hidden;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.texas-hero { background-image: url('../images/Group-1208.png'); }
.florida-hero { background-image: url('../images/Group-1218-1.png'); }
.newyork-hero { background-image: url('../images/Group-1225-1.png'); }
.illinois-hero { background-image: url('../images/Group-1223.png'); }
.ohio-hero { background-image: url('../images/Group-1220.png'); background-position: top; }
.georgia-hero { background-image: url('../images/Group-1219.png'); }


.california-hero::before,
.texas-hero::before,
.florida-hero::before,
.newyork-hero::before,
.illinois-hero::before,
.ohio-hero::before,
.georgia-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, #f8fafa 0%, #f8fafa 40%, rgba(248, 250, 250, 0) 100%);
    z-index: 1;
}

.california-hero .hero-content,
.texas-hero .hero-content,
.florida-hero .hero-content,
.newyork-hero .hero-content,
.illinois-hero .hero-content,
.ohio-hero .hero-content,
.georgia-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.california-hero .hero-heading,
.texas-hero .hero-heading,
.florida-hero .hero-heading,
.newyork-hero .hero-heading,
.illinois-hero .hero-heading,
.ohio-hero .hero-heading,
.georgia-hero .hero-heading {
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 800;
    margin: 0 0 25px;
    color: #1a1a1a;
    line-height: 1.15;
    letter-spacing: -1px;
}

.california-hero .hero-subtext,
.texas-hero .hero-subtext,
.florida-hero .hero-subtext,
.newyork-hero .hero-subtext,
.illinois-hero .hero-subtext,
.ohio-hero .hero-subtext,
.georgia-hero .hero-subtext {
    font-size: 20px;
    font-weight: 400;
    color: #444;
    line-height: 1.75;
    max-width: 700px;
    margin: 0;
    opacity: 0.9;
}

.california-hero .hero-btns,
.texas-hero .hero-btns,
.florida-hero .hero-btns,
.newyork-hero .hero-btns,
.illinois-hero .hero-btns,
.ohio-hero .hero-btns,
.georgia-hero .hero-btns {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.california-hero .btn-primary-green,
.texas-hero .btn-primary-green,
.florida-hero .btn-primary-green,
.newyork-hero .btn-primary-green,
.illinois-hero .btn-primary-green,
.ohio-hero .btn-primary-green,
.georgia-hero .btn-primary-green {
    display: inline-block;
    background: #008C85;
    color: #fff;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 140, 133, 0.2);
}

.california-hero .btn-primary-green:hover,
.texas-hero .btn-primary-green:hover,
.florida-hero .btn-primary-green:hover,
.newyork-hero .btn-primary-green:hover,
.illinois-hero .btn-primary-green:hover,
.ohio-hero .btn-primary-green:hover,
.georgia-hero .btn-primary-green:hover {
    background: #006b65;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 140, 133, 0.3);
}

.california-hero .btn-outline-green,
.texas-hero .btn-outline-green,
.florida-hero .btn-outline-green,
.newyork-hero .btn-outline-green,
.illinois-hero .btn-outline-green,
.ohio-hero .btn-outline-green,
.georgia-hero .btn-outline-green {
    display: inline-block;
    border: 2px solid #49C2C9;
    color: #008C85;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.california-hero .btn-outline-green:hover,
.texas-hero .btn-outline-green:hover,
.florida-hero .btn-outline-green:hover,
.newyork-hero .btn-outline-green:hover,
.illinois-hero .btn-outline-green:hover,
.ohio-hero .btn-outline-green:hover,
.georgia-hero .btn-outline-green:hover {
    background: rgba(73, 194, 201, 0.1);
    border-color: #008C85;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .california-hero,
    .texas-hero,
    .florida-hero,
    .newyork-hero,
    .illinois-hero,
    .ohio-hero,
    .georgia-hero {
        background-position: center;
        text-align: center;
        padding: 100px 0;
    }
    .california-hero .hero-content,
    .texas-hero .hero-content,
    .florida-hero .hero-content,
    .newyork-hero .hero-content,
    .illinois-hero .hero-content,
    .ohio-hero .hero-content,
    .georgia-hero .hero-content {
        text-align: center;
    }
    .california-hero .hero-subtext,
    .texas-hero .hero-subtext,
    .florida-hero .hero-subtext,
    .newyork-hero .hero-subtext,
    .illinois-hero .hero-subtext,
    .ohio-hero .hero-subtext,
    .georgia-hero .hero-subtext {
        margin: 0 auto;
    }
    .california-hero .hero-btns,
    .texas-hero .hero-btns,
    .florida-hero .hero-btns,
    .newyork-hero .hero-btns,
    .illinois-hero .hero-btns,
    .ohio-hero .hero-btns,
    .georgia-hero .hero-btns {
        justify-content: center;
    }
    .california-hero .hero-heading,
    .texas-hero .hero-heading,
    .florida-hero .hero-heading,
    .newyork-hero .hero-heading,
    .illinois-hero .hero-heading,
    .ohio-hero .hero-heading,
    .georgia-hero .hero-heading {
        font-size: 40px;
    }
}

/* ---------- EXCEPTIONAL SERVICES BANNER ---------- */
.california-banner-section {
    padding: 60px 0;
    background: #fff;
}

.exceptional-banner-inner {
    background-image: url('../images/Group-2-e1765455032844 (1).png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 25px;
    padding: 80px 60px;
    color: #fff;
    min-height: 400px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 140, 133, 0.1);
}

.exceptional-banner-inner .banner-heading {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
}

.exceptional-banner-inner .banner-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    margin: 0;
}

@media (max-width: 991px) {
    .exceptional-banner-inner {
        padding: 50px 30px;
        background-position: center left;
        text-align: center;
    }
    .exceptional-banner-inner .banner-text {
        margin: 0 auto;
    }
}

/* ---------- SERVICE CARD MODERN SLIDER ---------- */
.servicesSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.service-card-modern {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    width: 100%;
    border: 1px solid #f0f0f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 140, 133, 0.12);
    border-color: rgba(73, 194, 201, 0.3);
}

.service-card-modern h3 {
    font-size: 21px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
    line-height: 1.35;
}

.service-card-modern p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.swiper-pagination-fraction {
    font-family: 'Inter', sans-serif;
    color: #888;
    letter-spacing: 2px;
}

.swiper-pagination-current {
    color: #008C85;
    font-weight: 700;
}

/* ---------- RELIABILITY SECTION ---------- */
.reliability-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reliability-bar {
    background: #f4f7f7;
    padding: 18px 25px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 17px;
    color: #444;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.reliability-bar.active {
    background: #49C2C9;
    color: #fff;
    box-shadow: 0 4px 15px rgba(73, 194, 201, 0.2);
}

.reliability-bar:hover {
    background: #49C2C9;
    color: #fff;
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(73, 194, 201, 0.3);
}

@media (max-width: 991px) {
    .reliability-bar:hover {
        transform: none;
    }
}

/* ---------- CALIFORNIA FAQ ---------- */
.custom-faq-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    background: transparent;
}

.custom-faq-accordion .accordion-button {
    background: #f4f4f4;
    border-radius: 10px !important;
    padding: 20px 25px;
    font-weight: 700;
    color: #333;
    font-size: 17px;
    box-shadow: none;
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
    background: #f4f4f4;
    color: #49C2C9;
}

.custom-faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    background-size: 1.5rem;
}

.custom-faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.custom-faq-accordion .accordion-body {
    padding: 10px 30px 30px;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}


/* ---------- ELIGIBILITY PAGE STYLES ---------- */
.eligibility-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/Background.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}
.eligibility-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
}
.eligibility-hero h2 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 500;
    margin-bottom: 30px;
    color: #49C2C9;
}
.eligibility-hero p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 18px;
    line-height: 1.6;
}
.btn-explore {
    background: #49C2C9;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 20px;
    transition: 0.3s;
}
.btn-explore:hover {
    background: #3baeb5;
    color: #fff;
}
.cta-strip {
    background: #49C2C9;
    padding: 15px 0;
    text-align: center;
}
.btn-book {
    background: #fff;
    color: #1a1a1a;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}
.btn-book:hover {
    background: #f0f0f0;
}
.trusted-section {
    padding: 60px 0;
    text-align: center;
}
.trusted-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}
.trusted-section p {
    margin-top: 20px;
    font-weight: 600;
    color: #666;
}
.why-choose-section {
    padding: 80px 0;
    background: #fdfdfd;
}
.why-choose-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}
.why-choose-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.why-choose-list li {
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}
.why-choose-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #49C2C9;
    font-weight: 900;
}
.btn-audit {
    background: #49C2C9;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: block;
    width: fit-content;
    margin: 0 auto;
    transition: 0.3s;
}
.stats-section {
    padding: 100px 0;
    background: #fff;
}
.stats-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
}
.teal-text {
    color: #49C2C9;
}
.stats-desc {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}
.btn-primary-teal {
    background: #0A8588;
    color: #fff;
    border: none;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}
.btn-primary-teal:hover {
    background: #086d70;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(10, 133, 136, 0.3);
}
.stat-item {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #0A8588;
    line-height: 1;
    margin: 0;
}
.stat-suffix {
    font-size: 40px;
    font-weight: 800;
    color: #0A8588;
    margin-left: 2px;
    line-height: 1;
}
.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    margin-top: 10px;
    line-height: 1.3;
    display: block;
}
/* ---------- DEFINITION SECTION ---------- */
.definition-section {
    background: #fdfdfd;
    padding: 100px 0;
}
.definition-main-title {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
}
.definition-intro-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}
.column-header {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}
.definition-check-box {
    background: #fff;
    border: 1px solid #d1d9e6;
    border-radius: 12px;
    padding: 18px 25px;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    color: #49C2C9;
    font-weight: 700;
    font-size: 15px;
    text-align: left;
    display: block;
    width: 100%;
}
.definition-footer-text {
    font-size: 16px;
    max-width: 800px;
    margin: 50px auto 0;
    color: #777;
    line-height: 1.5;
}
.related-services {
    padding: 100px 0;
    background: #fff;
}
.related-services-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}
.related-services-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}
.service-row {
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}
.service-icon-box {
    width: 60px;
    height: 60px;
    background: #E0F4F5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #0A8588;
    font-size: 22px;
}
.service-title {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.service-desc {
    font-size: 14.5px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}
@media (max-width: 991px) {
    .related-services-title {
        font-size: 30px;
    }
}
.tabs-section {
    padding: 80px 0;
}
.tabs-container {
    display: flex;
    gap: 40px;
}
.tabs-nav {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tab-link {
    padding: 15px 20px;
    background: #f4f4f4;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.tab-link.active {
    background: #49C2C9;
    color: #fff;
}
.tab-content {
    flex: 1;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}
.final-cta {
    background: linear-gradient(135deg, #0a2a2a, #0d4a45);
    padding: 100px 0;
    color: #fff;
    text-align: center;
}
@media (max-width: 768px) {
    .why-choose-list, .checks-grid, .stats-grid, .tabs-container {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    .tabs-nav {
        flex: none;
    }
}

/* Additional Eligibility Styles */
.protect-strip p {
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.feature-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(73, 194, 201, 0.15) !important;
}

.medical-coding-intro img {
    border-bottom: 8px solid #49C2C9;
}

.faq-section {
    background-color: #f8fbfc;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: #49C2C9;
    color: #fff;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(73, 194, 201, 0.5);
}

.faq-section .accordion-button::after {
    background-size: 1.25rem;
}

.animate-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.final-cta .btn-outline-light:hover {
    background-color: #fff;
    color: #0A8588;
}

.max-width-800 {
    max-width: 800px;
}

/* Ensure tab links wrap correctly on mobile */
@media (max-width: 576px) {
    .tabs-nav .tab-link {
        font-size: 14px;
        padding: 12px 15px;
    }
}
/* ---------- SPECIALTIES SECTION ---------- */
.specialties-section .section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1a1a1a;
}
.specialties-section .section-subtitle {
    color: #49C2C9;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}
.specialties-section .section-description {
    max-width: 900px;
    line-height: 1.7;
    font-size: 17px;
    color: #555;
    margin-bottom: 35px;
}
.specialties-section .we-provide-text {
    color: #49C2C9;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}
.specialties-container {
    padding: 40px 40px;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(10, 133, 136, 0.2);
}
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.specialty-card {
    background: rgba(255,255,255,0.12);
    border-radius: 15px;
    padding: 25px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 170px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
}
.specialty-card:hover {
    background: rgba(255,255,255,0.22);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.specialty-card .top-icon i {
    font-size: 32px;
    display: block;
    opacity: 0.9;
}
.specialty-card .bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.specialty-card .bottom-content span {
    font-weight: 700;
    font-size: 17px;
    line-height: 1.2;
    padding-right: 15px;
}
.specialty-card .arrow-circle {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
}
.specialty-card .arrow-circle i {
    font-size: 16px;
    margin: 0;
    line-height: 1;
}
.specialty-card:hover .arrow-circle {
    background: #fff;
    color: #0A8588;
}
.btn-view-all {
    background: #00B4B4;
    color: #fff;
    padding: 15px 45px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 18px;
    transition: 0.3s;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 180, 180, 0.3);
}
.btn-view-all:hover {
    background: #009999;
    color: #fff;
    transform: scale(1.05);
}

@media (max-width: 1200px) {
    .specialties-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 991px) {
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .specialties-container {
        padding: 40px 20px;
    }
}
@media (max-width: 576px) {
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    .specialty-card {
        min-height: 140px;
    }
}

/* ---------- PROCESS SECTION ---------- */
.process-section {
    background: #f8f9fa;
}
.process-main-title {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
}
.process-subtitle {
    color: #49C2C9;
    font-size: 20px;
    font-weight: 700;
}
.process-intro-text {
    font-size: 16.5px;
    line-height: 1.6;
    color: #555;
}
.process-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.04);
    position: relative;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}
.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(73, 194, 201, 0.1);
}
.process-number {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 38px;
    height: 38px;
    background: #49C2C9;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
}
.process-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #49C2C9;
    margin-bottom: 18px;
    padding-right: 45px;
    line-height: 1.3;
}
.process-card-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ---------- WHY CHOOSE LIST SECTION ---------- */
.why-choose-list-section {
    background: #fff;
    padding: 80px 0;
}
.why-list li {
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}
.btn-teal-audit {
    background: #1B8C8E;
    color: #fff !important;
    padding: 18px 35px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}
.btn-teal-audit:hover {
    background: #167274;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

/* ---------- MEDICAL CODING BANNER ---------- */
.medical-coding-banner-section {
    overflow: hidden;
}
.coding-banner {
    box-shadow: 0 20px 50px rgba(10, 133, 136, 0.15);
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.coding-banner-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
    color: #fff;
}
@media (max-width: 991px) {
    .coding-banner {
        background-position: right center !important;
        padding: 40px 20px !important;
        min-height: auto !important;
    }
}

/* ---------- REVENUE CYCLE MANAGEMENT (RCM) PAGE ---------- */

/* Importance Section */
.importance-rcm-section .importance-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}
.importance-rcm-section .importance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}
.importance-icon-wrap {
    background: rgba(73, 194, 201, 0.1);
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Why Choose Section (Still Deciding) */
.why-choose-rcm .choose-card {
    transition: all 0.3s ease;
    background: #fff;
}
.why-choose-rcm .choose-card:hover {
    border-color: #49C2C9 !important;
    background: #f8fdfe;
}
.why-choose-rcm .icon-box {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Audit CTA Section V2 */
.audit-cta-v2-section {
    background: #49C2C9;
    color: #fff;
    padding: 100px 0;
    overflow: visible;
}
.audit-cta-v2-section h2 {
    color: #fff;
    font-size: 2.5rem;
}
.audit-cta-v2-section .lead {
    color: rgba(255, 255, 255, 0.9);
}
.audit-cta-form .form-control {
    background: #fff;
    border: none;
    font-size: 1rem;
}
.audit-cta-form .btn-light {
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.audit-cta-form .btn-light:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}
.audit-cta-image-wrap img {
    border-radius: 20px;
    transform: scale(1.1);
    margin-bottom: -135px;
    margin-top: -300px;
    z-index: 2;
}
@media (max-width: 991px) {
    .audit-cta-image-wrap img {
        transform: scale(1);
        margin-top: 30px;
    }
}
