:root {
    --primary-text: #333333;
    --secondary-text: #D5C5B3;
    --bg-main: #FFFFFF;
    --bg-section: #F5F5F5;
    --btn-color: #00A8B5;
    --accent-color: #EF6C33;
}

html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
}

body {
    background-color: var(--bg-section);
}

.contact-info-header h2 {
    font-size: 42px;
    color: var(--primary-text);
    font-weight: 600;
    font-family: "Lato", sans-serif;
}

.contact-info-header p {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-color);
}

.contact-left h3 {
    color: var(--primary-text);
    font-weight: 600;
    font-family: "Lato", sans-serif;
}


.contact-info .square-icon {
    width: 60px;
    height: 60px;
    background-color: #DE2F1B;
    color: var(--bg-section);
    border-radius: 4px;
    margin-block: 8px;
}

.contact-info .square-icon i {
    color: var(--bg-main);
    transition: all 0.3s;
}

.contact-info .square-icon:hover i {
    transform: scale(1.2);
}

.contact-info .circle-icon {
    width: 40px;
    height: 40px;
    background-color: #DE2F1B;
    color: var(--bg-section);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.contact-info .circle-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(51, 51, 51, 0.3);
}

.contact-info .circle-icon i {
    color: var(--bg-main);
}

.contact__form h3 {
    color: var(--primary-text);
    font-weight: 600;
}

.contact__form form input,
textarea {
    background-color: var(--bg-section) !important;
}

.contact__form .form-control:focus {
    background-color: var(--bg-main) !important;
}

.contact__form textarea {
    height: 100px !important;
}

.contact__form form button {
    background-color: #DE2F1B;
    color: var(--bg-main);
}

.contact__form form button:hover {
    background-color: #ee4633;
    color: var(--bg-main);
}

.contact-map iframe {
    width: 100%;
    height: 350px;
    border: none;
}


/* Responsive Design */
@media screen and (max-width: 992px) {
    .contact-info .container {
        max-width: 95%;
    }
}

@media screen and (max-width: 768px) {
    .contact-left__heading {
        margin-top: 0 !important;
    }
}

@media screen and (max-width: 576px) {

    .contact-info-header h2 {
        font-size: 30px;
    }

    .contact-info-header p {
        font-size: 16px;
    }

    .contact-left h3 {
        font-size: 20px;
    }

    .contact-left p {
        font-size: 14px;
    }

    .contact-info .square-icon {
        width: 50px;
        height: 50px;
    }

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

    .contact-left-text h5 {
        font-size: 18px;
    }

    .contact__form h3 {
        font-size: 20px;
    }

    .contact__form form input,
    textarea {
        font-size: 14px !important;
    }

    .contact-map iframe {
        height: 350px;
    }
}