.contact-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}
.contact-container {
    max-width: 1100px;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    margin: 0 auto;
}
.contact-title {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}
.contact-intro {
    text-align: center;
    margin-bottom: 40px;
}
.contact-intro h6 {
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 15px;
    word-wrap: break-word;
}
.contact-intro h6 a {
    color: var(--primary-color);
    text-decoration: none;
}
.contact-intro h6 a:hover {
    text-decoration: underline;
}
.contact-sections {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}
.map-section,
.contact-section {
    width: auto;
}
.contact-info {
    margin-bottom: 20px;
}
.contact-info p {
    margin-bottom: 10px;
}
.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}
.map iframe {
    width: 100%;
    height: 350px;
    border: none;
}
.contact-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .contact-sections {
        flex-direction: column;
        gap: 20px;
    }
    .map-section,
    .contact-section {
        width: 100%;
    }
    .contact-title {
        font-size: 2rem;
    }
    .contact-intro h6 {
        font-size: 1rem;
    }
}
.contact-page-wrapper .contact-form-wrapper {
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, .1);
    background: #004aad29;
    padding: 10px;
    position: sticky;
    top: 20%;
    z-index: 3;
    overflow: hidden;
}
.form-container {
    max-width: 400px;
    margin: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.form-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.form-field {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 16px;
    color: #333;
}
.form-label i {
    font-size: 18px;
    color: var(--primary-color);
}
#full-name, #phone, #subject {
    width: 93%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    outline: none;
}
#message {
    width: 96.5%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    outline: none;
}
#email {
    width: 93%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    outline: none;
}
#message {
    height: 120px;
    resize: none;
}
#subject {
    background: #fff;
    cursor: pointer;
}
#full-name:focus, #email:focus, #phone:focus, #subject:focus, #message:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
.form-row .form-field.full-width {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
}
.full-width-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    border: none;
    border-radius: 5px;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
}
.full-width-btn:hover {
    background: #003780;
}
.full-width-btn:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    #message {
        width: 93%
    }
}