
    /* =========================================
       SECTION HEADER - MEDICAL STYLE
    ========================================= */
    .medical-section-header {
        text-align: center;
        margin-bottom: var(--space-2xl);
    }

    .medical-subheading {
        display: block;
        color: var(--emerald);
        font-weight: 600;
        font-size: var(--text-sm);
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: var(--space-sm);
        position: relative;
    }

    .medical-subheading::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: var(--gradient-emerald);
        border-radius: 3px;
    }

    .medical-section-header h2 {
        font-size: var(--text-3xl);
        color: var(--deep-blue);
        margin-bottom: var(--space-md);
        position: relative;
        display: inline-block;
    }

    .medical-section-header h2::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: var(--gradient-primary);
        border-radius: 4px;
    }

    .medical-section-header p {
        font-size: var(--text-lg);
        color: var(--gray-mid);
        max-width: 700px;
        margin: var(--space-xl) auto 0;
        line-height: 1.7;
    }

    /* =========================================
       PREMIUM MEDICAL CONTACT FORM SECTION
    ========================================= */
    .medical-form-section {
        padding: var(--space-3xl) 0;
        background: var(--off-white);
    }

    .medical-contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
        align-items: start;
    }

    .medical-form-container {
        background: white;
        border-radius: var(--border-radius);
        padding: var(--space-2xl);
        box-shadow: var(--shadow-medium);
        position: relative;
        overflow: hidden;
    }

    .medical-form-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient-primary);
        z-index: 1;
    }

    .medical-form-header {
        margin-bottom: var(--space-xl);
    }

    .medical-form-header h3 {
        font-size: var(--text-2xl);
        color: var(--deep-blue);
        margin-bottom: var(--space-sm);
    }

    .medical-form-header p {
        color: var(--gray-mid);
        line-height: 1.7;
        font-size: var(--text-base);
    }

    .medical-form-group {
        margin-bottom: var(--space-lg);
    }

    .medical-form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .medical-form-label {
        display: block;
        margin-bottom: var(--space-sm);
        font-weight: 600;
        color: var(--deep-blue);
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: var(--text-sm);
    }

    .medical-form-label i {
        color: var(--emerald);
        font-size: var(--text-base);
    }

    .medical-form-control {
        width: 100%;
        padding: 16px 20px;
        border: 2px solid var(--gray-light);
        border-radius: var(--border-radius-sm);
        font-family: 'Inter', sans-serif;
        font-size: var(--text-base);
        transition: var(--transition-base);
        background: var(--beige);
        color: var(--gray-dark);
    }

    .medical-form-control:focus {
        outline: none;
        border-color: var(--emerald);
        box-shadow: 0 0 0 4px rgba(63, 167, 150, 0.15);
        background: white;
    }

    .medical-form-control::placeholder {
        color: var(--gray-mid);
        opacity: 0.7;
    }

    .medical-form-control.select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%237d8f8a' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 20px center;
        background-size: 16px;
    }

    textarea.medical-form-control {
        min-height: 160px;
        resize: vertical;
        line-height: 1.6;
    }

    .medical-submit-button {
        width: 100%;
        padding: 18px;
        background: var(--emerald) !important;
        color: white;
        border: none;
        border-radius: var(--border-radius-sm);
        font-family: 'Inter', sans-serif;
        font-size: var(--text-lg);
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition-smooth);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .medical-submit-button:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-medium);
        background: var(--gradient-emerald);
    }

    .medical-submit-button:active {
        transform: translateY(-1px);
    }

    /* =========================================
       MEDICAL CONTACT DETAILS SECTION
    ========================================= */
    .medical-contact-details {
        background: white;
        border-radius: var(--border-radius);
        padding: var(--space-2xl);
        box-shadow: var(--shadow-medium);
    }

    .medical-details-header {
        margin-bottom: var(--space-xl);
        padding-bottom: var(--space-lg);
        border-bottom: 1px solid var(--gray-light);
    }

    .medical-details-header h3 {
        font-size: var(--text-2xl);
        color: var(--deep-blue);
        margin-bottom: var(--space-sm);
    }

    .medical-details-header p {
        color: var(--gray-mid);
        line-height: 1.7;
        font-size: var(--text-base);
    }

    .medical-contact-info {
        margin-bottom: var(--space-xl);
    }

    .medical-info-item {
        display: flex;
        align-items: flex-start;
        gap: var(--space-md);
        margin-bottom: var(--space-lg);
        padding-bottom: var(--space-lg);
        border-bottom: 1px solid var(--gray-light);
    }

    .medical-info-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .medical-info-icon {
        width: 56px;
        height: 56px;
        background: var(--gradient-emerald);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        color: white;
        flex-shrink: 0;
    }

    .medical-info-content h4 {
        font-size: var(--text-lg);
        color: var(--deep-blue);
        margin-bottom: 6px;
    }

    .medical-info-content p {
        color: var(--gray-mid);
        line-height: 1.6;
        margin-bottom: 5px;
        font-size: var(--text-base);
    }

    .medical-info-content a {
        color: var(--emerald);
        font-weight: 600;
        transition: var(--transition-base);
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: var(--text-sm);
    }

    .medical-info-content a:hover {
        color: var(--primary-teal);
        gap: 10px;
    }

    .medical-business-hours {
        background: rgba(63, 167, 150, 0.05);
        border-radius: var(--border-radius-sm);
        padding: var(--space-xl);
        margin-top: var(--space-xl);
        border: 1px solid rgba(63, 167, 150, 0.1);
    }

    .medical-business-hours h4 {
        font-size: var(--text-lg);
        color: var(--deep-blue);
        margin-bottom: var(--space-md);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .medical-hours-table {
        width: 100%;
    }

    .medical-hours-row {
        display: flex;
        justify-content: space-between;
        padding: 14px 0;
        border-bottom: 1px solid rgba(63, 167, 150, 0.1);
    }

    .medical-hours-row:last-child {
        border-bottom: none;
    }

    .medical-day {
        color: var(--gray-dark);
        font-weight: 500;
        font-size: var(--text-base);
    }

    .medical-time {
        color: var(--gray-mid);
        font-weight: 500;
        font-size: var(--text-base);
    }

    .medical-time.closed {
        color: var(--error);
        font-weight: 600;
    }

    .medical-hours-note {
        margin-top: var(--space-lg);
        padding: var(--space-md);
        background: rgba(15, 61, 46, 0.08);
        border-radius: var(--border-radius-sm);
        border-left: 4px solid var(--emerald);
    }

    .medical-hours-note p {
        color: var(--deep-blue);
        font-size: var(--text-sm);
        line-height: 1.6;
        margin-bottom: 0;
    }

    .medical-hours-note i {
        color: var(--emerald);
        margin-right: 8px;
    }

    /* =========================================
       MEDICAL EMERGENCY NOTICE
    ========================================= */
    .medical-emergency-notice {
        padding: var(--space-2xl) 0;
        background: linear-gradient(135deg, #dc3545, #c82333);
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .medical-emergency-content {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .medical-emergency-icon {
        width: 90px;
        height: 90px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto var(--space-lg);
        font-size: 2.5rem;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .medical-emergency-content h2 {
        font-size: var(--text-3xl);
        color: white;
        margin-bottom: var(--space-md);
    }

    .medical-emergency-content p {
        font-size: var(--text-lg);
        color: rgba(255, 255, 255, 0.95);
        line-height: 1.8;
        margin-bottom: var(--space-lg);
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .medical-emergency-numbers {
        display: flex;
        justify-content: center;
        gap: var(--space-lg);
        flex-wrap: wrap;
        margin-top: var(--space-xl);
    }

    .medical-emergency-number {
        background: rgba(255, 255, 255, 0.15);
        padding: 16px 32px;
        border-radius: 50px;
        font-weight: 600;
        font-size: var(--text-base);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        transition: var(--transition-base);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .medical-emergency-number:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-3px);
    }

    /* =========================================
       RESPONSIVE DESIGN
    ========================================= */
    @media (max-width: 1200px) {
        .medical-contact-hero h1 {
            font-size: var(--text-4xl);
        }

        .medical-section-header h2 {
            font-size: var(--text-2xl);
        }

        .medical-contact-container {
            gap: var(--space-lg);
        }
    }

    @media (max-width: 992px) {
        .medical-contact-container {
            grid-template-columns: 1fr;
        }

        .medical-contact-methods {
            gap: var(--space-lg);
        }

        .medical-contact-method {
            min-width: 170px;
        }

        .medical-form-row {
            grid-template-columns: 1fr;
            gap: var(--space-md);
        }
    }

    @media (max-width: 768px) {
        .medical-contact-hero {
            padding: var(--space-2xl) 0;
        }

        .medical-contact-hero h1 {
            font-size: var(--text-3xl);
        }

        .medical-form-section {
            padding: var(--space-2xl) 0;
        }

        .medical-section-header h2 {
            font-size: var(--text-xl);
        }

        .medical-form-container,
        .medical-contact-details {
            padding: var(--space-xl) var(--space-lg);
        }

        .medical-info-item {
            flex-direction: column;
            text-align: center;
            gap: var(--space-sm);
        }

        .medical-info-icon {
            margin: 0 auto;
        }

        .medical-emergency-numbers {
            flex-direction: column;
            align-items: center;
        }

        .medical-emergency-number {
            width: 100%;
            max-width: 300px;
            text-align: center;
            justify-content: center;
        }
    }

    @media (max-width: 576px) {
        .medical-contact-hero h1 {
            font-size: var(--text-2xl);
        }

        .medical-section-header h2 {
            font-size: var(--text-lg);
        }

        .medical-hero-description {
            font-size: var(--text-base);
        }

        .medical-contact-methods {
            flex-direction: column;
            align-items: center;
        }

        .medical-contact-method {
            width: 100%;
            max-width: 300px;
        }

        .medical-form-container {
            padding: var(--space-lg) var(--space-md);
        }

        .medical-emergency-content h2 {
            font-size: var(--text-xl);
        }

        .medical-emergency-content p {
            font-size: var(--text-base);
        }
    }

    /* Animation Classes */
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Custom Checkbox */
    .medical-checkbox-group {
        display: flex;
        align-items: flex-start;
        gap: var(--space-sm);
        margin-bottom: var(--space-lg);
    }

    .medical-checkbox-group input[type="checkbox"] {
        margin-top: 5px;
        width: 18px;
        height: 18px;
        accent-color: var(--emerald);
        cursor: pointer;
    }

    .medical-checkbox-group label {
        font-size: var(--text-sm);
        color: var(--gray-mid);
        line-height: 1.6;
        cursor: pointer;
    }

    .medical-checkbox-group a {
        color: var(--emerald);
        font-weight: 600;
        text-decoration: none;
        transition: var(--transition-base);
    }

    .medical-checkbox-group a:hover {
        color: var(--primary-teal);
        text-decoration: underline;
    }

    /* Scrollbar Styling */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: var(--beige);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--emerald);
        border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--teal-light);
    }
    
    
    .social-icons a{
        background-color: var(--emerald) !important;
        color: #fff;
    }
        .social-icons a:hover{
        background-color:green !important;
        color: #fff;
    }
