.mobile-menu>ul>li:nth-child(5) {
    border-radius: 50%;
    margin-top: -30px;
    box-shadow: 0 10px 2px black;
    z-index: 9999;
    background-color: var(--accent1);
    transition: all .2s ease-in-out;
}

.mobile-menu>ul>li:hover {
    border-radius: 0;
    margin-top: 0;
}

.mobile-menu>ul>li:nth-child(5)>a {
    color: var(--white-s);
}



.body-contact {
    background-color: var(--bg-banafsh);
}


.contact-header {
    display: block;
    text-align: center;
    padding: 30px 0 0 0;
}

.contact-header h1 {
    color: var(--white-s);
    margin-top: 20px;
    position: relative;
    display: inline-block;
}

.contact-header p {
    font-size: var(--fs-3);
    color: var(--white-s);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

.contact-content {
    color: var(--white-s);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, #2c3e50, #1a2530);
    color: var(--white-s);
    padding: 30px;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.7);
    text-align: right;
}

.contact-info h2 {
    color: var(--white-s);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
}

.contact-details {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    flex-shrink: 0;
}

.contact-text h3 {
    color: var(--white-s);
    margin-bottom: 5px;
    margin-left: 5px;
    font-size: 1.2rem;
}

.contact-text a {
    color: var(--white-s);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-text p {
    color: var(--white-s);
}

.contact-text a:hover {
    color: var(--accent);
}

.c-social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.c-social-links .social-link {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
}


.contact-form-container {
    text-align: right;
    min-width: 300px;
    background: linear-gradient(135deg, #004f9e, #00478e);
    margin-top: 30px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.5);
    color: var(--white-s);
}


.contact-form-container h2 {
    text-align: center;
    color: var(--white-s);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.contact-form-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--accent);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--white-s);
}

.form-control {
    background-color: var(--white-hover-s);
    width: 100%;
    padding: 7px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--action-tertiary-hover);
    outline: none;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.service-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    margin: -5px 3px 0 0px;
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--black-hover-s);
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn:hover {
    background-color: var(--accent1);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-block {
    width: 100%;
}

.map-container {
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

@media (min-width: 768px) {
    .contact-container {
        display: flex;
        flex-wrap: wrap;
    }

    .contact-content,
    .contact-form-container {
        width: calc(100% / 2);
        scale: .96;
    }
}