

body {
    font-family: Poppins, sans-serif;
    background: #fff;
    
}


/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    width: 100%;
    padding: 20px 10px;
}

.contact-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 60px 42px;
    background: #fff;

    border-radius: 12px;
}


/* =========================
   TOP SECTION
========================= */

.contact-top {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 28px;
    align-items: start;
}


/* =========================
   LEFT CONTENT
========================= */

.contact-left {
    padding-right: 10px;
}

.contact-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 14px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.contact-description {
    font-size: 13px;
    line-height: 1.45;
    color: #555;
    margin-top: 14px;
    max-width: 500px;
}

.contact-left h4 {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
}


/* =========================
   SOCIAL ICONS
========================= */

.social-icons {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 15px;
}

.social-icons a {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icons img {
    width: 25px;
    height: 25px;
    
}


/* =========================
   FORM AREA
========================= */

.contact-form-wrapper h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}


.contact-form {
    background: #fff;
    border-radius: 20px;
    padding: 15px;

    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.04),
        0 12px 30px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 10px;
    outline: none;

    font-family: inherit;
    font-size: 12px;

    transition: all 0.2s ease;
}

.form-group input {
    height: 34px;
    padding: 0 12px;
}

.form-group textarea {
    height: 120px;
    padding: 12px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2877df;
    box-shadow: 0 0 0 2px rgba(40, 119, 223, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.textarea-group {
    margin-bottom: 10px;
}

.contact-form button {
    border: none;
    background: #507a9f;
    color: #fff;

    padding: 10px 17px;

    border-radius: 20px;

    font-size: 12px;
    cursor: pointer;

    transition: 0.3s ease;
}

.contact-form button:hover {
    background: #507a9f;
    transform: translateY(-1px);
}


/* =========================
   CONTACT INFO CARDS
========================= */

.contact-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;

    margin-top: 32px;
}

.info-card {
    min-height: 100px;

    border: 1px solid #ddd;
    border-radius: 12px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    padding: 15px;

    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.04),
        0 12px 30px rgba(0, 0, 0, 0.08);
}

.info-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 10px;
}

.info-icon svg {
    width: 32px;
    height: 32px;

    fill: #2877df;
    stroke: #2877df;
    stroke-width: 1;
}

.info-card p {
    font-size: 13px;
    color: #111;
    text-align: center;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .contact-wrapper {
        padding: 40px 25px;
    }

    .contact-top {
        grid-template-columns: 1fr;
    }

    .contact-left {
        padding-right: 0;
    }

    .contact-image {
        height: 300px;
    }

    .contact-form-wrapper h1 {
        font-size: 28px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .contact-section {
        padding: 10px;
    }

    .contact-wrapper {
        padding: 25px 15px;
        border-radius: 10px;
    }

    .contact-top {
        gap: 30px;
    }

    .contact-image {
        height: 230px;
        border-radius: 12px;
    }

    .contact-description {
        font-size: 12px;
    }

    .contact-form-wrapper h1 {
        font-size: 25px;
        margin-bottom: 18px;
    }

    .contact-form {
        padding: 12px;
        border-radius: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .form-group input {
        height: 40px;
    }

    .form-group textarea {
        height: 130px;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 25px;
    }

    .info-card {
        min-height: 90px;
    }
}