﻿.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* Headings */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

    .section-title span {
        color: #0d6efd;
    }

.section-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #555;
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
}

    .contact-info li {
        font-size: 1rem;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        color: #333;
        animation: fadeIn 1s ease both;
    }

        .contact-info li:nth-child(1) {
            animation-delay: 0.2s;
        }

        .contact-info li:nth-child(2) {
            animation-delay: 0.4s;
        }

        .contact-info li:nth-child(3) {
            animation-delay: 0.6s;
        }

    .contact-info i {
        color: #0d6efd;
        margin-right: 10px;
        font-size: 1.2rem;
    }

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: fadeIn 1s ease 0.8s both;
}

/* Form Card */
.form-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease 1s both;
}

    .form-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    }

.form-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}

.form-control {
    border-radius: 8px;
    padding: 14px 16px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .form-control:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 3px rgba(13,110,253,0.2);
    }

.btn-submit {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

    .btn-submit i {
        margin-right: 6px;
    }

    .btn-submit:hover {
        background: #084298;
        transform: translateY(-2px);
    }

/* ===== Animations (Framer Motion style in CSS) ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Apply animation classes */
.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 1s ease forwards;
}


/* 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;
}

/* Premium input style */
.premium-input {
    background: #fdfdfd;
    cursor: pointer;
}

    .premium-input::-webkit-calendar-picker-indicator {
        filter: invert(30%) sepia(60%) saturate(500%) hue-rotate(200deg);
        cursor: pointer;
        transition: transform 0.2s ease;
    }

        .premium-input::-webkit-calendar-picker-indicator:hover {
            transform: scale(1.15);
        }

    /* Date & Time focus glow */
    .premium-input:focus {
        border-color: #6c63ff;
        box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
    }
