.contact-section {
    padding: 100px 0;
    background: #f7f7f7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Heading */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: #ff2d00;
    font-size: 28px;
    font-family: cursive;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 52px;
    color: #2d2a3c;
}

/* Contact Info */

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.info-card {
    background: #ece7e3;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #ddd;
    transition: .3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: #2d2a3c;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.info-card h4 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #2d2a3c;
}

.info-card p {
    color: #555;
    line-height: 1.8;
}

/* Form Box */

.contact-form-box {
    background: #ece7e3;
    padding: 60px;
    border-radius: 25px;
    border: 1px solid #ddd;
}

.form-heading {
    text-align: center;
    margin-bottom: 40px;
}

.form-heading span {
    color: #ff2d00;
    font-size: 28px;
    font-family: cursive;
}

.form-heading h2 {
    font-size: 55px;
    color: #2d2a3c;
    margin-top: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-grid input {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 8px;
    padding: 0 20px;
    font-size: 16px;
    outline: none;
}

textarea {
    width: 100%;
    height: 180px;
    border: none;
    border-radius: 8px;
    padding: 20px;
    resize: none;
    outline: none;
    font-size: 16px;
}
 

.contact-map {
    width: 100%;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 500px;
    border: 0;
    display: block;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 992px) {

    .section-title h2 {
        font-size: 42px;
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-box {
        padding: 40px;
    }

    .form-heading h2 {
        font-size: 42px;
    }

    .contact-map iframe {
        height: 400px;
    }
}

@media (max-width: 768px) {

    .contact-section {
        padding: 70px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title span {
        font-size: 22px;
    }

    .section-title h2 {
        font-size: 34px;
        line-height: 1.3;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card {
        padding: 20px;
    }

    .info-card h4 {
        font-size: 20px;
    }

    .contact-form-box {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .form-heading span {
        font-size: 22px;
    }

    .form-heading h2 {
        font-size: 34px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-grid input {
        height: 55px;
    }

    textarea {
        height: 150px;
    }

 
    .contact-map iframe {
        height: 350px;
    }
}

@media (max-width: 576px) {

    .container {
        width: 95%;
    }

    .section-title span,
    .form-heading span {
        font-size: 20px;
    }

    .section-title h2,
    .form-heading h2 {
        font-size: 28px;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .icon-box {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 20px;
    }

    .info-card h4 {
        font-size: 18px;
    }

    .info-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .contact-form-box {
        padding: 25px 15px;
    }

    .form-grid input,
    textarea {
        font-size: 14px;
    }

    .contact-map iframe {
        height: 280px;
    }
}

 