/* ======= Page Contact (contact.html) ======= */

.contact h3 {
    font-size: 32px;
    color: #222;
}
.contact-detail-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.contact .contact-detail-card.reservations {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    transition: box-shadow 0.5s ease;
}
.contact .contact-detail-card.reservations:hover,
.contact .contact-detail-card.reservations:focus-within {
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.14);
}
.contact .contact-detail-card .icon {
    top: 0;
    flex-shrink: 0;
}
.contact .contact-detail-card .icon span {
    font-size: 22px;
    color: #8e6d45;
}
.contact .contact-detail-card .text {
    margin-left: 12px;
    font-size: 13px;
    line-height: 1.45;
    color: #444;
}
.contact .contact-detail-card .text p {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 2px 0;
}
.contact .contact-detail-card .text a {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.3;
}

/* Bloc app (type Sobha « Luxury living, one tap away ») */
.contact-app-promo-surface {
    position: relative;
    width: 100%;
    padding: 4rem 0;
    overflow: hidden;
    margin-bottom: 4rem;
    background-color: #ffffff;
    /* Blanc à gauche (texte) → image visible à droite, image ancrée à droite */
    background-image: linear-gradient(
        90deg,
        #ffffff 0%,
        rgba(255, 255, 255, 1) 30%,
        rgba(255, 255, 255, 0.6) 80%,
        rgba(255, 255, 255, 0.7) 90%,
        rgba(255, 255, 255, 0.8) 100%
    ),
    url("../img/import/hero1.webp");
    background-size: cover, cover;
    background-repeat: no-repeat;
}
.contact-app-promo-surface .container {
    position: relative;
    z-index: 1;
}
.contact-app-promo-row {
    margin-top: 0;
    padding: 0;
    border-top: none;
}
.contact-app-promo-visual img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: min(560px, 70vh);
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}
.contact-app-promo-eyebrow {
    font-size: 15px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 12px;
}
.contact-app-promo-title {
    font-family: 'Gilda Display', serif;
    font-weight: 400;
    color: #222;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    margin-bottom: 22px;
}
.contact-app-promo-title-line {
    display: block;
}
.contact-app-promo-title-line--accent {
    color: #aa8453;
}
.contact-app-promo-lead {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 24px;
    max-width: 34em;
}
.contact-app-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
    margin-bottom: 0;
}
.contact-app-promo-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: #444;
}
.contact-app-promo-item-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(170, 132, 83, 0.12);
    color: #aa8453;
}
.contact-app-promo-item-icon i {
    font-size: 18px;
    line-height: 1;
}
.contact-app-promo-item-text {
    display: block;
    padding-top: 2px;
}
@media screen and (max-width: 575px) {
    .contact-app-promo-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.85rem 0.65rem;
    }
    .contact-app-promo-item {
        font-size: 12px;
        gap: 8px;
    }
    .contact-app-promo-item-icon {
        width: 34px;
        height: 34px;
        border-radius: 8px;
    }
    .contact-app-promo-item-icon i {
        font-size: 15px;
    }
}
@media screen and (max-width: 991px) {
    .contact-app-promo-surface {
        padding-top: clamp(2.25rem, 5vw, 3.5rem);
        padding-bottom: clamp(2.25rem, 5vw, 3.5rem);
    }
}

.map {
    /* -webkit-filter: grayscale(100%);
    filter: grayscale(100%); */
}
.map-embed-responsive {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 0;
    padding-bottom: 75%;
}
.map-embed-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
