/* Styles spécifiques pour la page contact */

/* Hero Section */
.page-hero {
    height: 60vh;
    background: linear-gradient(rgba(45, 80, 22, 0.8), rgba(139, 69, 19, 0.8)), 
                url('../images/SHOOTING - PERSONNES/_MG_9189.JPG') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

.page-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-hero .hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Section Contact Principal */
.contact-main {
    padding: 80px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Informations de Contact */
.contact-info h2,
.contact-methods h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    text-align: center;
}

.info-block {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.info-block:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.info-details h4 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.info-details p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Horaires */
.schedule {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.schedule-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: var(--text-color);
}

.time {
    color: var(--primary-brown);
    font-weight: bold;
}

/* Bouton carte */
.map-btn {
    background: var(--primary-brown);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.map-btn:hover {
    background: var(--secondary-brown);
    transform: translateY(-2px);
}

/* Informations pratiques */
.practical-info {
    list-style: none;
}

.practical-info li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.practical-info li i {
    color: var(--primary-green);
    margin-right: 1rem;
    font-size: 1.1rem;
}

/* Options de livraison */
.delivery-options {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.delivery-badge {
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Cartes de Contact */
.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    transition: left 0.3s ease;
}

.contact-card:hover::before {
    left: 0;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-card h4 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-btn {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-btn:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #128C7E;
}

/* Section Réseaux Sociaux */
.social-section {
    margin-top: 3rem;
}

.social-section h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.facebook .social-icon { background: #1877F2; }
.instagram .social-icon { background: linear-gradient(45deg, #F56040, #E1306C, #833AB4); }
.tiktok .social-icon { background: #000000; }
.linkedin .social-icon { background: #0A66C2; }

.social-info h5 {
    color: var(--primary-green);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.social-info p {
    color: var(--text-color);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.social-info span {
    color: var(--primary-brown);
    font-size: 0.8rem;
    font-weight: bold;
}

/* Section CTA - Call to Action */
.contact-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    background: var(--white);
    color: var(--primary-green);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: var(--light-brown);
}

.cta-btn i {
    font-size: 1.2rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--text-color);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

.close:hover {
    color: var(--primary-brown);
}

.modal-body {
    padding: 3rem;
}

.modal-body h2 {
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.privacy-content h4 {
    color: var(--primary-green);
    margin: 2rem 0 1rem 0;
}

.privacy-content p,
.privacy-content li {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-content ul {
    margin-left: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .info-block {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .schedule-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .page-hero .hero-content h1 {
        font-size: 2rem;
    }

    .contact-info h2,
    .contact-methods h2 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 2rem;
        margin: 0 1rem;
    }

    .modal-body {
        padding: 2rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .info-block {
        padding: 1.5rem;
    }
}

/* Animations */
.info-block,
.contact-card,
.social-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.info-block:nth-child(1) { animation-delay: 0.1s; }
.info-block:nth-child(2) { animation-delay: 0.2s; }
.info-block:nth-child(3) { animation-delay: 0.3s; }

.contact-card:nth-child(1) { animation-delay: 0.1s; }
.contact-card:nth-child(2) { animation-delay: 0.2s; }
.contact-card:nth-child(3) { animation-delay: 0.3s; }

/* Navigation active */
.nav-link.active {
    background-color: rgba(255,255,255,0.2);
    border-radius: 5px;
}
