/* fichier : user/themes/regard-sur/css/contact.css */

/* ========================================
   HERO SECTION CONTACT
======================================== */
.hero-contact {
    background: linear-gradient(135deg, #1c1c1c 0%, #2a2a2a 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
	padding: 200px 0 200px;
}

.hero-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(238, 121, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(238, 121, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Contenu texte */
.hero-content {
    max-width: 650px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #f9f9f9;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-tagline {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #EE7900;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.7;
    color: rgba(249, 249, 249, 0.85);
    margin-bottom: 40px;
}

/* Image Hero */
.hero-image-wrapper {
    max-width: 500px;
	margin: 0 auto;
}

.hero-image {
    position: relative;
    width: 100%;
    overflow: visible;
    transform: translateZ(0);
}


.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.6s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Placeholder si pas d'image */
.hero-image.placeholder {
    background: linear-gradient(135deg, #2a2a2a 0%, #1c1c1c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    opacity: 0.3;
}

/* Garanties sous le hero */
.hero-guarantees {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.guarantee-item i {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

/* ===== ANIMATIONS HERO CONTACT ===== */

/* États initiaux */
.hero-contact .hero-title,
.hero-contact .hero-tagline,
.hero-contact .hero-description,
.hero-contact .hero-guarantees,
.hero-contact .hero-image-wrapper {
    opacity: 0;
}

/* Titre */
.hero-contact .hero-title {
    animation: heroFadeSlideLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

/* Tagline */
.hero-contact .hero-tagline {
    animation: heroFadeSlideLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

/* Description */
.hero-contact .hero-description {
    animation: heroFadeSlideLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.45s forwards;
}

/* Garanties */
.hero-contact .hero-guarantees {
    animation: heroFadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

/* Image : depuis la droite */
.hero-contact .hero-image-wrapper {
    animation: heroFadeSlideRight 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

/* Keyframes (si contact.css est chargé indépendamment d'agence.css) */
@keyframes heroFadeSlideLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes heroFadeSlideRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Accessibilité */
@media (prefers-reduced-motion: reduce) {
    .hero-contact .hero-title,
    .hero-contact .hero-tagline,
    .hero-contact .hero-description,
    .hero-contact .hero-guarantees,
    .hero-contact .hero-image-wrapper {
        animation: none;
        opacity: 1;
    }
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-contact {
        padding: 80px 0 60px;
    }
    
    .hero-grid {
        gap: 40px;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
	
    .hero-guarantees {
        margin-top: 24px;
        gap: 1rem;
        flex-direction: column;
    }
    
    .guarantee-item {
        font-size: 0.9rem;
    }
	
	.hero-image-wrapper {
    max-width: 300px;
	}
	
	.hero-image img {
    width: 250px;
}

}

@media (max-width: 480px) {
    .hero-contact {
        padding: 60px 0 40px;
    }
    
    .hero-grid {
        gap: 30px;
    }
	
	.hero-image-wrapper {
    max-width: 100%;
	}
}

/* ========================================
   CONTACT CTA SECTION
======================================== */
#contact {
    position: relative;
}

.contact-cta-section {
    margin-top: 0;
}