@import url('https://cdn.jsdelivr.net/npm/@fontsource/montserrat@4.5.0/400.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/montserrat@4.5.0/700.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/montserrat@4.5.0/900.css');

:root {
--cabinos-blue-dark: #0a1e5e;
--cabinos-blue: #0d2b7a;
--cabinos-blue-light: #1a3fa0;
--cabinos-yellow: #f5c518;
--cabinos-yellow-dark: #d4a800;
--cabinos-orange: #ff8c00;
--cabinos-white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
font-family: 'Montserrat', sans-serif;
background: linear-gradient(180deg, #0a1e5e 0%, #0d2b7a 30%, #112d8e 60%, #0a1e5e 100%);
color: var(--cabinos-white);
overflow-x: hidden;
min-height: 100vh;
}

.bg-particles {
position: fixed; top: 0; left: 0;
width: 100%; height: 100%;
pointer-events: none; z-index: 0; overflow: hidden;
}
.particle {
position: absolute; width: 3px; height: 3px;
background: rgba(245, 197, 24, 0.3); border-radius: 50%;
animation: floatParticle linear infinite;
}
@keyframes floatParticle {
0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
10% { opacity: 1; }
90% { opacity: 1; }
100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* =================== NAVBAR =================== */
.navbar {
position: fixed; top: 0; left: 0; right: 0;
z-index: 1000;
background: rgba(10, 30, 94, 0.95);
backdrop-filter: blur(20px);
border-bottom: 2px solid rgba(245, 197, 24, 0.3);
transition: all 0.4s ease;
}
.navbar.scrolled {
background: rgba(10, 30, 94, 0.98);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav-container {
max-width: 1280px; margin: 0 auto;
padding: 0.8rem 1.5rem;
display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
display: flex; align-items: center; gap: 0.5rem;
text-decoration: none; color: var(--cabinos-white);
}
.nav-logo-text {
font-size: 2rem; font-weight: 900; letter-spacing: -1px;
display: flex; align-items: center;
}
.nav-logo-text .logo-cabins { color: var(--cabinos-white); }
.nav-logo-text .logo-o {
display: inline-flex; align-items: center; justify-content: center;
width: 50px; height: 50px; background: var(--cabinos-yellow);
border-radius: 12px; color: var(--cabinos-blue-dark); font-weight: 900;
margin: 0 2px;
}
.nav-logo-text .logo-o .phone-icon { font-size: 0.75rem; display: block; }
.nav-logo-text .logo-s { color: var(--cabinos-white); }
.nav-logo-subtitle {
font-size: 0.65rem; color: var(--cabinos-yellow); font-weight: 700;
letter-spacing: 1px; text-transform: uppercase; display: block;
}
.nav-links {
display: flex; align-items: center; gap: 0.5rem; list-style: none;
}
.nav-links a {
color: var(--cabinos-white); text-decoration: none;
font-size: 0.85rem; font-weight: 600; padding: 0.5rem 1rem;
border-radius: 8px; transition: all 0.3s ease; cursor: pointer;
}
.nav-links a:hover { background: rgba(245, 197, 24, 0.15); color: var(--cabinos-yellow); }
.nav-links .nav-cta {
background: var(--cabinos-yellow); color: var(--cabinos-blue-dark);
font-weight: 800; padding: 0.6rem 1.5rem; border-radius: 50px;
}
.nav-links .nav-cta:hover { background: var(--cabinos-yellow-dark); transform: scale(1.05); }
.mobile-toggle {
display: none; flex-direction: column; gap: 5px; cursor: pointer;
padding: 8px; border-radius: 8px; background: none; border: none;
}
.mobile-toggle span {
width: 28px; height: 3px; background: var(--cabinos-white);
border-radius: 3px; transition: all 0.3s ease;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* =================== PAGES =================== */
.page { display: none; }
.page.active { display: block; }

/* =================== HERO SECTION =================== */
.hero {
padding-top: 100px;
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
z-index: 1;
}

.hero-container {
width: 100%;
max-width: 1280px;
margin: 0 auto;
padding: 2rem 1.5rem;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: space-between;
gap: 2.5rem;
}

/* ====== BOUTONS À GAUCHE ====== */
.hero-left {
flex: 1;
min-width: 0;
text-align: left !important;
animation: slideInLeft 1s ease-out;
}

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

.hero-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: linear-gradient(135deg, var(--cabinos-yellow), var(--cabinos-yellow-dark));
color: var(--cabinos-blue-dark);
font-weight: 800;
font-size: 0.75rem;
padding: 0.5rem 1.2rem;
border-radius: 50px;
margin-bottom: 1.5rem;
text-transform: uppercase;
letter-spacing: 1px;
animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.4); }
50% { box-shadow: 0 0 0 10px rgba(245, 197, 24, 0); }
}

.hero-title {
font-size: 3rem;
font-weight: 900;
line-height: 1.1;
margin-bottom: 1rem;
text-transform: uppercase;
text-align: left !important;
}
.hero-title .highlight-yellow {
color: var(--cabinos-yellow);
display: block;
}
.hero-title .highlight-white {
color: var(--cabinos-white);
}

.hero-subtitle {
font-size: 1.1rem;
font-weight: 700;
margin-bottom: 2rem;
color: rgba(255, 255, 255, 0.9);
text-align: left !important;
}
.hero-subtitle .word-highlight {
color: var(--cabinos-yellow);
font-weight: 900;
}

.services-grid {
display: flex;
flex-direction: column;
gap: 0.6rem;
width: 100%;
}

.service-btn {
display: flex;
align-items: center;
gap: 1rem;
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(245, 197, 24, 0.2);
border-radius: 12px;
padding: 0.85rem 1.2rem;
cursor: pointer;
transition: all 0.3s ease;
color: var(--cabinos-white);
position: relative;
overflow: hidden;
width: 100%;
text-align: left !important;
font-family: 'Montserrat', sans-serif;
justify-content: flex-start;
}
.service-btn::before {
content: '';
position: absolute; top: 0; left: -100%;
width: 100%; height: 100%;
background: linear-gradient(90deg, transparent, rgba(245, 197, 24, 0.1), transparent);
transition: left 0.5s ease;
}
.service-btn:hover::before { left: 100%; }
.service-btn:hover {
background: rgba(245, 197, 24, 0.15);
border-color: var(--cabinos-yellow);
transform: translateX(8px);
box-shadow: 0 4px 20px rgba(245, 197, 24, 0.2);
}
.service-btn:active { transform: translateX(4px) scale(0.98); }

.service-icon {
width: 42px; height: 42px; border-radius: 10px;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
}
.service-icon.airtel { background: linear-gradient(135deg, #ff1744, #d50000); }
.service-icon.mpesa { background: linear-gradient(135deg, #4caf50, #2e7d32); }
.service-icon.orange { background: linear-gradient(135deg, #ff6f00, #e65100); }
.service-icon.transfer { background: linear-gradient(135deg, #1a3fa0, #0d2b7a); border: 1px solid rgba(245,197,24,0.3); }
.service-icon.bills { background: linear-gradient(135deg, #1a3fa0, #0d2b7a); border: 1px solid rgba(245,197,24,0.3); }
.service-icon.credit { background: linear-gradient(135deg, #1a3fa0, #0d2b7a); border: 1px solid rgba(245,197,24,0.3); }
.service-icon.other { background: linear-gradient(135deg, #1a3fa0, #0d2b7a); border: 1px solid rgba(245,197,24,0.3); }

.service-text { flex: 1; text-align: left !important; }
.service-text .service-name { font-weight: 700; font-size: 0.82rem; line-height: 1.2; display: block; }
.service-text .service-desc { font-size: 0.7rem; color: rgba(255, 255, 255, 0.6); margin-top: 2px; }
.service-arrow { font-size: 1.2rem; color: var(--cabinos-yellow); transition: transform 0.3s ease; flex-shrink: 0; }
.service-btn:hover .service-arrow { transform: translateX(5px); }

/* ====== IMAGE À DROITE ====== */
.hero-right {
flex: 0 0 42%;
max-width: 500px;
display: flex;
align-items: center;
justify-content: center;
animation: slideInRight 1s ease-out 0.3s both;
position: relative;
}
@keyframes slideInRight {
from { opacity: 0; transform: translateX(60px); }
to { opacity: 1; transform: translateX(0); }
}

.cabin-placeholder {
width: 100%;
aspect-ratio: 4/5;
background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
border: 2px dashed rgba(245, 197, 24, 0.3);
border-radius: 20px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 1rem;
position: relative;
overflow: hidden;
}
.cabin-placeholder::before {
content: '';
position: absolute; top: -50%; left: -50%;
width: 200%; height: 200%;
background: conic-gradient(from 0deg, transparent, rgba(245, 197, 24, 0.05), transparent, rgba(245, 197, 24, 0.05));
animation: rotateBg 10s linear infinite;
}
@keyframes rotateBg { to { transform: rotate(360deg); } }
.cabin-placeholder .placeholder-icon { font-size: 4rem; z-index: 1; opacity: 0.6; }
.cabin-placeholder .placeholder-text {
z-index: 1; font-size: 0.9rem; color: rgba(255, 255, 255, 0.4);
text-align: center; padding: 0 1rem;
}

.cabin-info-badge {
position: absolute;
bottom: -20px;
left: 50%;
transform: translateX(-50%);
background: linear-gradient(135deg, var(--cabinos-yellow), var(--cabinos-yellow-dark));
color: var(--cabinos-blue-dark);
padding: 0.8rem 1.5rem;
border-radius: 50px;
font-weight: 800;
font-size: 0.82rem;
white-space: nowrap;
z-index: 10;
box-shadow: 0 8px 30px rgba(245, 197, 24, 0.4);
animation: bounceIn 1s ease-out 1s both;
}
@keyframes bounceIn {
0% { opacity: 0; transform: translateX(-50%) scale(0.5); }
60% { opacity: 1; transform: translateX(-50%) scale(1.1); }
100% { transform: translateX(-50%) scale(1); }
}

/* =================== YELLOW BANNER =================== */
/* YELLOW BANNER — style bords biseautés design */
.yellow-banner {
position: relative;
z-index: 1;
padding: 0;
text-align: center;
overflow: hidden;
}

.yellow-banner-inner {
position: relative;
background: linear-gradient(135deg, var(--cabinos-yellow), var(--cabinos-yellow-dark));
padding: 2rem 1.5rem;
margin: 0 auto;
max-width: 1100px;
clip-path: polygon(
3% 0%, 97% 0%, 100% 10%, 97% 100%, 3% 100%, 0% 90%
);
}

.yellow-banner-inner p {
font-size: 1.3rem;
font-weight: 800;
color: var(--cabinos-blue-dark);
font-style: italic;
margin: 0;
line-height: 1.4;
}

/* Decorative brush edges */
.yellow-banner::before,
.yellow-banner::after {
content: '';
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 80px;
height: 100%;
z-index: 2;
}

.yellow-banner::before {
left: 0;
background: linear-gradient(90deg, var(--cabinos-blue-dark) 30%, transparent);
}

.yellow-banner::after {
right: 0;
background: linear-gradient(-90deg, var(--cabinos-blue-dark) 30%, transparent);
}


/* =================== FEATURES =================== */
.features {
position: relative; z-index: 1;
background: var(--cabinos-blue-dark); padding: 3rem 1.5rem;
}
.features-container {
max-width: 1280px; margin: 0 auto;
display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem;
}
.feature-item {
display: flex; align-items: center; gap: 1rem;
padding: 1rem 1.5rem;
border-right: 1px solid rgba(245, 197, 24, 0.2);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
width: 50px; height: 50px; border-radius: 50%;
border: 2px solid var(--cabinos-yellow);
display: flex; align-items: center; justify-content: center;
font-size: 1.4rem; flex-shrink: 0; transition: all 0.3s ease;
}
.feature-item:hover .feature-icon { background: var(--cabinos-yellow); transform: scale(1.1); }
.feature-text { font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.3; }

/* =================== FOOTER =================== */
.footer {
position: relative; z-index: 1;
background: var(--cabinos-blue-dark);
border-top: 1px solid rgba(245, 197, 24, 0.15);
padding: 2.5rem 1.5rem 1.5rem;
}
.footer-container {
max-width: 1280px; margin: 0 auto;
display: flex; flex-direction: row; justify-content: space-between;
align-items: center; gap: 2rem;
}
.footer-col {
display: flex; flex-direction: column; align-items: center;
text-align: center; flex: 1;
}
.footer-col .footer-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.footer-col h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.3rem; }
.footer-col p { font-size: 0.8rem; color: rgba(255, 255, 255, 0.6); line-height: 1.5; }
.footer-col .hours-highlight { color: var(--cabinos-yellow); font-size: 1.5rem; font-weight: 900; display: block; }
.footer-social { display: flex; justify-content: center; gap: 1rem; margin-top: 1rem; }
.footer-social a {
width: 44px; height: 44px; border-radius: 50%;
display: flex; align-items: center; justify-content: center;
font-size: 1.2rem; transition: all 0.3s ease; text-decoration: none;
color: var(--cabinos-white);
}
.footer-social .social-whatsapp { background: #25d366; }
.footer-social .social-facebook { background: #1877f2; }
.footer-social .social-phone { background: var(--cabinos-yellow); color: var(--cabinos-blue-dark); }
.footer-social a:hover { transform: scale(1.15); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); }
.footer-bottom {
max-width: 1280px; margin: 2rem auto 0;
padding-top: 1.5rem; border-top: 1px solid rgba(245, 197, 24, 0.15);
text-align: center;
}
.footer-bottom p { font-size: 0.85rem; font-weight: 700; color: var(--cabinos-yellow); letter-spacing: 1px; }

/* Newsletter */
.newsletter-section {
max-width: 1280px; margin: 2rem auto 0;
padding: 2rem;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(245, 197, 24, 0.2);
border-radius: 16px;
text-align: center;
}
.newsletter-section h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--cabinos-yellow); }
.newsletter-section p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 1.2rem; }
.newsletter-form { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; max-width: 600px; margin: 0 auto; }
.newsletter-input {
flex: 1; min-width: 220px;
padding: 0.8rem 1.2rem;
background: rgba(245, 197, 24, 0.08);
border: 2px solid var(--cabinos-yellow);
border-radius: 50px;
color: var(--cabinos-white);
font-family: 'Montserrat', sans-serif;
font-size: 0.9rem;
outline: none;
transition: all 0.3s ease;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--cabinos-orange); box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.3); }
.newsletter-btn {
padding: 0.8rem 2rem;
background: linear-gradient(135deg, var(--cabinos-yellow), var(--cabinos-yellow-dark));
color: var(--cabinos-blue-dark);
border: none; border-radius: 50px;
font-family: 'Montserrat', sans-serif;
font-weight: 800; font-size: 0.9rem;
cursor: pointer; transition: all 0.3s ease;
}
.newsletter-btn:hover { transform: scale(1.05); box-shadow: 0 4px 20px rgba(245, 197, 24, 0.4); }

/* Mobile Nav */
.mobile-nav {
display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
background: rgba(10, 30, 94, 0.98); backdrop-filter: blur(20px);
z-index: 999; flex-direction: column; align-items: center;
justify-content: center; gap: 1.5rem; opacity: 0; transition: opacity 0.4s ease;
}
.mobile-nav.active { display: flex; opacity: 1; }
.mobile-nav a {
color: var(--cabinos-white); text-decoration: none;
font-size: 1.3rem; font-weight: 700; padding: 0.8rem 2rem;
border-radius: 12px; transition: all 0.3s ease; width: 80%; text-align: center;
}
.mobile-nav a:hover { background: rgba(245, 197, 24, 0.15); color: var(--cabinos-yellow); }
.mobile-nav .mobile-nav-cta {
background: var(--cabinos-yellow); color: var(--cabinos-blue-dark);
font-weight: 800; border-radius: 50px;
}

.animate-on-scroll {
opacity: 0; transform: translateY(30px); transition: all 0.8s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* Loader */
.page-loader {
position: fixed; top: 0; left: 0; right: 0; bottom: 0;
background: var(--cabinos-blue-dark);
display: flex; align-items: center; justify-content: center;
z-index: 10000; transition: opacity 0.5s ease;
}
.page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-spinner {
width: 60px; height: 60px;
border: 4px solid rgba(245, 197, 24, 0.2);
border-top-color: var(--cabinos-yellow);
border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Modal */
.modal-overlay {
display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
background: rgba(10, 30, 94, 0.9); backdrop-filter: blur(10px);
z-index: 10000; align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.active { display: flex; }
.modal-content {
background: linear-gradient(145deg, var(--cabinos-blue), var(--cabinos-blue-dark));
border: 2px solid rgba(245, 197, 24, 0.3); border-radius: 20px;
padding: 2.5rem; max-width: 450px; width: 100%; text-align: center;
animation: modalIn 0.4s ease;
}
@keyframes modalIn {
from { opacity: 0; transform: scale(0.8) translateY(20px); }
to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-content h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--cabinos-yellow); }
.modal-content p { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; line-height: 1.6; }
.modal-close {
background: var(--cabinos-yellow); color: var(--cabinos-blue-dark);
border: none; padding: 0.8rem 2rem; border-radius: 50px;
font-weight: 800; font-size: 0.9rem; cursor: pointer;
transition: all 0.3s ease; font-family: 'Montserrat', sans-serif;
}
.modal-close:hover { background: var(--cabinos-yellow-dark); transform: scale(1.05); }

/* =================== PAGE CONTACT =================== */
.contact-page {
padding-top: 120px;
min-height: 100vh;
position: relative;
z-index: 1;
}
.contact-container {
max-width: 700px;
margin: 0 auto;
padding: 2rem 1.5rem;
}
.contact-header {
text-align: center;
margin-bottom: 3rem;
}
.contact-header h1 {
font-size: 2.5rem;
font-weight: 900;
text-transform: uppercase;
margin-bottom: 0.5rem;
}
.contact-header h1 span { color: var(--cabinos-yellow); }
.contact-header p { color: rgba(255,255,255,0.6); font-size: 1rem; }

.contact-form-card {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(245, 197, 24, 0.2);
border-radius: 20px;
padding: 2.5rem;
}

.form-group { margin-bottom: 1.5rem; }
.form-group label {
display: block; font-weight: 700; font-size: 0.85rem;
text-transform: uppercase; letter-spacing: 0.5px;
margin-bottom: 0.5rem; color: var(--cabinos-yellow);
}
.form-group label .required { color: var(--cabinos-orange); }

.contact-input,
.contact-select,
.contact-textarea {
width: 100%;
padding: 0.9rem 1.2rem;
background: rgba(245, 197, 24, 0.06);
border: 2px solid var(--cabinos-orange);
border-radius: 12px;
color: var(--cabinos-white);
font-family: 'Montserrat', sans-serif;
font-size: 0.95rem;
outline: none;
transition: all 0.3s ease;
}
.contact-input::placeholder,
.contact-textarea::placeholder { color: rgba(255, 255, 255, 0.3); }
.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
border-color: var(--cabinos-yellow);
box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.2);
background: rgba(245, 197, 24, 0.1);
}
.contact-select {
appearance: none; cursor: pointer;
background-image: url("image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='%23f5c518'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
background-repeat: no-repeat; background-position: right 1rem center;
padding-right: 3rem;
}
.contact-select option { background: var(--cabinos-blue-dark); color: var(--cabinos-white); }
.contact-textarea { resize: vertical; min-height: 140px; }

.form-row { display: flex; gap: 1.5rem; }
.form-row .form-group { flex: 1; }

.radio-group { display: flex; gap: 1.5rem; align-items: center; padding: 0.5rem 0; }
.radio-option { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.radio-option input[type="radio"] { display: none; }
.radio-custom {
width: 22px; height: 22px;
border: 2px solid var(--cabinos-orange);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
transition: all 0.3s ease;
}
.radio-option input[type="radio"]:checked + .radio-custom {
border-color: var(--cabinos-yellow); background: var(--cabinos-yellow);
}
.radio-option input[type="radio"]:checked + .radio-custom::after {
content: ''; width: 8px; height: 8px;
background: var(--cabinos-blue-dark); border-radius: 50%;
}
.radio-label { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.8); }

.submit-btn {
width: 100%;
padding: 1rem 2rem;
background: linear-gradient(135deg, var(--cabinos-yellow), var(--cabinos-orange));
color: var(--cabinos-blue-dark);
border: none; border-radius: 50px;
font-family: 'Montserrat', sans-serif;
font-weight: 800; font-size: 1rem;
cursor: pointer; transition: all 0.3s ease;
text-transform: uppercase; letter-spacing: 1px;
margin-top: 0.5rem;
}
.submit-btn:hover { transform: scale(1.02); box-shadow: 0 6px 30px rgba(245, 197, 24, 0.4); }
.submit-btn:active { transform: scale(0.98); }

.form-success { display: none; text-align: center; padding: 2rem; }
.form-success.show { display: block; }
.form-success .success-icon { font-size: 4rem; margin-bottom: 1rem; }
.form-success h3 { color: var(--cabinos-yellow); font-size: 1.5rem; margin-bottom: 0.5rem; }
.form-success p { color: rgba(255,255,255,0.6); }

/* ============================================================
 RESPONSIVE — TABLETTE (max-width: 1024px)
 Boutons à gauche, image à droite en colonne empilée
 ============================================================ */
@media (max-width: 1024px) {
.hero-container {
flex-direction: column;
}
/* En tablette: image en HAUT centrée, boutons en BAS alignés à gauche */
.hero-right {
order: 1;
flex: 0 0 auto;
width: 100%;
max-width: 350px;
margin: 0 auto;
}
.hero-left {
order: 2;
width: 100%;
text-align: left !important;
}
.hero-title { text-align: left !important; font-size: 2.5rem; }
.hero-subtitle { text-align: left !important; }
.hero-badge { display: inline-flex; }
.services-grid { max-width: 100%; margin: 0; }
.features-container { gap: 1rem; }
.feature-item {
border-right: none;
border-bottom: 1px solid rgba(245, 197, 24, 0.15);
padding: 1rem;
width: calc(50% - 0.5rem);
}
.feature-item:last-child { border-bottom: none; }
.footer-container { flex-wrap: wrap; justify-content: center; }
.footer-col { min-width: 200px; }
.yellow-banner-inner { max-width: 90%; clip-path: polygon(2% 0%, 98% 0%, 100% 8%, 98% 100%, 2% 100%, 0% 92%); }
}

@media (max-width: 768px) {
.nav-links { display: none; }
.mobile-toggle { display: flex; }
.hero-title { font-size: 2rem; }
.hero-subtitle { font-size: 0.95rem; }
.service-btn { padding: 0.7rem 1rem; }
.service-icon { width: 36px; height: 36px; }
.service-text .service-name { font-size: 0.78rem; }
.yellow-banner-inner p { font-size: 1rem; }
.yellow-banner-inner {
padding: 1.5rem 1rem;
clip-path: polygon(1% 0%, 99% 0%, 100% 6%, 99% 100%, 1% 100%, 0% 94%);
}
.feature-item { width: 100%; }
.cabin-placeholder { max-width: 280px; }
.footer-container { flex-direction: column; align-items: center; }
.footer-col { min-width: 100%; padding: 1rem 0; }
.contact-header h1 { font-size: 1.8rem; }
.contact-form-card { padding: 1.5rem; }
.form-row { flex-direction: column; gap: 0; }
}

@media (max-width: 480px) {
.hero-title { font-size: 1.6rem; }
.nav-logo-text { font-size: 1.5rem; }
.nav-logo-text .logo-o { width: 38px; height: 38px; }
.yellow-banner-inner p { font-size: 0.85rem; }
.yellow-banner-inner {
clip-path: polygon(0% 0%, 100% 0%, 100% 4%, 100% 100%, 0% 100%, 0% 96%);
}
.cabin-placeholder { max-width: 220px; }
.cabin-info-badge { font-size: 0.72rem; padding: 0.6rem 1rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
.feature-item {
width: calc(33.333% - 0.67rem);
border-right: 1px solid rgba(245, 197, 24, 0.15);
border-bottom: none;
}
.feature-item:nth-child(3n) { border-right: none; }
}

























/* ===== PAGE À PROPOS ===== */
.about-hero {
padding-top: 120px;
padding-bottom: 4rem;
position: relative;
z-index: 1;
text-align: center;
}

.about-hero-inner {
max-width: 800px;
margin: 0 auto;
padding: 0 1.5rem;
}

.about-hero-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: linear-gradient(135deg, var(--cabinos-yellow), var(--cabinos-yellow-dark));
color: var(--cabinos-blue-dark);
font-weight: 800;
font-size: 0.75rem;
padding: 0.5rem 1.2rem;
border-radius: 50px;
margin-bottom: 1.5rem;
text-transform: uppercase;
letter-spacing: 1px;
}

.about-hero h1 {
font-size: 3rem;
font-weight: 900;
text-transform: uppercase;
line-height: 1.1;
margin-bottom: 1rem;
}

.about-hero h1 span {
color: var(--cabinos-yellow);
display: block;
}

.about-hero .about-subtitle {
font-size: 1.1rem;
color: rgba(255,255,255,0.7);
line-height: 1.7;
max-width: 600px;
margin: 0 auto;
}

/* Section Histoire */
.about-section {
position: relative;
z-index: 1;
padding: 3rem 1.5rem;
}

.about-section-inner {
max-width: 1100px;
margin: 0 auto;
}

.section-label {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-size: 0.8rem;
font-weight: 700;
color: var(--cabinos-yellow);
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 0.8rem;
}

.section-label::before {
content: '';
width: 30px;
height: 3px;
background: var(--cabinos-yellow);
border-radius: 3px;
}

.about-section h2 {
font-size: 2rem;
font-weight: 900;
text-transform: uppercase;
margin-bottom: 1.5rem;
line-height: 1.2;
}

.about-section h2 span {
color: var(--cabinos-yellow);
}

.about-text {
font-size: 1rem;
line-height: 1.8;
color: rgba(255,255,255,0.8);
max-width: 900px;
}

.about-text p {
margin-bottom: 1.2rem;
}

.about-text .highlight {
color: var(--cabinos-yellow);
font-weight: 700;
}

/* Timeline */
.timeline {
position: relative;
padding: 2rem 0;
}

.timeline::before {
content: '';
position: absolute;
left: 50%;
transform: translateX(-50%);
top: 0;
bottom: 0;
width: 3px;
background: linear-gradient(to bottom, var(--cabinos-yellow), var(--cabinos-orange));
border-radius: 3px;
}

.timeline-item {
display: flex;
align-items: center;
margin-bottom: 3rem;
position: relative;
}

.timeline-item:nth-child(odd) {
flex-direction: row;
}

.timeline-item:nth-child(even) {
flex-direction: row-reverse;
}

.timeline-content {
width: 45%;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(245, 197, 24, 0.2);
border-radius: 16px;
padding: 1.5rem;
transition: all 0.3s ease;
}

.timeline-content:hover {
border-color: var(--cabinos-yellow);
background: rgba(245, 197, 24, 0.08);
transform: translateY(-3px);
}

.timeline-dot {
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 20px;
height: 20px;
background: var(--cabinos-yellow);
border: 4px solid var(--cabinos-blue-dark);
border-radius: 50%;
z-index: 2;
}

.timeline-year {
font-size: 1.4rem;
font-weight: 900;
color: var(--cabinos-yellow);
margin-bottom: 0.5rem;
}

.timeline-title {
font-size: 1rem;
font-weight: 700;
margin-bottom: 0.5rem;
}

.timeline-desc {
font-size: 0.85rem;
color: rgba(255,255,255,0.6);
line-height: 1.6;
}

/* Stats */
.about-stats {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.5rem;
padding: 3rem 0;
}

.stat-card {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(245, 197, 24, 0.2);
border-radius: 16px;
padding: 2rem 1.5rem;
text-align: center;
transition: all 0.3s ease;
}

.stat-card:hover {
border-color: var(--cabinos-yellow);
background: rgba(245, 197, 24, 0.08);
transform: translateY(-5px);
}

.stat-number {
font-size: 2.5rem;
font-weight: 900;
color: var(--cabinos-yellow);
display: block;
margin-bottom: 0.3rem;
}

.stat-label {
font-size: 0.8rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
color: rgba(255,255,255,0.7);
}

/* Values */
.values-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
padding: 2rem 0;
}

.value-card {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(245, 197, 24, 0.15);
border-radius: 16px;
padding: 2rem;
text-align: center;
transition: all 0.3s ease;
}

.value-card:hover {
border-color: var(--cabinos-yellow);
background: rgba(245, 197, 24, 0.08);
transform: translateY(-5px);
}

.value-icon {
width: 60px;
height: 60px;
margin: 0 auto 1rem;
background: linear-gradient(135deg, rgba(245, 197, 24, 0.2), rgba(255, 140, 0, 0.2));
border: 2px solid var(--cabinos-yellow);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
}

.value-card h3 {
font-size: 1rem;
font-weight: 800;
margin-bottom: 0.5rem;
color: var(--cabinos-yellow);
text-transform: uppercase;
}

.value-card p {
font-size: 0.85rem;
color: rgba(255,255,255,0.6);
line-height: 1.6;
}

/* CTA Banner */
.about-cta {
margin: 3rem 0;
padding: 3rem 2rem;
background: linear-gradient(135deg, var(--cabinos-yellow), var(--cabinos-orange));
border-radius: 20px;
text-align: center;
}

.about-cta h2 {
font-size: 1.8rem;
font-weight: 900;
color: var(--cabinos-blue-dark);
margin-bottom: 0.5rem;
}

.about-cta p {
font-size: 1rem;
color: rgba(10, 30, 94, 0.7);
margin-bottom: 1.5rem;
font-weight: 600;
}

.about-cta-btn {
display: inline-block;
padding: 0.8rem 2.5rem;
background: var(--cabinos-blue-dark);
color: var(--cabinos-white);
border: none;
border-radius: 50px;
font-family: 'Montserrat', sans-serif;
font-weight: 800;
font-size: 0.9rem;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 1px;
}

.about-cta-btn:hover {
transform: scale(1.05);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
position: relative; z-index: 1;
background: var(--cabinos-blue-dark);
border-top: 1px solid rgba(245, 197, 24, 0.15);
padding: 2.5rem 1.5rem 1.5rem;
}
.footer-container {
max-width: 1280px; margin: 0 auto;
display: flex; flex-direction: row; justify-content: space-between;
align-items: center; gap: 2rem;
}
.footer-col {
display: flex; flex-direction: column; align-items: center;
text-align: center; flex: 1;
}
.footer-col .footer-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.footer-col h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.3rem; }
.footer-col p { font-size: 0.8rem; color: rgba(255, 255, 255, 0.6); line-height: 1.5; }
.footer-col .hours-highlight { color: var(--cabinos-yellow); font-size: 1.5rem; font-weight: 900; display: block; }
.footer-social { display: flex; justify-content: center; gap: 1rem; margin-top: 1rem; }
.footer-social a {
width: 44px; height: 44px; border-radius: 50%;
display: flex; align-items: center; justify-content: center;
font-size: 1.2rem; transition: all 0.3s ease; text-decoration: none;
color: var(--cabinos-white);
}
.footer-social .social-whatsapp { background: #25d366; }
.footer-social .social-facebook { background: #1877f2; }
.footer-social .social-phone { background: var(--cabinos-yellow); color: var(--cabinos-blue-dark); }
.footer-social a:hover { transform: scale(1.15); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); }
.footer-bottom {
max-width: 1280px; margin: 2rem auto 0;
padding-top: 1.5rem; border-top: 1px solid rgba(245, 197, 24, 0.15);
text-align: center;
}
.footer-bottom p { font-size: 0.85rem; font-weight: 700; color: var(--cabinos-yellow); letter-spacing: 1px; }

.newsletter-section {
max-width: 1280px; margin: 2rem auto 0;
padding: 2rem;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(245, 197, 24, 0.2);
border-radius: 16px;
text-align: center;
}
.newsletter-section h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--cabinos-yellow); }
.newsletter-section p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 1.2rem; }
.newsletter-form { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; max-width: 600px; margin: 0 auto; }
.newsletter-input {
flex: 1; min-width: 220px;
padding: 0.8rem 1.2rem;
background: rgba(245, 197, 24, 0.08);
border: 2px solid var(--cabinos-yellow);
border-radius: 50px;
color: var(--cabinos-white);
font-family: 'Montserrat', sans-serif;
font-size: 0.9rem;
outline: none;
transition: all 0.3s ease;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--cabinos-orange); box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.3); }
.newsletter-btn {
padding: 0.8rem 2rem;
background: linear-gradient(135deg, var(--cabinos-yellow), var(--cabinos-yellow-dark));
color: var(--cabinos-blue-dark);
border: none; border-radius: 50px;
font-family: 'Montserrat', sans-serif;
font-weight: 800; font-size: 0.9rem;
cursor: pointer; transition: all 0.3s ease;
}
.newsletter-btn:hover { transform: scale(1.05); box-shadow: 0 4px 20px rgba(245, 197, 24, 0.4); }

.animate-on-scroll {
opacity: 0; transform: translateY(30px); transition: all 0.8s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

.page-loader {
position: fixed; top: 0; left: 0; right: 0; bottom: 0;
background: var(--cabinos-blue-dark);
display: flex; align-items: center; justify-content: center;
z-index: 10000; transition: opacity 0.5s ease;
}
.page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-spinner {
width: 60px; height: 60px;
border: 4px solid rgba(245, 197, 24, 0.2);
border-top-color: var(--cabinos-yellow);
border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
.about-hero h1 { font-size: 2.5rem; }
.about-stats { grid-template-columns: repeat(2, 1fr); }
.values-grid { grid-template-columns: repeat(2, 1fr); }
.timeline::before { left: 20px; }
.timeline-item { flex-direction: column !important; align-items: flex-start; padding-left: 50px; }
.timeline-content { width: 100%; }
.timeline-dot { left: 20px; top: 0; }
.footer-container { flex-wrap: wrap; justify-content: center; }
.footer-col { min-width: 200px; }
}

@media (max-width: 768px) {
.nav-links { display: none; }
.mobile-toggle { display: flex; }
.about-hero h1 { font-size: 2rem; }
.about-hero .about-subtitle { font-size: 0.95rem; }
.about-section h2 { font-size: 1.5rem; }
.stat-card { padding: 1.5rem 1rem; }
.stat-number { font-size: 2rem; }
.values-grid { grid-template-columns: 1fr; }
.footer-container { flex-direction: column; align-items: center; }
.footer-col { min-width: 100%; padding: 1rem 0; }
}

@media (max-width: 480px) {
.about-hero h1 { font-size: 1.6rem; }
.nav-logo-text { font-size: 1.5rem; }
.nav-logo-text .logo-o { width: 38px; height: 38px; }
.about-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.stat-number { font-size: 1.6rem; }
.about-cta h2 { font-size: 1.3rem; }
}
















/* ===== SECTION FAQ ===== */
.faq-section {
position: relative;
z-index: 1;
padding: 5rem 1.5rem;
background: linear-gradient(180deg, transparent 0%, rgba(10, 30, 94, 0.3) 50%, transparent 100%);
}

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

.faq-header {
text-align: center;
margin-bottom: 3rem;
}

.faq-header .section-label {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-size: 0.8rem;
font-weight: 700;
color: var(--cabinos-yellow);
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 0.8rem;
}

.faq-header .section-label::before {
content: '';
width: 30px;
height: 3px;
background: var(--cabinos-yellow);
border-radius: 3px;
}

.faq-header h2 {
font-size: 2.2rem;
font-weight: 900;
text-transform: uppercase;
margin-bottom: 1rem;
line-height: 1.2;
}

.faq-header h2 span {
color: var(--cabinos-yellow);
}

.faq-header p {
font-size: 1rem;
color: rgba(255,255,255,0.6);
max-width: 500px;
margin: 0 auto;
}

.faq-grid {
display: flex;
flex-direction: column;
gap: 1rem;
margin-bottom: 3rem;
}

.faq-item {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(245, 197, 24, 0.15);
border-radius: 12px;
overflow: hidden;
transition: all 0.3s ease;
}

.faq-item:hover {
border-color: rgba(245, 197, 24, 0.3);
background: rgba(255, 255, 255, 0.07);
}

.faq-item.active {
border-color: var(--cabinos-yellow);
background: rgba(245, 197, 24, 0.08);
}

.faq-question {
width: 100%;
padding: 1.5rem;
background: transparent;
border: none;
display: flex;
align-items: center;
justify-content: space-between;
cursor: pointer;
text-align: left;
font-family: 'Montserrat', sans-serif;
transition: all 0.3s ease;
}

.faq-question:hover {
background: rgba(245, 197, 24, 0.05);
}

.faq-title {
font-size: 1rem;
font-weight: 700;
color: var(--cabinos-white);
flex: 1;
padding-right: 1rem;
}

.faq-icon {
font-size: 1.8rem;
color: var(--cabinos-yellow);
font-weight: 300;
transition: transform 0.3s ease;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: rgba(245, 197, 24, 0.1);
flex-shrink: 0;
}

.faq-item.active .faq-icon {
transform: rotate(45deg);
background: var(--cabinos-yellow);
color: var(--cabinos-blue-dark);
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
max-height: 500px;
padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
font-size: 0.95rem;
line-height: 1.7;
color: rgba(255,255,255,0.7);
}

.faq-answer strong {
color: var(--cabinos-yellow);
font-weight: 700;
}

.faq-cta {
text-align: center;
padding: 2.5rem;
background: linear-gradient(135deg, rgba(245, 197, 24, 0.1), rgba(255, 140, 0, 0.1));
border: 2px solid rgba(245, 197, 24, 0.2);
border-radius: 16px;
}

.faq-cta p {
font-size: 1.1rem;
font-weight: 700;
margin-bottom: 1rem;
color: rgba(255,255,255,0.8);
}

.faq-cta-btn {
display: inline-block;
padding: 0.8rem 2rem;
background: linear-gradient(135deg, var(--cabinos-yellow), var(--cabinos-yellow-dark));
color: var(--cabinos-blue-dark);
border-radius: 50px;
font-family: 'Montserrat', sans-serif;
font-weight: 800;
font-size: 0.9rem;
text-decoration: none;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
}

.faq-cta-btn:hover {
transform: scale(1.05);
box-shadow: 0 6px 25px rgba(245, 197, 24, 0.4);
}

/* Responsive FAQ */
@media (max-width: 768px) {
.faq-section {
padding: 3rem 1rem;
}

.faq-header h2 {
font-size: 1.6rem;
}

.faq-question {
padding: 1.2rem;
}

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

.faq-answer {
font-size: 0.9rem;
}
}











/* ===== SECTION ACTION JETON ===== */
.jeton-action-section {
padding: 4rem 1.5rem;
position: relative;
z-index: 1;
background: linear-gradient(180deg, transparent 0%, rgba(10, 30, 94, 0.4) 50%, transparent 100%);
}

.jeton-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
gap: 3rem;
}

/* ===== GAUCHE : Contenu texte ===== */
.jeton-content {
flex: 1;
min-width: 0;
text-align: left;
}

.jeton-content .hero-badge {
display: inline-flex;
margin-bottom: 1.5rem;
}

.jeton-content .hero-title {
font-size: 2.8rem;
font-weight: 900;
line-height: 1.1;
margin-bottom: 1rem;
text-transform: uppercase;
text-align: left;
}

.jeton-content .hero-title .highlight-yellow {
color: var(--cabinos-yellow);
display: block;
}

.jeton-content .hero-title .highlight-white {
color: var(--cabinos-white);
}

.jeton-content .hero-subtitle {
font-size: 1.1rem;
font-weight: 700;
color: rgba(255,255,255,0.9);
text-align: left;
}

.jeton-content .hero-subtitle .word-highlight {
color: var(--cabinos-yellow);
font-weight: 900;
}

/* ===== DROITE : Carte Jeton ===== */
.jeton-card-wrapper {
flex: 0 0 400px;
display: flex;
justify-content: flex-end;
}

.jeton-card {
width: 100%;
max-width: 380px;
background: rgba(255, 255, 255, 0.03);
border: 2px solid rgba(245, 197, 24, 0.3);
border-radius: 24px;
position: relative;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease;
}

.jeton-card:hover {
border-color: var(--cabinos-yellow);
transform: translateY(-5px);
box-shadow: 0 20px 50px rgba(245, 197, 24, 0.15);
}

.jeton-card::before {
content: '';
position: absolute;
top: -50%; left: -50%;
width: 200%; height: 200%;
background: radial-gradient(circle, rgba(245, 197, 24, 0.1) 0%, transparent 70%);
animation: rotateGlow 10s linear infinite;
pointer-events: none;
}

@keyframes rotateGlow {
to { transform: rotate(360deg); }
}

.jeton-card-inner {
position: relative;
z-index: 2;
text-align: center;
padding: 2.5rem 2rem;
}

.jeton-icon-bounce {
font-size: 3rem;
margin-bottom: 1rem;
display: inline-block;
animation: bounce 2s infinite;
}

@keyframes bounce {
0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
40% { transform: translateY(-12px); }
60% { transform: translateY(-6px); }
}

.jeton-question {
font-size: 1.4rem;
font-weight: 900;
color: var(--cabinos-white);
margin-bottom: 0.3rem;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.jeton-subtitle {
font-size: 0.95rem;
color: rgba(255, 255, 255, 0.7);
margin-bottom: 1.5rem;
}

.jeton-whatsapp-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.6rem;
background: #25D366;
color: white;
padding: 0.9rem 1.8rem;
border-radius: 50px;
font-family: 'Montserrat', sans-serif;
font-size: 0.95rem;
font-weight: 800;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
text-transform: uppercase;
width: 100%;
}

.jeton-whatsapp-btn:hover {
background: #128C7E;
transform: scale(1.03);
box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
.jeton-container {
gap: 2rem;
}

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

.jeton-card-wrapper {
flex: 0 0 320px;
}
}

@media (max-width: 768px) {
.jeton-container {
flex-direction: column;
text-align: center;
gap: 2.5rem;
}

.jeton-content {
text-align: center !important;
width: 100%;
}

.jeton-content .hero-title,
.jeton-content .hero-subtitle {
text-align: center !important;
}

.jeton-content .hero-badge {
margin: 0 auto 1.5rem auto;
}

.jeton-card-wrapper {
flex: 0 0 auto;
width: 100%;
max-width: 380px;
justify-content: center;
}

.jeton-card {
max-width: 100%;
}
}

@media (max-width: 480px) {
.jeton-action-section {
padding: 2.5rem 1rem;
}

.jeton-content .hero-title {
font-size: 1.6rem;
}

.jeton-content .hero-subtitle {
font-size: 0.95rem;
}

.jeton-question {
font-size: 1.2rem;
}

.jeton-icon-bounce {
font-size: 2.5rem;
}

.jeton-whatsapp-btn {
padding: 0.8rem 1.5rem;
font-size: 0.85rem;
}
}















/* ===== SECTION MENTIONS LÉGALES ===== */
.legal-section {
position: relative;
z-index: 1;
padding: 5rem 1.5rem;
background: linear-gradient(180deg, var(--cabinos-blue-dark) 0%, var(--cabinos-blue) 100%);
}

.legal-container {
max-width: 900px;
margin: 0 auto;
}

/* Header */
.legal-header {
text-align: center;
margin-bottom: 4rem;
padding-bottom: 2rem;
border-bottom: 1px solid rgba(245, 197, 24, 0.2);
}

.legal-header .section-label {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-size: 0.8rem;
font-weight: 700;
color: var(--cabinos-yellow);
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 0.8rem;
}

.legal-header .section-label::before {
content: '';
width: 30px;
height: 3px;
background: var(--cabinos-yellow);
border-radius: 3px;
}

.legal-header h1 {
font-size: 2.5rem;
font-weight: 900;
text-transform: uppercase;
margin-bottom: 0.5rem;
color: var(--cabinos-white);
}

.legal-header h1 span {
color: var(--cabinos-yellow);
}

.legal-header p {
font-size: 0.95rem;
color: rgba(255,255,255,0.6);
}

/* Articles */
.legal-article {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(245, 197, 24, 0.15);
border-radius: 16px;
padding: 2rem;
margin-bottom: 1.5rem;
transition: all 0.3s ease;
}

.legal-article:hover {
border-color: rgba(245, 197, 24, 0.3);
background: rgba(255, 255, 255, 0.05);
}

.legal-article h2 {
font-size: 1.3rem;
font-weight: 800;
color: var(--cabinos-yellow);
margin-bottom: 1rem;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.legal-article p {
font-size: 0.95rem;
line-height: 1.8;
color: rgba(255,255,255,0.8);
margin-bottom: 1rem;
}

.legal-article p:last-child {
margin-bottom: 0;
}

.legal-highlight {
color: var(--cabinos-yellow);
font-weight: 700;
}

/* Listes */
.legal-list {
list-style: none;
padding: 0;
margin: 1rem 0;
}

.legal-list li {
position: relative;
padding-left: 1.8rem;
margin-bottom: 0.8rem;
font-size: 0.95rem;
line-height: 1.7;
color: rgba(255,255,255,0.8);
}

.legal-list li::before {
content: '•';
position: absolute;
left: 0;
color: var(--cabinos-yellow);
font-weight: bold;
font-size: 1.2rem;
top: -2px;
}

/* Avertissements */
.legal-warning {
background: rgba(255, 140, 0, 0.1);
border-left: 4px solid var(--cabinos-orange);
padding: 1rem 1.2rem;
border-radius: 0 8px 8px 0;
font-size: 0.9rem !important;
}

.legal-disclaimer {
background: rgba(245, 197, 24, 0.08);
border-left: 4px solid var(--cabinos-yellow);
padding: 1rem 1.2rem;
border-radius: 0 8px 8px 0;
font-size: 0.9rem !important;
}

/* Contact légal */
.legal-contact {
background: linear-gradient(135deg, rgba(245, 197, 24, 0.08), rgba(255, 140, 0, 0.05));
border-color: var(--cabinos-yellow);
}

.legal-contact-info {
margin-top: 1rem;
padding-top: 1rem;
border-top: 1px dashed rgba(245, 197, 24, 0.3);
}

.legal-contact-info p {
margin-bottom: 0.5rem;
}

.legal-contact-info a {
color: var(--cabinos-yellow);
text-decoration: none;
font-weight: 700;
transition: color 0.3s ease;
}

.legal-contact-info a:hover {
color: var(--cabinos-white);
text-decoration: underline;
}

.legal-link {
color: var(--cabinos-yellow);
text-decoration: none;
font-weight: 700;
}

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

/* Footer légal */
.legal-footer {
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid rgba(245, 197, 24, 0.2);
text-align: center;
}

.legal-footer p {
font-size: 0.9rem;
color: rgba(255,255,255,0.6);
margin-bottom: 0.8rem;
line-height: 1.6;
}

.legal-copyright {
font-size: 0.85rem;
color: var(--cabinos-yellow);
font-weight: 700;
letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
.legal-section {
padding: 3rem 1rem;
}

.legal-header h1 {
font-size: 1.8rem;
}

.legal-article {
padding: 1.5rem;
}

.legal-article h2 {
font-size: 1.1rem;
}

.legal-article p,
.legal-list li {
font-size: 0.9rem;
}

.legal-warning,
.legal-disclaimer {
font-size: 0.85rem !important;
}
}

@media (max-width: 480px) {
.legal-header h1 {
font-size: 1.5rem;
}

.legal-article h2 {
font-size: 1rem;
}
}







/* ===== SECTION À PROPOS ===== */
.about-section {
position: relative;
z-index: 1;
padding: 5rem 1.5rem;
background: linear-gradient(180deg, var(--cabinos-blue-dark) 0%, var(--cabinos-blue) 50%, var(--cabinos-blue-dark) 100%);
}

.about-container {
max-width: 1200px;
margin: 0 auto;
}

/* Header */
.about-header {
text-align: center;
margin-bottom: 4rem;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.about-header .hero-badge {
display: inline-flex;
margin-bottom: 1.5rem;
}

.about-title {
font-size: 2.8rem;
font-weight: 900;
text-transform: uppercase;
margin-bottom: 1.5rem;
line-height: 1.2;
}

.about-title .highlight-yellow {
color: var(--cabinos-yellow);
display: inline;
}

.about-subtitle {
font-size: 1.1rem;
line-height: 1.8;
color: rgba(255,255,255,0.8);
}

.about-subtitle .highlight {
color: var(--cabinos-yellow);
font-weight: 700;
}

/* Vision Card */
.about-vision {
margin-bottom: 4rem;
}

.vision-card {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(245, 197, 24, 0.2);
border-radius: 20px;
padding: 2.5rem;
text-align: center;
max-width: 700px;
margin: 0 auto;
}

.vision-icon {
font-size: 3rem;
margin-bottom: 1rem;
display: block;
}

.vision-card h3 {
font-size: 1.4rem;
font-weight: 800;
color: var(--cabinos-yellow);
margin-bottom: 1rem;
text-transform: uppercase;
}

.vision-card p {
font-size: 1rem;
line-height: 1.7;
color: rgba(255,255,255,0.8);
}

/* Section Labels & Titles */
.section-label {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-size: 0.8rem;
font-weight: 700;
color: var(--cabinos-yellow);
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 0.8rem;
}

.section-label::before {
content: '';
width: 30px;
height: 3px;
background: var(--cabinos-yellow);
border-radius: 3px;
}

.about-how h2,
.about-tokens h2,
.about-why h2 {
font-size: 2rem;
font-weight: 900;
text-transform: uppercase;
margin-bottom: 2.5rem;
text-align: center;
}

.about-how h2 span,
.about-tokens h2 span,
.about-why h2 span {
color: var(--cabinos-yellow);
}

/* Steps Grid */
.steps-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
margin-bottom: 4rem;
}

.step-card {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(245, 197, 24, 0.15);
border-radius: 16px;
padding: 2rem;
text-align: center;
position: relative;
transition: all 0.3s ease;
}

.step-card:hover {
border-color: var(--cabinos-yellow);
transform: translateY(-5px);
}

.step-number {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--cabinos-yellow), var(--cabinos-yellow-dark));
color: var(--cabinos-blue-dark);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: 900;
margin: 0 auto 1rem;
}

.step-card h4 {
font-size: 1.1rem;
font-weight: 800;
margin-bottom: 0.8rem;
color: var(--cabinos-white);
}

.step-card p {
font-size: 0.9rem;
line-height: 1.6;
color: rgba(255,255,255,0.7);
}

/* Tokens Grid */
.tokens-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
margin-bottom: 2.5rem;
}

.token-card {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(245, 197, 24, 0.15);
border-radius: 16px;
padding: 2rem;
text-align: center;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.token-card:hover {
border-color: var(--cabinos-yellow);
transform: translateY(-5px);
}

.token-card.token-flex {
border-color: var(--cabinos-orange);
background: rgba(255, 140, 0, 0.05);
}

.token-card.token-flex:hover {
border-color: var(--cabinos-yellow);
background: rgba(245, 197, 24, 0.08);
}

.token-icon {
font-size: 2.5rem;
margin-bottom: 1rem;
display: block;
}

.token-card h3 {
font-size: 1.2rem;
font-weight: 800;
margin-bottom: 0.5rem;
color: var(--cabinos-white);
}

.token-desc {
font-size: 0.9rem;
color: rgba(255,255,255,0.7);
margin-bottom: 1rem;
min-height: 40px;
}

.token-features {
list-style: none;
padding: 0;
margin: 0 0 1rem 0;
text-align: left;
}

.token-features li {
font-size: 0.85rem;
color: rgba(255,255,255,0.6);
padding-left: 1.2rem;
position: relative;
margin-bottom: 0.4rem;
}

.token-features li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--cabinos-yellow);
font-weight: bold;
}

.token-note {
display: block;
font-size: 0.8rem;
color: rgba(255,255,255,0.5);
font-style: italic;
padding-top: 0.8rem;
border-top: 1px dashed rgba(245, 197, 24, 0.2);
}

.token-note.highlight {
color: var(--cabinos-yellow);
font-weight: 600;
font-style: normal;
}

/* Golden Rule */
.golden-rule {
background: linear-gradient(135deg, rgba(245, 197, 24, 0.1), rgba(255, 140, 0, 0.08));
border: 2px solid var(--cabinos-yellow);
border-radius: 16px;
padding: 1.8rem;
display: flex;
align-items: center;
gap: 1.2rem;
margin-top: 2rem;
}

.golden-rule-icon {
font-size: 2rem;
flex-shrink: 0;
}

.golden-rule-text {
flex: 1;
}

.golden-rule-text strong {
display: block;
font-size: 1rem;
color: var(--cabinos-yellow);
margin-bottom: 0.3rem;
text-transform: uppercase;
}

.golden-rule-text p {
font-size: 0.9rem;
color: rgba(255,255,255,0.8);
line-height: 1.6;
margin: 0;
}

/* Why Grid */
.why-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
margin-bottom: 4rem;
}

.why-item {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(245, 197, 24, 0.1);
border-radius: 12px;
padding: 1.8rem;
display: flex;
gap: 1rem;
align-items: flex-start;
transition: all 0.3s ease;
}

.why-item:hover {
border-color: var(--cabinos-yellow);
background: rgba(245, 197, 24, 0.05);
}

.why-icon {
font-size: 1.8rem;
flex-shrink: 0;
}

.why-item h4 {
font-size: 1rem;
font-weight: 800;
margin-bottom: 0.3rem;
color: var(--cabinos-white);
}

.why-item p {
font-size: 0.9rem;
color: rgba(255,255,255,0.7);
line-height: 1.6;
margin: 0;
}

/* CTA Final */
.about-cta {
text-align: center;
padding: 3rem 2rem;
background: linear-gradient(135deg, rgba(245, 197, 24, 0.15), rgba(255, 140, 0, 0.1));
border: 2px solid rgba(245, 197, 24, 0.3);
border-radius: 20px;
margin-top: 2rem;
}

.about-cta h3 {
font-size: 1.6rem;
font-weight: 900;
color: var(--cabinos-white);
margin-bottom: 0.8rem;
text-transform: uppercase;
}

.about-cta p {
font-size: 1rem;
color: rgba(255,255,255,0.8);
margin-bottom: 1.8rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.cta-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}

.cta-btn-primary {
padding: 0.9rem 2.2rem;
background: linear-gradient(135deg, var(--cabinos-yellow), var(--cabinos-yellow-dark));
color: var(--cabinos-blue-dark);
border: none;
border-radius: 50px;
font-family: 'Montserrat', sans-serif;
font-weight: 800;
font-size: 0.95rem;
text-decoration: none;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.cta-btn-primary:hover {
transform: scale(1.05);
box-shadow: 0 8px 30px rgba(245, 197, 24, 0.4);
}

.cta-btn-secondary {
padding: 0.9rem 2.2rem;
background: transparent;
color: var(--cabinos-white);
border: 2px solid rgba(245, 197, 24, 0.4);
border-radius: 50px;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 0.95rem;
text-decoration: none;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.cta-btn-secondary:hover {
border-color: var(--cabinos-yellow);
background: rgba(245, 197, 24, 0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
.steps-grid,
.tokens-grid {
grid-template-columns: repeat(2, 1fr);
}

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

.why-grid {
grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
.about-section {
padding: 3rem 1rem;
}

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

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

.vision-card,
.step-card,
.token-card {
padding: 1.5rem;
}

.steps-grid,
.tokens-grid {
grid-template-columns: 1fr;
}

.golden-rule {
flex-direction: column;
text-align: center;
}

.about-cta h3 {
font-size: 1.3rem;
}

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

.cta-btn-primary,
.cta-btn-secondary {
width: 100%;
max-width: 300px;
}
}

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

.section-label {
font-size: 0.7rem;
}

.step-number {
width: 40px;
height: 40px;
font-size: 1.2rem;
}

.token-icon {
font-size: 2rem;
}
}










/* ===== SECTION ACHAT ===== */
.achat-section {
position: relative;
z-index: 1;
padding: 5rem 1.5rem;
background: linear-gradient(180deg, var(--cabinos-blue-dark) 0%, var(--cabinos-blue) 100%);
}

.achat-container {
max-width: 750px;
margin: 0 auto;
}

/* Header */
.achat-header {
text-align: center;
margin-bottom: 3rem;
}

.achat-header .section-label {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-size: 0.8rem;
font-weight: 700;
color: var(--cabinos-yellow);
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 0.8rem;
}

.achat-header .section-label::before {
content: '';
width: 30px;
height: 3px;
background: var(--cabinos-yellow);
border-radius: 3px;
}

.achat-header h2 {
font-size: 2.2rem;
font-weight: 900;
text-transform: uppercase;
margin-bottom: 0.5rem;
}

.achat-header h2 span {
color: var(--cabinos-yellow);
}

.achat-header p {
font-size: 1rem;
color: rgba(255,255,255,0.6);
}

/* Formulaire */
.achat-form {
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(245, 197, 24, 0.2);
border-radius: 20px;
padding: 2.5rem;
}

.achat-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
margin-bottom: 0;
}

.achat-row:last-of-type {
margin-bottom: 1.5rem;
}

.achat-field {
margin-bottom: 1.5rem;
}

.achat-field.full-width {
margin-bottom: 1.5rem;
}

.achat-field label {
display: block;
font-size: 0.85rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 0.5rem;
color: var(--cabinos-yellow);
}

.required {
color: var(--cabinos-orange);
}

/* Inputs */
.achat-input,
.achat-select {
width: 100%;
padding: 0.9rem 1.2rem;
background: rgba(245, 197, 24, 0.06);
border: 2px solid rgba(255, 140, 0, 0.4);
border-radius: 12px;
color: var(--cabinos-white);
font-family: 'Montserrat', sans-serif;
font-size: 0.95rem;
outline: none;
transition: all 0.3s ease;
}

.achat-input::placeholder {
color: rgba(255, 255, 255, 0.3);
}

.achat-input:focus,
.achat-select:focus {
border-color: var(--cabinos-yellow);
box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.15);
background: rgba(245, 197, 24, 0.1);
}

/* Select wrapper */
.achat-select-wrapper {
position: relative;
}

.achat-select-wrapper::after {
content: '▼';
position: absolute;
right: 1rem;
top: 50%;
transform: translateY(-50%);
color: var(--cabinos-yellow);
font-size: 0.8rem;
pointer-events: none;
}

.achat-select {
appearance: none;
cursor: pointer;
padding-right: 2.5rem;
}

.achat-select option {
background: var(--cabinos-blue-dark);
color: var(--cabinos-white);
padding: 0.5rem;
}

/* Token Info */
.achat-token-info {
margin-bottom: 1.5rem;
animation: fadeIn 0.3s ease;
}

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

.token-info-inner {
background: rgba(245, 197, 24, 0.08);
border-left: 4px solid var(--cabinos-yellow);
border-radius: 0 12px 12px 0;
padding: 1rem 1.2rem;
display: flex;
align-items: center;
gap: 0.8rem;
}

.token-info-icon {
font-size: 1.3rem;
flex-shrink: 0;
}

#tokenInfoText {
font-size: 0.9rem;
color: rgba(255,255,255,0.8);
line-height: 1.5;
}

/* Summary + Button */
.achat-summary {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1.5rem;
padding-top: 1.5rem;
border-top: 1px solid rgba(245, 197, 24, 0.15);
flex-wrap: wrap;
}

.summary-details {
flex: 1;
min-width: 200px;
}

.summary-line {
display: flex;
justify-content: space-between;
font-size: 0.9rem;
margin-bottom: 0.3rem;
color: rgba(255,255,255,0.6);
}

.summary-line:first-child {
font-weight: 700;
color: var(--cabinos-white);
font-size: 1rem;
}

.summary-value {
color: var(--cabinos-yellow);
font-weight: 700;
}

.summary-value.free {
color: #4caf50;
}

/* Submit Button */
.achat-submit-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 0.6rem;
padding: 1rem 2.5rem;
background: linear-gradient(135deg, var(--cabinos-yellow), var(--cabinos-yellow-dark));
color: var(--cabinos-blue-dark);
border: none;
border-radius: 50px;
font-family: 'Montserrat', sans-serif;
font-weight: 800;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 0.5px;
white-space: nowrap;
}

.achat-submit-btn:hover {
transform: scale(1.03);
box-shadow: 0 6px 30px rgba(245, 197, 24, 0.4);
}

.achat-submit-btn:active {
transform: scale(0.98);
}

/* Success Message */
.achat-success {
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(76, 175, 80, 0.3);
border-radius: 20px;
padding: 3rem 2rem;
text-align: center;
}

.success-inner .success-icon {
font-size: 4rem;
margin-bottom: 1rem;
display: block;
}

.success-inner h3 {
font-size: 1.5rem;
font-weight: 900;
color: #4caf50;
margin-bottom: 0.5rem;
}

.success-inner p {
font-size: 0.95rem;
color: rgba(255,255,255,0.7);
margin-bottom: 1.5rem;
line-height: 1.6;
}

.success-close {
padding: 0.8rem 2rem;
background: transparent;
border: 2px solid var(--cabinos-yellow);
color: var(--cabinos-yellow);
border-radius: 50px;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 0.9rem;
cursor: pointer;
transition: all 0.3s ease;
}

.success-close:hover {
background: var(--cabinos-yellow);
color: var(--cabinos-blue-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
.achat-section {
padding: 3rem 1rem;
}

.achat-header h2 {
font-size: 1.6rem;
}

.achat-form {
padding: 1.5rem;
}

.achat-row {
grid-template-columns: 1fr;
gap: 0;
}

.achat-summary {
flex-direction: column;
text-align: center;
}

.summary-details {
width: 100%;
}

.summary-line {
justify-content: center;
gap: 1rem;
}

.achat-submit-btn {
width: 100%;
}
}

@media (max-width: 480px) {
.achat-header h2 {
font-size: 1.3rem;
}

.achat-submit-btn {
font-size: 0.9rem;
padding: 0.9rem 1.5rem;
}
}
















/* ===== SECTION FORFAITS ===== */
.forfaits-section {
width: 100%;
padding: 5rem 1.5rem;
background: linear-gradient(180deg, #0a1e5e 0%, #0d2b7a 100%);
box-sizing: border-box;
}

.forfaits-wrapper {
max-width: 1100px;
margin: 0 auto;
}

/* Header */
.forfaits-header {
text-align: center;
margin-bottom: 3rem;
}

.forfaits-header h2 {
font-size: 2.2rem;
font-weight: 900;
text-transform: uppercase;
margin: 0 0 0.5rem 0;
color: #ffffff;
}

.forfaits-header h2 span { color: #f5c518; }

.forfaits-header p {
font-size: 1rem;
color: rgba(255,255,255,0.6);
margin: 0;
}

/* GRILLE HORIZONTALE */
.forfaits-grid {
display: grid;
grid-template-columns: repeat(3, 1fr); /* 3 colonnes alignées horizontalement */
gap: 1.5rem;
align-items: stretch; /* Même hauteur pour toutes les cartes */
}

/* Carte de base */
.forfait-card {
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(245, 197, 24, 0.15);
border-radius: 16px;
padding: 2rem 1.5rem;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
position: relative;
transition: transform 0.3s ease, border-color 0.3s ease;
}

.forfait-card:hover {
transform: translateY(-4px);
border-color: rgba(245, 197, 24, 0.4);
}

/* Carte mise en avant */
.forfait-highlight {
border: 2px solid #f5c518;
background: rgba(245, 197, 24, 0.06);
}

.highlight-badge {
position: absolute;
top: -10px;
left: 50%;
transform: translateX(-50%);
background: #f5c518;
color: #0a1e5e;
font-size: 0.7rem;
font-weight: 800;
padding: 0.3rem 0.8rem;
border-radius: 50px;
text-transform: uppercase;
letter-spacing: 0.5px;
}

/* Contenu Carte */
.card-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.forfait-card h3 {
font-size: 1.2rem;
font-weight: 800;
margin: 0 0 0.8rem 0;
color: #ffffff;
text-transform: uppercase;
}

.card-price {
font-size: 2.4rem;
font-weight: 900;
color: #f5c518;
margin-bottom: 1rem;
line-height: 1;
}

.card-price .plus { font-size: 1.2rem; vertical-align: super; margin-right: 2px; }
.card-price .currency { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.7); }

/* Liste */
.card-list {
list-style: none;
padding: 0;
margin: 0 0 1.5rem 0;
width: 100%;
flex: 1; /* Pousse le bouton vers le bas */
}

.card-list li {
font-size: 0.9rem;
color: rgba(255,255,255,0.8);
padding: 0.45rem 0;
border-bottom: 1px solid rgba(255,255,255,0.05);
text-align: left;
}

.card-list li:last-child { border-bottom: none; }
.card-list li::before {
content: '✓';
color: #f5c518;
font-weight: bold;
margin-right: 0.5rem;
}

/* Bouton */
.card-btn {
display: block;
width: 100%;
padding: 0.8rem 0;
border-radius: 50px;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 0.9rem;
text-decoration: none;
text-align: center;
text-transform: uppercase;
transition: all 0.3s ease;
border: 2px solid rgba(245, 197, 24, 0.3);
color: #ffffff;
background: transparent;
margin-top: auto; /* Alignement parfait en bas */
}

.card-btn:hover {
background: rgba(245, 197, 24, 0.1);
border-color: #f5c518;
color: #f5c518;
}

.card-btn-primary {
background: #f5c518;
border-color: #f5c518;
color: #0a1e5e;
font-weight: 800;
}

.card-btn-primary:hover {
background: #d4a800;
color: #0a1e5e;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 950px) {
.forfaits-grid {
grid-template-columns: repeat(2, 1fr); /* 2 colonnes tablette */
}
}

@media (max-width: 650px) {
.forfaits-grid {
grid-template-columns: 1fr; /* 1 colonne mobile */
max-width: 400px;
margin: 0 auto;
}

.forfaits-header h2 { font-size: 1.8rem; }
.forfaits-section { padding: 3rem 1rem; }
}
