.section-home{
    min-height: 35vh;
    position: relative;
}

.section-home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./../assets/bg-1.jpg');
    background-size: cover;
    z-index: -1; 
    transform: rotate(180deg);
}

.contact-us {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

.section-contact{
    background-image: none !important;
}

.contact-container{
    /* border: 1px solid red; */
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: row !important;
    align-items: start !important;
}

.contact-container .info{
    /* border: 1px solid red; */
    height: 700px;
    width: 700px;
    padding: 10px;
}

.contact-container .info h2{
    font-size: 36px;
}

.contact-container .info p{
    font-size: 16px;
    color: #646464;
    font-weight: 500;
    line-height: 25px;
    margin: 40px 0px;
}

.contact-container .form{
    /* border: 1px solid red; */
    height: 700px;
    width: 100%;
}


.section-contact {
    background-color: #f9f9f9;
    padding: 50px 0;
    height: auto;
    padding-bottom: 100px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info {
    flex: 1;
    padding: 0 20px;
}

.info h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

.info p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-top: 20px;
}

.info-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.info-box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.info-box p {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

.social-buttons {
    margin-top: 20px;
}

.socials {
    cursor: pointer;
    font-size: 24px;
    color: #333;
    margin-right: 10px;
}

.socials:last-child {
    margin-right: 0;
}

.form {
    flex: 1;
    padding: 0 20px;
    background-color: #e8e8e86b;
}

.form h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
    margin-top: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

textarea {
    height: 150px;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
    padding: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
    height: 51px;
    border: 1px solid #ccc;
    border-radius: 0px;
    transition: border-color 0.3s;
    font-size: 14px; 
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"] {
    width: calc(100% - 24px);
}


form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="tel"]:focus,
form textarea:focus {
    border-color: blue;
}

form textarea {
    height: 150px;
    resize: none;
    width: calc(100% - 24px);
    margin: 0;
}

button {
    padding: 10px 20px;
    border: none;
    background-color: #ff0336;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #e6002b;
}


.contact-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    /* border: 2px solid #ff0336; */
    height: 55px;
    width: 200px;
    background-color: #ff0336;
    margin-top: 40px;
    position: relative;
    color: #fff;
}


.contact-btn .custom-icon{
    color: #000;
}

.contact-btn:after {
    content: "";
    height: 55px;
    width: 200px;
    border: 1px solid #ff033566;
    position: absolute;
    top: -15px;
    left: 15px; 
    transition: all .4s;
}

.contact-btn:hover:after {
    top: 0;
    left: 0;
}

.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

.section-map{
    /* border: 1px solid red; */
    height: 50vh;
    width: 100%;
    background-color: #f9f9f9;
    overflow: hidden;
}

.section-map #map-container{
    height: 100%;
    width: 100%;
}

.section-map iframe{
    width: 100%;
    height: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.439);
}

.darkmode{
    background-color: #fff;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.439);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px;
    margin-bottom: 10px;
    margin-top: 10px;
    transition: 0.3s ease-in-out;
}

.darkmode .mode-btn{
    color: #000;
    font-size: 22px;
}

.darkmode:hover{
    background-color: #ccc;
}

@media only screen and (max-width: 1450px) {
    .footer{
        padding-left: 120px;
        padding-right: 120px;
    }
}


@media only screen and (max-width: 1250px) {

    .section-contact {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media only screen and (max-width: 850px) {
    .section-home {
        height: 25vh;
    }

    .contact-container  {
        display: flex;
        flex-direction: column !important;
    }

    .footer{
        padding-left: 50px;
        padding-right: 50px;
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 755px) {
    .contact-container .info{
        width: 650px;
    }

    .contact-container .form{
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 755px) {
    .section-contact {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-container .info {
        width: auto;
    }
}

@media only screen and (max-width: 500px) {
    .contact-us{
        font-size: 25px;
    }

    .section-contact {
        padding-left: 10px;
        padding-right: 10px;
        width: 100%;
    }

    .contact-container {
        width: auto;
    }

    .contact-container .info h2 {
        font-size: 26px;
    }

    .contact-container .info p {
        font-size: 15px;
        width: 85%;
    }

    .info-boxes{
        width: auto;
        padding: 0px;
        display: flex;
        flex-direction: column;
    }

    .navbar{
        height: 80px;
    }

    .navbar.scrolled{
        height: 80px;
    }

    .logo{
        height: 50px;
    }
}

@media only screen and (max-width: 380px) {
    .hamburger {
        position: relative;
        right: 40%;
    }

    .logo{
        position: relative;
        right: -50%;
    }

    .scrolled .logo{
        position: relative;
        right: -40%;
        top: 4px;
    }

    .contact-container .info p {
        font-size: 12px;
        width: 85%;
    }

    .scrolled .hamburger{
        position: relative;
        left: -10%;
    }
}