  /* Stafflinks Contact Page Styles */
    :root {
        --brand-primary: #eb6f46;
        --brand-secondary: #ffc107;
        --brand-accent: #dc3545;

        --brand-primary-dark: #cf5c35;
        --brand-primary-soft: #fff1eb;
        --brand-secondary-soft: #fff8db;
        --brand-accent-soft: #fdecef;

        --text-dark: #2b2b2b;
        --text-muted: #6c757d;
        --border-light: #ececec;
        --white: #ffffff;
        --shadow-soft: 0 10px 30px rgba(235, 111, 70, 0.1);
        --shadow-hover: 0 16px 40px rgba(220, 53, 69, 0.14);
    }

    html {
        scroll-behavior: smooth;
    }

    .contact-hero {
        background: linear-gradient(135deg,
                var(--brand-primary-dark) 0%,
                var(--brand-primary) 55%,
                var(--brand-accent) 100%);
        color: #fff;
        padding: 100px 0 80px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .contact-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at top right,
                rgba(255, 193, 7, 0.16),
                transparent 30%),
            radial-gradient(circle at bottom left,
                rgba(255, 255, 255, 0.08),
                transparent 35%),
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="white" opacity="0.05"/></svg>');
        background-size: cover;
    }

    .hero-actions .btn {
        border-radius: 12px;
        padding: 14px 26px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .hero-actions .btn-primary-custom {
        background: var(--brand-secondary);
        color: #3d2a00;
        border: none;
    }

    .hero-actions .btn-primary-custom:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(255, 193, 7, 0.25);
        color: #3d2a00;
    }

    .hero-actions .btn-outline-light {
        border-width: 2px;
    }

    .hero-actions .btn-outline-light:hover {
        transform: translateY(-2px);
    }

    .support-badge {
        background: var(--brand-secondary-soft);
        color: var(--brand-primary-dark);
        padding: 8px 20px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 700;
        display: inline-block;
        margin-bottom: 20px;
        border: 1px solid rgba(255, 193, 7, 0.35);
    }

    .contact-card,
    .feature-card,
    .stat-card,
    .faq-card {
        background: #fff;
        border-radius: 16px;
        padding: 30px;
        box-shadow: var(--shadow-soft);
        height: 100%;
        transition: all 0.3s ease;
        border: 1px solid rgba(235, 111, 70, 0.08);
    }

    .contact-card {
        border-top: 4px solid var(--brand-primary);
    }

    .contact-card:hover,
    .feature-card:hover,
    .stat-card:hover,
    .faq-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

    .contact-icon,
    .feature-icon,
    .stat-icon {
        width: 70px;
        height: 70px;
        border-radius: 14px;
        background: linear-gradient(135deg,
                var(--brand-primary-soft) 0%,
                var(--brand-secondary-soft) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        margin: 0 auto 20px;
        color: var(--brand-primary);
        box-shadow: inset 0 0 0 1px rgba(235, 111, 70, 0.08);
    }

    .feature-icon,
    .stat-icon {
        margin: 0 0 18px;
        width: 62px;
        height: 62px;
        font-size: 24px;
    }

    .stats-strip {
        margin-top: -35px;
        position: relative;
        z-index: 3;
    }

    .stat-card {
        text-align: center;
        padding: 24px 18px;
    }

    .stat-number {
        font-size: 2rem;
        font-weight: 800;
        color: var(--brand-primary);
        line-height: 1;
        margin-bottom: 8px;
    }

    .contact-form-container {
        background: white;
        border-radius: 16px;
        padding: 40px;
        box-shadow: 0 10px 40px rgba(235, 111, 70, 0.1);
        border: 1px solid rgba(235, 111, 70, 0.08);
    }

    /* Unified Input & Select Styling */
    .contact-form .form-control,
    .contact-form .form-select {
        border-radius: 10px;
        padding: 14px 16px;
        font-size: 16px;
        border: 2px solid var(--border-light);
        transition: all 0.3s ease;
        width: 100%;
        color: #333;
        background-color: #fff;
    }

    .contact-form .form-control:focus,
    .contact-form .form-select:focus {
        border-color: var(--brand-primary);
        box-shadow: 0 0 0 0.2rem rgba(235, 111, 70, 0.18);
        outline: none;
    }

    .contact-form textarea.form-control {
        min-height: 160px;
        resize: vertical;
    }

    .contact-form .form-help {
        font-size: 13px;
        color: var(--text-muted);
        margin-top: 6px;
    }

    .contact-form .form-select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23EB6F46' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 16px center;
        background-size: 16px 12px;
        padding-right: 45px;
    }

    .contact-form select.form-control,
    .contact-form select.form-control:focus,
    .contact-form select.form-control option {
        color: #333 !important;
        background-color: #fff !important;
    }

    .btn-healthcare {
        background: linear-gradient(135deg,
                var(--brand-primary) 0%,
                var(--brand-accent) 100%);
        color: #fff;
        border: none;
        padding: 16px 40px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .btn-healthcare:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(220, 53, 69, 0.25);
        color: #fff;
    }

    .contact-hours {
        background: linear-gradient(135deg,
                var(--brand-primary-soft) 0%,
                #fffaf1 100%);
        border-radius: 12px;
        padding: 25px;
        margin-top: 40px;
        border-left: 4px solid var(--brand-primary);
        box-shadow: 0 8px 24px rgba(235, 111, 70, 0.06);
    }

    .contact-hours h5 {
        color: var(--brand-primary-dark);
        margin-bottom: 15px;
        font-weight: 700;
    }

    .contact-hours ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .contact-hours li {
        padding: 8px 0;
        color: #666;
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .contact-hours li:last-child {
        border-bottom: none;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-label {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--brand-primary-dark);
        font-weight: 700;
    }

    .contact-detail h5.text-primary,
    .text-primary {
        color: var(--brand-primary) !important;
    }

    .contact-detail h5.text-success,
    .text-success {
        color: var(--brand-accent) !important;
    }

    .contact-detail h5.text-info,
    .text-info {
        color: #e79c00 !important;
    }

    .form-check-input:checked {
        background-color: var(--brand-primary);
        border-color: var(--brand-primary);
    }

    .form-check-input:focus {
        box-shadow: 0 0 0 0.2rem rgba(235, 111, 70, 0.18);
        border-color: var(--brand-primary);
    }

    a {
        color: var(--brand-primary);
    }

    a:hover {
        color: var(--brand-accent);
    }

    .bg-light {
        background-color: #fffaf7 !important;
    }

    .section-subtle {
        background: linear-gradient(180deg, #fff 0%, #fff9f6 100%);
    }

    .reason-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 18px;
    }

    .reason-badges span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--brand-primary-soft);
        border: 1px solid rgba(235, 111, 70, 0.12);
        color: var(--brand-primary-dark);
        padding: 10px 14px;
        border-radius: 999px;
        font-size: 14px;
        font-weight: 600;
    }

    .char-counter {
        text-align: right;
        font-size: 13px;
        color: var(--text-muted);
        margin-top: 6px;
    }

    .faq-accordion .accordion-item {
        border: none;
        border-radius: 14px !important;
        overflow: hidden;
        box-shadow: var(--shadow-soft);
        margin-bottom: 16px;
    }

    .faq-accordion .accordion-button {
        font-weight: 700;
        color: var(--text-dark);
        padding: 20px 22px;
        background: #fff;
        box-shadow: none;
    }

    .faq-accordion .accordion-button:not(.collapsed) {
        color: var(--brand-primary-dark);
        background: var(--brand-primary-soft);
    }

    .faq-accordion .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
    }

    .faq-accordion .accordion-body {
        padding: 20px 22px;
        color: #666;
    }

    .quick-contact-floating {
        position: fixed;
        right: 18px;
        bottom: 18px;
        z-index: 99;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .quick-contact-floating a {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
        font-size: 20px;
        transition: all 0.3s ease;
    }

    .quick-contact-floating a:hover {
        transform: translateY(-3px) scale(1.04);
        color: #fff;
    }

    .quick-call {
        background: linear-gradient(135deg,
                var(--brand-primary),
                var(--brand-accent));
    }

    .quick-mail {
        background: linear-gradient(135deg, #e79c00, var(--brand-secondary));
        color: #4a3500 !important;
    }

    .contact-note-box {
        background: var(--brand-secondary-soft);
        border: 1px solid rgba(255, 193, 7, 0.25);
        padding: 18px 20px;
        border-radius: 12px;
        color: #5f4b00;
        margin-bottom: 24px;
    }

    @media (max-width: 768px) {
        .contact-hero {
            padding: 70px 0 60px;
        }

        .contact-card,
        .feature-card,
        .faq-card {
            padding: 25px 20px;
            margin-bottom: 20px;
        }

        .contact-form-container {
            padding: 30px 20px;
        }

        .contact-icon,
        .feature-icon,
        .stat-icon {
            width: 60px;
            height: 60px;
            font-size: 24px;
        }

        .stats-strip {
            margin-top: 30px;
        }
    }

    @media (max-width: 576px) {
        .contact-hero h1 {
            font-size: 2rem;
        }

        .contact-hero p.lead {
            font-size: 1.05rem;
        }

        .btn-healthcare {
            width: 100%;
            padding: 14px 20px;
        }

        .contact-hours li {
            flex-direction: column;
            gap: 4px;
        }

        .hero-actions .btn {
            width: 100%;
        }
    }

    #customToast {
        position: fixed;
        top: 20px;
        right: 20px;
        background: linear-gradient(135deg, #EB6F46, #ff946d);
        color: #fff;
        padding: 14px 20px;
        border-radius: 12px;
        font-weight: 500;
        z-index: 9999;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        animation: slideIn 0.4s ease;
    }

    .faq-accordion .accordion-collapse {
        overflow: hidden;
        transition: height 0.4s ease;
    }

    .faq-accordion .accordion-button {
        position: relative;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .faq-accordion .accordion-button::after {
        transition: transform 0.3s ease;
    }

    .faq-accordion .accordion-button:not(.collapsed)::after {
        transform: rotate(-180deg);
    }

    .faq-accordion .accordion-body {
        padding: 20px 22px;
        color: #666;
        line-height: 1.7;
    }

    @keyframes slideIn {
        from {
            transform: translateX(120%);
            opacity: 0;
        }

        to {
            transform: translateX(0);
            opacity: 1;
        }
    }