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

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

.hero-title {
    position: absolute;
    right: 9%;
    bottom: 36%;
    width: unset;
}

/* Deals Section */
.deal-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 70px 60px 100px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.deal-card {
    width: 100%;
    max-width: 640px;
    border-radius: 30px;
    background: rgba(89, 78, 143, 0.06);
    margin: 0 auto;
}

.deal-img {
    border-radius: 30px 30px 0 0;
    background: #D9D9D9;
}

.deal-img img {
    width: 100%;
    border-radius: 30px 30px 0 0;
}

.deal-wrapper {
    padding: 32px 32px 50px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.deal-content-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.deal-content-wrapper>.deal-content>div {
    width: 100%;
}



.deal-wrapper h3 {
    color: var(--primary-purple);
    font-family: Gotham;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    text-transform: uppercase;
}

.deal-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.deal-content>div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 90%;
}

.deal-content img {
    width: 24px;
    height: 24px;
}

.deal-content h6 {
    color: var(--text-dark);
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.deal-content p {
    color: var(--primary-purple);
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    white-space: nowrap;
}

.deal-wrapper .btn {
    margin-top: 26px;
}

.deal-price {
    width: 100%;
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.deal-price p {
    color: var(--primary-purple);
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    white-space: nowrap;
}

/* Appointment Section */
.appointment-section {
    display: flex;
    gap: 50px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 70px;
    background: linear-gradient(180deg, rgba(129, 30, 161, 0.3) 0%, rgba(89, 78, 143, 0.3) 100%);
}

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

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

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

.appointment-form-wrapper h2 {
    font-family: Gotham;
    font-weight: 300;
    font-size: 32px;
    line-height: 48px;
    color: var(--text-dark);
}

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

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

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

.appointment-form input::placeholder,
.appointment-form textarea::placeholder {
    color: var(--text-dark);
    opacity: 1;
}

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

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

@media (max-width: 1440px) {

    .appointment-section,
    .deal-section {
        padding-left: 40px;
        padding-right: 40px;
    }

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

@media (max-width:1200px) {
    .deal-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .appointment-section {
        flex-direction: column;
    }

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

    .appointment-form-wrapper {
        width: 100%;
    }
}

@media (max-width:1025px) {
    .deal-section {
        grid-template-columns: 1fr;
    }

}

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

    .map-section {
        margin-top: 50px;
    }

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

    .hero-title {
        position: static;
    }

    .deal-section {
        gap: 30px;
        padding-top: 50px;
    }

    .deal-wrapper h3 {
        font-size: 20px;
        line-height: 24px;
    }

    .deal-wrapper {
        gap: 20px;
        padding: 20px 20px 30px;
    }

    .deal-content-wrapper {
        gap: 20px;
    }

    .deal-content h6,
    .deal-content p,
    .deal-price p {
        font-size: 16px;
        line-height: 20px;
    }

    .deal-content {
        gap: 20px;
    }

    .deal-content img {
        width: 20px;
        height: 20px;
    }

    .deal-wrapper .btn {
        margin-top: 12px;
    }

    .deal-content>div {
        gap: 8px;
    }

}

@media (max-width: 480px) {

    .appointment-section,
    .deal-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .appointment-form-wrapper h2 {
        font-size: 24px;
    }

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

    .deal-content>div {
        gap: 6px;
    }

    .deal-content img {
        width: 16px;
        height: 16px;
    }

    .deal-content h6,
    .deal-content p,
    .deal-price p {
        font-size: 14px;
        line-height: 18px;
    }

    .deal-wrapper {
        padding-left: 14px;
        padding-right: 14px;
    }

    .deal-content-wrapper {
        grid-template-columns: 1fr;
    }

    .deal-content {
        gap: 14px;
    }

    .deal-wrapper h3 {
        font-size: 18px;
        line-height: 22px;
    }
}