/*
Theme Name: HealthEdge Solutions
Theme URI: #
Author: Abhishek
Author URI: #
Description: Custom WordPress theme for HealthEdge Solutions based on premium RCM designs.
Version: 1.0.0
Text Domain: healthedge
*/
/* ---------- HERO SECTION FIX ---------- */
/* =========================================================
   HOME PAGE CONTENT SECTIONS
   ========================================================= */

.eyebrow {
    color: var(--secondary-color, #2563eb);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ---------- Trust badges ---------- */
.trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.trust-badge {
    background: #fff;
    border: 1px solid #dde5f0;
    border-radius: 30px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
}

/* ---------- Checklist (Who We Are) ---------- */
.checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.checklist li {
    position: relative;
    padding: 14px 0 14px 28px;
    border-bottom: 1px solid #e5eaf1;
    color: #444;
    font-size: 15px;
}

.checklist li::before {
    content: "+";
    position: absolute;
    left: 0;
    color: var(--secondary-color, #2563eb);
    font-weight: 700;
}

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

/* ---------- Grid layouts ---------- */
.grid-2 {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

@media (max-width: 900px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

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

/* ---------- Service cards (9-grid) ---------- */
.service-card {
    background: #fff;
    border: 1px solid #e5eaf1;
    border-radius: 10px;
    padding: 32px 28px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.service-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf1fd;
    border-radius: 8px;
    font-size: 20px;
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    color: #666;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-link {
    color: var(--secondary-color, #2563eb);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.service-link:hover {
    text-decoration: underline;
}

/* ---------- Why choose us: icon feature rows ---------- */
.icon-feature {
    display: flex;
    gap: 18px;
    margin-bottom: 32px;
}

.icon-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf1fd;
    border-radius: 8px;
    font-size: 20px;
}

.icon-feature h4 {
    margin: 0 0 8px;
    font-size: 17px;
}

.icon-feature p {
    color: #666;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

/* ---------- RCM process list ---------- */
.process-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.process-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: #f8fbff;
    border-radius: 8px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1a2a47;
    font-size: 15px;
}

.process-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color, #2563eb);
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}

/* ---------- Stats bar ---------- */
.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    gap: 20px;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 12.5px;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-top: 6px;
}

/* ---------- Mission / vision cards ---------- */
.mission-card h3 {
    font-size: 22px;
    margin: 15px 0 12px;
}

.mission-card p {
    color: #555;
    line-height: 1.7;
}

.mission-icon {
    font-size: 28px;
}

/* ---------- Core values cards ---------- */
.value-card {
    text-align: center;
    background: #f8fbff;
    border-radius: 10px;
    padding: 35px 22px;
}

.value-icon {
    font-size: 30px;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.value-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ---------- Partner / feature cards (9-grid) ---------- */
.partner-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 26px;
    border: 1px solid #e5eaf1;
}

.partner-icon {
    font-size: 24px;
    margin-bottom: 14px;
}

.partner-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.partner-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ---------- Buttons ---------- */
.btn-large {
    padding: 16px 34px;
    font-size: 17px;
}

/* =========================================================
   SERVICE DETAIL PAGES — FULL REDESIGN
   ========================================================= */

/* --- Page Hero Header --- */
.page-header {
    padding: 90px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-header h1 {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 18px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.85);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Breadcrumb strip */
.page-breadcrumb {
    background: #f0f4f9;
    padding: 12px 0;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e5eaf1;
}

.page-breadcrumb a {
    color: var(--secondary-color, #2563eb);
    text-decoration: none;
}

.page-breadcrumb a:hover {
    text-decoration: underline;
}

.page-breadcrumb span {
    margin: 0 6px;
    color: #aaa;
}

/* --- Service Page Main Content Layout --- */
.service-page-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: start;
    padding: 80px 0 100px;
}

/* --- Main Content Column --- */
.service-main-content h2.service-section-title {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    color: #1a2a47;
    margin: 0 0 22px;
    line-height: 1.2;
}

.service-main-content .service-intro {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* --- Section Divider Label --- */
.service-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary-color, #2563eb);
    margin-bottom: 14px;
}

.service-section-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--secondary-color, #2563eb);
    border-radius: 2px;
}

/* --- Subsection Heading --- */
.service-main-content h3.service-sub-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a2a47;
    margin: 40px 0 16px;
    padding-top: 10px;
    border-top: 2px solid #e8edf5;
}

/* --- Icon Checklist --- */
.service-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.service-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    margin-bottom: 10px;
    background: #f8fbff;
    border-radius: 10px;
    border-left: 3px solid var(--secondary-color, #2563eb);
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    transition: background 0.2s, transform 0.2s;
}

.service-checklist li:hover {
    background: #eef4ff;
    transform: translateX(4px);
}

.service-checklist li::before {
    content: '✓';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color, #2563eb);
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    margin-top: 1px;
}

/* --- Benefit Cards (2-col mini-grid) --- */
.service-benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 0 0 30px;
}

.service-benefit-card {
    background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
    border: 1px solid #d6e4ff;
    border-radius: 12px;
    padding: 22px 20px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.service-benefit-card:hover {
    box-shadow: 0 6px 20px rgba(37,99,235,0.1);
    transform: translateY(-2px);
}

.service-benefit-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary-color, #2563eb);
    margin: 0 0 10px;
}

.service-benefit-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* --- Sidebar Column --- */
.service-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* CTA Card */
.sidebar-cta-card {
    background: linear-gradient(160deg, #1a2a47 0%, #2b74d6 100%);
    border-radius: 16px;
    padding: 36px 30px;
    color: #fff;
    text-align: center;
    box-shadow: 0 10px 40px rgba(37,99,235,0.25);
    position: relative;
    overflow: hidden;
}

.sidebar-cta-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.sidebar-cta-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 14px;
    color: #fff;
    position: relative;
}

.sidebar-cta-card p {
    font-size: 14.5px;
    color: rgba(255,255,255,0.82);
    margin: 0 0 24px;
    line-height: 1.6;
    position: relative;
}

.sidebar-cta-card .btn-sidebar-cta {
    display: block;
    background: #fff;
    color: #2b74d6;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 20px;
    border-radius: 10px;
    text-decoration: none;
    margin-bottom: 16px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.sidebar-cta-card .btn-sidebar-cta:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.sidebar-cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    position: relative;
}

.sidebar-cta-phone:hover {
    color: #fff;
}

/* Related Services Card */
.sidebar-related-card {
    background: #fff;
    border: 1px solid #e5eaf1;
    border-radius: 16px;
    padding: 28px 26px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.sidebar-related-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a2a47;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f4f9;
}

.sidebar-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-services-list li {
    margin-bottom: 8px;
}

.sidebar-services-list li:last-child {
    margin-bottom: 0;
}

.sidebar-services-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8fbff;
    border-radius: 8px;
    color: var(--primary-color, #1a2a47);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.sidebar-services-list a:hover {
    background: #eef4ff;
    border-color: var(--secondary-color, #2563eb);
    color: var(--secondary-color, #2563eb);
    padding-left: 20px;
}

.sidebar-services-list a::after {
    content: '→';
    font-size: 16px;
    opacity: 0.5;
    transition: opacity 0.2s, transform 0.2s;
}

.sidebar-services-list a:hover::after {
    opacity: 1;
    transform: translateX(4px);
}

/* Trust Badge in Sidebar */
.sidebar-trust-strip {
    background: #f8fbff;
    border: 1px solid #e5eaf1;
    border-radius: 16px;
    padding: 22px 20px;
}

.sidebar-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e8edf5;
}

.sidebar-trust-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-trust-item:first-child {
    padding-top: 0;
}

.sidebar-trust-icon {
    width: 36px;
    height: 36px;
    background: #eef4ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.sidebar-trust-text {
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

.sidebar-trust-text strong {
    display: block;
    color: #1a2a47;
    font-size: 14px;
}

/* =========================================================
   SERVICE PAGE RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
    .service-page-layout {
        grid-template-columns: 1fr 340px;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .service-page-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0 80px;
    }

    .service-sidebar {
        position: static;
        top: auto;
    }

    .service-benefit-grid {
        grid-template-columns: 1fr 1fr;
    }

    .page-header {
        padding: 70px 0 60px;
    }
}

@media (max-width: 600px) {
    .page-header {
        padding: 55px 0 50px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header p {
        font-size: 15px;
    }

    .service-page-layout {
        padding: 45px 0 60px;
        gap: 32px;
    }

    .service-benefit-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-cta-card {
        padding: 28px 22px;
    }

    .service-main-content h2.service-section-title {
        font-size: 24px;
    }

    .service-checklist li {
        font-size: 14px;
    }
}

/* =========================================================
   RESPONSIVE UTILITIES & BREAKPOINTS
   ========================================================= */

@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0 !important;
    }
    
    .responsive-heading {
        font-size: 30px !important;
    }

    .trust-badges-row {
        gap: 10px;
    }

    .trust-badge {
        padding: 8px 14px;
        font-size: 13px;
    }

    .stats-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 45px 0 !important;
    }

    .responsive-heading {
        font-size: 24px !important;
    }

    .two-col-layout {
        gap: 30px !important;
    }

    .who-we-are-text, 
    .who-we-are-list, 
    .why-choose-features, 
    .rcm-process {
        min-width: 100% !important;
    }

    .rcm-process {
        padding: 24px 18px !important;
    }

    .process-list li {
        font-size: 14px;
        padding: 12px 14px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 11px;
    }

    .mission-card {
        padding: 24px !important;
    }

    .service-card, 
    .partner-card, 
    .value-card {
        padding: 24px 18px !important;
    }

    .hero-cta-bar .container {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta-bar .btn {
        width: 100%;
        text-align: center;
    }
}

/* =========================================================
   US HEALTHCARE CAREER PAGE
   ========================================================= */

/* ── 1. SERVICES SECTION ── */
.uhc-services-section {
    padding: 80px 0 70px;
    background: #fff;
}

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

.uhc-section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #1a2a47;
    margin: 0 0 14px;
    line-height: 1.15;
}

.uhc-section-header p {
    font-size: 16px;
    color: #666;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Two-column card grid */
.uhc-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.uhc-service-card {
    background: #f0f6ff;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s;
}

.uhc-service-card:hover {
    box-shadow: 0 10px 40px rgba(37,99,235,0.12);
    transform: translateY(-4px);
}

.uhc-card-text {
    padding: 28px 28px 20px;
}

.uhc-card-text h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a2a47;
    margin: 0 0 10px;
    font-family: var(--font-body, 'Inter', sans-serif);
}

.uhc-card-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

.uhc-card-image {
    flex: 1;
    overflow: hidden;
    min-height: 220px;
}

.uhc-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.uhc-service-card:hover .uhc-card-image img {
    transform: scale(1.04);
}

/* ── 2. TESTIMONIAL SECTION ── */
.uhc-testimonial-section {
    padding: 80px 0;
    background: #f8fbff;
}

.uhc-testimonial-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(26,42,71,0.12);
}

.uhc-testimonial-image {
    overflow: hidden;
    min-height: 340px;
}

.uhc-testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.uhc-testimonial-card {
    background: #2b74d6;
    padding: 50px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.uhc-stars {
    color: #fbbf24;
    font-size: 22px;
    letter-spacing: 3px;
    line-height: 1;
}

.uhc-quote {
    font-size: 16px;
    color: rgba(255,255,255,0.95);
    line-height: 1.75;
    font-style: italic;
    margin: 0;
    border: none;
    padding: 0;
    quotes: none;
}

.uhc-reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

.uhc-reviewer-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: 2px solid rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    flex-shrink: 0;
}

.uhc-reviewer-info strong {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.uhc-reviewer-info span {
    display: block;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    margin-top: 2px;
}

/* ── 3. CONTACT SECTION ── */
.uhc-contact-section {
    padding: 90px 0 0;
    background: linear-gradient(160deg, #f0f5ff 0%, #ffffff 60%);
    position: relative;
    overflow: hidden;
}

/* Decorative background circles */
.uhc-contact-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(43,116,214,0.06);
    pointer-events: none;
}

.uhc-contact-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(26,42,71,0.04);
    pointer-events: none;
}

.uhc-contact-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.uhc-contact-header h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: #1a2a47;
    margin: 0 0 14px;
    line-height: 1.2;
}

.uhc-contact-header p {
    font-size: 15px;
    color: #666;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Two-column layout: form | image — equal height */
.uhc-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 70px rgba(26,42,71,0.14);
}

/* Form wrapper — fills full column height */
.uhc-contact-form-wrap {
    background: #f0f5ff;
    padding: 50px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

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

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

.uhc-form-group .required {
    color: #e03;
}

.uhc-form-group input,
.uhc-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0dcf0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: #333;
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.uhc-form-group input::placeholder,
.uhc-form-group textarea::placeholder {
    color: #aab2c0;
}

.uhc-form-group input:focus,
.uhc-form-group textarea:focus {
    border-color: #2b74d6;
    box-shadow: 0 0 0 3px rgba(43,116,214,0.12);
}

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

.uhc-submit-btn {
    width: 100%;
    padding: 15px 24px;
    background: linear-gradient(135deg, #2b74d6, #1a2a47);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    font-family: inherit;
    letter-spacing: 0.3px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.uhc-submit-btn::after {
    content: '→';
    font-size: 18px;
    transition: transform 0.2s;
}

.uhc-submit-btn:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(43,116,214,0.35);
}

.uhc-submit-btn:hover::after {
    transform: translateX(4px);
}

/* Contact image — stretches to match form height */
.uhc-contact-image {
    overflow: hidden;
    position: relative;
    min-height: 500px;
}

.uhc-contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    position: absolute;
    inset: 0;
}

/* Dark overlay at bottom for a premium editorial look */
.uhc-contact-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(to top, rgba(26,42,71,0.55), transparent);
    pointer-events: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .uhc-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .uhc-testimonial-wrapper {
        grid-template-columns: 1fr;
    }

    .uhc-testimonial-image {
        min-height: 260px;
    }

    .uhc-testimonial-card {
        padding: 40px 32px;
    }

    .uhc-contact-layout {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .uhc-contact-image {
        min-height: 300px;
        order: -1;
    }
}

@media (max-width: 600px) {
    .uhc-services-section,
    .uhc-testimonial-section,
    .uhc-contact-section {
        padding: 55px 0;
    }

    .uhc-contact-form-wrap {
        padding: 28px 22px;
    }

    .uhc-testimonial-card {
        padding: 32px 24px;
        gap: 16px;
    }

    .uhc-stars {
        font-size: 18px;
    }

    .uhc-quote {
        font-size: 15px;
    }
}

/* ── 2b. FEATURES SECTION ── */
.uhc-features-section {
    padding: 80px 0 90px;
    background: #f8fbff;
}

.uhc-features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image side */
.uhc-features-image {
    position: relative;
    border-radius: 16px;
    overflow: visible;
}

.uhc-features-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    box-shadow: 0 20px 60px rgba(26,42,71,0.15);
}

/* Floating stats badge */
.uhc-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #1a2a47, #2b74d6);
    color: #fff;
    border-radius: 14px;
    padding: 18px 26px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(43,116,214,0.35);
    min-width: 140px;
}

.uhc-badge-num {
    display: block;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.uhc-badge-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    opacity: 0.85;
    margin-top: 4px;
    text-transform: uppercase;
}

/* Feature list */
.uhc-features-list {
    list-style: none !important;
    margin: 24px 0 0;
    padding: 0;
}

.uhc-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #e5eaf1;
    list-style: none !important;
}

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

.uhc-feat-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #eef4ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-top: 2px;
}

.uhc-feat-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1a2a47;
    margin-bottom: 4px;
}

.uhc-feat-text span {
    display: block;
    font-size: 14px;
    color: #666;
    line-height: 1.55;
}

/* Update responsive blocks to include features section */
@media (max-width: 900px) {
    .uhc-features-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .uhc-features-image img {
        height: 320px;
    }

    .uhc-img-badge {
        right: 16px;
        bottom: -16px;
    }
}

@media (max-width: 600px) {
    .uhc-features-section {
        padding: 55px 0;
    }

    .uhc-features-image img {
        height: 240px;
    }

    .uhc-img-badge {
        position: static;
        margin-top: 16px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 20px;
    }

    .uhc-badge-num { font-size: 26px; }
}



.header-career-dropdown {
    position: relative;
    display: inline-block;
}

.career-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    cursor: pointer;
}

.career-arrow {
    font-size: 9px;
    display: inline-block;
    transition: transform 0.25s ease;
    line-height: 1;
    opacity: 0.75;
}

.header-career-dropdown:hover .career-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

/* --- Dropdown Panel --- */
.career-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: auto;
    min-width: 240px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(26,42,71,0.18), 0 2px 8px rgba(26,42,71,0.08);
    border: 1px solid #e0e8f5;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 9999;
    /* Bullet killers — belt-and-suspenders approach */
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
}

/* Arrow notch on the dropdown */
.career-dropdown::before {
    content: '';
    position: absolute;
    top: -7px;
    right: 22px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-left: 1px solid #e0e8f5;
    border-top: 1px solid #e0e8f5;
    transform: rotate(45deg);
    border-radius: 2px 0 0 0;
}

.header-career-dropdown:hover .career-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- List items — all bullet styles killed --- */
.career-dropdown li,
.career-dropdown > li {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 8px;
    overflow: hidden;
}

.career-dropdown li + li {
    margin-top: 2px !important;
}

/* --- Link styling --- */
.career-dropdown a,
.career-dropdown li a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #1a2a47;
    text-decoration: none;
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: background 0.18s, color 0.18s, border-color 0.18s, padding-left 0.18s;
    line-height: 1.4;
    white-space: nowrap;
}

.career-dropdown a::before,
.career-dropdown li a::before {
    content: none !important; /* kill any inherited ::before bullets */
}

/* Icon prefix per item using data-icon or nth-child */
.career-dropdown li:nth-child(1) a::before { content: '🏥'; font-size: 15px; }
.career-dropdown li:nth-child(2) a::before { content: '☁️'; font-size: 15px; }
.career-dropdown li:nth-child(3) a::before { content: '🤖'; font-size: 15px; }

.career-dropdown a:hover,
.career-dropdown li a:hover {
    background: #eef4ff;
    color: var(--secondary-color, #2b74d6);
    border-left-color: var(--secondary-color, #2b74d6);
    padding-left: 20px;
}

/* Mobile — hide desktop button; Career Program shown via mobile-nav-cta */
@media (max-width: 1080px) {
    .header-career-dropdown {
        display: none;
    }
}

/* =========================================================
   SALESFORCE DEVELOPMENT CAREER PAGE STYLES
   ========================================================= */

.sfdc-sec-title {
    text-align: center;
    margin-bottom: 45px;
}

.sfdc-sec-title h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    color: #1a2a47;
    font-weight: 800;
    margin: 10px 0 12px;
    line-height: 1.25;
}

.sfdc-sec-title p {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.sfdc-badge-pill {
    display: inline-block;
    background: #eef4ff;
    color: #2b74d6;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* Grids */
.sfdc-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.sfdc-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sfdc-grid-2-custom {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 30px;
}

.sfdc-grid-2-curriculum {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 35px;
    align-items: start;
}

/* Feature Boxes */
.sfdc-feat-box {
    background: #ffffff;
    border: 1px solid #e2edfd;
    border-radius: 14px;
    padding: 26px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(26,42,71,0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sfdc-feat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(43, 116, 214, 0.12);
    border-color: #2b74d6;
}

.sfdc-feat-icon-bg {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}

.sfdc-feat-box h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a2a47;
    margin: 0 0 8px;
    line-height: 1.4;
    font-family: inherit;
}

.sfdc-feat-box p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Google Reviews Card */
.sfdc-google-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 40px rgba(26, 42, 71, 0.07);
    border-radius: 18px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 36px;
}

.sfdc-google-left {
    padding-right: 30px;
    border-right: 1px solid #e2e8f0;
    flex-shrink: 0;
    text-align: center;
}

.google-logo-box {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.gold-stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 2px;
}

.rating-num {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #1a2a47;
    margin-top: 4px;
}

.reviews-count {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
}

.sfdc-review-text {
    font-size: 16px;
    font-style: italic;
    color: #334155;
    line-height: 1.65;
    margin: 0 0 14px;
}

.sfdc-reviewer-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2b74d6;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sfdc-reviewer-meta strong {
    display: block;
    font-size: 14px;
    color: #1a2a47;
}

.sfdc-reviewer-meta span {
    font-size: 12px;
    color: #64748b;
}

/* Sticky Quick Nav */
.sfdc-sticky-nav {
    position: sticky;
    top: 70px;
    z-index: 99;
    background: #1a2a47;
    padding: 12px 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

.sfdc-nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sfdc-nav-links {
    display: flex;
    gap: 8px;
    overflow-x: auto;
}

.sfdc-nav-item {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.sfdc-nav-item:hover, .sfdc-nav-item.active {
    color: #ffffff;
    background: rgba(255,255,255,0.18);
}

.sfdc-nav-btn {
    background: linear-gradient(135deg, #2b74d6, #1d4ed8);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(43,116,214,0.3);
    transition: all 0.2s ease;
}

.sfdc-nav-btn:hover {
    background: #ffffff;
    color: #1a2a47;
}

/* Cards (Overview & Apply) */
.sfdc-card-white {
    background: #ffffff;
    border-radius: 18px;
    padding: 42px;
    border: 1px solid #e2edfd;
    box-shadow: 0 10px 30px rgba(26,42,71,0.05);
}

.sfdc-card-blue {
    background: linear-gradient(160deg, #eff6ff 0%, #e0f2fe 100%);
    border-radius: 18px;
    padding: 42px;
    border: 1px solid #bfdbfe;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sfdc-h2 {
    font-size: 26px;
    font-weight: 800;
    color: #1a2a47;
    margin: 0 0 16px;
    line-height: 1.3;
}

.sfdc-h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a2a47;
    margin: 24px 0 14px;
}

.sfdc-h3-blue {
    font-size: 22px;
    font-weight: 800;
    color: #1e3a8a;
    margin: 0 0 20px;
    line-height: 1.35;
}

.sfdc-h3-blue span { color: #2563eb; }

.sfdc-intro-p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

.sfdc-check-list-custom {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.sfdc-check-list-custom li {
    font-size: 14px;
    color: #334155;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.sfdc-check-list-custom li span {
    color: #10b981;
    font-weight: 800;
    font-size: 16px;
}

.sfdc-check-list-custom.blue-style li span {
    color: #2563eb;
}

.sfdc-partner-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #cbd5e1;
    margin-top: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.partner-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #eff6ff;
    color: #2563eb;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Role Boxes */
.sfdc-role-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
    transition: transform 0.25s, box-shadow 0.25s;
}

.sfdc-role-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(43, 116, 214, 0.1);
}

.role-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2b74d6, #3b82f6);
}

.sfdc-role-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a2a47;
    margin: 0 0 10px;
}

.sfdc-role-box p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.65;
}

/* Skills Box */
.sfdc-skills-box {
    background: #f8fbff;
    border-radius: 18px;
    padding: 40px;
    border: 1px solid #e2edfd;
    margin-top: 55px;
}

.sfdc-skills-box h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1a2a47;
    margin: 0 0 22px;
}

.sfdc-pills-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sfdc-pill {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #1e293b;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.2s;
}

.sfdc-pill:hover {
    border-color: #2b74d6;
    color: #2b74d6;
    transform: scale(1.03);
}

/* Slot Perks & Cards */
.sfdc-perks-row {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.sfdc-perks-row span {
    font-size: 14px;
    font-weight: 700;
    color: #10b981;
}

.sfdc-slot-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 34px 26px;
    text-align: center;
    border: 1px solid #e2e8f0;
    position: relative;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.sfdc-slot-card.featured {
    border: 2px solid #2b74d6;
    box-shadow: 0 14px 40px rgba(43, 116, 214, 0.16);
}

.popular-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #2b74d6;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 16px;
    border-radius: 20px;
}

.slot-badge-type {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    background: #e2e8f0;
    color: #475569;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.slot-badge-type.active {
    background: #eff6ff;
    color: #2563eb;
}

.sfdc-slot-card h4 {
    font-size: 22px;
    font-weight: 800;
    color: #1a2a47;
    margin: 0 0 10px;
}

.slot-time-text {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.slot-days-text {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 24px;
}

.sfdc-slot-btn {
    display: block;
    border: 2px solid #2b74d6;
    color: #2b74d6;
    font-weight: 700;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sfdc-slot-btn:hover, .sfdc-slot-btn.primary {
    background: #2b74d6;
    color: #ffffff;
}

/* Curriculum & Form Card */
.sfdc-curriculum-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.sfdc-curriculum-top h2 {
    font-size: 24px;
    font-weight: 800;
    color: #1a2a47;
    margin: 0;
}

.sfdc-syllabus-btn {
    background: #1a2a47;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.sfdc-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sfdc-accordion-item {
    background: #f8fbff;
    border: 1px solid #e2edfd;
    border-radius: 10px;
    padding: 16px 20px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.sfdc-accordion-item:hover {
    border-color: #2b74d6;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #1a2a47;
}

.acc-icon {
    font-weight: 800;
    font-size: 18px;
    color: #2b74d6;
}

/* STUNNING PROFESSIONAL FORM */
.sfdc-form-sticky-card {
    background: #ffffff;
    border: 1px solid #d0dcf0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(26, 42, 71, 0.12);
    position: sticky;
    top: 130px;
}

.form-card-header {
    background: linear-gradient(135deg, #1a2a47 0%, #2b74d6 100%);
    padding: 28px 30px;
    color: #ffffff;
    text-align: center;
}

.form-card-header h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 6px;
    color: #ffffff;
}

.form-card-header p {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

.sfdc-pro-form {
    padding: 30px;
}

.sfdc-input-group {
    margin-bottom: 18px;
}

.sfdc-input-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1a2a47;
    margin-bottom: 6px;
}

.sfdc-input-group label .req { color: #ef4444; }

.sfdc-input-group input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: #1e293b;
    background: #f8fafc;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.sfdc-input-group input:focus {
    border-color: #2b74d6;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(43,116,214,0.15);
}

.sfdc-checkbox-group {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.4;
}

.sfdc-checkbox-group input {
    margin-right: 6px;
    accent-color: #2b74d6;
}

.sfdc-pro-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #2b74d6 0%, #1d4ed8 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(43,116,214,0.35);
    transition: all 0.2s ease;
}

.sfdc-pro-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(43,116,214,0.45);
}

.form-trust-footer {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #64748b;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

/* Projects */
.sfdc-proj-tags-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.proj-tag-item {
    background: #ffffff;
    border: 1px solid #bfdbfe;
    color: #1e3a8a;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.sfdc-project-card {
    background: #ffffff;
    border: 1px solid #e2edfd;
    border-radius: 14px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.03);
}

.proj-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #2b74d6;
}

.sfdc-project-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a2a47;
    margin: 0 0 12px;
}

.sfdc-project-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
    .sfdc-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .sfdc-grid-2-custom, .sfdc-grid-2-curriculum { grid-template-columns: 1fr; }
    .sfdc-form-sticky-card { position: static; margin-top: 30px; }
}

@media (max-width: 768px) {
    .sfdc-grid-3, .sfdc-grid-4 { grid-template-columns: 1fr; }
    .sfdc-google-card { flex-direction: column; text-align: center; padding: 24px; }
    .sfdc-google-left { border-right: none; border-bottom: 1px solid #e2e8f0; padding-right: 0; padding-bottom: 20px; }
    .sfdc-card-white, .sfdc-card-blue, .sfdc-skills-box { padding: 24px; }
    .sfdc-curriculum-top { flex-direction: column; gap: 12px; text-align: center; }
}


.sfdc-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #2b74d6;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.sfdc-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.sfdc-section-header h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    color: #1a2a47;
    font-weight: 800;
}

.sfdc-section-header .highlight {
    color: #2b74d6;
}

/* 1. KEY FEATURES GRID */
.sfdc-key-features {
    padding: 70px 0;
    background: #ffffff;
}

.sfdc-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sfdc-feature-card {
    background: #f8fbff;
    border: 1px solid #e2edfd;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.25s ease;
}

.sfdc-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(43, 116, 214, 0.12);
    border-color: #2b74d6;
}

.sfdc-icon-wrap {
    font-size: 30px;
    margin-bottom: 12px;
}

.sfdc-feature-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a2a47;
    margin: 0;
    line-height: 1.35;
    font-family: var(--font-body, 'Inter', sans-serif);
}

/* 2. GOOGLE REVIEWS BANNER */
.sfdc-google-reviews {
    padding: 0 0 50px;
}

.sfdc-google-box {
    background: #ffffff;
    border: 1px solid #e1e8f5;
    box-shadow: 0 8px 30px rgba(26, 42, 71, 0.08);
    border-radius: 14px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.sfdc-google-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 25px;
    border-right: 1px solid #e5eaf2;
    flex-shrink: 0;
}

.google-logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.sfdc-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #1a2a47;
}

.sfdc-rating .stars {
    color: #f59e0b;
    font-size: 14px;
}

.sfdc-review-slider {
    flex: 1;
}

.review-comment {
    font-size: 15px;
    font-style: italic;
    color: #334155;
    margin: 0 0 4px;
}

.reviewer-name {
    font-size: 13px;
    font-weight: 700;
    color: #2b74d6;
}

/* 3. QUICK NAV BAR */
.sfdc-quick-nav {
    position: sticky;
    top: 70px;
    z-index: 99;
    background: #1a2a47;
    padding: 12px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.sfdc-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    overflow-x: auto;
}

.sfdc-nav-link {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    transition: all 0.2s;
}

.sfdc-nav-link:hover, .sfdc-nav-link.active {
    color: #ffffff;
    background: rgba(255,255,255,0.15);
}

.sfdc-btn-sm {
    background: #2b74d6;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.sfdc-btn-sm:hover {
    background: #3b82f6;
    color: #ffffff;
}

/* 4. OVERVIEW SECTION */
.sfdc-overview-section {
    padding: 80px 0;
    background: #f8fbff;
}

.sfdc-overview-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.sfdc-overview-card, .sfdc-apply-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #e2edfd;
    box-shadow: 0 10px 35px rgba(26,42,71,0.06);
}

.sfdc-overview-card h2 {
    font-size: 26px;
    margin-bottom: 16px;
}

.sfdc-lead-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 24px;
}

.sfdc-overview-card h3 {
    font-size: 18px;
    margin-bottom: 14px;
    color: #1a2a47;
    font-family: var(--font-body, 'Inter', sans-serif);
}

.sfdc-check-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.sfdc-check-list li {
    position: relative;
    padding-left: 28px;
    font-size: 14px;
    color: #334155;
    margin-bottom: 12px;
    line-height: 1.5;
    list-style: none !important;
}

.sfdc-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: 800;
}

.sfdc-apply-card {
    background: #eff6ff;
    border-color: #bfdbfe;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sfdc-apply-card h3 {
    font-size: 20px;
    color: #1e3a8a;
    margin-bottom: 20px;
    font-family: var(--font-body, 'Inter', sans-serif);
}

.sfdc-apply-card h3 span {
    color: #2563eb;
}

.sfdc-check-list.blue-check li::before {
    color: #2563eb;
}

.sfdc-partner-badge {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #dbeafe;
    margin-top: 24px;
}

.sfdc-partner-badge .badge-icon {
    font-size: 24px;
    background: #eff6ff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sfdc-partner-badge strong {
    display: block;
    font-size: 14px;
    color: #1e3a8a;
}

.sfdc-partner-badge span {
    font-size: 12px;
    color: #64748b;
}

/* 5. ROLES & SKILLS COVERED */
.sfdc-roles-section {
    padding: 80px 0;
    background: #ffffff;
}

.sfdc-roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.sfdc-role-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 4px solid #2b74d6;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.2s;
}

.sfdc-role-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(43, 116, 214, 0.1);
}

.sfdc-role-card h4 {
    font-size: 17px;
    font-family: var(--font-body, 'Inter', sans-serif);
    color: #1a2a47;
    margin-bottom: 10px;
}

.sfdc-role-card p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.sfdc-skills-wrapper {
    background: #f8fbff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #e2edfd;
}

.sfdc-skills-wrapper h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1a2a47;
    font-family: var(--font-body, 'Inter', sans-serif);
}

.sfdc-skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-pill {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #1e293b;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

/* 6. TRAINING SLOTS */
.sfdc-slots-section {
    padding: 80px 0;
    background: #f1f5f9;
}

.sfdc-slot-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.sfdc-slot-badges span {
    font-size: 14px;
    font-weight: 700;
    color: #10b981;
}

.sfdc-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sfdc-slot-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px 24px;
    text-align: center;
    border: 1px solid #e2e8f0;
    position: relative;
}

.sfdc-slot-card.featured {
    border: 2px solid #2b74d6;
    box-shadow: 0 12px 30px rgba(43, 116, 214, 0.15);
}

.slot-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    background: #e2e8f0;
    color: #475569;
    padding: 4px 12px;
    border-radius: 20px;
}

.slot-tag.popular {
    background: #2b74d6;
    color: #ffffff;
}

.sfdc-slot-card h4 {
    font-size: 22px;
    margin: 16px 0 8px;
    font-family: var(--font-body, 'Inter', sans-serif);
}

.slot-time {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.slot-days {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
}

.btn-slot {
    display: block;
    border: 2px solid #2b74d6;
    color: #2b74d6;
    font-weight: 700;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-slot:hover, .btn-primary-slot {
    background: #2b74d6;
    color: #ffffff;
}

/* 7. PROGRAM CURRICULUM & REQUEST INFO FORM */
.sfdc-curriculum-section {
    padding: 80px 0;
    background: #ffffff;
}

.sfdc-curriculum-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;

}

.sfdc-curriculum-header h2 {
    font-size: 26px;
    color: #1a2a47;
    margin: 0;
}

.btn-syllabus {
    background: #1a2a47;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;

}

.sfdc-curriculum-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 30px;
}

.sfdc-module-item {
    background: #f8fbff;
    border: 1px solid #e2edfd;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 10px;
    cursor: pointer;
}

.module-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a2a47;
    display: flex;
    justify-content: space-between;
}

.sfdc-enroll-card {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    padding: 30px;
    position: sticky;
    top: 130px;

}

.sfdc-enroll-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-family: var(--font-body, 'Inter', sans-serif);
}

.sfdc-form .form-field {
    margin-bottom: 14px;
}

.sfdc-form input[type="text"],
.sfdc-form input[type="email"],
.sfdc-form input[type="tel"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;

}

.form-checkbox {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 16px;
}

.sfdc-submit-btn {
    width: 100%;
    background: #2b74d6;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;

}

/* 8. SIMULATED PROJECTS */
.sfdc-projects-section {
    padding: 80px 0 100px;
    background: #f8fbff;

}

.sfdc-project-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;

}

.proj-feat {
    background: #ffffff;
    border: 1px solid #dbeafe;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    color: #1e3a8a;
}

.sfdc-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;

}

.sfdc-project-card {
    background: #ffffff;
    border: 1px solid #e2edfd;
    border-top: 4px solid #2b74d6;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);

}

.sfdc-project-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    font-family: var(--font-body, 'Inter', sans-serif);
}

.sfdc-project-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;

}

/* RESPONSIVE */
@media (max-width: 991px) {
    .sfdc-features-grid { grid-template-columns: repeat(2, 1fr); }
    .sfdc-overview-grid, .sfdc-curriculum-grid { grid-template-columns: 1fr; }
    .sfdc-roles-grid, .sfdc-slots-grid, .sfdc-projects-grid { grid-template-columns: 1fr; }
    .sfdc-google-box { flex-direction: column; text-align: center; }
    .sfdc-google-brand { border-right: none; border-bottom: 1px solid #e5eaf2; padding-right: 0; padding-bottom: 15px; }
}

/* =========================================================
   AUTOMATION TESTING CAREER PAGE STYLES
   ========================================================= */
.qa-hero-section {
    background: linear-gradient(135deg, #0b1528 0%, #1a2a47 60%, #1e3a8a 100%);
    padding: 80px 0 90px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.qa-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 45px;
    align-items: center;
}

.qa-pill-badge {
    display: inline-block;
    background: rgba(14, 165, 233, 0.2);
    border: 1px solid rgba(56, 189, 248, 0.4);
    color: #38bdf8;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.qa-hero-title {
    font-size: clamp(32px, 4.2vw, 50px);
    font-weight: 800;
    line-height: 1.18;
    color: #ffffff;
    margin: 0 0 20px;
}

.qa-highlight-text {
    color: #38bdf8;
    background: linear-gradient(90deg, #38bdf8, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.qa-hero-subtitle {
    font-size: 17px;
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 500;
}

.qa-hero-paragraph {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.65;
    margin-bottom: 30px;
}

.qa-hero-paragraph strong {
    color: #ffffff;
}

.btn-qa-primary {
    display: inline-block;
    background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.4);
    transition: all 0.25s ease;
}

.btn-qa-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(2, 132, 199, 0.55);
    color: #ffffff;
}

/* Right Hero Image Card & Badges */
.qa-hero-image-wrap {
    position: relative;
}

.qa-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.qa-image-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.qa-badge-overlay {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.badge-icon-star {
    font-size: 26px;
}

.qa-badge-overlay strong {
    display: block;
    font-size: 13px;
    color: #fbbf24;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.qa-badge-overlay span {
    display: block;
    font-size: 11px;
    color: #cbd5e1;
    letter-spacing: 0.5px;
}

/* Floating Tool Pills */
.floating-tool-pill {
    position: absolute;
    background: #ffffff;
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-tool-pill span {
    font-size: 11px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 6px;
    color: #ffffff;
}

.pill-se { top: 30px; left: 20px; }
.pill-se span { background: #0284c7; }
.pill-sql { top: 120px; right: 20px; }
.pill-sql span { background: #d97706; }
.pill-api { bottom: 90px; left: 20px; }
.pill-api span { background: #16a34a; }

/* Section 2: Program Highlights */
.qa-highlights-section {
    padding: 90px 0;
    background: #f8fafc;
}

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

.qa-eyebrow {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #0284c7;
    text-transform: uppercase;
}

.qa-sec-title {
    font-size: clamp(28px, 3.8vw, 40px);
    font-weight: 800;
    color: #0f172a;
    margin: 8px 0 0;
    letter-spacing: 0.5px;
}

.qa-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.qa-highlight-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    border: 1px solid #e2e8f0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.qa-highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(2, 132, 199, 0.14);
}

.qa-card-header-bar {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.header-icon {
    font-size: 26px;
    font-weight: 800;
}

.green-bar { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.cyan-bar { background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%); }
.orange-bar { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.purple-bar { background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%); }
.blue-bar { background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); }
.magenta-bar { background: linear-gradient(135deg, #ec4899 0%, #be185d 100%); }

.qa-card-body {
    padding: 28px 24px;
    text-align: center;
}

.qa-card-body h4 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px;
}

.qa-card-body p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Section 3: CTA Banner Section */
.qa-cta-banner-section {
    padding: 0 0 90px;
    background: #f8fafc;
}

.qa-cta-box {
    background: linear-gradient(135deg, #0f172a 0%, #0284c7 60%, #1d4ed8 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(2, 132, 199, 0.25);
    position: relative;
    overflow: hidden;
}

.qa-cta-box h2 {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0 0 14px;
    color: #ffffff;
}

.qa-cta-box p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 32px;
}

.qa-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-white {
    background: #ffffff;
    color: #0284c7;
    font-size: 15px;
    font-weight: 800;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
}

.btn-cta-white:hover {
    background: #f8fafc;
    color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-cta-outline {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.5);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    padding: 13px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-cta-outline:hover {
    background: #ffffff;
    color: #0f172a;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Section 4: Form Styling */
.qa-form-wrapper {
    background: #ffffff;
    border: 1px solid #d0dcf0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(15, 23, 42, 0.1);
}

.qa-form-header {
    background: linear-gradient(135deg, #0f172a 0%, #0284c7 100%);
    padding: 30px;
    color: #ffffff;
    text-align: center;
}

.qa-form-header h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 6px;
    color: #ffffff;
}

.qa-form-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.qa-pro-form {
    padding: 35px 40px;
}

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

.qa-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.qa-form-group label .req { color: #ef4444; }

.qa-form-group input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    font-size: 14px;
    color: #0f172a;
    background: #f8fafc;
    outline: none;
    box-sizing: border-box;
    transition: all 0.2s;
}

.qa-form-group input:focus {
    border-color: #0284c7;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.qa-checkbox-group {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 24px;
}

.qa-checkbox-group input {
    accent-color: #0284c7;
    margin-right: 8px;
}

.qa-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #0284c7 0%, #1d4ed8 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.35);
    transition: all 0.2s ease;
}

.qa-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(2, 132, 199, 0.45);
}

.qa-form-footer {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #64748b;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

/* Responsive */
@media (max-width: 991px) {
    .qa-hero-grid { grid-template-columns: 1fr; }
    .qa-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .qa-cards-grid { grid-template-columns: 1fr; }
    .qa-hero-section { padding: 50px 0; }
    .qa-cta-box { padding: 40px 20px; }
    .qa-pro-form { padding: 24px 20px; }
    .qa-cta-buttons { flex-direction: column; width: 100%; }
    .btn-cta-white, .btn-cta-outline { width: 100%; text-align: center; }
}