/* Hero Section */
.hero-section {
    height: 590px;
}

.hero-content {
    padding-bottom: 100px;
}

/* Welcome Section */
.welcome-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 70px 70px 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.welcome-section h2 {
    color: var(--primary-purple);
    font-family: Gotham;
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    text-align: center;
}

.welcome-section p {
    color: var(--text-dark);
    text-align: center;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    max-width: 796px;
}

/* Contact Form Section */
.contact-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 70px;
}

.contact-content-wrapper {
    display: flex;
    gap: 50px;
    padding: 35px;
    border-radius: 30px;
    background: var(--primary-blue);
}

.arrow-box svg path{
    stroke: white;
}

.contact-image {
    flex-shrink: 0;
    width: 56%;
    height: auto;
    border-radius: 24px;
    overflow: hidden;
    align-self: center;
}

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

.contact-form-wrapper {
    width: 44%;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 19px 24px;
    border: 1px solid var(--white);
    border-radius: 56px;
    font-family: Gotham;
    font-weight: 300;
    font-size: 16px;
    color: var(--white);
    background-color: transparent;
    outline: none;
}

.contact-form textarea {
    border-radius: 20px;
    resize: none;
    min-height: 125px;
    padding-top: 20px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--white);
    opacity: 1;
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    color: var(--text-dark);
    background-color: var(--white);
}

.btn-outline:hover svg path {
    stroke: var(--text-dark);
}

/* Contact Info Section */
.contact-info-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 70px;
}

.contact-info-section h5 {
    color: var(--text-dark);
    text-align: center;
    font-family: Gotham;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 31px;
    max-width: 766px;
    margin: 0 auto 36px;
}

.info-card-wrapper {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.contact-info-card {
    width: 100%;
    border-radius: 30px;
    background: #FAFAFA;
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-icon {
    display: flex;
    width: 58px;
    height: 58px;
    padding: 17px;
    justify-content: center;
    align-items: center;
    border-radius: 35px;
    background: var(--primary-blue);
    margin-bottom: 25px;
}

.info-icon img {
    width: 100%;
}

.contact-info-card h6 {
    color: var(--primary-purple);
    text-align: center;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
}

.info {
    color: var(--text-dark);
    text-align: center;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    max-width: 339px;
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Map Section */
.map-section {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.map-section iframe {
    width: 100%;
}

@media (max-width: 1440px) {

    .welcome-section,
    .contact-section,
    .contact-info-section {
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-content {
        padding-bottom: 70px;
    }
}

@media (max-width:1200px) {
    .contact-content-wrapper {
        flex-direction: column;
    }

    .contact-image {
        width: 100%;
        max-width: 750px;
    }

    .contact-form-wrapper,
    .about-content {
        width: 100%;
    }
}

@media (max-width:992px) {
    .info-card-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 420px;
    }

    .map-section iframe {
        height: 350px;
    }

    .welcome-section h2 {
        font-size: 24px;
        line-height: 26px;
    }

    .welcome-section p,
    .info,
    .contact-info-card h6 {
        font-size: 16px;
        line-height: 20px;
    }

    .contact-info-section h5 {
        font-size: 18px;
        margin-bottom: 26px;
        line-height: 24px;
    }

    .contact-content-wrapper {
        padding: 20px;
        border-radius: 20px;
    }

    .info-icon {
        width: 48px;
        height: 48px;
        padding: 12px;
    }

    .info-card-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-section,
    .welcome-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

}

@media (max-width: 480px) {

    .welcome-section,
    .contact-section,
    .contact-info-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 15px 20px;
        font-size: 14px;
    }
}