@charset "UTF-8";

/*-----------------------------------------------------------------------------------
    Elena Ritualiste Du Coeur - Site de Voyance Professionnel
    Design inspiré d'Annarita Cartomanzia
-----------------------------------------------------------------------------------*/

/* Import des polices mystérieuses et élégantes */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Old+Standard+TT:wght@400;700&family=Crimson+Text:wght@400;600;700&display=swap');

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Old Standard TT', serif;
    font-size: 16px;
    line-height: 1.6;
    color: #E8E8E8;
    background-color: #0A0A0A;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: #F5F5F5;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

p {
    color: #B8B8B8;
    line-height: 1.7;
}

a {
    color: #D4AF37;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #FFD700;
    text-decoration: none;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* Container principal */
.main-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 100%);
}

/* Section générale */
.section {
    /* padding: 80px 0; */
    background-color: #000000;
    position: relative;
}

.section:nth-child(even) {
    background-color: #0A0A0A;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #D4AF37 50%, transparent 100%);
    opacity: 0.3;
}

/* Container custom */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Boutons mystérieux */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 0;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid #D4AF37;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #2D1810 0%, #D4AF37 100%);
    color: #FFFFFF;
    border-color: #D4AF37;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #2D1810 100%);
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    color: #1A1A1A;
}

.btn-outline {
    background: transparent;
    color: #D4AF37;
    border-color: #D4AF37;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #FFD700;
    border-color: #FFD700;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

/* Header mystérieux */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(212, 175, 55, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 40px rgba(212, 175, 55, 0.3);
    border-bottom-color: rgba(212, 175, 55, 0.5);
}

.header.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header wrapper */
.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-box .logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.header-menu-toggler {
    display: block;
}

.header-menu-toggler .menu-toggler {
    font-size: 24px;
    color: #D4AF37;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-menu-toggler .menu-toggler:hover {
    color: #FFD700;
    transform: scale(1.1);
}

/* Menu mobile (off-canvas) */
.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    z-index: 1100;
    padding: 80px 30px 30px;
}

.offcanvas-menu.active {
    right: 0;
}

.offcanvas-wrapper .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
}

.offcanvas-wrapper .close-btn .menu-close {
    font-size: 24px;
    color: #D4AF37;
    cursor: pointer;
}

.offcanvas-wrapper .logo {
    text-align: center;
    margin-bottom: 40px;
}

.offcanvas-wrapper .logo img {
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.primary-menu ul {
    list-style: none;
    padding: 0;
}

.primary-menu li {
    margin-bottom: 20px;
}

.primary-menu a {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    color: #B8B8B8;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    display: block;
}

.primary-menu a:hover {
    color: #FFD700;
    border-bottom-color: #D4AF37;
    padding-left: 10px;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1050;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section mystérieuse */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: grayscale(100%) contrast(1.2) brightness(0.4);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: #F5F5F5;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #B8B8B8;
    margin-bottom: 3rem;
    font-weight: 400;
    font-family: 'Old Standard TT', serif;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Section mystérieuse */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #0A0A0A 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.8rem;
    color: #F5F5F5;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

.section-title p {
    font-size: 1.1rem;
    color: #B8B8B8;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Old Standard TT', serif;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(18, 18, 18, 0.95) 100%);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1A1A1A 0%, #D4AF37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #FFFFFF;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #F5F5F5;
    font-family: 'Cinzel', serif;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.service-card p {
    color: #B8B8B8;
    margin-bottom: 1.5rem;
    font-family: 'Old Standard TT', serif;
    line-height: 1.6;
}

/* About Section mystérieuse */
.about-section {
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(212,175,55,0.05)"/></svg>');
    opacity: 0.1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%, rgba(212, 175, 55, 0.1) 100%);
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%) contrast(1.1) brightness(0.9);
    transition: filter 0.4s ease;
}

.about-image:hover img {
    filter: grayscale(0%) contrast(1.2) brightness(1.1);
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #F5F5F5;
    font-family: 'Cinzel', serif;
    text-shadow: 0 2px 15px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 0;
    border-left: 3px solid #D4AF37;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1A1A1A 0%, #D4AF37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #F5F5F5;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-content p {
    color: #B8B8B8;
    font-size: 0.95rem;
    font-family: 'Old Standard TT', serif;
    line-height: 1.6;
}

/* Testimonials Section mystérieuse */
.testimonials-section {
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 50%, #000000 100%);
    color: #FFFFFF;
    padding: 120px 0;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(212,175,55,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.testimonial-item {
    margin-bottom: 4rem;
    padding: 40px;
    background: rgba(26, 26, 26, 0.7);
    border-radius: 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.testimonial-text {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 2.5rem;
    color: #E8E8E8;
    font-family: 'Old Standard TT', serif;
    line-height: 1.6;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 4rem;
    color: #D4AF37;
    font-family: 'Cinzel', serif;
    position: absolute;
    opacity: 0.3;
}

.testimonial-text::before {
    top: -20px;
    left: -30px;
}

.testimonial-text::after {
    bottom: -40px;
    right: -30px;
}

.testimonial-author {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: #D4AF37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.testimonial-location {
    color: #B8B8B8;
    font-size: 0.9rem;
    font-family: 'Old Standard TT', serif;
    margin-top: 0.5rem;
}

/* Stats Section mystérieuse */
.stats-section {
    background: linear-gradient(135deg, #000000 0%, #2D1810 50%, #000000 100%);
    color: #FFFFFF;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.05) 0%, transparent 25%, transparent 75%, rgba(212, 175, 55, 0.05) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 40px 20px;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.6);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #FFD700);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #D4AF37;
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.stat-item p {
    font-size: 1.1rem;
    color: #B8B8B8;
    font-family: 'Old Standard TT', serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Section mystérieuse */
.cta-section {
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 50%, #000000 100%);
    color: #FFFFFF;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #F5F5F5;
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    letter-spacing: 1px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3.5rem;
    color: #B8B8B8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Old Standard TT', serif;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #D4AF37;
    color: #D4AF37;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
    font-size: 18px;
    padding: 18px 40px;
}

.cta-buttons .btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #FFD700;
    color: #FFD700;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #1A1A1A 0%, #D4AF37 100%);
    color: #FFFFFF;
}

.cta-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #1A1A1A 100%);
    color: #1A1A1A;
}

/* Footer Section mystérieuse */
.footer-section {
    background: linear-gradient(135deg, #000000 0%, #0A0A0A 100%);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #D4AF37 20%, #FFD700 50%, #D4AF37 80%, transparent 100%);
}

.footer-section .container {
    padding-left: 50px;
    padding-right: 50px;
}

.footer-top .row {
    margin-left: -25px;
    margin-right: -25px;
}

.footer-top .row>[class*="col-"] {
    padding-left: 25px;
    padding-right: 25px;
}

.footer-widget {
    color: #B8B8B8;
}

.footer-widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 25px;
    font-family: 'Cinzel', serif;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37 0%, #FFD700 100%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.footer-logo img {
    max-width: 200px;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    transition: filter 0.4s ease;
}

.footer-logo img:hover {
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.7));
}

.footer-description {
    font-size: 16px;
    line-height: 1.8;
    color: #B8B8B8;
    margin-bottom: 0;
    font-family: 'Old Standard TT', serif;
}

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

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

.footer-links li a {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-links li a i {
    margin-right: 8px;
    color: #8B4513;
    font-size: 10px;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #DAA520;
    transform: translateX(5px);
}

.footer-links li a:hover i {
    color: #DAA520;
}

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

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.footer-contact-info li i {
    margin-right: 12px;
    color: #DAA520;
    font-size: 18px;
    min-width: 20px;
    margin-top: 2px;
}

.footer-contact-info li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info li a:hover {
    color: #DAA520;
}

.footer-bottom {
    border-top: 1px solid rgba(139, 69, 19, 0.2);
}

.footer-copyright p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-copyright .brand-name {
    color: #DAA520;
    font-weight: 700;
    font-family: "Playfair Display", serif;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 5px;
}

.footer-social .social {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 12px;
}

.footer-social .social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(139, 69, 19, 0.2);
    border: 1px solid rgba(139, 69, 19, 0.3);
    border-radius: 50%;
    color: #DAA520;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social .social li a:hover {
    background: linear-gradient(135deg, #8B4513 0%, #DAA520 100%);
    border-color: #DAA520;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.4);
}

.footer-legal-links {
    font-size: 13px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #DAA520;
}

.footer-legal-links .separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media only screen and (max-width: 1400px) {
    .footer-section .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media only screen and (max-width: 1199px) {
    .footer-section .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .footer-top .row {
        margin-left: -20px;
        margin-right: -20px;
    }

    .footer-top .row>[class*="col-"] {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media only screen and (max-width: 991px) {
    .footer-section {
        padding: 60px 0 30px;
    }

    .footer-section .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .footer-widget {
        margin-bottom: 40px;
    }

    .main-menu {
        display: none;
    }

    .menu-toggler {
        display: block;
    }

    .hero-section {
        height: 90vh;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-section {
        padding: 50px 0 30px;
    }

    .footer-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-top .row {
        margin-left: -15px;
        margin-right: -15px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section {
        padding: 60px 0;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {

    .section-title,
    .service-card,
    .about-content,
    .testimonial-item {
        opacity: 0;
        animation: fadeInUp 0.8s ease-out forwards;
    }

    .section-title:nth-child(1) {
        animation-delay: 0.1s;
    }

    .service-card:nth-child(1) {
        animation-delay: 0.2s;
    }

    .service-card:nth-child(2) {
        animation-delay: 0.3s;
    }

    .service-card:nth-child(3) {
        animation-delay: 0.4s;
    }

    .about-content {
        animation-delay: 0.3s;
    }

    .testimonial-item {
        animation-delay: 0.2s;
    }
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

/* Override pour forcer les fonds sombres sur toutes les pages */
.section-padding.bg-light,
.section-padding,
.bg-light {
    background: linear-gradient(135deg, #000000 0%, #0A0A0A 100%) !important;
}

.section {
    background-color: #000000 !important;
}

.section:nth-child(even) {
    background-color: #0A0A0A !important;
}