:root {
    --primary-color: var(--bs-primary);
    --secondary-color: #4a5568;
    --accent-color: #d69e2e;
    --light-accent: #faf089;
    --success-color: #38a169;
    --dark-bg: #1a202c;
    --light-bg: #f7fafc;
    --white: #ffffff;
    --text-gray: #718096;
    --border-light: #e2e8f0;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
    color: white;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-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 1000 1000"><polygon fill="rgba(214,158,46,0.1)" points="0,1000 1000,800 1000,1000"/><polygon fill="rgba(214,158,46,0.05)" points="0,800 1000,600 1000,800 0,1000"/></svg>') no-repeat bottom center;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff, var(--light-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--accent-color), #f6ad55);
    border: none;
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--dark-bg);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 158, 46, 0.4);
    color: var(--dark-bg);
}

.btn-outline-custom {
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 33px;
    border-radius: 8px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, var(--light-bg), transparent);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--light-accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--dark-bg);
    position: relative;
    z-index: 1;
}

/* Counter Section */
.counter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
}

.counter-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="20" cy="20" r="2" fill="rgba(214,158,46,0.3)"/><circle cx="80" cy="40" r="1" fill="rgba(214,158,46,0.3)"/><circle cx="40" cy="80" r="1.5" fill="rgba(214,158,46,0.3)"/></svg>') repeat;
    opacity: 0.5;
}

.counter-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
    margin-bottom: 10px;
}

.counter-label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Process Section */
.process-section {
    padding: 120px 0;
    background: var(--light-bg);
    position: relative;
}

.process-step {
    position: relative;
    padding: 30px;
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 30px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.process-number {
    position: absolute;
    left: -15px;
    top: 20px;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--dark-bg);
    font-size: 1.1rem;
}

.process-content {
    padding-left: 40px;
}

.process-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.process-description {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.testimonial-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    margin: 20px 0;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 5rem;
    color: var(--accent-color);
    font-family: serif;
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--light-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-bg);
    font-weight: bold;
}

.author-info h5 {
    margin: 0;
    font-weight: 600;
    color: var(--primary-color);
}

.author-info small {
    color: var(--text-gray);
}

/* Pricing Section */
.pricing-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-bg), #edf2f7);
    position: relative;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    border: 2px solid var(--border-light);
    transition: all 0.4s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.pricing-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, var(--white), #fffbf0);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Recommandé';
    position: absolute;
    top: 20px;
    right: -10px;
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transform: rotate(10deg);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--light-accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--dark-bg);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.pricing-period {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .fa-check {
    color: var(--success-color);
}

.pricing-features .fa-times {
    color: #e53e3e;
}

.pricing-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--light-accent));
    border: none;
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: 600;
    color: var(--dark-bg);
    width: 100%;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 158, 46, 0.4);
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 25px 30px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(214, 158, 46, 0.05);
}

.faq-answer {
    padding: 0 30px 25px;
    color: var(--text-gray);
    line-height: 1.7;
    display: none;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--accent-color);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

    .counter-number {
        font-size: 2.5rem;
    }

    .pricing-card.featured {
        transform: none;
        margin-top: 20px;
    }

    .process-step:hover {
        transform: none;
    }
}

.form-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(45, 55, 72, 0.1);
    border: 1px solid var(--border-light);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(214, 158, 46, 0.25);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    display: block;
    font-size: 0.875rem;
    margin-top: 5px;
}

.required::after {
    content: " *";
    color: #dc3545;
}

.privacy-box {
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.form-check-input {
    margin-top: 0.25rem;
}

.privacy-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.privacy-link:hover {
    text-decoration: underline;
}

.btn-submit {
    background-color: var(--accent-color);
    border: none;
    color: var(--primary-color);
    padding: 14px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #b7791f;
    transform: translateY(-1px);
}

.btn-submit:disabled {
    opacity: 0.6;
}

.success-message {
    display: none;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

.success-message.show {
    display: block;
}

.loading-spinner {
    display: none;
    margin-left: 8px;
}

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

@media (max-width: 768px) {

    .form-card {
        padding: 25px;
    }

    .form-title {
        font-size: 1.5rem;
    }
}