.contact-hero {
    width: 100%;
    min-height: 300px;

    display: flex;                  /* 🔥 FLEX */
    align-items: center;            /* vertical center */
    justify-content: center;        /* horizontal center */

    padding: 80px 20px;

    background: linear-gradient(
        to bottom,
        #eef3f8,
        #e6edf5
    );

    text-align: center;
}

/* CONTENT */
.contact-hero-content {
    width: 100%;
    max-width: 800px;

    display: flex;              /* 🔥 FLEX */
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 12px;                 /* spacing control */
}

/* TAG */
.contact-hero .tag {
    color: #ff4d4d;
    font-weight: 600;
    letter-spacing: 1px;
    background: none;
    font-size: 25px;
}

/* TITLE */
.contact-hero h1 {
    font-size: clamp(28px, 4vw, 42px);   /* 🔥 RESPONSIVE FONT */
    font-weight: 800;
    color: #111;
}

/* SUBTEXT */
.contact-hero .subtitle {
    font-size: clamp(14px, 1.5vw, 19px);
    color: #666;
    line-height: 1.6;
    max-width: 650px;
}

/* ================= CONTACT SECTION ================= */

.contact-section {
    background: #f4f6f8;
    padding: 80px 20px;
}

/* LAYOUT */

.contact-wrap {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* LEFT FORM BOX */

.contact-form-box {
    flex: 2;
    background: #fff;
    padding: 35px;
    border-radius: 16px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* TEXT */

.contact-small {
    font-size: 15px;
    color: #2aa198;
    margin-bottom: 5px;
}

.contact-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-title span {
    color: #2aa198;
}

.contact-desc {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
}

/* FORM GRID */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* INPUT */

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    font-size: 16px;
    margin-bottom: 5px;
    color: #444;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #f5f6f8;
    font-size: 16px;
    outline: none;
}

/* BUTTON */

.send-btn {
    grid-column: span 2;
    padding: 14px;
    background: #1f2a44;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* RIGHT SIDE */

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* CARD */

.info-card {
    background: #fff;
    padding: 15px 18px;
    border-radius: 12px;

    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.info-card h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #333;
}

.info-card p {
    font-size: 18px;
    color: #555;
    line-height: 1.5;
}

.info-card small {
    font-size: 18px;
    color: #888;
}




/* ================= GLOBAL SECTION ================= */
.global-section {
    width: 100%;
    padding: 80px 20px;
    background: #f7f9fc;
}

/* HEADER */
.global-header {
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.global-header .tag {
    color: #2aa198;              /* dark green text */
    background: #e6f7f5;         /* very light green background */
    font-size: 15px;
    font-weight: 600;
    padding: 5px 10px;           /* spacing */
    border-radius: 20px;         /* pill shape */
    display: inline-block;
}

.global-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
}

.global-header h2 span {
    color: #2aa198;
}

.global-header .desc {
    color: #777;
    font-size: 15px;
}

/* ================= SINGLE IMAGE ================= */
.global-cards {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.global-full-img {
    width: 100%;
    max-width: 1400px;   /* control width */
    height: auto;

    display: block;
    object-fit: contain;
}

/* ================= MAP ================= */
.global-map {
    margin-top: 50px;
}

.map-img {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
}


.global-map iframe {
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* 🔥 TABLET */
@media (max-width: 1024px) {
    .contact-hero {
        padding: 70px 20px;
    }
}

/* 🔥 MOBILE */
@media (max-width: 600px) {
    .contact-hero {
        padding: 60px 15px;
    }

    .contact-hero-content {
        gap: 10px;
    }
}

    /* 🔥 TABLET */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .form-box {
        width: 100%;
    }

    .contact-info-box {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-card {
        flex: 1 1 45%;
    }
}

/* 🔥 MOBILE */
@media (max-width: 600px) {

    .form-row {
        flex-direction: column;
    }

    .info-card {
        flex: 1 1 100%;
    }

    /* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .global-full-img {
        max-width: 95%;
    }
}

@media (max-width: 600px) {
    .global-full-img {
        width: 100%;
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .contact-wrap {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }
}
}
