
@import url('/assets/css/main.css');

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(to right, #13064B, #2F176B);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    transition: all 0.3s ease;
}

.contact-section {
    padding-top: 120px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f1f2fa 100%);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-label {
    background: rgba(47, 23, 107, 0.05);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    font-family: 'poppins-medium';
    color: #2F176B;
    margin-bottom: 30px;
}

.contact-info h2 {
    font-family: 'poppins-medium';
    font-size: 48px;
    color: #13064B;
    margin-bottom: 20px;
}

.contact-info p {
    font-family: 'poppins-medium';
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.contact-cards {
    display: grid;
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(47, 23, 107, 0.05);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(47, 23, 107, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon img {
    width: 24px;
    height: 24px;
}

.contact-card h3 {
    font-family: 'poppins-medium';
    font-size: 20px;
    color: #13064B;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 16px;
    margin-bottom: 0;
}

.contact-form-container {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(47, 23, 107, 0.08);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(47, 23, 107, 0.1);
    border-radius: 15px;
    background: transparent;
    font-size: 16px;
    color: #13064B;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-family: 'regular';
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group textarea + label {
    top: 30px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2F176B;
    outline: none;
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -12px;
    left: 15px;
    font-size: 1.0rem;
    background: white;
    padding: 0 5px;
    color: #2F176B;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #2F176B;
    color: white;
    border: none;
    border-radius: 15px;
    font-family: 'poppins-medium';
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
}

@media (max-width: 860px) {
    .site-nav {
        padding: 1.5rem 4%;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .contact-info h2 {
        font-size: 32px;
    }
    
    .contact-form-container {
        padding: 30px;
    }
}

