/* Reset et variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B4513;
    --secondary-color: #DAA520;
    --accent-color: #FF6B35;
    --dark-color: #2C1810;
    --light-color: #F5E6D3;
    --text-color: #3A2317;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    --gradient-secondary: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    --gradient-dark: linear-gradient(135deg, #2C1810 0%, #4A2C1A 100%);
}

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    font-size: 16px;
    overflow-x: hidden;
}

/* Base responsive text styles */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    word-wrap: break-word;
    hyphens: auto;
}

p, li, span {
    word-wrap: break-word;
    hyphens: auto;
}

/* Prevent horizontal overflow */
* {
    max-width: 100%;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Amélioration globale de la responsive */
img {
    max-width: 100%;
    height: auto;
}

.fa-image {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Éviter le débordement horizontal */
html, body {
    overflow-x: hidden;
}

/* Améliorer la lisibilité sur mobile */
@media (max-width: 768px) {
    * {
        word-break: break-word;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(44, 24, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(44, 24, 16, 0.7), rgba(44, 24, 16, 0.7)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="stars" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23DAA520" opacity="0.3"/><circle cx="80" cy="60" r="1.5" fill="%23FFD700" opacity="0.4"/><circle cx="50" cy="90" r="1" fill="%23DAA520" opacity="0.2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23stars)"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(44, 24, 16, 0.3) 100%);
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px var(--shadow);
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px var(--shadow);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-color);
}

.hero-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.symbol {
    position: absolute;
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.symbol-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.symbol-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.symbol-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Section Titles */
.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(139, 69, 19, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Testimonials Preview */
.testimonials-preview {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: var(--white);
}

.testimonials-preview .section-title {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stars {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.author {
    font-weight: 600;
    color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Cinzel', serif;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-section p,
.footer-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(218, 165, 32, 0.3);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        padding: 0 10px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 20px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .service-card,
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .service-card h3,
    .testimonial-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p,
    .testimonial-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 2.2rem;
        text-align: center;
        padding: 0 15px;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
        text-align: center;
        padding: 0 15px;
        line-height: 1.5;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 20px;
    }
    
    .cta-content {
        padding: 0 15px;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .cta-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        padding: 0 5px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 5px;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .service-card,
    .testimonial-card {
        padding: 15px 10px;
        margin: 10px 5px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo i {
        font-size: 1.4rem;
    }
}
    
    .service-card,
    .testimonial-card {
        padding: 25px 20px;
    }

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation active state */
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link.active::after {
    width: 100%;
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-item h3 {
    font-family: 'Cinzel', serif;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    box-shadow: 0 15px 30px rgba(139, 69, 19, 0.3);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
}

.image-placeholder p {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Methodology Section */
.methodology {
    padding: 100px 0;
    background: var(--light-color);
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 15px;
    position: relative;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(139, 69, 19, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1.2rem;
}

.step h3 {
    font-family: 'Cinzel', serif;
    color: var(--dark-color);
    margin: 30px 0 15px;
}

.step p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Work Modalities Section */
.work-modalities {
    padding: 100px 0;
    background: var(--white);
}

.modalities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.modality-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.modality-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(139, 69, 19, 0.2);
}

.modality-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.modality-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.modality-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.modality-card ul {
    list-style: none;
    text-align: left;
}

.modality-card li {
    padding: 5px 0;
    color: var(--text-color);
    position: relative;
    padding-left: 20px;
}

.modality-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive pour les pages intérieures */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .methodology-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .modalities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
    }
}
/* Consult
ation Page Styles */

/* Consultation Types Section */
.consultation-types {
    padding: 100px 0;
    background: var(--white);
}

.consultation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.consultation-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.consultation-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--light-color) 0%, rgba(218, 165, 32, 0.1) 100%);
}

.consultation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
}

.consultation-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient-secondary);
    color: var(--dark-color);
    padding: 5px 40px;
    font-weight: 600;
    font-size: 0.9rem;
    transform: rotate(45deg);
    font-family: 'Cinzel', serif;
}

.consultation-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.consultation-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-family: 'Cinzel', serif;
}

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.features li {
    padding: 8px 0;
    color: var(--text-color);
    position: relative;
    padding-left: 25px;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Ritual Kits Section */
.ritual-kits {
    padding: 100px 0;
    background: var(--light-color);
}

.kits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.kit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
}

.kit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(139, 69, 19, 0.2);
}

.kit-image {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
}

.kit-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--dark-color);
    margin-bottom: 15px;
    text-align: center;
}

.kit-card > p {
    color: var(--text-color);
    text-align: center;
    margin-bottom: 25px;
    font-style: italic;
}

.kit-contents {
    margin-bottom: 25px;
}

.kit-contents h4 {
    font-family: 'Cinzel', serif;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.kit-contents ul {
    list-style: none;
}

.kit-contents li {
    padding: 5px 0;
    color: var(--text-color);
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
}

.kit-contents li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.kit-card .price {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.kit-card .btn {
    width: 100%;
    text-align: center;
}

/* Order Process Section */
.order-process {
    padding: 100px 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--light-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
}

.process-step .step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-family: 'Cinzel', serif;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Guarantees Section */
.guarantees {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: var(--white);
}

.guarantees .section-title {
    color: var(--white);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.guarantee-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.guarantee-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.guarantee-item h3 {
    font-family: 'Cinzel', serif;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.guarantee-item p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: var(--light-color);
}

.form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.consultation-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
    font-family: 'Cinzel', serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(139, 69, 19, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Crimson Text', serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
    font-weight: bold;
    font-size: 14px;
}

.btn-large {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.2rem;
    margin-top: 20px;
}

/* Contact Info */
.contact-info {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    height: fit-content;
}

.contact-info h3 {
    font-family: 'Cinzel', serif;
    color: var(--dark-color);
    margin-bottom: 30px;
    text-align: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
}

.contact-method i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
}

.contact-method h4 {
    font-family: 'Cinzel', serif;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.contact-method p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-method small {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Responsive Design for Consultation Page */
@media (max-width: 768px) {
    .consultation-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .consultation-card.featured {
        transform: none;
    }
    
    .consultation-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .kits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .consultation-form,
    .contact-info {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 20px;
    }
    
    .price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .consultation-card,
    .kit-card {
        padding: 25px 20px;
    }
    
    .consultation-form,
    .contact-info {
        padding: 25px 15px;
    }
    
    .process-step {
        padding: 20px;
    }
    
    .contact-method {
        padding: 15px;
    }
}/* Le
 Fa Section Styles */
.fa-section {
    padding: 100px 0;
    background: var(--white);
}

.fa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.fa-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.fa-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 40px;
    font-style: italic;
}

.fa-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-item {
    text-align: center;
    padding: 25px 20px;
    background: var(--light-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-family: 'Cinzel', serif;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.benefit-item p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.consultation-cta {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.consultation-cta h3 {
    font-family: 'Cinzel', serif;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.consultation-cta p {
    margin-bottom: 25px;
    line-height: 1.6;
    opacity: 0.9;
}

.image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.fa-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.2);
    transition: all 0.3s ease;
}

.fa-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.3);
}

/* Section subtitle style */
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 40px;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced testimonials grid for more cards */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

/* Responsive for Fa section */
@media (max-width: 768px) {
    .fa-section {
        padding: 60px 0;
    }
    
    .fa-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .fa-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item {
        text-align: center;
        padding: 15px 10px;
    }
    
    .benefit-item h3 {
        font-size: 1.2rem;
    }
    
    .benefit-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .image-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .fa-image {
        height: 150px;
    }
    
    .fa-text .section-title {
        text-align: center;
        font-size: 2.2rem;
        padding: 0 15px;
    }
    
    .fa-description {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
        padding: 0 15px;
    }
    
    .consultation-cta {
        text-align: center;
        padding: 20px 15px;
    }
    
    .consultation-cta h3 {
        font-size: 1.4rem;
    }
    
    .consultation-cta p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .image-gallery {
        grid-template-columns: 1fr;
    }
    
    .fa-image {
        height: 200px;
    }
}/* Work
 Gallery Section */
.work-gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.2);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.3);
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(44, 24, 16, 0.9));
    color: var(--white);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: 'Cinzel', serif;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.gallery-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Enhanced kits grid for more cards */
.kits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

/* Responsive for gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-overlay {
        padding: 20px 15px 15px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-image {
        height: 250px;
    }
}
/* Section formulaire de commentaire */
.comment-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #F0E6D2 100%);
}

.comment-section .section-title {
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.comment-section .section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.comment-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.comment-form .form-group {
    margin-bottom: 15px;
}

.comment-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    font-family: 'Crimson Text', serif;
    font-size: 16px;
    resize: vertical;
    min-height: 80px;
    transition: all 0.3s ease;
}

.comment-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 10px rgba(218, 165, 32, 0.3);
}

.comment-form textarea::placeholder {
    color: #888;
    font-style: italic;
}

.btn-comment {
    background: var(--gradient-secondary);
    color: var(--dark-color);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    min-width: 200px;
}

.btn-comment:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.4);
    background: var(--gradient-primary);
    color: var(--white);
}

.success-message {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    animation: slideInUp 0.5s ease;
}

.success-message i {
    font-size: 1.5rem;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive pour le formulaire */
@media (max-width: 768px) {
    .comment-section {
        padding: 60px 0;
    }
    
    .comment-section .section-title {
        font-size: 2.2rem;
        padding: 0 15px;
    }
    
    .comment-section .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .comment-form {
        margin: 20px 15px;
        padding: 25px 15px;
    }
    
    .comment-form textarea {
        padding: 12px;
        font-size: 15px;
        min-height: 100px;
    }
    
    .btn-comment {
        padding: 12px 20px;
        font-size: 15px;
        min-width: 200px;
    }
    
    .success-message {
        font-size: 0.95rem;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .comment-section .section-title {
        font-size: 1.8rem;
    }
    
    .comment-section .section-subtitle {
        font-size: 0.9rem;
    }
    
    .comment-form {
        margin: 15px 10px;
        padding: 20px 10px;
    }
    
    .comment-form textarea {
        padding: 10px;
        font-size: 14px;
        min-height: 80px;
    }
    
    .btn-comment {
        padding: 10px 15px;
        font-size: 14px;
        min-width: 180px;
    }
    
    .success-message {
        font-size: 0.9rem;
        padding: 12px;
    }
}
/* Section Tarifs */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F5E6D3 0%, #E8D5B7 50%, #F0E6D2 100%);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(218, 165, 32, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-section .section-title {
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.pricing-section .section-subtitle {
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-color);
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.15);
    z-index: 1;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(218, 165, 32, 0.4);
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.pricing-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.zone-description {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

.pricing-body {
    border-top: 2px solid var(--secondary-color);
    padding-top: 30px;
}

.price {
    margin-bottom: 30px;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Cinzel', serif;
}

.price .currency {
    font-size: 1.2rem;
    color: var(--light-color);
    margin-left: 5px;
}

.features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.features li {
    padding: 8px 0;
    color: var(--text-color);
}

.features i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
}

.btn-pricing {
    background: var(--gradient-secondary);
    color: var(--dark-color);
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.1rem;
}

.btn-pricing:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.4);
}

.pricing-note {
    text-align: center;
    margin-top: 50px;
    padding: 25px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 15px;
    border: 2px solid var(--secondary-color);
    position: relative;
    z-index: 1;
}

.pricing-note p {
    color: var(--dark-color);
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.pricing-note i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Responsive pour les tarifs */
@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-section .section-title {
        font-size: 2.2rem;
        padding: 0 15px;
    }
    
    .pricing-section .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .pricing-card {
        padding: 25px 15px;
    }
    
    .pricing-card h3 {
        font-size: 1.5rem;
    }
    
    .zone-description {
        font-size: 0.85rem;
    }
    
    .price .amount {
        font-size: 2.2rem;
    }
    
    .price .currency {
        font-size: 1rem;
    }
    
    .features li {
        font-size: 0.9rem;
        padding: 6px 0;
    }
    
    .btn-pricing {
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .pricing-note {
        margin: 30px 15px 0;
        padding: 15px;
    }
    
    .pricing-note p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .pricing-section .section-title {
        font-size: 1.8rem;
    }
    
    .pricing-section .section-subtitle {
        font-size: 0.9rem;
    }
    
    .pricing-grid {
        padding: 0 10px;
    }
    
    .pricing-card {
        padding: 20px 10px;
    }
    
    .pricing-card h3 {
        font-size: 1.3rem;
    }
    
    .price .amount {
        font-size: 2rem;
    }
    
    .features li {
        font-size: 0.85rem;
    }
    
    .btn-pricing {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}