/* ===== LANDING PAGE LEADS - LES SECRETS DU SIAM ===== */

/* Variables CSS */
:root {
    /* Couleurs principales */
    --primary-color: #ffb747;
    --primary-dark: #e6a340;
    --primary-light: #fff2e6;
    --primary-gradient: linear-gradient(135deg, #ffb747, #ff9f43);
    
    /* Palette naturelle */
    --sand: #f5f1eb;
    --ocean: #4a90a4;
    --sky: #87ceeb;
    --stone: #8b8680;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #343a40;
    
    /* Couleurs accent */
    --thai-gold: #d4af37;
    --emerald: #50c878;
    --coral: #ff7f7f;
    --success: #28a745;
    --error: #dc3545;
    --warning: #ffc107;
    
    /* Gradients */
    --gradient-warm: linear-gradient(135deg, #ffb747, #ff9f43, #ff8c42);
    --gradient-cool: linear-gradient(135deg, #4a90a4, #6ba3b8, #87ceeb);
    --gradient-sunset: linear-gradient(135deg, #ff9f43, #ff7f7f, #ff6b9d);
    --gradient-hero: linear-gradient(135deg, rgba(255, 183, 71, 0.9), rgba(255, 159, 67, 0.8));
    
    /* Typographie */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Lora', serif;
    
    /* Espacements */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --section-padding-mobile: 60px 0;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Ombres */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    --shadow-primary: 0 8px 25px rgba(255, 183, 71, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 200;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active,
.hero-dot:hover {
    background: var(--white);
    border-color: var(--white);
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 160px 0 120px;
    position: relative;
    z-index: 100;
}

.hero-left {
    z-index: 200;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 20px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.highlight {
    color: var(--primary-color);
    font-weight: 800;
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.5;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.8s both;
    justify-self: center;
}

.btn-hero {
    background: var(--gradient-warm);
    color: var(--white);
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

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

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 183, 71, 0.4);
}

.cta-note {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-right {
    display: flex;
    justify-content: center;
    animation: fadeInRight 1s ease-out 0.5s both;
    position: relative;
    z-index: 200;
}

.hero-image-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 20px;
    max-width: 400px;
    box-shadow: var(--shadow-heavy);
    position: relative;
    z-index: 10;
}

.hero-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.hero-card-content {
    text-align: center;
}

.card-rating {
    margin-bottom: 15px;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.rating-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.rating-text:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.card-text {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    line-height: 1.4;
}

/* ===== SOCIAL PROOF SECTION ===== */
.social-proof {
    background: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.proof-content {
    text-align: center;
}

.proof-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 40px;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--gray-medium);
    font-weight: 500;
}

/* ===== LEAD FORM SECTION ===== */
.lead-form-section {
    background: linear-gradient(135deg, var(--sand), var(--primary-light));
    padding: var(--section-padding);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
}

.form-header {
    background: var(--gradient-warm);
    color: var(--white);
    padding: 40px;
    text-align: center;
}

.form-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.form-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.progress-bar {
    width: 200px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--white);
    border-radius: 3px;
    transition: width 0.3s ease;
    width: 25%;
}

.progress-text {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Form Steps */
.lead-form {
    padding: 40px;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.form-step.active {
    display: block;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
}

.step-subtitle {
    color: var(--gray-medium);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
    background: var(--white);
}

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

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 183, 71, 0.1);
}

.form-error {
    display: block;
    color: var(--error);
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
}

/* Budget Options */
.budget-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.budget-option {
    cursor: pointer;
}

.budget-radio {
    display: none;
}

.budget-card {
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.budget-radio:checked + .budget-card {
    border-color: var(--primary-color);
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.budget-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.budget-icon {
    font-size: 1.5rem;
}

.budget-title {
    font-weight: 600;
    font-size: 1.1rem;
}

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

.budget-description {
    font-size: 0.9rem;
    color: var(--gray-medium);
    line-height: 1.4;
}

/* Option budget flexible */
.budget-flexible {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 20px auto 0;
}

.budget-card-flexible {
    background: linear-gradient(135deg, var(--primary-light), var(--sand));
    border: 2px dashed var(--primary-color);
    position: relative;
}

.budget-card-flexible::before {
    content: '💡';
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-color);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: var(--shadow-medium);
}

.budget-radio:checked + .budget-card-flexible {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-color: var(--primary-dark);
}

.budget-radio:checked + .budget-card-flexible .budget-price,
.budget-radio:checked + .budget-card-flexible .budget-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-input {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    background: var(--white);
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition);
}

.checkbox-input:checked + .checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-input:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-weight: bold;
    font-size: 0.8rem;
}

.checkbox-text {
    line-height: 1.4;
    color: var(--gray-dark);
}

/* Navigation Buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-warm);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 183, 71, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--gray-medium);
    border: 2px solid #e9ecef;
}

.btn-secondary:hover {
    background: var(--gray-light);
    border-color: var(--gray-medium);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ===== GOOGLE REVIEWS SECTION ===== */
.google-reviews {
    background: var(--white);
    padding: var(--section-padding);
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 30px;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.5rem;
    font-weight: 700;
}

.google-g {
    color: #4285f4;
}

.google-text {
    color: var(--gray-dark);
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stars {
    font-size: 1.3rem;
}

.rating-details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-score {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
}

.rating-count {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.google-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.google-link:hover {
    color: var(--primary-dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--white);
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 2px;
}

.review-stars {
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--gray-medium);
}

.review-text {
    color: var(--gray-dark);
    line-height: 1.6;
    font-style: italic;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    background: linear-gradient(135deg, var(--primary-light), var(--sand));
    padding: var(--section-padding);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-medium);
    text-align: center;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 30px;
    right: -20px;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-warm);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-primary);
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
}

.step-description {
    color: var(--gray-dark);
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 30px;
    }

    .feature-item {
        font-size: 0.9rem;
    }

    .hero-dots {
        bottom: 20px;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }

    /* Formulaire mobile compact */
    .lead-form-section {
        padding: 30px 0;
    }

    .form-container {
        margin: 0;
        border-radius: 15px;
    }

    .form-header {
        padding: 15px 12px;
    }

    .form-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .form-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .lead-form {
        padding: 15px 12px;
    }

    .step-title {
        font-size: 1.2rem;
        margin-bottom: 4px;
    }

    .step-subtitle {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-label {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 8px;
        font-size: 0.9rem;
    }

    .form-error {
        font-size: 0.8rem;
        margin-top: 3px;
        min-height: 15px;
    }

    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    /* Budget options mobile */
    .budget-options {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 15px;
    }

    .budget-card {
        padding: 12px 10px;
    }

    .budget-header {
        margin-bottom: 8px;
    }

    .budget-title {
        font-size: 0.95rem;
    }

    .budget-price {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .budget-description {
        font-size: 0.8rem;
        line-height: 1.2;
    }

    .budget-card-flexible {
        padding: 12px 10px;
    }

    .budget-flexible {
        grid-column: 1;
        margin: 8px 0 0;
    }

    .form-navigation {
        flex-direction: column;
        gap: 8px;
        margin-top: 20px;
        padding-top: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Progress bar mobile */
    .progress-bar {
        width: 120px;
    }

    .progress-text {
        font-size: 0.8rem;
    }

    /* Checkbox mobile */
    .checkbox-label {
        gap: 8px;
    }

    .checkbox-text {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .checkbox-custom {
        width: 18px;
        height: 18px;
    }

    .form-textarea {
        min-height: 60px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 20px;
    }

    .reviewer-name {
        font-size: 0.9rem;
    }

    .review-text {
        font-size: 0.9rem;
    }

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

    .step-item:not(:last-child)::after {
        content: '↓';
        top: auto;
        bottom: -15px;
        right: 50%;
        transform: translateX(50%);
    }

    .step-title {
        font-size: 1.1rem;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .google-rating {
        flex-direction: column;
        gap: 15px;
    }

    .reviews-title {
        font-size: 1.8rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }
}

/* Responsive pour très petits écrans */
@media (max-width: 480px) {
    .hero-content {
        padding: 100px 0 60px;
        gap: 25px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .feature-item {
        font-size: 0.85rem;
    }

    .form-container {
        margin: 0;
        border-radius: 12px;
    }

    .form-header {
        padding: 12px 10px;
    }

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

    .form-subtitle {
        font-size: 0.85rem;
    }

    .lead-form {
        padding: 12px 10px;
    }

    .step-title {
        font-size: 1.1rem;
        margin-bottom: 3px;
    }

    .step-subtitle {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .form-group {
        margin-bottom: 10px;
    }

    .form-label {
        font-size: 0.85rem;
        margin-bottom: 3px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 6px;
        font-size: 0.85rem;
    }

    .form-error {
        font-size: 0.75rem;
        margin-top: 2px;
        min-height: 12px;
    }

    .form-row {
        gap: 0;
        margin-bottom: 0;
    }

    .budget-options {
        gap: 6px;
        margin-bottom: 12px;
    }

    .budget-card {
        padding: 10px 8px;
    }

    .budget-header {
        margin-bottom: 6px;
    }

    .budget-title {
        font-size: 0.9rem;
    }

    .budget-price {
        font-size: 1rem;
        margin-bottom: 3px;
    }

    .budget-description {
        font-size: 0.75rem;
        line-height: 1.1;
    }

    .budget-card-flexible {
        padding: 10px 8px;
    }

    .budget-flexible {
        margin: 6px 0 0;
    }

    .btn-primary,
    .btn-secondary {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .form-navigation {
        gap: 6px;
        margin-top: 15px;
        padding-top: 10px;
    }

    .progress-bar {
        width: 100px;
    }

    .progress-text {
        font-size: 0.75rem;
    }

    .checkbox-text {
        font-size: 0.8rem;
    }

    .checkbox-custom {
        width: 16px;
        height: 16px;
    }

    .form-textarea {
        min-height: 50px;
    }

    .reviews-title {
        font-size: 1.6rem;
    }

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

    .section-subtitle {
        font-size: 0.9rem;
    }

    .review-card {
        padding: 15px;
    }

    .reviewer-name {
        font-size: 0.85rem;
    }

    .review-text {
        font-size: 0.85rem;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-description {
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--white);
    padding: var(--section-padding);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.faq-category {
    background: var(--sand);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-light);
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--black);
    font-size: 1rem;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--primary-light);
}

.faq-toggle {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

.faq-answer p {
    padding: 0 20px 20px;
    margin: 0;
    color: var(--gray-dark);
    line-height: 1.6;
}

.faq-item.active .faq-question {
    background: var(--primary-light);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .faq-category {
        padding: 15px;
    }

    .faq-category-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .faq-question {
        padding: 12px;
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding: 0 12px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-category {
        padding: 12px;
    }

    .faq-category-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .faq-question {
        padding: 10px;
        font-size: 0.85rem;
    }

    .faq-answer p {
        padding: 0 10px 10px;
        font-size: 0.85rem;
    }
}

/* ===== HEADER STYLES ===== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 183, 71, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 200px;
    border-radius: 50%;
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-cta {
    white-space: nowrap;
}

/* Menu hamburger mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle:hover .hamburger-line {
    background: var(--primary-color);
}

/* Menu mobile overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    height: 100vh;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--gray-dark);
    font-size: 2rem;
    cursor: pointer;
    padding: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.mobile-nav-link {
    color: var(--gray-dark);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--primary-light);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.mobile-cta {
    margin-top: auto;
    padding: 20px;
    text-align: center;
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: linear-gradient(135deg, var(--gray-dark), var(--black));
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-logo-text {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-icon {
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item p {
    margin: 0;
    line-height: 1.5;
    min-width: 0;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    overflow-wrap: break-word;
}

.contact-item a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-link:hover {
    color: var(--primary-color);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
}

.footer-seo-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.contact-phones {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Responsive Header & Footer */
@media (max-width: 1000px) {
    .header-content {
        justify-content: space-between;
    }

    .nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }

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

@media (max-width: 768px) {
    .logo-text {
        font-size: 1.1rem;
    }

    .mobile-nav-link {
        font-size: 1.1rem;
        padding: 12px 15px;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-description {
        font-size: 0.85rem;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .contact-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .contact-item {
        justify-content: center;
        text-align: left;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1rem;
    }

    .mobile-nav-link {
        font-size: 1rem;
        padding: 10px 12px;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-description {
        font-size: 0.8rem;
    }

    .footer-link {
        font-size: 0.85rem;
    }

    .contact-item {
        font-size: 0.85rem;
    }

    .legal-link {
        font-size: 0.8rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }
}

/* ===== BANNIÈRE COOKIES RGPD ===== */
.cookie-banner-compact {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 1200px;
    max-height: 80vh;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary-color);
    z-index: 10000;
    transform: translateY(120%);
    transition: transform 0.4s ease;
    overflow: hidden;
}

.cookie-banner-compact.show {
    transform: translateY(0);
}

.cookie-banner-content {
    padding: 0;
    max-height: 80vh;
    overflow-y: auto;
}

/* Version compacte */
.cookie-compact-view {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    gap: 20px;
}

.cookie-compact-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cookie-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cookie-compact-text {
    flex: 1;
}

.cookie-compact-title {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin: 0 0 5px 0;
    font-weight: 600;
}

.cookie-compact-desc {
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin: 0;
    line-height: 1.3;
}

.cookie-compact-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-cookie-compact {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn-cookie-settings {
    background: transparent;
    color: var(--gray-medium);
    border-color: var(--gray-light);
}

.btn-cookie-settings:hover {
    background: var(--gray-light);
    color: var(--gray-dark);
}

.btn-cookie-reject {
    background: transparent;
    color: var(--gray-dark);
    border-color: var(--gray-medium);
}

.btn-cookie-reject:hover {
    background: var(--gray-medium);
    color: white;
}

.btn-cookie-accept {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-cookie-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.cookie-close-compact {
    background: none;
    border: none;
    color: var(--gray-medium);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.cookie-close-compact:hover {
    background: var(--gray-light);
    color: var(--gray-dark);
    transform: rotate(90deg);
}

/* Version étendue */
.cookie-expanded-view {
    padding: 30px;
    max-height: calc(80vh - 60px);
    overflow-y: auto;
}

.cookie-expanded-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-light);
}

.cookie-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-icon-large {
    font-size: 2rem;
}

.cookie-expanded-title {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin: 0 0 5px 0;
    font-weight: 600;
}

.cookie-expanded-subtitle {
    font-size: 0.95rem;
    color: var(--gray-medium);
    margin: 0;
}

.cookie-close-expanded {
    background: none;
    border: none;
    color: var(--gray-medium);
    font-size: 2rem;
    cursor: pointer;
    padding: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-close-expanded:hover {
    background: var(--gray-light);
    color: var(--gray-dark);
    transform: rotate(180deg);
}

.cookie-expanded-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--gray-dark);
    text-align: justify;
}

.cookie-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.cookie-category {
    background: var(--sand);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 183, 71, 0.2);
    transition: all 0.3s ease;
}

.cookie-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .switch-slider {
    background-color: var(--primary-color);
}

input:checked + .switch-slider:before {
    transform: translateX(26px);
}

input:disabled + .switch-slider {
    background-color: var(--primary-color);
    opacity: 0.7;
    cursor: not-allowed;
}

.category-info {
    flex: 1;
}

.category-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 8px 0;
}

.category-desc {
    font-size: 0.85rem;
    color: var(--gray-medium);
    margin: 0;
    line-height: 1.4;
}

.cookie-expanded-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-cookie-expanded {
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 140px;
}

.btn-cookie-save {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-cookie-save:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 183, 71, 0.3);
}

.btn-cookie-reject-all {
    background: transparent;
    color: var(--gray-dark);
    border-color: var(--gray-medium);
}

.btn-cookie-reject-all:hover {
    background: var(--gray-medium);
    color: white;
}

.btn-cookie-accept-all {
    background: var(--emerald);
    color: white;
    border-color: var(--emerald);
}

.btn-cookie-accept-all:hover {
    background: #45b86b;
    transform: translateY(-2px);
}

.cookie-expanded-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.cookie-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.cookie-separator {
    margin: 0 10px;
    color: var(--gray-light);
}

/* Responsive pour la bannière cookies */
@media (max-width: 768px) {
    .cookie-banner-compact {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-height: 90vh;
    }

    .cookie-banner-content {
        max-height: 90vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .cookie-expanded-view {
        padding: 20px;
        max-height: calc(90vh - 40px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .cookie-compact-view {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        text-align: center;
    }

    .cookie-compact-left {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .cookie-compact-actions {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .btn-cookie-compact {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .cookie-expanded-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cookie-header-left {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .cookie-categories {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cookie-expanded-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-cookie-expanded {
        width: 100%;
        padding: 15px;
    }

    .cookie-expanded-footer {
        font-size: 0.85rem;
    }
}

/* ===== CTA DE RAPPEL ===== */
.cta-recall {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-recall::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/sliders/image_slider_cinq.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.cta-recall-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.cta-recall-text {
    color: var(--white);
}

.cta-recall-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-recall-subtitle {
    font-size: 1.2rem;
    line-height: 1.5;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-recall-action {
    text-align: center;
}

.btn-cta-recall {
    background: var(--white);
    color: var(--primary-color);
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.btn-cta-recall::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 183, 71, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cta-recall:hover::before {
    left: 100%;
}

.btn-cta-recall:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: var(--primary-light);
}

.cta-recall-note {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive CTA Recall */
@media (max-width: 768px) {
    .cta-recall-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }

    .cta-recall-title {
        font-size: 1.8rem;
    }

    .cta-recall-subtitle {
        font-size: 1rem;
    }

    .btn-cta-recall {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-recall {
        padding: 40px 0;
    }

    .cta-recall-title {
        font-size: 1.6rem;
    }

    .cta-recall-subtitle {
        font-size: 0.95rem;
    }

    .btn-cta-recall {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .cta-recall-note {
        font-size: 0.8rem;
    }
}

/* ===== SECTION CALENDLY ===== */
.calendly-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--sand), var(--white));
    position: relative;
    overflow: hidden;
}

.calendly-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 183, 71, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(74, 144, 164, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.calendly-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.calendly-header {
    margin-bottom: 40px;
}

.calendly-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.calendly-subtitle {
    font-size: 1.2rem;
    color: var(--gray-dark);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.calendly-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.btn-calendly {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 25px;
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 183, 71, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    min-width: 350px;
    justify-content: space-between;
}

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

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

.btn-calendly:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 183, 71, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), #d4a636);
}

.calendly-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.calendly-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    text-align: left;
}

.calendly-main-text {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.calendly-sub-text {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

.calendly-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.btn-calendly:hover .calendly-arrow {
    transform: translateX(5px);
}

.calendly-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.calendly-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-dark);
    font-weight: 500;
}

.calendly-feature .feature-icon {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.calendly-feature .feature-text {
    font-size: 0.95rem;
}

/* Responsive Calendly */
@media (max-width: 768px) {
    .calendly-section {
        padding: 60px 0;
    }

    .calendly-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .calendly-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .btn-calendly {
        min-width: 300px;
        padding: 18px 30px;
        font-size: 1rem;
    }

    .calendly-main-text {
        font-size: 1rem;
    }

    .calendly-sub-text {
        font-size: 0.85rem;
    }

    .calendly-features {
        gap: 25px;
    }

    .calendly-feature .feature-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .calendly-title {
        font-size: 1.8rem;
    }

    .calendly-subtitle {
        font-size: 1rem;
    }

    .btn-calendly {
        min-width: 280px;
        padding: 15px 25px;
        font-size: 0.95rem;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

    .calendly-arrow {
        display: none;
    }

    .calendly-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .calendly-feature .feature-text {
        font-size: 0.85rem;
    }
}
