* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Poppins', sans-serif;
        background-color: #000000;
        color: #E0E0E0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    html {
        scroll-behavior: smooth;
    }

    /* Hero Section */
    .consultation-hero {
        position: relative;
        min-height: 50vh;
        display: flex;
        align-items: center;
        background: #000000;
        overflow: hidden;
        padding: 8rem 2rem 4rem;
    }

    .consultation-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        background: radial-gradient(ellipse at top, rgba(30, 115, 190, 0.15), transparent 60%);
        pointer-events: none;
    }

    .hero-container {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
        text-align: center;
    }

    .hero-badge {
        display: inline-block;
        background: rgba(30, 115, 190, 0.1);
        border: 1px solid rgba(30, 115, 190, 0.3);
        color: #1E73BE;
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        color: #FFFFFF;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .hero-gradient-text {
        background: linear-gradient(135deg, #1E73BE, #00C2A0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-description {
        font-size: 1.3rem;
        color: #B0B0B0;
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    .hero-features {
        display: flex;
        gap: 2rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 2rem;
    }

    .hero-feature {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: #E0E0E0;
        font-size: 1.1rem;
    }

    .hero-feature i {
        color: #00C2A0;
        font-size: 1.3rem;
    }

    /* Booking Section */
    .booking-section {
        background: #000000;
        padding: 4rem 2rem;
        flex: 1;
    }

    .booking-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .booking-card {
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(15, 15, 15, 0.6));
        border: 1px solid rgba(30, 115, 190, 0.2);
        border-radius: 24px;
        padding: 3rem;
        position: relative;
        overflow: hidden;
    }

    .booking-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(30, 115, 190, 0.1), transparent);
        filter: blur(80px);
        pointer-events: none;
    }

    /* Progress Steps */
    .progress-steps {
        display: flex;
        justify-content: space-between;
        margin-bottom: 3rem;
        position: relative;
        z-index: 1;
    }

    .progress-step {
        flex: 1;
        text-align: center;
        position: relative;
    }

    .progress-step-number {
        width: 50px;
        height: 50px;
        background: rgba(30, 115, 190, 0.2);
        border: 2px solid rgba(30, 115, 190, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 0.75rem;
        color: #B0B0B0;
        font-weight: 700;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

    .progress-step.active .progress-step-number {
        background: linear-gradient(135deg, #1E73BE, #00C2A0);
        border-color: transparent;
        color: #FFFFFF;
        transform: scale(1.1);
    }

    .progress-step.completed .progress-step-number {
        background: rgba(0, 194, 160, 0.2);
        border-color: #00C2A0;
        color: #00C2A0;
    }

    .progress-step-label {
        font-size: 0.9rem;
        color: #B0B0B0;
        font-weight: 500;
    }

    .progress-step.active .progress-step-label {
        color: #1E73BE;
        font-weight: 600;
    }

    /* Form Steps */
    .form-step {
        display: none;
        animation: fadeIn 0.5s ease;
        position: relative;
        z-index: 1;
    }

    .form-step.active {
        display: block;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .step-title {
        font-size: 2rem;
        font-weight: 700;
        color: #FFFFFF;
        margin-bottom: 1rem;
    }

    .step-subtitle {
        font-size: 1.1rem;
        color: #B0B0B0;
        margin-bottom: 2.5rem;
    }

    /* Form Groups */
    .form-group {
        margin-bottom: 2rem;
    }

    .form-group label {
        display: block;
        color: #E0E0E0;
        font-weight: 600;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .form-group label .required {
        color: #EF4444;
        margin-left: 0.25rem;
    }

    /* Radio Options */
    .radio-options {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .radio-option {
        background: rgba(26, 26, 26, 0.4);
        border: 2px solid rgba(30, 115, 190, 0.2);
        border-radius: 16px;
        padding: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }

    .radio-option:hover {
        border-color: rgba(30, 115, 190, 0.5);
        background: rgba(30, 115, 190, 0.05);
        transform: translateY(-3px);
    }

    .radio-option.selected {
        border-color: #1E73BE;
        background: rgba(30, 115, 190, 0.1);
    }

    .radio-option input[type="radio"] {
        display: none;
    }

    .radio-option-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #1E73BE, #00C2A0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .radio-option-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: #FFFFFF;
        margin-bottom: 0.5rem;
    }

    .radio-option-description {
        font-size: 0.9rem;
        color: #B0B0B0;
        line-height: 1.6;
    }

    /* Input Fields */
    .input-field,
    .textarea-field,
    .select-field {
        width: 100%;
        padding: 1rem 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(30, 115, 190, 0.3);
        border-radius: 12px;
        color: #FFFFFF;
        font-family: 'Poppins', sans-serif;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .input-field:focus,
    .textarea-field:focus,
    .select-field:focus {
        outline: none;
        border-color: #1E73BE;
        background: rgba(30, 115, 190, 0.1);
    }

    .select-field option {
        background: #1a1a1a;
        color: #FFFFFF;
        padding: 1rem;
    }

    .textarea-field {
        min-height: 120px;
        resize: vertical;
    }

    /* Date & Time Selection */
    .datetime-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .time-slots {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 1rem;
    }

    .time-slot {
        background: rgba(26, 26, 26, 0.4);
        border: 2px solid rgba(30, 115, 190, 0.2);
        border-radius: 12px;
        padding: 1rem;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 600;
        color: #E0E0E0;
    }

    .time-slot:hover {
        border-color: rgba(30, 115, 190, 0.5);
        background: rgba(30, 115, 190, 0.05);
    }

    .time-slot.selected {
        border-color: #1E73BE;
        background: rgba(30, 115, 190, 0.1);
        color: #1E73BE;
    }

    /* Navigation Buttons */
    .form-navigation {
        display: flex;
        gap: 1rem;
        justify-content: space-between;
        margin-top: 3rem;
    }

    .btn {
        padding: 1rem 2.5rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        font-family: 'Poppins', sans-serif;
    }

    .btn-back {
        background: rgba(30, 115, 190, 0.1);
        color: #1E73BE;
        border: 2px solid rgba(30, 115, 190, 0.3);
    }

    .btn-back:hover {
        background: rgba(30, 115, 190, 0.2);
        transform: translateX(-5px);
    }

    .btn-next {
        background: linear-gradient(135deg, #1E73BE, #00C2A0);
        color: #FFFFFF;
        box-shadow: 0 10px 30px rgba(30, 115, 190, 0.4);
    }

    .btn-next:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(30, 115, 190, 0.6);
    }

    .btn-next:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

    /* Success Message */
    .success-container {
        text-align: center;
        padding: 3rem 0;
    }

    .success-icon {
        font-size: 5rem;
        color: #00C2A0;
        margin-bottom: 2rem;
    }

    .success-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #FFFFFF;
        margin-bottom: 1rem;
    }

    .success-message {
        font-size: 1.2rem;
        color: #B0B0B0;
        margin-bottom: 3rem;
        line-height: 1.8;
    }

    .summary-box {
        background: rgba(26, 26, 26, 0.4);
        border: 1px solid rgba(30, 115, 190, 0.2);
        border-radius: 16px;
        padding: 2rem;
        text-align: left;
        margin-bottom: 2rem;
    }

    .summary-item {
        display: flex;
        justify-content: space-between;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .summary-item:last-child {
        border-bottom: none;
    }

    .summary-label {
        color: #B0B0B0;
        font-weight: 500;
    }

    .summary-value {
        color: #FFFFFF;
        font-weight: 600;
        text-align: right;
    }

    /* Responsive */
    @media (max-width: 968px) {
        .consultation-hero {
            padding: 6rem 1.5rem 3rem;
        }

        .hero-title {
            font-size: 2.5rem;
        }

        .hero-features {
            flex-direction: column;
            align-items: center;
        }

        .booking-card {
            padding: 2rem 1.5rem;
        }

        .radio-options {
            grid-template-columns: 1fr;
        }

        .datetime-grid {
            grid-template-columns: 1fr;
        }

        .time-slots {
            grid-template-columns: repeat(2, 1fr);
        }

        .step-title {
            font-size: 1.5rem;
        }

        .form-navigation {
            flex-direction: column;
        }

        .btn {
            width: 100%;
            justify-content: center;
        }
    }