* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
.contact-hero {
    height: 45vh;
    background: linear-gradient(135deg, #020617, #1e3a8a);
    color: white;
    text-align: center;
    padding-top: 80px;
}

.contact-hero h1 {
    font-size: 42px;
    
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.9;
    

}

/* CONTACT SECTION */
.contact {
    width: 65%;
    margin: 60px auto 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info,
.contact-form {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 15px;
}

.contact-info p {
    color: #555;
    margin-bottom: 20px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    margin-bottom: 12px;
    font-size: 14px;
}

/* FORM */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.contact-form button {
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 30px;
    background: #2563eb;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #1e40af;
}

.social-icons{
    margin-top: 15px;
    display: flex;
    gap: 18px;
}

.social-icons a{
    font-size: 26px;
    color: #333;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-icons a:hover{
    transform: translateY(-3px);
}


.social-icons .instagram:hover{
    color: #E1306C;
}

.social-icons .facebook:hover{
    color: #1877F2;
}

.social-icons .twitter:hover{
    color: skyblue; 
}







/* map*/
.contact-map{
    width: 85%;
    height: 450px;
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    margin: 10px auto;

}

.contact-map iframe{
    width: 100%;
    height: 100%;
    border-radius: 8px;
}



/* CTA */
.contact-cta {
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: white;
    text-align: center;
    padding: 90px 50px;
    margin-top: 50px;

}

.contact-cta a {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background: #020617;
    color: white;
    border-radius: 30px;
    text-decoration: none;
}






@media (max-width: 768px) {

    .contact-hero {
        height: auto;
        padding: 70px 20px;
    }

    .contact-hero h1 {
        font-size: 34px;
    }

    .contact-hero p {
        font-size: 16px;
    }

    .contact {
        width: 85%;
        gap: 30px;
    }

    .contact-info,
    .contact-form {
        padding: 30px;
    }

    .contact-map {
        width: 90%;
        height: 380px;
        padding: 25px;
    }

    .contact-cta {
        padding: 70px 30px;
    }
      
}





@media (max-width: 600px) {

    .contact-hero h1 {
        font-size: 28px;
    }

    .contact-hero p {
        font-size: 15px;
    }

    .contact {
        width: 95%;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-info,
    .contact-form {
        padding: 25px;
    }

    .contact-info ul li {
        font-size: 13px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 13px;
    }

    .social-icons {
        justify-content: center;
    }

    .contact-map {
        width: 95%;
        height: 320px;
        padding: 20px;
    }

    .contact-cta {
        padding: 60px 20px;
    }

    .contact-cta a {
        padding: 10px 25px;
        font-size: 14px;
    }
}




