/* ============================================
   VARIABLES CSS
   ============================================ */
:root {
    --color-primary: #12677C;
    --color-primary-dark: #0B3D51;
    --color-secondary: #2ed573;
    --color-danger: #ff4757;
    --color-text: #1E1E1E;
    --color-text-light: #666;
    --bg-light: #F0F0F0;
    --bg-medium: #E8E8E8;
    --bg-dark: #D5D5D5;
    --border-radius: 12px;
    --border-radius-large: 20px;
    --transition: all 0.3s ease;
    --shadow-small: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-medium: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-large: 0 32px 64px rgba(0,0,0,0.12);
    --header-height: 70px;
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary-dark);
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    padding: 0 15px;
}

/* ============================================
   BUTTONS & CTAs
   ============================================ */
.cta-primary {
    background: var(--color-primary);
    color: white;
    padding: 16px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(18, 103, 124, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(18, 103, 124, 0.5);
}

/* ============================================
   HEADER
   ============================================ */
header {
    background: var(--bg-medium);
    box-shadow: 0 4px 20px rgba(18, 103, 124, 0.15);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(18, 103, 124, 0.1);
    height: var(--header-height);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    gap: 10px;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 6px 0;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.header-cta-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.whatsapp-btn, .cta-header {
    padding: 0.5rem 1rem;
    border-radius: 1.25rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.7rem;
    transition: var(--transition);
    white-space: nowrap;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.cta-header {
    background: var(--color-primary);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
}

.cta-header:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 50%, #1a1a2e 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) translateX(0); 
        opacity: 0.3; 
    }
    50% { 
        transform: translateY(-30px) translateX(20px); 
        opacity: 0.8; 
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.urgency-banner {
    background: var(--color-danger);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 15px;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.5;
    padding: 0 10px;
}

.highlight-text {
    font-weight: 800;
    color: #2ed573;
    text-shadow: 0 0 20px rgba(46, 213, 115, 0.5);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { 
        text-shadow: 0 0 10px rgba(46, 213, 115, 0.5);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 25px rgba(46, 213, 115, 0.8);
        transform: scale(1.02);
    }
}

.hero-trust-mini {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-icon {
    font-size: 1.3rem;
}

/* ============================================
   STORYTELLING SECTION
   ============================================ */
.storytelling-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0d5568 0%, #126b80 100%);
}

.storytelling-banner {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 2rem;
    border-left: 5px solid var(--color-primary);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.storytelling-intro {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.storytelling-intro .name {
    font-weight: 800;
    color: var(--color-primary-dark);
}

.storytelling-intro .title {
    color: #666;
    font-weight: 600;
    font-size: 1rem;
}

.storytelling-text {
    color: #374151;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.pain-points {
    list-style: none;
    margin: 1.5rem 0;
}

.pain-points li {
    padding: 0.6rem 0;
    color: #374151;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pain-points li::before {
    content: '→';
    color: var(--color-danger);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.storytelling-conclusion {
    margin-top: 1.5rem;
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.6;
}

.storytelling-conclusion strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* ============================================
   PROBLEMS SECTION
   ============================================ */
.problems-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.cards-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.card {
    background: var(--bg-medium);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-small);
    text-align: center;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-title.problem {
    color: var(--color-danger);
}

.card-title.solution {
    color: var(--color-secondary);
}

.card-text {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.card-subtext {
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.5rem;
}

.problem-card {
    border-left: 5px solid var(--color-danger);
    min-height: 550px;
    display: flex;
    flex-direction: column;
}

.card-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-danger), #ff6b81);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.solution-box {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 3px solid var(--color-secondary);
    min-height: 150px;
}

.solution-box strong {
    color: var(--color-secondary);
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.solution-box p {
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.6;
}
/* ============================================
   DEMO SECTION (SIMULATEUR)
   ============================================ */
.demo-section {
    padding: 60px 0;
    background: var(--bg-medium);
    text-align: center;
}

.simulator-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 40px;
    margin: 0 auto;
    box-shadow: var(--shadow-large);
    max-width: 900px;
    position: relative;
}

.simulator-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), #667eea, #764ba2);
    border-radius: 24px 24px 0 0;
}

.simulator-tabs {
    display: flex;
    background: #f8fafc;
    border-radius: 16px;
    padding: 6px;
    margin-bottom: 32px;
    border: 1px solid #e2e8f0;
}

.tab-button {
    flex: 1;
    padding: 16px 24px;
    border: none;
    background: transparent;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    color: #64748b;
}

.tab-button.active {
    background: linear-gradient(135deg, var(--color-primary), #667eea);
    color: white;
    box-shadow: 0 8px 25px rgba(18, 103, 124, 0.3);
}

.tab-button:hover:not(.active) {
    background: #e2e8f0;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}

.input-group {
    position: relative;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    transition: var(--transition);
}

.input-group input:focus, .input-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(18, 103, 124, 0.1);
    transform: translateY(-2px);
}

/* Boutons clear et validation */
.clear-input-btn {
    position: absolute;
    right: 15px;
    top: 65%;
    transform: translateY(-50%);
    background: #ef4444;
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    display: none;
    transition: var(--transition);
    z-index: 10;
    line-height: 1;
}

.clear-input-btn:hover {
    background: #dc2626;
    transform: translateY(-50%) scale(1.1);
}

.input-group:hover .clear-input-btn,
.input-group.has-value:focus-within .clear-input-btn {
    display: block;
}



.validate-datetime-btn {
    position: absolute;
    right: 15px;
    top: 38px;
    background: var(--color-secondary);
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    display: none;
    transition: var(--transition);
    z-index: 10;
}

.validate-datetime-btn:hover {
    background: #27ae60;
    transform: scale(1.05);
}

.input-group.has-datetime .validate-datetime-btn {
    display: block;
}

.input-group.datetime-validated .validate-datetime-btn {
    display: none;
}

/* Waypoints */
.waypoints-section label {
    display: block;
    margin-bottom: 16px;
    font-weight: 600;
    color: #374151;
}

.waypoint-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: var(--border-radius);
    border: 1px dashed #cbd5e1;
}

.waypoint-number {
    background: linear-gradient(135deg, var(--color-primary), #667eea);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.waypoint-input {
    flex: 1;
}

.waypoint-input.input-group {
    position: relative;
}

.waypoint-input input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    transition: var(--transition);
}

.waypoint-input input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(18, 103, 124, 0.1);
    transform: translateY(-2px);
}

.waypoint-input .clear-input-btn {
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
}

.waypoint-input.has-value .clear-input-btn {
    display: block;
}

.remove-waypoint {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: var(--transition);
}

.remove-waypoint:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.add-waypoint {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 24px;
}

.add-waypoint:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.add-waypoint:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

/* Google Places Autocomplete */
.pac-container {
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 1px solid #e5e7eb;
    margin-top: 5px;
    font-family: 'Montserrat', sans-serif;
}

.pac-item {
    padding: 12px 16px;
    cursor: pointer;
    border: none;
    border-bottom: 1px solid #f3f4f6;
}

.pac-item:hover {
    background-color: #f0f9ff;
}

.pac-item-query {
    color: var(--color-primary-dark);
    font-weight: 600;
}

.pac-icon {
    margin-top: 6px;
}

.calculate-button {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary), #667eea);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

.calculate-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(18, 103, 124, 0.4);
}

.calculate-button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.results-container {
    margin-top: 40px;
    display: none;
}

.results-container.show {
    display: block;
    animation: slideUp 0.6s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.results-header {
    text-align: center;
    margin-bottom: 32px;
}

.total-price {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary), #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.price-label {
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 500;
}

.route-summary {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    border-left: 4px solid var(--color-primary);
}

.summary-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.summary-item {
    flex: 0 1 200px;
    text-align: center;
}

.summary-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.summary-label {
    color: #64748b;
    font-size: 0.9rem;
}

.route-details {
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.route-header {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.route-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #374151;
}

.route-leg {
    padding: 24px;
    border-bottom: 1px solid #f3f4f6;
}

.route-leg:last-child {
    border-bottom: none;
}

.leg-header {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.leg-number {
    background: linear-gradient(135deg, var(--color-primary), #667eea);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.leg-route {
    flex: 1;
    min-width: 200px;
}

.leg-from, .leg-to {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.leg-arrow {
    color: var(--color-primary);
    font-weight: 700;
    margin: 0 8px;
}

.leg-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.leg-stat {
    text-align: center;
}

.leg-stat-value {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.leg-stat-label {
    color: #64748b;
    font-size: 0.85rem;
}

.error-message {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border: 1px solid #f87171;
    border-radius: var(--border-radius);
    padding: 20px;
    color: #dc2626;
    margin-top: 20px;
    display: none;
}

.error-message.show {
    display: block;
}

.reservation-btn {
    background: var(--color-secondary);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 1rem;
    text-transform: uppercase;
}

.reservation-btn:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.success-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 25px;
    background:  white;
    color: white;
    border-radius: 10px;
    font-weight: 700;
}

/* ============================================
   OFFERS SECTION
   ============================================ */
.offers-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, var(--bg-medium) 100%);
}

.offers-grid-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.offer-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    position: relative;
    border: 3px solid transparent;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(18, 103, 124, 0.2);
}

.offer-card.featured {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.offer-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-danger);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.offer-badge.promo {
    background: var(--color-secondary);
}

.offer-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.offer-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.offer-price-main {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.offer-price-old {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.offer-tagline {
    text-align: center;
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 600;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.offer-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.offer-features li {
    padding: 0.7rem 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #374151;
}

.offer-features li::before {
    content: '✓';
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.offer-cta {
    background: var(--color-primary);
    color: white;
    padding: 16px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: block;
    text-align: center;
    transition: var(--transition);
    text-transform: uppercase;
    margin-top: auto;
}

.offer-cta:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.offer-cta.secondary {
    background: var(--color-secondary);
}

.offer-cta.secondary:hover {
    background: #27ae60;
}

.offer-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 1rem;
    font-style: italic;
}

/* ============================================
   ADD-ONS SECTION
   ============================================ */
.addons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
     width: 100%;
}

.offer-card.addon {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px dashed var(--color-primary);
    padding: 1.5rem;
}

.offer-card.addon:hover {
    border-style: solid;
}

.offer-badge.addon-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.offer-badge.new {
    background: linear-gradient(135deg, #2ed573, #27ae60);
}

.offer-name.addon-name {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.offer-price-main.addon-price {
    font-size: 1.8rem;
}

.offer-card.addon .offer-price {
    margin-bottom: 0.8rem;
}

.offer-card.addon .offer-tagline {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    min-height: 50px;
    line-height: 1.4;
}

.offer-features.addon-features {
    margin-bottom: 1rem;
}

.offer-features.addon-features li {
    padding: 0.35rem 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.offer-features.addon-features li::before {
    content: '✓';
    color: var(--color-primary);
    font-size: 1rem;
}

.offer-cta.addon-cta {
    background: linear-gradient(135deg, var(--color-primary), #667eea);
    padding: 10px 20px;
    font-size: 0.85rem;
}

.offer-cta.addon-cta:hover {
    background: linear-gradient(135deg, var(--color-primary-dark), #5568d3);
}

.offer-card.addon .offer-note {
    font-size: 0.75rem;
    margin-top: 0.6rem;
    line-height: 1.3;
}


/* Info Box */
.info-box {
    text-align: center;
    margin: 3rem auto 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 16px;
    border-left: 4px solid var(--color-primary);
    max-width: 800px;
}

.info-box h3 {
    color: var(--color-primary-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.info-box p {
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 60px 0;
    background: var(--bg-dark);
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-medium);
    padding: 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-small);
    border-left: 5px solid var(--color-secondary);
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-left-color: var(--color-primary);
}

.feature-card.active {
    border-left-color: var(--color-primary);
    box-shadow: 0 8px 30px rgba(18, 103, 124, 0.15);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    position: relative;
    user-select: none;
}

.feature-card .card-icon {
    font-size: 2rem;
    margin: 0;
    flex-shrink: 0;
}

.feature-card .card-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-primary-dark);
    flex: 1;
    text-align: left;
}

.feature-toggle {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card.active .feature-toggle {
    transform: rotate(45deg);
}

.feature-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.feature-card.active .feature-content {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.feature-content .card-text {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   SOCIAL PROOF & STATS
   ============================================ */
.social-proof {
    padding: 60px 0;
    background: var(--bg-medium);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.stat-item {
    background: var(--bg-dark);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-small);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 600;
}

.stats-footnote {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-top: 1.5rem;
    padding: 0 15px;
    line-height: 1.5;
}

/* ============================================
   TESTIMONIALS CAROUSEL
   ============================================ */
.testimonials-carousel {
    margin-top: 2rem;
}

.carousel-container {
    overflow: hidden;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial-card {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    border-left: 5px solid var(--color-primary);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--color-text);
    font-size: 0.95rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--color-primary);
}

.carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.carousel-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--color-primary-dark);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--color-primary);
    transform: scale(1.3);
}

/* ============================================
   STEPS SECTION
   ============================================ */
.steps-section {
    padding: 60px 0;
    background: var(--bg-light);
    text-align: center;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-card {
    background: var(--bg-medium);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-small);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1rem 0;
    color: var(--color-primary-dark);
}

/* ============================================
   FAQ SECTION
   ============================================ 
.faq-section {
    padding: 60px 0;
    background: var(--bg-light); 
} */

.faq-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0d5568 0%, #126b80 100%);
}

.faq-section h2 {
    color: white;
}

.faq-container {
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-medium);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-small);
}

.faq-question {
    padding: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text);
    transition: var(--transition);
    user-select: none;
}

.faq-question:hover {
    background: var(--bg-dark);
}

.faq-question.active {
    background: var(--color-primary);
    color: white;
}

.faq-toggle {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
    padding: 1.2rem 1.2rem 1.5rem;
}

.faq-answer p {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section {
    padding: 60px 0;
    background: var(--bg-medium);
    text-align: center;
}

.contact-form {
    background: var(--bg-dark);
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    font-size: 1rem;
    background: var(--bg-light);
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary-dark);
    box-shadow: 0 0 15px rgba(18, 103, 124, 0.3);
}

.form-submit {
    background: var(--color-primary);
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.form-submit:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(18, 103, 124, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--color-primary-dark);
    color: white;
    padding: 30px 0;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* ============================================
   MODALE DE RÉSERVATION
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 15px;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.show {
    display: flex;
}

/* ============================================
   MESSAGES DE FORMULAIRE - BREVO
   ============================================ */

.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
    display: none;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-left: 4px solid #28a745;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-left: 4px solid #dc3545;
}

.btn-loader {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .form-message {
        font-size: 14px;
        padding: 12px 15px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-container {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    color: white;
    z-index: 10;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-header {
    background: linear-gradient(135deg, var(--color-primary), #667eea);
    color: white;
    padding: 1.5rem 1.2rem 1rem;
    text-align: center;
}

.modal-icon {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.modal-header h2 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    position: relative;
    display: inline-block;
    animation: celebrate 1.5s ease-in-out infinite;
}

@keyframes celebrate {
    0%, 100% { 
        transform: scale(1);
    }
    25% { 
        transform: scale(1.05) rotate(-2deg);
    }
    75% { 
        transform: scale(1.05) rotate(2deg);
    }
}

.modal-header h2::after {
    content: '✨';
    position: absolute;
    right: -24px;
    top: -2px;
    font-size: 1rem;
    animation: sparkle 2s ease-in-out infinite;
}

.modal-header h2::before {
    content: '✨';
    position: absolute;
    left: -24px;
    top: -2px;
    font-size: 1rem;
    animation: sparkle 2s ease-in-out infinite 1s;
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

.modal-header p {
    opacity: 0.95;
    font-size: 0.82rem;
    line-height: 1.25;
}

.modal-content {
    padding: 1rem 1.2rem 0.5rem;
}

.modal-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.5rem 0.6rem;
    background: var(--bg-light);
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.feature-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.modal-feature p {
    margin: 0;
    color: var(--color-text);
    font-size: 0.8rem;
    line-height: 1.25;
}

.modal-cta {
    padding: 0.5rem 1.2rem 1.2rem;
    text-align: center;
}

.modal-cta h3 {
    color: var(--color-primary-dark);
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 800;
}

.modal-cta > p {
    color: var(--color-text-light);
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    line-height: 1.25;
}

.modal-cta .cta-primary {
    width: 100%;
    display: block;
    margin-bottom: 0.5rem;
    padding: 11px 20px;
    font-size: 0.85rem;
}

.modal-note {
    color: var(--color-text-light);
    font-size: 0.7rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Responsive modale */
@media (max-width: 768px) {
    .modal-container {
        max-width: 92%;
    }
    
    .modal-header {
        padding: 1.2rem 1rem 0.8rem;
    }
    
    .modal-header h2 {
        font-size: 1.25rem;
    }
    
    .modal-header h2::after,
    .modal-header h2::before {
        right: -22px;
        left: -22px;
        font-size: 0.9rem;
    }
    
    .modal-icon {
        font-size: 1.8rem;
    }
    
    .modal-content {
        padding: 0.8rem 1rem 0.4rem;
    }
    
    .modal-cta {
        padding: 0.4rem 1rem 1rem;
    }
}
/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (min-width: 768px) {
    .logo img {
        height: 4rem;
        max-width: 250px;
    }

    .header-cta-container {
        flex-direction: row;
        gap: 1.25rem;
    }

    .whatsapp-btn, .cta-header {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        padding: 0;
    }

    h2 {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
        padding: 0;
    }

    .storytelling-banner {
        padding: 2.5rem;
    }

    .storytelling-intro {
        font-size: 1.2rem;
    }

    .cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        max-width: 1000px;
        margin: 0 auto;
    }

    .offers-grid-main {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto 2rem;
    }

    .addons-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
    
    max-width: 100%;
    }

        /* SEO prend 2 colonnes 
    .addons-grid .offer-card.addon:nth-child(1) {
        grid-column: span 1;
    } */

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        max-width: 800px;
        margin: 2rem auto;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 900px;
        margin: 0 auto;
    }

    .form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .faq-container {
        max-width: 800px;
    }

    .faq-question {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
}

/* ============================================
   RESPONSIVE - DESKTOP
   ============================================ */
@media (min-width: 1200px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
    }

    .offers-grid-main {
        max-width: 1200px;
    }

    .addons-grid {
        max-width: 1200px;
        margin: 0 auto 2rem;
    }
}

/* ============================================
   HERO - OPTIMISATIONS MOBILE
   ============================================ */
@media (max-width: 767px) {
    .hero {
        padding: 100px 0 50px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 15px;
        margin-bottom: 1.75rem;
    }
    
    .urgency-banner {
        font-size: 0.75rem;
        padding: 10px 18px;
        margin-bottom: 20px;
    }
    
    .hero-trust-mini {
        flex-direction: column;
        gap: 15px;
        padding: 20px 15px;
        margin-top: 25px;
    }
    
    .trust-item {
        font-size: 0.85rem;
        justify-content: center;
        text-align: center;
    }
    
    .trust-icon {
        font-size: 1.5rem;
    }

    .storytelling-section {
        padding: 40px 0;
    }
    
    .storytelling-banner {
        padding: 1.75rem 1.25rem;
        margin: 0 10px;
    }
    
    .storytelling-intro {
        font-size: 1.05rem;
        margin-bottom: 1.25rem;
        text-align: center;
    }
    
    .storytelling-intro .title {
        font-size: 0.95rem;
        display: block;
        margin-top: 0.5rem;
    }
    
    .pain-points li {
        font-size: 0.95rem;
        padding: 0.75rem 0;
        gap: 10px;
    }
    
    .storytelling-conclusion {
        font-size: 1rem;
        text-align: center;
    }

    .card-number {
        font-size: 1.1rem;
        padding: 10px 18px;
    }

    /* SIMULATEUR - Inputs */
    .input-group input,
    .input-group select {
        font-size: 16px; /* CRITIQUE - évite le zoom automatique iOS */
        padding: 14px 16px;
        min-height: 48px;
    }
    
    /* Clear button réduit */
    .clear-input-btn {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
        right: 12px;
    }
    
    /* Boutons de calcul */
    .calculate-button {
        padding: 16px 32px;
        font-size: 1rem;
        min-height: 50px;
    }
    
    /* Tabs */
    .tab-button {
        padding: 12px 16px;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    /* Résultats */
    .total-price {
        font-size: 2.8rem;
    }

    .waypoint-item {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 16px;
        padding: 16px;
        background: #f8fafc;
        border-radius: var(--border-radius);
        border: 1px dashed #cbd5e1;
    }

    .waypoint-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.waypoint-number {
    flex-shrink: 0;
}

.remove-waypoint {
    flex-shrink: 0;
    margin-left: auto;
}

    .waypoint-input {
        width: 100%;
    }

    .waypoint-input input {
        width: 100%;
    }

    .leg-stats {
        display: flex;
        justify-content: space-around;
        gap: 10px;
        flex-wrap: nowrap;
        margin-top: 12px;
    }
    
    .leg-stat {
        flex: 1;
        text-align: center;
    }
    
    .leg-stat-value {
        font-size: 0.95rem;
    }
    
    .leg-stat-label {
        font-size: 0.75rem;
    }

    .offer-card {
        padding: 1.5rem 1.25rem;
    }
    
    .offer-name {
        font-size: 1.5rem;
    }
    
    .offer-price-main {
        font-size: 2.5rem;
    }
    
    .offer-price-old {
        font-size: 1.25rem;
    }
    
    .offer-tagline {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.25rem;
    }
    
    .offer-features li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
    
    .offer-cta {
        font-size: 0.95rem;
        padding: 14px 28px;
        min-height: 48px;
    }
    
    /* Add-ons */
    .offer-card.addon {
        padding: 1.25rem 1rem;
    }
    
    .offer-name.addon-name {
        font-size: 1.15rem;
    }
    
    .offer-price-main.addon-price {
        font-size: 1.6rem;
    }
    
    .offer-features.addon-features li {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }


    .features-section {
        padding: 40px 0;
    }
    
    .feature-card {
        padding: 0;
    }
    
    .feature-header {
        padding: 1.25rem 1rem;
        gap: 0.75rem;
    }
    
    .feature-card .card-icon {
        font-size: 1.5rem;
    }
    
    .feature-card .card-title {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .feature-toggle {
        font-size: 1.5rem;
        width: 28px;
        height: 28px;
    }
    
    .feature-content {
        padding: 0 1rem;
    }
    
    .feature-card.active .feature-content {
        padding: 0 1rem 1.25rem;
        max-height: 300px;
    }
    
    .feature-content .card-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .social-proof {
        padding: 40px 0;
    }
    
    .social-proof h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin: 1.5rem 0;
    }
    
    .stat-item {
        padding: 1.25rem 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
        margin-bottom: 0.35rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .stats-footnote {
        font-size: 0.8rem;
        margin-top: 1.25rem;
        padding: 0 10px;
    }
    
    /* Témoignages */
    .testimonials-carousel {
        margin-top: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem 1.25rem;
    }
    
    .testimonial-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }
    
    .testimonial-author {
        font-size: 0.85rem;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }

    .steps-section {
        padding: 40px 0;
    }
    
    .steps-section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .steps-grid {
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 1.75rem 1.25rem;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
        top: -16px;
    }
    
    .step-card h3 {
        font-size: 1.1rem;
        margin: 0.75rem 0 0.5rem;
    }
    
    .step-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        color: var(--color-text-light);
    }

    .faq-section {
        padding: 40px 0;
    }
    
    .faq-section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-container {
        margin: 0 auto;
    }
    
    .faq-item {
        margin-bottom: 0.75rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
        gap: 10px;
    }
    
    .faq-toggle {
        font-size: 1.2rem;
        margin-left: 8px;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-answer.active {
        max-height: 300px;
        padding: 1rem 1rem 1.25rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .contact-section {
        padding: 40px 0;
    }
    
    .contact-section h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-form {
        padding: 1.75rem 1.25rem;
        margin: 0 10px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 13px;
        font-size: 16px; /* CRITIQUE - évite zoom iOS */
        min-height: 48px;
    }
    
    .form-submit {
        padding: 15px 28px;
        font-size: 1rem;
        min-height: 50px;
    }

    
}

/* ============================================
   LIEN CALENDRIER
   ============================================ */

.calendar-link-box {
    text-align: center;
    margin-bottom: 50px;
}

.calendar-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: #12677C;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.calendar-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    background: #f8f9ff;
}

.calendar-icon {
    font-size: 28px;
    line-height: 1;
}

.calendar-text {
    font-size: 18px;
}

/* ============================================
   SÉPARATEUR
   ============================================ */

.contact-separator {
    text-align: center;
    margin: 50px 0;
    position: relative;
}

.contact-separator::before,
.contact-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(48, 44, 44, 0.3), transparent);
}

.contact-separator::before { left: 0; }
.contact-separator::after { right: 0; }

.contact-separator span {
    background: rgba(35, 7, 7, 0.1);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(69, 65, 65, 0.2);
}

.calendar-link:hover {
    background: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

/* ============================================
   HEADER MOBILE FIX
   ============================================ */
@media (max-width: 480px) {
    .header-content {
        padding: 0 10px;
    }
    
    .logo img {
        height: 45px;
        max-width: 120px;
    }
    
    .whatsapp-btn, .cta-header {
        padding: 0.4rem 0.7rem;
        font-size: 0.65rem;
    }
    
    .header-cta-container {
        gap: 4px;
    }
}
