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

:root {
    /* Nouvelle palette de couleurs optimisée */
    --primary-color: #FFC857; /* Jaune épicé - accent */
    --primary-dark: #E6B84A;
    --secondary-color: #2E4057; /* Bleu nuit - titres */
    --accent-color: #D72638; /* Paprika - CTA */
    --accent-hover: #B91E2F;
    --text-color: #333;
    --text-light: #666;
    --text-muted: #999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 25px rgba(0,0,0,0.15);
    --gradient-gold: linear-gradient(135deg, #FFC857 0%, #FFD873 100%);
    --gradient-dark: linear-gradient(135deg, #2E4057 0%, #3A506B 100%);
    --gradient-accent: linear-gradient(135deg, #D72638 0%, #E8344E 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    color: var(--bg-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 3px;
}

h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: var(--accent-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-brand h2 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.8rem;
}

.nav-brand i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--bg-white);
    text-align: center;
    padding: 2rem 0;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge i {
    color: var(--primary-color);
}

.badge span {
    font-weight: 500;
    font-size: 0.9rem;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f4f4f4" width="1200" height="600"/><path fill="%23FFC857" opacity="0.1" d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z"/></svg>');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 64, 87, 0.8);
}

/* Sections générales */
section {
    padding: 80px 0;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Introduction */
.intro {
    background: var(--bg-light);
}

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

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Section Cheffe */
.cheffe-section {
    background: var(--bg-white);
    position: relative;
}

.cheffe-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.cheffe-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.cheffe-intro {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--secondary-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.cheffe-specialites ul {
    list-style: none;
    margin: 1.5rem 0;
}

.cheffe-specialites li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.cheffe-specialites i {
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.cheffe-philosophie {
    margin: 2rem 0;
}

.cheffe-philosophie blockquote {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
}

.cheffe-philosophie cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--secondary-color);
}

.roseliande-cta {
    background: var(--gradient-gold);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
}

.roseliande-cta h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.roseliande-cta p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.cheffe-image {
    position: sticky;
    top: 120px;
}

.cheffe-photo {
    text-align: center;
    margin-bottom: 2rem;
}

.cheffe-photo img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
}

.cheffe-credentials {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.credential i {
    font-size: 1.8rem;
    color: var(--accent-color);
    width: 40px;
    text-align: center;
}

.credential div strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.credential div span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Menus */
.menus {
    background: var(--bg-light);
}

.menu-categories {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-category {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 6px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.menu-category h3 {
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.menu-category i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.menu-category p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.plats-details {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.8rem;
}

.plat-item {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    font-size: 0.95rem;
}

.plat-item strong {
    color: var(--secondary-color);
}

.specialites-regionales {
    margin: 3rem 0;
}

.specialites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.specialite {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.specialite:hover {
    transform: translateY(-5px);
}

.specialite h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.specialite i {
    color: var(--accent-color);
}

.menu-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Mariages */
.mariages {
    background: var(--bg-white);
}

.mariages-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.mariages-text h3, .mariages-text h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.mariages-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.mariages-services {
    list-style: none;
    margin: 1.5rem 0;
}

.mariages-services li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.mariages-services i {
    color: var(--primary-color);
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.aid-specialites {
    margin: 2rem 0;
}

.aid-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.aid-plat {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-top: 3px solid var(--primary-color);
}

.aid-plat strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.mariages-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
}

.feature-card h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cta-section {
    background: var(--gradient-gold);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.cta-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Entreprises */
.entreprises {
    background: var(--bg-light);
}

.entreprises-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.entreprises-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.entreprises-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid var(--accent-color);
    box-shadow: var(--shadow);
}

.service h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service i {
    color: var(--accent-color);
}

.service ul {
    list-style: none;
}

.service li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

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

.service li::before {
    content: '▸';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.corporate-avantages {
    margin: 3rem 0;
}

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.avantage {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.avantage i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.avantage h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.testimonial {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 6px solid var(--primary-color);
    font-style: italic;
    box-shadow: var(--shadow);
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial cite {
    color: var(--accent-color);
    font-weight: 600;
    font-style: normal;
}

.corporate-testimonial {
    border-left-color: var(--accent-color);
}

.corporate-formules {
    margin-top: 3rem;
}

.formules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.formule {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.formule h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.formule p {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.formule ul {
    list-style: none;
    text-align: left;
}

.formule li {
    padding: 0.3rem 0;
    color: var(--text-light);
}

/* Section Iftar */
.iftar-section {
    background: var(--bg-white);
}

.iftar-content {
    margin-bottom: 3rem;
}

.iftar-texte {
    margin-bottom: 3rem;
}

.iftar-texte p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.iftar-menu {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.iftar-progression {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.iftar-etape {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
}

.etape-numero {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--gradient-accent);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.iftar-etape h4 {
    color: var(--secondary-color);
    margin: 1rem 0;
}

.iftar-etape ul {
    list-style: none;
    text-align: left;
}

.iftar-etape li {
    padding: 0.3rem 0;
    color: var(--text-light);
}

.iftar-logistique {
    margin: 3rem 0;
}

.logistique-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.logistique-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.logistique-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.logistique-item h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.ramadan-citation {
    background: var(--gradient-gold);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    font-style: italic;
    margin: 2rem 0;
}

.ramadan-citation p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.ramadan-citation cite {
    color: var(--secondary-color);
    font-weight: 600;
    font-style: normal;
}

.iftar-cta {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.iftar-cta h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.iftar-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Section Tarifs */
.tarifs-section {
    background: var(--bg-light);
}

.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tarif-pack {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.tarif-pack:hover {
    transform: translateY(-5px);
}

.tarif-pack.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.pack-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--gradient-accent);
    color: var(--bg-white);
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 1;
}

.pack-header {
    background: var(--gradient-gold);
    padding: 2rem;
    text-align: center;
}

.pack-header h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pack-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.per-person {
    color: var(--text-light);
    font-size: 1rem;
}

.pack-content {
    padding: 2rem;
}

.pack-content h4 {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.pack-includes {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pack-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.pack-includes i {
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.pack-exclusions {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

.pack-cta {
    padding: 0 2rem 2rem;
    text-align: center;
}

.pack-cta .btn {
    width: 100%;
}

.tarifs-entreprise {
    margin: 3rem 0;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.entreprise-tarifs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tarif-entreprise {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.tarif-entreprise h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tarif-entreprise i {
    color: var(--accent-color);
}

.tarif-entreprise p {
    color: var(--text-light);
}

.tarif-entreprise strong {
    color: var(--accent-color);
}

.tarifs-notes {
    margin: 3rem 0;
}

.tarifs-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.info-item div strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.devis-personnalise {
    background: var(--gradient-accent);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    color: var(--bg-white);
    margin-top: 3rem;
}

.devis-personnalise h3 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.devis-personnalise p {
    margin-bottom: 2rem;
}

.devis-personnalise .btn {
    background: var(--bg-white);
    color: var(--accent-color);
}

.devis-personnalise .btn:hover {
    background: var(--bg-light);
}

/* Engagements */
.engagements {
    background: var(--bg-white);
}

.engagements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.engagement {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.engagement:hover {
    transform: translateY(-5px);
}

.engagement-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.engagement-icon i {
    font-size: 1.8rem;
    color: var(--bg-white);
}

.engagement h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.engagement p {
    line-height: 1.7;
    color: var(--text-light);
}

.certifications-details {
    margin-top: 3rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.certification {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.certification i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.certification h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.certification p {
    color: var(--text-light);
}

/* Témoignages */
.temoignages {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonials-grid .testimonial {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 6px solid var(--primary-color);
    margin: 0;
    transition: transform 0.3s ease;
}

.testimonials-grid .testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    text-align: left;
}

.stars {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-author {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-author strong {
    color: var(--secondary-color);
    display: block;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.realisations {
    margin-top: 3rem;
}

.realisations h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.realisations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.realisation {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.realisation:hover {
    transform: translateY(-5px);
}

.realisation img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.realisation h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin: 1rem;
}

.realisation p {
    color: var(--text-light);
    margin: 0 1rem;
    font-size: 0.9rem;
}

.realisation-tag {
    background: var(--gradient-accent);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 1rem;
    display: inline-block;
    border-radius: 15px;
}

.avis-synthese {
    margin-top: 3rem;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.avis-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    display: block;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* FAQ */
.faq {
    background: var(--bg-white);
    padding: 60px 0;
}

.faq h2 {
    margin-bottom: 2rem;
}

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

.faq-item {
    background: var(--bg-light);
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-item h3 {
    background: var(--bg-white);
    padding: 1.5rem;
    margin: 0;
    color: var(--secondary-color);
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-item h3:hover {
    background: var(--bg-light);
}

.faq-item i {
    color: var(--accent-color);
}

.faq-item p {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Contact */
.contact {
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-info h3 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-top: 0.3rem;
    width: 25px;
    flex-shrink: 0;
}

.contact-item strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.3rem;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item small {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

.contact-urgence {
    background: var(--gradient-gold);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.contact-urgence h4 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-urgence i {
    color: var(--accent-color);
}

.contact-urgence p {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-rgpd {
    margin: 1rem 0;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.form-rgpd small {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
}

.form-rgpd i {
    color: var(--accent-color);
    margin-right: 0.3rem;
}

.form-reassurance {
    margin-top: 1.5rem;
    text-align: center;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.form-reassurance p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-reassurance i {
    color: var(--primary-color);
    margin-right: 0.3rem;
}

.contact-form button {
    width: 100%;
    margin-top: 1rem;
}

.contact-form button i {
    margin-right: 0.5rem;
}

.contact-cta {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-cta h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Sticky CTA Mobile */
.sticky-cta-mobile {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: none;
}

.sticky-cta-mobile .btn {
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: var(--bg-white);
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section h4, .footer-section h5 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #bbb;
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
    font-size: 1.1rem;
}

.footer-certifications {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-certifications p {
    font-size: 0.9rem;
}

.footer-certifications i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

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

.footer-legal {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-roseliande p {
    color: #bbb;
    font-size: 0.9rem;
    text-align: right;
}

.footer-roseliande a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.footer-roseliande a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-badges {
        gap: 1rem;
    }
    
    .badge {
        padding: 0.6rem 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
    }
    
    .cheffe-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cheffe-image {
        position: static;
        order: -1;
    }
    
    .mariages-content {
        grid-template-columns: 1fr;
    }
    
    .mariages-features {
        flex-direction: column;
    }
    
    .entreprises-services {
        grid-template-columns: 1fr;
    }
    
    .engagements-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .tarifs-grid {
        grid-template-columns: 1fr;
    }
    
    .tarif-pack.featured {
        transform: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-roseliande p {
        text-align: center;
    }
    
    .sticky-cta-mobile {
        display: block;
    }

    .iftar-progression {
        grid-template-columns: 1fr;
    }

    .logistique-points {
        grid-template-columns: 1fr;
    }

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

    .aid-menu {
        grid-template-columns: 1fr;
    }

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

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

    .entreprise-tarifs {
        grid-template-columns: 1fr;
    }

    .tarifs-info {
        grid-template-columns: 1fr;
    }

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

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

    .avis-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .feature,
    .engagement,
    .testimonial,
    .contact-form {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 2rem;
    }

    .badge {
        padding: 0.5rem 0.8rem;
    }

    .badge span {
        font-size: 0.8rem;
    }

    .cheffe-photo img {
        width: 100%;
        max-width: 300px;
    }

    .credential {
        padding: 1rem;
    }

    .etape-numero {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }

    .pack-badge {
        font-size: 0.7rem;
        padding: 6px 35px;
    }

    .price {
        font-size: 2.5rem;
    }

    .avis-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.feature,
.engagement,
.testimonial {
    animation: fadeInUp 0.6s ease forwards;
}

/* Focus states pour l'accessibilité */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.nav-links a:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Print styles */
@media print {
    .header,
    .nav-toggle,
    .btn,
    .footer,
    .sticky-cta-mobile {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    section {
        padding: 1rem 0;
        page-break-inside: avoid;
    }
}

/* High contrast mode pour accessibilité */
@media (prefers-contrast: high) {
    :root {
        --text-color: #000;
        --text-light: #333;
        --bg-white: #fff;
        --bg-light: #f0f0f0;
        --border-color: #666;
    }
}

/* Mode sombre pour ceux qui préfèrent */
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #e0e0e0;
        --text-light: #b0b0b0;
        --text-muted: #888;
        --bg-white: #1a1a1a;
        --bg-light: #2a2a2a;
        --border-color: #404040;
    }
}