/* /* ================================
   CONTACT SECTION TITLES (FINAL)
================================ */
.contact-title {
    font-family: var(--tg-heading-font-family);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #1c1c1c;
    margin-bottom: 10px;
}


/* responsive */
@media (max-width: 1200px) {
    .contact-title {
        font-size: 32px;
    }
}

@media (max-width: 1199.98px) {
    .contact-title {
        font-size: 32px;
    }
}




/* ================================
   CONTACT SECTION
================================ */
.contact-area {
    background: #fff;
    padding: 120px 0;

}


/* ================================
   CONTACT FORM (LEFT)
================================ */
.contact-form-wrap {
    background: transparent;
    padding: 40px 35px;
}

.contact-form-wrap .title {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.contact-form-wrap p {
    font-size: 18px;
    color: #61657E;
    margin-bottom: 00px;
}

.contact-form .form-grp {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    height: 56px;
    padding: 14px 18px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    font-size: 16px;
    color: #111;
    background: #fff;
    outline: none;
}
/* Only First Name & Last Name */
.contact-form .row:first-of-type{
    margin-top: 40px;
    
}

.contact-form textarea {
    height: 160px;
    resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9ca3af;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff6a13;
}

/* Button */
.contact-form .btn {
    width: 100%;
    height: 56px;
    background: #ff6a13;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 20px;
    border: none;
    transition: 0.3s;
}

.contact-form .btn:hover {
    background: #e85c0e;
}

/* ================================
   NEED ANY HELP (RIGHT)
================================ */
.contact-info-wrap {
    background: #f4f6ff;
    padding: 40px 40px;   /* ⬆ increase padding */
    border-radius: 6px;
    border-left: 1px solid #ffffff;
    min-height: 280px;    /* ⬅ THIS makes the box taller */
}


/* Title */
.contact-info-wrap .title {
    font-size: 42px;       /* smaller, cleaner */
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

/* Subtitle */
.contact-info-wrap p {
    color: #61657E;
    margin-bottom: 0px;
}

/* Address text ONLY */
.contact-info-item .content p {
    color: #1c1c1c;
    font-size: 14px;
    line-height: 1.45;
    font-family: "Manrope", sans-serif;
}

/* Info list */
.contact-info-wrap .list-wrap {
    display: flex;
    justify-content: space-between;
    gap: 12px 0px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-wrap .list-wrap li {
    flex: 1;
    align-self: flex-start;
}

/* Item */
.contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;   /* 🔑 ALL icons left */
    text-align: left;
}

/* Icon */
.contact-info-item .icon {
    width: 56px;
    height: 56px;
    background: #ff6b00;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 8px;
    margin-top: 40px;
}

/* Text */
.contact-info-item .content {
    font-size: 14px;
    line-height: 1.4;
    color: #111827;
    max-width: 100px;
}

.contact-info-item .content a {
    display: block;
    color: #1c1c1c;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.contact-info-item .content p {
    margin: 2px 0;
}


/* ================================
   MAP
================================ */
#contact-map {
    margin-top: 10px;              /* aligned with Need Any Help */
    border-radius: 6px;
    overflow: hidden;
}

#contact-map iframe {
    width: 100%;
    height: 320px;              /* larger & balanced */
    border: 0;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .contact-info-wrap {
        padding-left: 28px;
        border-left: none;
    }

    .contact-info-wrap .list-wrap {
        flex-direction: column;
        row-gap: 16px;        /* 👈 controls vertical gap between rows */
    column-gap: 0px;
    }

    .contact-info-item {
        align-items: flex-start;
    }
} 
.contact-area .row {
    align-items: flex-start;
}
/* ================================
   CONTACT SUBTITLE (COMMON)
================================ */
.contact-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #61657E;
    margin-bottom: 40px;
    max-width: 520px;   /* keeps text length identical */
}
/* ==================================
   CONTACT SECTION HEADINGS (FINAL)
================================== */

.contact-title {
    font-family: var(--tg-heading-font-family); /* Poppins */
    --tg-heading-font-family: 'Poppins', sans-serif;
    font-weight: 700 !important;               /* force bold */
    line-height: 1.2;
    color: #1C1C1C;
    margin-bottom: 10px;

    font-size: 40px;
}

/* Large screens */
@media (max-width: 1500px) {
    .contact-title {
        font-size: 35px;
    }
}

/* Tablets */
@media (max-width: 1199.98px) {
    .contact-title {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contact-title {
        font-size: 28px;
    }
}
/* FORCE CONTACT TITLES TO MATCH REFERENCE */
.contact-title,
.contact-form-wrap .title,
.contact-info-wrap .title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400 !important;   /* overrides Bootstrap */
    line-height: 1.2;
    letter-spacing: 0;
    color: #1C1C1C;
}
.contact-info-item .content p {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 2px;
}

/* FORCE contact section to full width with only 10px side gap */
.contact-area .container {
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}
/* ..................................................... */
.contact-info-item .content a {
	display: block;
	color: var(--tg-heading-font-color);
}
.contact-info-item .content a:hover {
	color: var(--tg-primary-color);
}
.contact-info-item .content p {
	margin-bottom: 0;
	color: var(--tg-heading-font-color);
}
.contact-info-wrap .list-wrap {
    display: flex;
    flex-wrap: wrap;     /* 🔑 allows next row */
    /* gap: 30px; */
    padding: 0;
    margin: 0;
}
.contact-info-wrap .list-wrap li {
    flex: 0 0 calc(50% - 15px);
}
.contact-info-wrap .list-wrap li.full-width {
    flex: 0 0 100%;
    display: flex;
    justify-content: left;
}
/* Address item layout */
.contact-info-wrap .list-wrap li.full-width .contact-info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

/* Remove top margin ONLY for address icon */
.contact-info-wrap .list-wrap li.full-width .icon {
    margin-top: 0;
}
.contact-info-wrap .list-wrap li.full-width .contact-info-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 5px;
}
.contact-info-wrap .list-wrap li.full-width .content {
    max-width: 300px;
}

