.contact-section {
    padding: 90px 0;
    background-color: #f5f8fa;
    position: relative;
}

.section-title {
    font-family: 'Yeseva One', cursive;
    color: #01083B;
    font-size: 2.6rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: #F7A73E;
    border-radius: 1px;
}

.contact-form {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.2rem;
    box-shadow: 0 4px 18px rgba(1, 8, 59, 0.04);
    border: 1px solid rgba(1, 8, 59, 0.02);
    transition: all 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(1, 8, 59, 0.08);
}

.form-title {
    font-family: 'Yeseva One', cursive;
    color: #01083B;
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
    position: relative;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 1.5px;
    background: #F7A73E;
    border-radius: 1px;
}

.form-control {
    border: 1px solid rgba(1, 8, 59, 0.06);
    border-radius: 8px;
    padding: 10px 15px;
    transition: all 0.2s ease;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.9rem;
    background: #ffffff;
}

.form-control:focus {
    border-color: #F7A73E;
    box-shadow: 0 0 0 0.12rem rgba(247, 167, 62, 0.1);
    background: #ffffff;
}

.form-label {
    color: #01083B;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
}

.contact-info {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.2rem;
    box-shadow: 0 4px 18px rgba(1, 8, 59, 0.04);
    border: 1px solid rgba(1, 8, 59, 0.02);
    height: 94%;
    transition: all 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(1, 8, 59, 0.08);
}

.info-title {
    font-family: 'Yeseva One', cursive;
    color: #01083B;
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
    position: relative;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 1.5px;
    background: #F7A73E;
    border-radius: 1px;
}

.info-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    transition: all 0.2s ease;
    padding: 0.7rem;
    border-radius: 8px;
}

.info-item:hover {
    background: rgba(247, 167, 62, 0.02);
    transform: translateX(2px);
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(247, 167, 62, 0.07);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.info-item:hover .info-icon {
    background: #F7A73E;
    transform: rotateY(180deg);
}

.info-icon i {
    color: #F7A73E;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.info-item:hover .info-icon i {
    color: #ffffff;
}

.info-content h5 {
    color: #01083B;
    font-weight: 600;
    margin-bottom: 0.2rem;
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
}

.info-content p, .info-content a {
    color: #6c757d;
    margin-bottom: 0;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
}

.info-content a:hover {
    color: #F7A73E;
}

.btn-submit {
    background: #F7A73E;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-submit:hover {
    background: #f8b55f;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(247, 167, 62, 0.15);
}

.btn-submit i {
    transition: transform 0.2s ease;
}

.btn-submit:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form, .contact-info {
        padding: 1.8rem;
    }

    .info-icon {
        width: 35px;
        height: 35px;
    }

    .form-control {
        padding: 9px 12px;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .info-content h5 {
        font-size: 0.95rem;
    }

    .info-content p, .info-content a {
        font-size: 0.9rem;
    }

    .btn-submit {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .contact-form, .contact-info {
        padding: 1.2rem;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }
} 