.contact-container {
    background-color: rgba(8, 18, 35, 0.96) !important;
    background-image: linear-gradient(
        145deg,
        rgba(18, 42, 75, 0.98),
        rgba(5, 12, 26, 0.98)
    ) !important;

    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;

    border: 1px solid rgba(0, 162, 255, 0.38);
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;

    padding: 40px;
    max-width: 950px;
    width: 90%;
    margin: 50px auto 90px auto;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.65),
        0 0 22px rgba(0, 162, 255, 0.12);

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}


.contact-left-col {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.contact-heading {
    color: white;
    font-size: 32px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
}

.contact-heading-icon {
    color: #00a2ff;
    margin-left: 10px;
}

.contact-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin-bottom: 35px;
    line-height: 1.6;
}


.contact-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-link:hover {
    color: #00a2ff !important;
    transform: translateX(5px);
}

.contact-location {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    font-size: 18px;
    line-height: 1.4;
}

.contact-location strong {
    font-size: 20px;
}

.contact-location span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}


.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(0, 162, 255, 0.15);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-icon {
    font-size: 22px;
    color: #00a2ff;
}


.social-media-section {
    margin-top: 45px;
}

.social-media-title {
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 15px;
    font-weight: bold;
}

.social-icons-wrapper {
    display: flex;
    gap: 15px;
}

.social-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-circle.fb:hover { background: #1877F2; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(24, 119, 242, 0.4); }
.social-circle.ig:hover { background: #E1306C; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(225, 48, 108, 0.4); }
.social-circle.tt:hover { background: #000000; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2); }


.contact-map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(0, 162, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    height: 420px; 
    width: 100%;
}

.contact-map-wrapper iframe {
    border: 0;
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 768px) {
    
.contact-container {
        width: auto !important; 
        
        
        
        margin: 25px 20px 90px 20px !important; 
        
        grid-template-columns: 1fr !important;
        padding: 30px 20px !important;
        gap: 40px;
    }

    
    .contact-map-wrapper {
        width: 100% !important;
        height: 300px !important;
    }

    .contact-left-col {
        text-align: center; 
        align-items: center;
    }

    .contact-heading {
        font-size: 26px !important;
        justify-content: center;
        display: flex;
        align-items: center;
    }

    .contact-desc {
        font-size: 14px !important;
        margin-bottom: 30px;
    }

    
    .contact-items-wrapper {
        width: 100%;
        align-items: flex-start; 
        gap: 20px;
    }

    .contact-link {
        font-size: 17px !important; 
        gap: 15px !important;
    }

    .contact-location {
        font-size: 16px !important;
        text-align: left;
        gap: 15px !important;
    }

    .contact-icon-wrapper {
        width: 45px !important;
        height: 45px !important;
    }

    .contact-icon {
        font-size: 18px !important;
    }

    
    .social-media-section {
        margin-top: 35px;
        width: 100%;
        text-align: center;
    }

    .social-icons-wrapper {
        justify-content: center; 
    }

    
    .contact-map-wrapper {
        height: 300px !important; 
        order: 2; 
    }

    
    .contact-link:hover {
        transform: none !important;
        color: white !important;
    }

    .social-circle:hover {
        transform: none !important;
        box-shadow: none !important;
    }
}

@media (min-width: 769px) and (max-width: 1400px) {

    .contact-container {
        width: 88%;
        max-width: 900px;
        margin-top: 30px;
        margin-bottom: 70px;
        padding: 35px 30px;
        gap: 30px;
        grid-template-columns: 1fr 1fr;
    }

    .contact-heading {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .contact-desc {
        font-size: 15px;
        margin-bottom: 28px;
        line-height: 1.5;
    }

    .contact-items-wrapper {
        gap: 20px;
    }

    .contact-link {
        font-size: 17px;
        gap: 15px;
    }

    .contact-location {
        font-size: 16px;
        gap: 15px;
    }

    .contact-location strong {
        font-size: 18px;
    }

    .contact-location span {
        font-size: 14px;
    }

    .contact-icon-wrapper {
        width: 45px;
        height: 45px;
        border-radius: 10px;
    }

    .contact-icon {
        font-size: 19px;
    }

    .social-media-section {
        margin-top: 35px;
    }

    .social-icons-wrapper {
        gap: 12px;
    }

    .social-circle {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .contact-map-wrapper {
        height: 360px;
    }
}

@media (min-width: 1201px) and (max-width: 1700px) {

    .contact-container {
        margin-top: 30px !important;
    }

}