


.contact-page .about-hero {
    position: relative;
    width: 100%;
    padding: 0;
    overflow: hidden;
    height: 600px;
}

.contact-page .about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-page .about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}


.contact-section {
    padding: 90px 0;
    background-color: #fff;
}

.contact-wrapper {
    display: flex;
    background: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    border-radius: 4px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid #eee;
}


.contact-form-side {
    flex: 2;
    padding: 60px;
}

.contact-form-content {
    margin-bottom: 40px;
}

.contact-form-side h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
}

.form-subtitle {
    color: #777;
    font-size: 1rem;
    line-height: 1.5;
}

.main-contact-form .form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.input-group {
    flex: 1;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 10px;
}

.input-group i {
    position: absolute;
    left: 0;
    top: 12px;
    color: #999;
    font-size: 1.2rem;
}

.input-group.textarea-group {
    margin-top: 10px;
}

.input-group.textarea-group i {
    top: 15px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    border: none;
    padding: 12px 15px 12px 35px;
    font-size: 1rem;
    color: #333;
    outline: none;
    background: transparent;
    font-family: inherit;
}

.input-group textarea {
    resize: vertical;
    min-height: 120px;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #999;
}

.input-group input:focus,
.input-group textarea:focus {
    border-bottom-color: var(--primary-blue);
}

.form-footer {
    display: flex;
    justify-content: flex-end; 
    margin-top: 20px;
}

.btn-submit {
    background-color: #0044d7; 
    color: white;
    border: none;
    padding: 12px 50px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background-color: #0033a0;
}


.contact-info-side {
    flex: 1;
    background-color: #0044d7; 
    color: white;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.info-header {
    margin-bottom: 30px;
}

.info-title-wrapper {
    margin-bottom: 15px;
}

.small-title {
    font-size: 1rem;
    opacity: 0.9;
    display: block;
    margin-bottom: 5px;
    font-weight: 400;
}

.info-header h3 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
    margin: 0;
}

.info-desc {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.info-separator {
    height: 1px;
    background-color: rgba(255,255,255,0.3);
    margin: 30px 0;
    width: 100%;
}

.info-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.info-item span, 
.info-item a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.4;
}

.info-quote {
    margin-top: auto;
    position: relative;
    padding-top: 20px;
}

.info-quote i {
    font-size: 3rem;
    opacity: 0.2;
    display: block;
    margin-bottom: 15px;
    color: #fff;
}

.info-quote p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    font-style: normal;
}


@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-form-side,
    .contact-info-side {
        padding: 40px;
    }
    
    .main-contact-form .form-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }
    
    .input-group {
        margin-bottom: 25px;
    }
    
    .info-header h3 {
        font-size: 2.5rem;
    }
}
