/*--------------------------------------------------------------
# Footer & Sections Spéciales
--------------------------------------------------------------*/

/* FOOTER */
/* FOOTER MODERN PREMIUM */
.site-footer {
	background: #050505;
	color: #E8E8E8;
	padding: 4rem 0 2rem 0;
	margin-top: 4rem;
	border-top: 4px solid var(--color-primary);
	text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.footer-logo-area {
    margin-bottom: 0.5rem;
}

.footer-logo-area img {
    max-height: 80px;
    width: auto;
}

.footer-site-title {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

/* Social Area */
.footer-social-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.footer-social-list {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
}

.footer-social-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #FFFFFF;
    transition: all var(--transition-base);
}

.footer-social-list li a:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-md);
    border-color: transparent;
}

.footer-social-list li a[aria-label="Facebook"]:hover { background: #1877F2; }
.footer-social-list li a[aria-label="Twitter"]:hover { background: #000000; }
.footer-social-list li a[aria-label="YouTube"]:hover { background: #FF0000; }
.footer-social-list li a[aria-label="Instagram"]:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.footer-social-list li a[aria-label="WhatsApp"]:hover { background: #25D366; }
.footer-social-list li a[aria-label="TikTok"]:hover { background: #010101; }

/* Horizontal Menu */
.footer-nav {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
}

.footer-menu-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list li {
    position: relative;
}

.footer-menu-list li:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -1.2rem;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
}

.footer-menu-list a {
    color: #E8E8E8;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-menu-list a:hover {
    color: var(--color-primary);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #888888;
    letter-spacing: 0.5px;
}

.footer-language-wrap {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
}

.footer-bottom p {
	margin: 0.5rem 0;
}

.footer-bottom a {
	color: var(--color-primary);
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-bottom a:hover {
	text-decoration: underline;
	transform: scale(1.05);
}

/* SECTIONS SPÉCIALES */

/* Section Hero */
.section-hero {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
	color: #FFFFFF;
	padding: 4rem 2rem;
	border-radius: 12px;
	margin: 2rem 0;
	text-align: center;
	animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 12px 32px rgba(255, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
}

.section-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
	pointer-events: none;
}

.section-hero .container {
	position: relative;
	z-index: 2;
}

.section-hero h1,
.section-hero h2 {
	color: #FFFFFF;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	letter-spacing: 1px;
}

.section-hero p {
	font-size: 1.1rem;
	line-height: 1.8;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	margin-bottom: 2rem;
}

/* Section Call-to-Action */
.cta-section {
	background: linear-gradient(135deg, #FFFFFF 0%, #F9F9F9 100%);
	border: 2px solid var(--color-primary);
	border-radius: 12px;
	padding: 3rem;
	margin: 3rem 0;
	text-align: center;
	animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: var(--shadow-md);
}

.cta-section h2 {
	color: var(--color-primary);
	margin-bottom: 1rem;
}

.cta-section p {
	color: var(--color-text-light);
	margin-bottom: 1.5rem;
	font-size: 1.05rem;
}

/* Section de statistiques */
.stats-section {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.stat-item {
	text-align: center;
	padding: 2rem;
	background: #FFFFFF;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(255, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	border-top: 4px solid var(--color-primary);
}

.stat-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 32px rgba(255, 0, 0, 0.2);
	background: linear-gradient(135deg, #FFFFFF 0%, #F9F9F9 100%);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-primary);
	line-height: 1;
	margin-bottom: 0.5rem;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover .stat-number {
	transform: scale(1.1);
	animation: pulse 1s infinite;
}

.stat-label {
	font-size: 0.95rem;
	color: var(--color-text-light);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Section Testimonials */
.testimonials-section {
	margin: 3rem 0;
	animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.testimonial {
	background: #FFFFFF;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(255, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-left: 4px solid var(--color-primary);
	position: relative;
	animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial::before {
	content: '"';
	position: absolute;
	top: -20px;
	left: 10px;
	font-size: 3rem;
	color: var(--color-primary);
	opacity: 0.3;
	font-weight: 700;
	line-height: 1;
}

.testimonial:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 32px rgba(255, 0, 0, 0.2);
}

.testimonial-text {
	margin-bottom: 1rem;
	line-height: 1.8;
	color: var(--color-text-light);
	font-style: italic;
}

.testimonial-author {
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 0.25rem;
}

.testimonial-role {
	font-size: 0.875rem;
	color: var(--color-text-light);
}

/* Badge spécial */
.featured-badge,
.trending-badge,
.new-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	background: var(--color-primary);
	color: #FFFFFF;
	padding: 0.5rem 0.75rem;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	animation: pulse 2s infinite;
	z-index: 10;
}

.trending-badge::before {
	content: '🔥';
	margin-right: 4px;
}

.new-badge::before {
	content: '✨';
	margin-right: 4px;
}

/* ALERT & NOTICES */
.alert,
.notice,
.message {
	padding: 1.5rem;
	border-radius: 8px;
	margin: 1.5rem 0;
	animation: slideInDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	border-left: 4px solid;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.alert-icon,
.notice-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}

.alert-success,
.notice-success {
	background: #E8F5E9;
	border-color: #4CAF50;
	color: #1B5E20;
}

.alert-error,
.notice-error {
	background: #FFEBEE;
	border-color: var(--color-primary);
	color: #B71C1C;
}

.alert-info,
.notice-info {
	background: #E3F2FD;
	border-color: #2196F3;
	color: #0D47A1;
}

.alert-warning,
.notice-warning {
	background: #FFF3E0;
	border-color: #FF9800;
	color: #E65100;
}

/* CLOSE BUTTON */
.alert-close,
.notice-close {
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	opacity: 0.7;
	transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	margin-left: auto;
}

.alert-close:hover,
.notice-close:hover {
	opacity: 1;
}
