/* =====================================================
   Hi Beirut Marrakech — Page Contact
   ===================================================== */

/* ---------- Carte info (localisation) ---------- */
.info-row {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.info-row:last-child {
    border-bottom: none;
}

.info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B8960C;
}

.info-label {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #7A7A7A;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-value {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #1A1A1A;
    font-size: 1rem;
    line-height: 1.4;
}

/* ---------- Carte Google Maps ---------- */
.map-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 3px solid white;
    box-shadow: 0 20px 40px rgba(17, 61, 27, 0.12);
    min-height: 420px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    min-height: 420px;
    filter: saturate(1.05);
}

/* ---------- Cartes contact (3 méthodes) ---------- */
.contact-method {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(17, 61, 27, 0.05);
    transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.contact-method:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.18);
    border-color: rgba(212, 175, 55, 0.4);
}

.contact-method-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.contact-method:hover .contact-method-icon {
    transform: scale(1.1) rotate(-5deg);
}

.contact-method.whatsapp .contact-method-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.18), rgba(18, 140, 126, 0.1));
    color: #25D366;
}

.contact-method.phone .contact-method-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(184, 150, 12, 0.1));
    color: #B8960C;
}

.contact-method.glovo .contact-method-icon {
    background: linear-gradient(135deg, rgba(255, 194, 68, 0.2), rgba(240, 176, 48, 0.1));
    color: #F0B030;
}

.contact-method h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.375rem;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}

.contact-method p {
    font-family: 'DM Sans', sans-serif;
    color: #7A7A7A;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.contact-method-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom: 0.35rem;
    border-bottom: 2px solid;
    transition: gap 0.3s ease;
}

.contact-method:hover .contact-method-cta {
    gap: 0.75rem;
}

/* ---------- FAQ Accordion ---------- */
.faq-item {
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 16px rgba(17, 61, 27, 0.04);
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.08);
}

.faq-item.open {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #1A1A1A;
    transition: color 0.3s ease;
}

.faq-question:hover { color: #B8960C; }

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    color: #B8960C;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    background: #D4AF37;
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-answer-inner {
    padding: 0 1.75rem 1.5rem;
    font-family: 'DM Sans', sans-serif;
    color: #3D3D3D;
    line-height: 1.7;
    font-size: 0.95rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 1.25rem;
}

/* ---------- Réseaux sociaux ---------- */
.social-link {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}

.social-insta {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-wa { background: linear-gradient(135deg, #25D366, #128C7E); }

.social-phone { background: linear-gradient(135deg, #D4AF37, #B8960C); }
