.appointment-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8faff 0%, #f1f4f9 100%);
    position: relative;
    overflow: hidden;
}

.appointment-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: linear-gradient(45deg, rgba(66, 153, 225, 0.1), rgba(102, 126, 234, 0.1));
    border-radius: 50%;
    z-index: 0;
}

.appointment-content {
    position: relative;
    z-index: 1;
}

.section-subtitle {
    color: #4299e1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 20px;
}


.section-title {
    color: #2d3748;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    color: #4a5568;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
}

@media(max-width: 991.5px){
    .section-subtitle, .section-title, .section-description{
        text-align: center;
    }
}

.appointment-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #4299e1, #667eea);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 20px;
}

.feature-text h4 {
    color: #2d3748;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-text p {
    color: #4a5568;
    font-size: 0.95rem;
    margin: 0;
}

.appointment-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.appointment-form .form-group {
    margin-bottom: 25px;
}

.appointment-form label {
    color: #2d3748;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.appointment-form .form-control {
    height: 50px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.appointment-form .form-control:focus {
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.appointment-form textarea.form-control {
    height: auto;
}

.submit-btn {
    background: linear-gradient(45deg, #4299e1, #667eea);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(66, 153, 225, 0.2);
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Form Row Spacing */
.form-row {
    display: flex;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 15px;
}
@media(max-width: 991.5px){
    .form-row{
        margin-bottom: 0;
    }
}

.form-row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

/* Responsive Styles */
@media (max-width: 991.5px) {
    .appointment-content {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.5px) {
    .appointment-form-wrapper {
        padding: 30px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
}
@media (max-width: 543.5px) {
    .section-title {
        font-size: 25px;
    }
    .section-subtitle{
        font-size: 17px;
    }
}