/* ========================================
   STYLES PROPRES POUR SUIVEZ-NOUS ET CONTACTEZ-NOUS
   ======================================== */

/* Section Suivez-Nous - Design Moderne */
.social-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.social-card {
    background: white !important;
    border: 1px solid #e9ecef !important;
    border-radius: 12px !important;
    padding: 35px 20px !important;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
    border-color: #D4AF37 !important;
}

.social-icon {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 15px !important;
    font-size: 28px !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.social-card:hover .social-icon {
    transform: scale(1.1);
}

.social-icon.facebook {
    background: #1877F2 !important;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%) !important;
}

.social-icon.youtube {
    background: #FF0000 !important;
}

.social-icon.whatsapp {
    background: #25D366 !important;
}

.social-icon.location {
    background: #D4AF37 !important;
}

.social-card h3 {
    font-size: 18px !important;
    font-weight: 600 !important;
    margin: 0 0 8px 0 !important;
    color: #1a1a1a !important;
}

.social-card p {
    color: #666 !important;
    margin: 0 0 15px 0 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

.social-link-text {
    color: #D4AF37 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
}

.social-card:hover .social-link-text {
    color: #B8860B !important;
}

/* Section Contactez-Nous - Design Moderne */
.contact {
    background: white;
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-card {
    background: transparent !important;
    padding: 20px 0 !important;
    border: none !important;
    border-bottom: 1px solid #e9ecef !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.contact-card:last-child {
    border-bottom: none !important;
}

.contact-icon {
    width: 45px !important;
    height: 45px !important;
    border-radius: 8px !important;
    background: #D4AF37 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 0 12px 0 !important;
    color: white !important;
    font-size: 20px !important;
}

.contact-card h3 {
    font-size: 16px !important;
    font-weight: 700 !important;
    margin: 0 0 8px 0 !important;
    color: #1a1a1a !important;
}

.contact-card p {
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
    color: #666 !important;
}

.contact-card a {
    color: #D4AF37 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}

.contact-card a:hover {
    color: #B8860B !important;
    text-decoration: underline !important;
}

/* Formulaire de Contact */
.contact-form-wrapper {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    background: #D4AF37 !important;
    color: white !important;
    border: none !important;
    padding: 15px 40px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-form .btn-primary:hover {
    background: #B8860B !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3) !important;
}

/* Responsive */
@media (max-width: 968px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .social-section,
    .contact {
        padding: 50px 0;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
}

/* ========================================
   FOOTER - Design Moderne
   ======================================== */
.footer {
    background: #1a1a1a !important;
    color: #ffffff !important;
    padding: 60px 0 30px !important;
}

.footer-content {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1fr 1fr !important;
    gap: 40px !important;
    margin-bottom: 40px !important;
}

.footer-col h4 {
    color: #D4AF37 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin: 0 0 20px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.footer-logo {
    width: 120px !important;
    height: auto !important;
    margin-bottom: 20px !important;
}

.footer-description {
    color: #cccccc !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
    margin-bottom: 25px !important;
}

.footer-legal {
    margin-top: 20px !important;
}

.footer-legal p {
    color: #999 !important;
    font-size: 12px !important;
    margin: 5px 0 !important;
}

.footer-legal strong {
    color: #D4AF37 !important;
}

.footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links li {
    margin-bottom: 12px !important;
}

.footer-links a {
    color: #cccccc !important;
    text-decoration: none !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.footer-links a:hover {
    color: #D4AF37 !important;
    padding-left: 5px !important;
}

.footer-contact {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-contact li {
    display: flex !important;
    align-items: flex-start !important;
    margin-bottom: 20px !important;
    color: #cccccc !important;
    font-size: 14px !important;
}

.footer-contact i {
    color: #D4AF37 !important;
    font-size: 16px !important;
    margin-right: 12px !important;
    margin-top: 3px !important;
    min-width: 20px !important;
}

.footer-contact a {
    color: #cccccc !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.footer-contact a:hover {
    color: #D4AF37 !important;
}

.footer-bottom {
    border-top: 1px solid #333 !important;
    padding-top: 25px !important;
    text-align: center !important;
}

.footer-bottom p {
    color: #999 !important;
    font-size: 13px !important;
    margin: 0 !important;
}

/* Footer Responsive */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 40px 0 20px !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}
