/* HERO */

.contact-hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 50px;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, .75), rgba(0, 0, 0, .35));
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    padding: 20px;
}

.contact-hero-content span {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-hero-content h1 {
    font-size: 74px;
    line-height: 1.1;
    color: #fff;
    font-weight: 800;
}

.contact-hero-content h1 span {
    background: none;
    color: #10b981;
    padding: 0;
    font-size: inherit;
}

.contact-hero-content p {
    color: #ddd;
    font-size: 20px;
    line-height: 1.7;
}

/* CONTACT SECTION */

.contact-main {
    padding: 90px 5%;
}

.contact-wrapper {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* LEFT */

.contact-info-box {
    background: #081433;
    border-radius: 30px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.contact-info-box::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(16, 185, 129, .12);
    top: -70px;
    right: -70px;
}

.contact-info-box h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.contact-info-box p {
    color: #c7d2fe;
    line-height: 1.8;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #fff;
    font-size: 24px;
}

.contact-text h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 8px;
}

.contact-text p,
.contact-text a {
    color: #dbeafe;
    text-decoration: none;
    line-height: 1.8;
    font-size: 16px;
}

.contact-call-btn {
    margin-top: 45px;
    position: relative;
    z-index: 2;
}

.contact-call-btn a {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #ff3040;
    color: #fff;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 60px;
    font-size: 24px;
    font-weight: 800;
    transition: .3s;
}

.contact-call-btn a:hover {
    transform: translateY(-5px);
}

/* FORM */

.contact-form-box {
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
}

.contact-form-box h2 {
    font-size: 42px;
    color: #081433;
    margin-bottom: 15px;
}

.contact-form-box p {
    color: #666;
    margin-bottom: 35px;
    line-height: 1.8;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1/-1;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid #dbe4f0;
    background: #f9fbff;
    border-radius: 16px;
    padding: 16px 18px;
    outline: none;
    font-size: 15px;
    transition: .3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #10b981;
    background: #fff;
}

.form-group textarea {
    height: 160px;
    resize: none;
}

.submit-btn {
    border: none;
    background: #10b981;
    color: #fff;
    padding: 18px 35px;
    border-radius: 60px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.submit-btn:hover {
    background: #0e9f6e;
    transform: translateY(-3px);
}

/* SUPPORT CARDS */

.support-section {
    padding: 20px 5% 90px;
}

.support-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.support-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: .3s;
}

.support-card:hover {
    transform: translateY(-8px);
}

.support-card i {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: #10b981;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 22px;
}

.support-card h3 {
    font-size: 26px;
    color: #081433;
    margin-bottom: 15px;
}

.support-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.support-card a {
    color: #10b981;
    text-decoration: none;
    font-weight: 700;
}

/* MAP */

.map-section {
    padding: 0 5% 90px;
}

.map-wrapper {
    max-width: 1300px;
    margin: auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* RESPONSIVE */

@media(max-width:1100px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .contact-hero-content h1 {
        font-size: 44px;
    }

    .contact-hero-content p {
        font-size: 16px;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 35px 25px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-info-box h2,
    .contact-form-box h2 {
        font-size: 32px;
    }

    .contact-call-btn a {
        font-size: 18px;
        padding: 15px 25px;
    }
}