/* ================================
   L'ATELIER AUTOMOBILE - MODERN CLASSIC CSS
   Couleurs: Bleu marine, Blanc, touches de bleu clair
   ================================ */

/* Variables CSS */
:root {
    /* Couleurs principales basées sur le logo */
    --primary: #1e3a5f;           /* Bleu marine foncé */
    --primary-dark: #152a45;      /* Bleu marine très foncé */
    --primary-light: #2d5a8a;     /* Bleu marine clair */
    --secondary: #4a90c2;         /* Bleu ciel */
    --secondary-light: #6db3e8;   /* Bleu ciel clair */
    --accent: #e8f4fd;            /* Bleu très clair */
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --black: #111111;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;

    /* Couleurs Alma (paiement en plusieurs fois) */
    --alma-primary: #10b981;
    --alma-dark: #059669;
    --alma-light: #34d399;
    --alma-shadow: rgba(16, 185, 129, 0.3);
    --alma-shadow-hover: rgba(16, 185, 129, 0.4);
    --alma-gradient: linear-gradient(135deg, var(--alma-primary) 0%, var(--alma-dark) 50%, var(--alma-primary) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1280px;

    /* Transitions */
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 5px;
    --radius: 10px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================
   PRELOADER
   ================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    width: 100px;
    height: auto;
    animation: pulse 1.5s ease-in-out infinite;
    z-index: 1;
}

.loader-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: 180px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* ================================
   HEADER
   ================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
}

.header.scrolled .header-top {
    display: none;
}

/* Header Top */
.header-top {
    background: var(--primary);
    padding: 10px 0;
    transition: var(--transition);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top .contact-info {
    display: flex;
    gap: 25px;
}

.header-top .contact-info a {
    color: var(--white);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-top .contact-info a:hover {
    color: var(--secondary-light);
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.open-badge {
    color: var(--white);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary);
}

/* Navbar */
.navbar {
    background: var(--white);
    padding: 8px 0;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo img {
    height: 80px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 50px;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
    position: relative;
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-nav {
    padding: 12px 25px !important;
    background: var(--primary);
    color: var(--white) !important;
    border-radius: var(--radius);
}

.btn-nav::after {
    display: none !important;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-top: 160px;
    padding-bottom: 140px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.85) 0%, rgba(30, 58, 95, 0.7) 50%, rgba(30, 58, 95, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero h1 span {
    color: var(--secondary-light);
}

.hero-tagline {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-light);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 500;
}

.hero-feature i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-8px); }
}

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ================================
   QUICK SERVICES
   ================================ */
.quick-services {
    background: var(--primary);
    padding: 40px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.quick-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.quick-service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 25px;
    border-right: 1px solid var(--gray-200);
    transition: var(--transition);
}

.quick-service-item:last-child {
    border-right: none;
}

.quick-service-item:hover {
    background: var(--accent);
}

.quick-service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: var(--radius);
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.quick-service-item:hover .quick-service-icon {
    background: var(--primary);
    color: var(--white);
}

.quick-service-content h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 5px;
}

.quick-service-content .price {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.quick-service-content .price strong {
    color: var(--primary);
    font-size: 1.1rem;
}

/* ================================
   SECTION STYLES
   ================================ */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-600);
}

/* ================================
   SERVICES SECTION
   ================================ */
.services {
    background: var(--gray-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon-badge {
    position: absolute;
    bottom: -25px;
    right: 25px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    z-index: 1;
}

.service-content {
    padding: 40px 30px 30px;
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.service-content > p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.service-list {
    margin-bottom: 20px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.service-list li i {
    color: var(--success);
    font-size: 0.8rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
}

.service-btn:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* ================================
   ABOUT SECTION
   ================================ */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.about-image-secondary img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    display: block;
    font-size: 0.8rem;
    margin-top: 5px;
    opacity: 0.9;
}

.about-content .section-subtitle {
    display: block;
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 25px;
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.about-content p strong {
    color: var(--primary);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    color: var(--success);
    font-size: 1.1rem;
}

.about-feature span {
    font-size: 0.95rem;
    color: var(--gray-700);
}

/* ================================
   VALUES SECTION
   ================================ */
.values {
    background: var(--gray-100);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--primary);
}

.value-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--accent);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.8rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--primary);
    color: var(--white);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
}

/* ================================
   STATS SECTION
   ================================ */
.stats {
    background: var(--primary);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.5rem;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ================================
   PRICING SECTION
   ================================ */
.pricing {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 5px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.price .amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.price .suffix {
    font-size: 1rem;
    color: var(--gray-600);
}

.price .price-from {
    display: block;
    width: 100%;
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 400;
    margin-bottom: -5px;
}

.pricing-features {
    margin-bottom: 25px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--success);
}

.pricing-note {
    text-align: center;
    color: var(--gray-600);
    margin-top: 40px;
    font-style: italic;
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */
.testimonials {
    background: var(--gray-100);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--warning);
    margin-right: 3px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.2rem;
}

.author-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* ================================
   GALLERY SECTION
   ================================ */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 58, 95, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

/* ================================
   CTA SECTION
   ================================ */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact {
    background: var(--gray-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-subtitle {
    display: block;
    text-align: left;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 35px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-content h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.contact-content p,
.contact-content a {
    color: var(--gray-600);
    line-height: 1.6;
}

.contact-content a:hover {
    color: var(--primary);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray-800);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ================================
   MAP SECTION
   ================================ */
.map-section {
    height: 400px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--gray-900);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-col p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border-radius: 50%;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--gray-500);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.footer-contact li i {
    color: var(--primary-light);
    margin-top: 3px;
}

.footer-payments {
    margin-top: 20px;
}

.footer-payments span {
    display: block;
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    gap: 12px;
}

.payment-icons i {
    font-size: 1.8rem;
    color: var(--gray-500);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ================================
   BACK TO TOP
   ================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ================================
   ANIMATIONS
   ================================ */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 70px;
    }

    .header-top {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        transition: var(--transition);
        box-shadow: var(--shadow-xl);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .quick-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-service-item {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }

    .quick-service-item:nth-child(2n) {
        border-left: 1px solid var(--gray-200);
    }

    .quick-service-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-images {
        order: -1;
    }

    .about-image-secondary {
        right: 20px;
        bottom: -30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Tablette uniquement - Hero en haut */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        margin-top: 120px;
        padding-top: 40px;
        padding-bottom: 40px;
        align-items: flex-start;
        min-height: 600px;
        height: auto;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero-text {
        max-width: 60%;
    }

    .hero-buttons {
        margin-bottom: 30px;
    }

    .hero-alma-floating {
        bottom: auto;
        top: 35%;
        right: 30px;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .quick-services-grid {
        grid-template-columns: 1fr;
    }

    .quick-service-item {
        border-left: none !important;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-row: span 1;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto 20px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .values-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        left: 20px;
        padding: 20px 15px;
    }

    .exp-number {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ================================
   PAGE HEADER (for subpages)
   ================================ */
.page-header {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 120px;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.9) 0%, rgba(30, 58, 95, 0.7) 100%);
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
}

/* ================================
   SERVICE INTRO
   ================================ */
.service-intro {
    padding: 80px 0 40px;
}

/* ================================
   SERVICES DETAIL GRID
   ================================ */
.services-detail {
    padding: 80px 0;
    background: var(--gray-100);
}

.services-detail.premium-bg {
    background: var(--white);
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-detail-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.services-detail.premium-bg .service-detail-card {
    background: var(--gray-100);
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--accent);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.6rem;
    transition: var(--transition);
}

.service-detail-card:hover .service-detail-icon {
    background: var(--primary);
    color: var(--white);
}

.service-detail-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.service-detail-card p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ================================
   PROCESS SECTION
   ================================ */
.process {
    padding: 80px 0;
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    position: relative;
    background: var(--gray-100);
    padding: 40px 25px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50%;
}

.process-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--accent);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.4rem;
}

.process-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.process-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ================================
   INSURANCE SECTION
   ================================ */
.insurance {
    padding: 80px 0;
    background: var(--gray-100);
}

.insurance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.insurance-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.insurance-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.insurance-content .section-subtitle {
    display: block;
    text-align: left;
}

.insurance-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.insurance-content p {
    color: var(--gray-600);
    margin-bottom: 15px;
}

.insurance-features {
    margin: 25px 0;
}

.insurance-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--gray-700);
}

.insurance-features li i {
    color: var(--success);
    font-size: 1.1rem;
}

/* ================================
   E85 SECTION
   ================================ */
.e85-section {
    padding: 80px 0;
    background: var(--white);
}

.e85-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.e85-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.e85-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.e85-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--success);
    color: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.e85-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.e85-text {
    display: block;
    font-size: 0.85rem;
    margin-top: 5px;
}

.e85-content .section-subtitle {
    display: block;
    text-align: left;
}

.e85-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.e85-content p {
    color: var(--gray-600);
    margin-bottom: 15px;
}

.e85-features {
    margin: 25px 0;
}

.e85-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--gray-700);
}

.e85-features li i {
    color: var(--success);
    font-size: 1.1rem;
}

/* ================================
   FAQ SECTION
   ================================ */
.faq {
    padding: 80px 0;
    background: var(--gray-100);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ================================
   QUICK FEATURES (Contact Page)
   ================================ */
.quick-features {
    background: var(--primary);
    padding: 30px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.quick-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 30px;
}

.quick-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.quick-feature-item i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.1rem;
}

.quick-feature-item span {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
}

/* ================================
   CONTACT PAGE
   ================================ */
.contact-page {
    padding: 80px 0;
    background: var(--gray-100);
}

.form-description {
    color: var(--gray-600);
    margin-bottom: 10px;
}

.response-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    padding: 8px 15px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.checkbox-group {
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    margin-top: 2px;
}

/* ================================
   RESPONSIVE - SUBPAGES
   ================================ */
@media (max-width: 1200px) {
    .services-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .page-header {
        height: 280px;
        margin-top: 100px;
    }

    .services-detail-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insurance-grid,
    .e85-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .insurance-image,
    .e85-image {
        order: -1;
    }

    .quick-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 250px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .services-detail-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .quick-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .quick-feature-item {
        justify-content: flex-start;
        padding: 10px;
    }

    .e85-image img,
    .insurance-image img {
        height: 300px;
    }
}

/* ================================
   COOKIE BANNER RGPD
   ================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cookie-text i {
    font-size: 2rem;
    color: var(--secondary-light);
}

.cookie-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: var(--secondary-light);
    text-decoration: underline;
}

.cookie-text a:hover {
    color: var(--white);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn.accept {
    background: var(--success);
    color: var(--white);
}

.cookie-btn.accept:hover {
    background: #218838;
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-btn.reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}

.cookie-btn.settings {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.settings:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: var(--white);
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--gray-200);
    background: var(--primary);
    color: var(--white);
    border-radius: 15px 15px 0 0;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.cookie-modal-close:hover {
    opacity: 1;
}

.cookie-modal-body {
    padding: 25px;
}

.cookie-modal-body > p {
    margin: 0 0 20px;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background: var(--gray-100);
    border-radius: 10px;
    gap: 15px;
}

.cookie-option-info {
    flex: 1;
}

.cookie-option-info strong {
    display: block;
    color: var(--primary);
    margin-bottom: 3px;
}

.cookie-option-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* Toggle Switch */
.cookie-switch {
    position: relative;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gray-400);
    border-radius: 26px;
    transition: 0.3s;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: 0.3s;
}

.cookie-switch input:checked + .cookie-slider {
    background: var(--success);
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

.cookie-switch.disabled .cookie-slider {
    background: var(--success);
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.cookie-modal-footer .cookie-btn {
    min-width: 200px;
}

@media (max-width: 480px) {
    .cookie-option {
        flex-direction: column;
        text-align: center;
    }
}

/* ================================
   HORAIRES LISTE (Contact)
   ================================ */

.horaires-liste {
    list-style: none;
    padding: 0;
    margin: 0;
}

.horaires-liste li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9rem;
}

.horaires-liste li:last-child {
    border-bottom: none;
}

.horaires-liste li.ferme {
    color: var(--gray-400);
}

.horaires-liste li.ferme .heures {
    color: #ef4444;
}

.horaires-liste .jour {
    font-weight: 500;
    color: var(--gray-700);
}

.horaires-liste .heures {
    color: var(--gray-600);
}

.contact-horaires .contact-content {
    flex: 1;
}

/* ================================
   FORM NOTIFICATION
   ================================ */

.form-notification {
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.form-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.form-notification.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-notification.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.form-notification i {
    font-size: 1.2rem;
}

/* ================================
   ALMA - PAIEMENT EN PLUSIEURS FOIS
   ================================ */

/* Hero Alma Floating Badge */
.hero-alma-floating {
    position: absolute;
    bottom: 180px;
    right: 350px;
    z-index: 100;
    animation: heroAlmaFloat 3s ease-in-out infinite;
}

@keyframes heroAlmaFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.hero-alma-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #10b981 100%);
    background-size: 200% 200%;
    animation: heroAlmaGradient 4s ease infinite;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow:
        0 15px 40px rgba(16, 185, 129, 0.4),
        0 0 0 4px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-alma-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 70%
    );
    animation: heroAlmaShine 3s ease-in-out infinite;
}

@keyframes heroAlmaShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    50%, 100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes heroAlmaGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-alma-badge:hover {
    transform: scale(1.05);
    box-shadow:
        0 20px 50px rgba(16, 185, 129, 0.5),
        0 0 0 4px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-alma-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    animation: heroAlmaPulse 2s ease-in-out infinite;
}

.hero-alma-icon i {
    font-size: 1.8rem;
    color: white;
}

@keyframes heroAlmaPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    50% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
}

.hero-alma-content {
    position: relative;
    z-index: 1;
}

.hero-alma-title {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.hero-alma-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.hero-alma-big {
    color: white;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-alma-sub {
    background: white;
    color: #059669;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 6px 15px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.hero-alma-partner {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.hero-alma-partner strong {
    color: white;
    font-weight: 700;
}

/* Responsive Hero Alma */
@media (max-width: 1200px) {
    .hero-alma-floating {
        right: 30px;
        bottom: 150px;
    }
}

@media (max-width: 992px) {
    .hero-alma-floating {
        bottom: 130px;
        right: 20px;
    }

    .hero-alma-badge {
        padding: 20px 25px;
    }

    .hero-alma-big {
        font-size: 1.8rem;
    }

    .hero-alma-icon {
        width: 50px;
        height: 50px;
    }

    .hero-alma-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-alma-floating {
        position: absolute;
        top: auto;
        bottom: 20px;
        left: 15px;
        right: 15px;
        transform: none;
        animation: none;
        z-index: 50;
    }

    .hero-alma-badge {
        padding: 15px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        flex-direction: row;
        border-radius: var(--radius-lg);
        width: 100%;
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
        border: none;
    }

    .hero-alma-badge::before {
        display: none;
    }

    /* Supprimer espace entre hero et section suivante */
    .quick-services {
        margin-top: 0;
    }

    .hero-alma-icon {
        width: 45px;
        height: 45px;
        margin: 0;
        flex-shrink: 0;
    }

    .hero-alma-icon i {
        font-size: 1.3rem;
    }

    .hero-alma-content {
        text-align: left;
    }

    .hero-alma-title {
        font-size: 0.65rem;
        margin-bottom: 2px;
    }

    .hero-alma-row {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 8px;
    }

    .hero-alma-big {
        font-size: 1.3rem;
    }

    .hero-alma-sub {
        font-size: 0.6rem;
        padding: 4px 8px;
    }

    .hero-alma-partner {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-alma-badge {
        padding: 12px 15px;
        gap: 10px;
    }

    .hero-alma-icon {
        width: 38px;
        height: 38px;
    }

    .hero-alma-icon i {
        font-size: 1.1rem;
    }

    .hero-alma-row {
        flex-direction: row;
        gap: 6px;
    }

    .hero-alma-big {
        font-size: 1.1rem;
    }

    .hero-alma-sub {
        font-size: 0.55rem;
        padding: 3px 6px;
    }

    .hero-alma-partner {
        display: none;
    }
}

/* Badge Alma Section Tarifs */
.pricing-note {
    text-align: center;
    margin-top: 50px;
}

.alma-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--alma-gradient);
    background-size: 200% 200%;
    animation: almaGradient 3s ease infinite;
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 30px var(--alma-shadow);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.alma-badge:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px var(--alma-shadow-hover);
}

.alma-badge i {
    font-size: 2rem;
    animation: almaPulse 2s ease-in-out infinite;
}

.alma-text {
    text-align: left;
}

.alma-text strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.alma-text span {
    font-size: 0.9rem;
    opacity: 0.9;
}

@keyframes almaGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes almaPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Banniere Alma sur pages services */
.alma-banner {
    background: linear-gradient(135deg, var(--alma-primary) 0%, var(--alma-dark) 100%);
    padding: 35px 40px;
    border-radius: var(--radius-xl);
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

.alma-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: almaShine 3s ease-in-out infinite;
}

@keyframes almaShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.alma-banner-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: almaBounce 2s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.alma-banner-icon i {
    font-size: 2rem;
    color: #10b981;
}

@keyframes almaBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.alma-banner-content {
    color: white;
    text-align: left;
}

.alma-banner-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.alma-banner-content p {
    opacity: 0.9;
    margin: 0;
}

.alma-banner-tag {
    background: white;
    color: #10b981;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    animation: almaTagPulse 2s ease-in-out infinite;
}

@keyframes almaTagPulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(0,0,0,0.2); }
    50% { box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4); }
}

/* Alma Footer */
.alma-footer {
    margin-top: 15px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 25px;
    color: white;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: almaFooterGlow 2s ease-in-out infinite;
}

.alma-footer i {
    animation: almaPulse 2s ease-in-out infinite;
}

@keyframes almaFooterGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.5); }
}

/* Responsive Alma */
@media (max-width: 768px) {
    .alma-badge {
        padding: 15px 25px;
        flex-direction: column;
        text-align: center;
    }

    .alma-text {
        text-align: center;
    }

    .alma-banner {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        border-radius: var(--radius-xl);
        margin: 30px 15px;
    }

    .alma-banner-content {
        text-align: center;
    }

    .alma-banner-icon {
        width: 60px;
        height: 60px;
    }

    .alma-banner-icon i {
        font-size: 1.5rem;
    }
}

/* ================================
   SECTION ALMA - PAGE ACCUEIL
   ================================ */

.alma-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    position: relative;
    overflow: hidden;
}

.alma-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.alma-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.alma-section-wrapper {
    background: white;
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
    position: relative;
    z-index: 1;
    border: 2px solid rgba(16, 185, 129, 0.1);
}

.alma-section-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.alma-section-badge {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: almaSectionPulse 2s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.alma-section-badge i {
    font-size: 2.5rem;
    color: white;
}

@keyframes almaSectionPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4); }
}

.alma-section-text {
    text-align: center;
    flex: 1;
    min-width: 280px;
}

.alma-section-text h2 {
    font-size: 2.2rem;
    color: var(--gray-800);
    margin-bottom: 10px;
    font-weight: 700;
}

.alma-section-text h2 span {
    color: #10b981;
    position: relative;
}

.alma-section-text h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 2px;
}

.alma-section-text p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.alma-section-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 35px;
    padding: 30px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: var(--radius-lg);
}

.alma-mini-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    min-width: 140px;
}

.alma-mini-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.alma-mini-step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alma-mini-step-icon i {
    font-size: 1.3rem;
    color: white;
}

.alma-mini-step span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
}

.alma-mini-step-arrow {
    color: #10b981;
    font-size: 1.2rem;
    animation: almaArrowBounce 1s ease-in-out infinite;
}

@keyframes almaArrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.alma-section-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    margin: 0 auto;
    display: flex;
    width: fit-content;
}

.alma-section-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.alma-section-btn i {
    transition: transform 0.3s ease;
}

.alma-section-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Section Alma Accueil */
@media (max-width: 992px) {
    .alma-banner {
        border-radius: var(--radius-xl);
        padding: 30px;
    }

    .alma-section-wrapper {
        padding: 40px 30px;
    }

    .alma-section-text h2 {
        font-size: 1.8rem;
    }

    .alma-section-badge {
        width: 80px;
        height: 80px;
    }

    .alma-section-badge i {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .alma-section {
        padding: 30px 15px;
    }

    .alma-section-wrapper {
        padding: 25px 15px;
        border-radius: var(--radius-lg);
    }

    .alma-section-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin-bottom: 25px;
    }

    .alma-section-badge {
        width: 70px;
        height: 70px;
    }

    .alma-section-badge i {
        font-size: 1.8rem;
    }

    .alma-section-text {
        min-width: auto;
    }

    .alma-section-text h2 {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .alma-section-text h2 span::after {
        height: 3px;
        bottom: -3px;
    }

    .alma-section-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 0 5px;
    }

    .alma-section-steps {
        padding: 15px 10px;
        gap: 10px;
        margin-bottom: 25px;
    }

    .alma-mini-step {
        min-width: 80px;
        padding: 10px 8px;
        flex: 1;
    }

    .alma-mini-step-icon {
        width: 35px;
        height: 35px;
    }

    .alma-mini-step-icon i {
        font-size: 0.9rem;
    }

    .alma-mini-step span {
        font-size: 0.7rem;
        line-height: 1.3;
    }

    .alma-mini-step-arrow {
        display: none;
    }

    .alma-section-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .alma-section-text h2 {
        font-size: 1.1rem;
    }

    .alma-section-text p {
        font-size: 0.85rem;
    }

    .alma-mini-step {
        min-width: 70px;
        padding: 8px 5px;
    }

    .alma-mini-step span {
        font-size: 0.65rem;
    }
}

/* ================================
   PAGE ALMA - STYLES SPECIFIQUES
   ================================ */

/* Hero Banner Alma Page */
.alma-page-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: var(--radius-lg);
    padding: 50px;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.alma-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: almaPageShine 3s ease-in-out infinite;
}

@keyframes almaPageShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.alma-page-hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.alma-page-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: almaPulse 2s ease-in-out infinite;
}

.alma-page-icon i {
    font-size: 3rem;
    color: white;
}

.alma-page-text {
    text-align: center;
    color: white;
}

.alma-page-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.alma-page-text p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.alma-page-amounts {
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
}

.alma-amount-label {
    display: block;
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.alma-amount-value {
    display: block;
    color: #059669;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Steps Alma */
.alma-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.alma-step {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s ease;
}

.alma-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.alma-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.alma-step-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}

.alma-step-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.alma-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--gray-800);
}

.alma-step p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Simulation Cards */
.alma-simulation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.alma-simulation-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.alma-simulation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.alma-simulation-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 25px;
    text-align: center;
}

.alma-simulation-header i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.alma-simulation-header h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.alma-simulation-price {
    font-size: 2rem;
    font-weight: 700;
}

.alma-simulation-options {
    padding: 25px;
}

.alma-option {
    padding: 15px;
    background: var(--gray-100);
    border-radius: var(--radius);
    margin-bottom: 15px;
    text-align: center;
}

.alma-option:last-child {
    margin-bottom: 0;
}

.alma-option-title {
    display: block;
    color: #10b981;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.alma-option-detail {
    display: block;
    font-size: 1.1rem;
    color: var(--gray-800);
    margin-bottom: 5px;
}

.alma-option-detail strong {
    color: var(--primary);
}

.alma-option-date {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Responsive Page Alma */
@media (max-width: 992px) {
    .alma-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .alma-simulation {
        grid-template-columns: repeat(2, 1fr);
    }

    .alma-page-hero {
        padding: 40px 30px;
    }

    .alma-page-text h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .alma-steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .alma-simulation {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .alma-page-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .alma-page-icon {
        width: 80px;
        height: 80px;
    }

    .alma-page-icon i {
        font-size: 2rem;
    }

    .alma-page-text h3 {
        font-size: 1.3rem;
    }
}
