﻿.appointment-section {
    background: #f4f7ff;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.gradient-text {
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-list li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
}

.premium-list i {
    color: #4e54c8;
    margin-right: 8px;
}

/* Form Card */
.appointment-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .appointment-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 35px rgba(0, 0, 0, 0.15);
    }

.form-title {
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

/* Premium Inputs */
.premium-input {
    border: 2px solid #e5e7f1;
    border-radius: 10px;
    padding: 14px 16px;
    transition: all 0.3s ease;
}

    .premium-input:focus {
        border-color: #6c63ff;
        box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.15);
        outline: none;
    }

    /* Custom Date/Time Picker Icons */
    .premium-input::-webkit-calendar-picker-indicator {
        filter: invert(40%) sepia(70%) saturate(500%) hue-rotate(200deg);
        cursor: pointer;
        transition: transform 0.2s ease;
    }

        .premium-input::-webkit-calendar-picker-indicator:hover {
            transform: scale(1.15);
        }

/* Button */
.btn-appointment {
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    border: none;
    color: #fff;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .btn-appointment:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(78, 84, 200, 0.3);
    }

/* Animations */
.fade-in-left {
    animation: fadeInLeft 0.8s ease-in-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-in-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section background */
.appointment-section {
    background: linear-gradient(135deg, #f0f4ff, #ffffff);
    position: relative;
    overflow: hidden;
}

    /* Highlight text */
    .appointment-section .highlight {
        color: #0d6efd;
        position: relative;
    }

/* Form card */
.form-card {
    transition: all 0.4s ease;
}

    .form-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }

/* Inputs */
.stylish-input {
    height: 55px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 12px 18px;
    transition: all 0.3s ease;
}

    .stylish-input:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 10px rgba(13,110,253,0.25);
    }

/* Button */
.stylish-btn {
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .stylish-btn:hover {
        background: linear-gradient(90deg, #6610f2, #0d6efd);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-left {
    animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 1s ease forwards;
}
