/* =====================================================
   CONTACT PAGE
===================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: "Poppins", sans-serif;
}


/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-section {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 45px 35px 60px;
}


/* =====================================================
   MAIN HEADING
===================================================== */

.contact-section h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-color);
    margin: 0 0 40px;
    line-height: 1.1;
}

.big-alpha {
    font-size: clamp(3rem, 5.8vw, 4.8rem);
    color: #1d4ed8;
}


/* =====================================================
   MAIN CONTACT CARD
===================================================== */

.info {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 35px;
    background: #ffffff;
    border: 1px solid #e3e7ee;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    min-width: 0;
}


/* =====================================================
   IMAGE
===================================================== */

.contact-image-box {
    flex: 0 0 calc(45% - 30px);
    width: calc(45% - 30px);
    height: 430px;
    min-width: 0;
    overflow: hidden;
    border-radius: 16px;
}

.contact-image-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* =====================================================
   CONTACT INFORMATION
===================================================== */

.Number-detail {
    flex: 1 1 calc(55% - 30px);
    width: calc(55% - 30px);
    min-width: 0;
    color: var(--primary-color);
}


/* =====================================================
   COMPANY LABEL
===================================================== */

.company-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.company-label i {
    font-size: 15px;
    flex-shrink: 0;
}


/* =====================================================
   HEADING
===================================================== */

.Number-detail h2 {
    font-size: 38px;
    color: #142f6b;
    margin: 0 0 10px;
    line-height: 1.2;
    overflow-wrap: break-word;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.company-description {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 25px;
    overflow-wrap: break-word;
}


/* =====================================================
   CONTACT DETAILS
===================================================== */

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 18px 0;
    min-width: 0;
}

.detail-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef4ff;
    border-radius: 10px;
    color: #1d4ed8;
}

.detail-icon i {
    font-size: 17px;
}

.detail-title {
    display: block;
    color: #777;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 3px;
}

.contact-detail > div:last-child {
    min-width: 0;
    max-width: 100%;
}

.contact-detail a {
    display: block;
    max-width: 100%;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-detail a:hover {
    color: #1d4ed8;
}


/* =====================================================
   BUTTONS
===================================================== */

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
    max-width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
    max-width: 100%;
}

.btn:hover {
    transform: translateY(-3px);
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
}

.call-btn {
    background: var(--primary-color);
    color: #fff;
}

.email-btn {
    background: #eef4ff;
    color: var(--primary-color);
}


/* =====================================================
   LEAD FORM
===================================================== */

.lead-form-section {
    width: 100%;
    margin: 70px 0;
}

.lead-form-card {
    width: 100%;
    background: #fff;
    border: 1px solid #e3e7ee;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}

.lead-form-heading {
    text-align: center;
    margin-bottom: 30px;
}

.lead-form-heading span {
    display: block;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.lead-form-heading h2 {
    margin: 0 0 10px;
    color: var(--primary-color);
    font-size: 32px;
}

.lead-form-heading p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.lead-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #dce1e8;
    border-radius: 8px;
    padding: 13px 14px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    background: #fff;
    color: #222;
    transition: .2s;
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1d4ed8;
    box-shadow: 0 0 0 3px rgba(29, 78, 216, .08);
}

.form-submit {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

.form-submit button {
    border: none;
    cursor: pointer;
    padding: 13px 28px;
    border-radius: 8px;
    background: var(--primary-color);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: .3s;
}

.form-submit button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}


/* =====================================================
   SECOND SECTION
===================================================== */

.contact-lines {
    width: 100%;
    max-width: 1200px;
    margin: 70px auto;
    padding: 0 20px;
    color: var(--primary-color);
    min-width: 0;
}

.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact-lines h3 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--primary-color);
    margin: 0 0 15px;
    text-align: center;
    overflow-wrap: break-word;
}

.contact-lines > p {
    max-width: 800px;
    margin: 0 auto 35px;
    color: #666;
    font-size: 17px;
    line-height: 1.7;
    text-align: center;
    overflow-wrap: break-word;
}


/* =====================================================
   DEALS CARD
===================================================== */

.deals-card {
    width: 100%;
    background: #fff;
    border: 1px solid #e3e7ee;
    border-radius: 18px;
    padding: 30px;
    margin-bottom: 70px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.deals-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.deals-heading i {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef4ff;
    color: #1d4ed8;
    border-radius: 10px;
}

.deals-heading h2 {
    margin: 0;
    color: #142f6b;
    font-size: 27px;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
    width: 100%;
}

.deal-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 15px;
    background: #f7f9fc;
    border-radius: 10px;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    transition: .25s;
}

.deal-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}

.deal-item i {
    color: #1d4ed8;
    font-size: 17px;
    width: 20px;
    flex-shrink: 0;
    text-align: center;
}

.deal-item span {
    min-width: 0;
    overflow-wrap: break-word;
}


/* =====================================================
   ADDRESS CARD
===================================================== */

.adress-container {
    width: 100%;
    padding: 35px;
    display: flex;
    align-items: center;
    gap: 5%;
    background: #fff;
    border: 1px solid #e3e7ee;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    min-width: 0;
}

.address-content {
    flex: 0 0 42%;
    width: 42%;
    min-width: 0;
}

.address-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef4ff;
    color: #1d4ed8;
    border-radius: 12px;
    margin-bottom: 15px;
}

.address-icon i {
    font-size: 25px;
}

.address-label {
    display: block;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.address-content h2 {
    color: #142f6b;
    font-size: 30px;
    margin: 0 0 15px;
    overflow-wrap: break-word;
}

.address-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 25px;
    overflow-wrap: break-word;
}


/* =====================================================
   MAP
===================================================== */

.adress-container iframe {
    flex: 1 1 53%;
    width: 53% !important;
    height: 380px;
    min-width: 0;
    display: block;
    border: 0;
    border-radius: 15px;
}


/* =====================================================
   MAP BUTTON
===================================================== */

.map-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 100%;
    padding: 12px 18px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

.map-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 992px) {

    .contact-section {
        padding: 40px 25px;
    }

    .info {
        gap: 35px;
        padding: 28px;
    }

    .contact-image-box {
        flex-basis: 42%;
        width: 42%;
        height: 350px;
    }

    .Number-detail {
        width: 58%;
    }

    .Number-detail h2 {
        font-size: 30px;
    }

    .deals-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .adress-container {
        gap: 30px;
        padding: 28px;
    }

    .address-content {
        flex-basis: 45%;
        width: 45%;
    }

    .adress-container iframe {
        width: 55% !important;
        flex-basis: 55%;
        height: 320px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .contact-section {
        width: 100%;
        padding: 35px 18px 45px;
    }

    .contact-section h1 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .info {
        width: 100%;
        flex-direction: column;
        gap: 28px;
        padding: 22px;
        text-align: center;
    }

    .contact-image-box {
        width: 100%;
        flex: none;
        height: 250px;
    }

    .Number-detail {
        width: 100%;
        flex: none;
    }

    .company-label {
        justify-content: center;
        flex-wrap: wrap;
    }

    .Number-detail h2 {
        font-size: 28px;
    }

    .company-description {
        font-size: 15px;
    }

    .contact-detail {
        justify-content: center;
        text-align: left;
        width: 100%;
    }

    .btn-group {
        justify-content: center;
        width: 100%;
    }

    /* FORM */

    .lead-form-section {
        margin: 45px 0;
    }

    .lead-form-card {
        padding: 22px;
        border-radius: 15px;
    }

    .lead-form {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-group.full-width {
        grid-column: auto;
    }

    .form-submit {
        grid-column: auto;
    }

    .form-submit button {
        width: 100%;
    }

    .contact-lines {
        width: 100%;
        margin: 50px auto;
        padding: 0 15px;
    }

    .contact-lines h3 {
        font-size: 2rem;
    }

    .contact-lines > p {
        font-size: 15px;
    }

    .deals-card {
        width: 100%;
        padding: 20px;
        margin-bottom: 45px;
    }

    .deals-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .deal-item {
        width: 100%;
    }

    .adress-container {
        width: 100%;
        flex-direction: column;
        gap: 25px;
        padding: 22px;
        text-align: center;
    }

    .address-content {
        width: 100%;
        flex: none;
    }

    .address-icon {
        margin: 0 auto 15px;
    }

    .adress-container iframe {
        width: 100% !important;
        flex: none;
        height: 280px;
    }

    .map-button {
        width: 100%;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .contact-section {
        padding: 30px 12px 40px;
    }

    .contact-section h1 {
        font-size: 2.2rem;
    }

    .info {
        padding: 18px;
        border-radius: 15px;
    }

    .contact-image-box {
        height: 210px;
    }

    .Number-detail h2 {
        font-size: 24px;
    }

    .contact-detail a {
        font-size: 14px;
    }

    .btn-group {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .lead-form-card {
        padding: 17px;
    }

    .lead-form-heading h2 {
        font-size: 25px;
    }

    .lead-form-heading p {
        font-size: 13px;
    }

    .contact-lines h3 {
        font-size: 1.7rem;
    }

    .deals-card {
        padding: 17px;
    }

    .deals-heading h2 {
        font-size: 23px;
    }

    .adress-container {
        padding: 18px;
    }

    .address-content h2 {
        font-size: 24px;
    }

    .adress-container iframe {
        height: 240px;
    }
}