/* ===================================
   SAUCE BUTXU - STYLES
   Cuisine à domicile au Pays Basque
   =================================== */

/* ===================================
   VARIABLES & RESET
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
    /* Brand Colors - New Harmonious Palette */
    --beige-light: #FDFBF7;
    --beige-dark: #F5F1E8;
    --honey-yellow: #FFB703;
    --honey-yellow-muted: #FFD25A;
    --sage-green: #8A9A5B;
    --sage-green-light: #B7C9A4;
    --terracotta: #E2725B;
    --terracotta-dark: #C15E4A;
    --text-dark: #2D3436;
    --text-muted: #636E72;
    --vert-olive: #556B2F;
    --vert-sauge: #8A9A5B;

    /* Typography */
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Transitions & Shadows */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --blanc-casse: #FDFBF7;
    /* Defined for mobile menu matching the theme */
}

@media (min-width: 769px) {
    :root {
        --spacing-md: 2rem;
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
        --spacing-xxl: 6rem;
    }
}

/* ===================================
   BASE STYLES & RESET
   =================================== */

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

body {
    font-family: var(--font-main);
    background-color: var(--beige-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

html {
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.max-w-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.mt-xl {
    margin-top: var(--spacing-xl);
}

.mt-xxl {
    margin-top: var(--spacing-xxl);
}

/* Spacing Utilities */
.p-sm {
    padding: var(--spacing-sm);
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pt-sm {
    padding-top: var(--spacing-sm) !important;
}

.pb-sm {
    padding-bottom: var(--spacing-sm) !important;
}

.pt-md {
    padding-top: var(--spacing-md) !important;
}

.pb-md {
    padding-bottom: var(--spacing-md) !important;
}

.pt-lg {
    padding-top: var(--spacing-lg) !important;
}

.pb-lg {
    padding-bottom: var(--spacing-lg) !important;
}

.pt-xl {
    padding-top: var(--spacing-xl) !important;
}

.pb-xl {
    padding-bottom: var(--spacing-xl) !important;
}

.py-sm {
    padding-top: var(--spacing-sm) !important;
    padding-bottom: var(--spacing-sm) !important;
}

.py-md {
    padding-top: var(--spacing-md) !important;
    padding-bottom: var(--spacing-md) !important;
}

.py-lg {
    padding-top: var(--spacing-lg) !important;
    padding-bottom: var(--spacing-lg) !important;
}

.py-xl {
    padding-top: var(--spacing-xl) !important;
    padding-bottom: var(--spacing-xl) !important;
}

.p-md {
    padding: var(--spacing-md);
}

.p-lg {
    padding: var(--spacing-lg);
}

.p-xl {
    padding: var(--spacing-xl);
}

.m-sm {
    margin: var(--spacing-sm);
}

.m-md {
    margin: var(--spacing-md);
}

.m-lg {
    margin: var(--spacing-lg);
}

.m-xl {
    margin: var(--spacing-xl);
}

.mb-xs {
    margin-bottom: var(--spacing-xs);
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mb-xl {
    margin-bottom: var(--spacing-xl);
}

.mb-xxl {
    margin-bottom: var(--spacing-xxl);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}
.mb-section {
    margin-bottom: var(--spacing-xxl) !important;
}

@media (min-width: 769px) {
    .mb-section {
        margin-bottom: 8rem !important;
    }
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1,
.h1,
h2,
.h2,
h3,
.h3 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
}

.h4 {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.h5 {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

p {
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(120deg, var(--honey-yellow-muted) 0%, var(--honey-yellow-muted) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.3em;
    background-position: 0 88%;
    font-weight: 500;
}

.bold {
    font-weight: 700;
}

.color-sage {
    color: var(--sage-green);
}

.color-honey {
    color: var(--honey-yellow);
}

.color-terracotta {
    color: var(--terracotta);
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-honey {
    background-color: var(--honey-yellow);
    color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(255, 183, 3, 0.3);
}

.btn-honey:hover {
    background-color: #e6a500;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 183, 3, 0.4);
}

.btn-sage {
    background-color: var(--sage-green);
    color: white;
    box-shadow: 0 5px 15px rgba(138, 154, 91, 0.3);
}

.btn-sage:hover {
    background-color: #7a8a4d;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(138, 154, 91, 0.4);
}

.btn-terracotta {
    background-color: var(--terracotta);
    color: white;
    box-shadow: 0 5px 15px rgba(226, 114, 91, 0.3);
}

.btn-terracotta:hover {
    background-color: var(--terracotta-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(226, 114, 91, 0.4);
}

.btn-white {
    background-color: white;
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
}

.btn-white:hover {
    background-color: var(--beige-dark);
    transform: translateY(-3px);
}

.btn-text {
    font-weight: 600;
    color: var(--sage-green);
    text-decoration: none;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--terracotta);
    padding-left: 5px;
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: transparent;
    /* Transparent at top */
}

.navbar.scrolled {
    padding: 1rem 0;
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.nav-minimal {
    background-color: transparent;
    border-bottom: 1px solid var(--beige-dark);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--sage-green);
}

.btn-nav {
    background-color: var(--honey-yellow);
    padding: 0.6rem 1.5rem !important;
    border-radius: 8px;
}

/* ===================================
   HERO
   =================================== */

.hero {
    padding-top: 11rem;
    /* Slightly more space */
    padding-bottom: 6rem;
    background: linear-gradient(180deg, var(--beige-dark) 0%, var(--beige-light) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.butxu-definition {
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    font-style: italic;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--glass-border);
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* ===================================
   SECTIONS & COMPONENTS
   =================================== */

.section {
    padding: var(--spacing-xxl) 0;
}

.bg-beige-dark {
    background-color: var(--beige-dark);
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: var(--transition);
    overflow-wrap: break-word;
    /* Ensure long words/emails don't overflow */
}

.glass:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.photo-placeholder {
    background-color: var(--beige-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    color: var(--text-muted);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.rounded-lg {
    border-radius: 24px !important;
}

.photo-placeholder::after {
    content: none;
}

/* Image Aspect Ratio Utilities */
.aspect-portrait {
    aspect-ratio: 4 / 5;
    height: auto !important;
}

.aspect-landscape {
    aspect-ratio: 3 / 2;
    height: auto !important;
}

.aspect-banner {
    aspect-ratio: 16 / 9;
    height: auto !important;
}

@media (min-width: 1024px) {
    .aspect-banner {
        aspect-ratio: 21 / 9;
    }
}

.aspect-square {
    aspect-ratio: 1 / 1;
    height: auto !important;
}

.large {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    /* Default portrait for hero */
}

@media (min-width: 1024px) {
    .large {
        height: 700px;
        aspect-ratio: auto;
    }
}

.photo-medium {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    /* Default landscape */
}

.photo-small {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}

.relative {
    position: relative;
}

.absolute-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.opacity-10 {
    opacity: 0.1;
}

.py-xxl {
    padding-top: var(--spacing-xxl);
    padding-bottom: var(--spacing-xxl);
}

.py-xl {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

.mb-xl {
    margin-bottom: var(--spacing-xl);
}

/* Eusko Section */
.eusko-grid {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 3rem;
    align-items: center;
}

.eusko-logo-placeholder {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--sage-green);
    border: 2px solid var(--sage-green);
}

.eusko-logo-placeholder[style*="background-image"],
.photo-placeholder[style*="background-image"],
.video-placeholder[style*="background-image"] {
    color: transparent !important;
}

.link-eusko {
    color: var(--sage-green);
    text-decoration: none;
    border-bottom: 2px solid var(--honey-yellow);
    font-weight: 700;
}

/* Service Cards */
.services-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Tax Credit Banner */
.tax-credit-banner {
    display: flex;
    padding: 2rem 3rem;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.tax-content {
    max-width: 500px;
}

.tax-content>* {
    margin: 0.3rem 0 !important;
}

.tax-content h2,
.tax-content h3 {
    margin-bottom: 0.8rem !important;
}

.tax-content p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    min-width: 220px;
}

.cta-wrapper .btn {
    width: 100%;
    margin: 0 !important;
    text-align: center;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
}

.glass-terracotta {
    background: rgba(226, 114, 91, 0.08);
    border: 1px solid rgba(226, 114, 91, 0.15);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.content-list {
    list-style: none;
    margin-top: 1rem;
}

.content-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.content-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--sage-green);
    font-weight: bold;
}

.text-sep {
    font-size: 1.2rem;
    color: var(--sage-green-light);
    margin: 1.5rem 0;
    opacity: 0.5;
}

.about-grid.reverse {
    direction: ltr;
    /* Ensure base direction */
}

.about-grid.reverse>*:first-child {
    order: 2;
}

.about-grid.reverse>*:last-child {
    order: 1;
}

/* FAQ CTA */
.faq-cta {
    background: var(--honey-yellow);
    color: var(--text-dark);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background-color: var(--sage-green);
    color: white;
    padding: 5rem 0 2rem;
    /* More generous padding */
}

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

.footer h3,
.footer .logo {
    color: var(--honey-yellow);
    margin-bottom: 1.5rem;
}

.footer p,
.contact-list a {
    color: white;
    opacity: 1;
    text-decoration: none;
    transition: var(--transition);
}

.mention-fiscale {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1rem;
    font-style: italic;
    color: var(--beige-dark);
}

.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: currentColor;
}

.contact-list a {
    color: #E6E6E6;
    text-decoration: none;
    transition: var(--transition);
}

.social-links li, .social-links a {
    color: #8A9A5C !important;
}

.social-links svg {
    fill: #8A9A5C !important;
}

.contact-list a:hover {
    color: var(--honey-yellow);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid #444;
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.payment-methods {
    margin-top: 2rem;
}

.payment-title {
    font-size: 0.9rem;
    opacity: 0.7;
    display: block;
    margin-bottom: 0.5rem;
}

.payment-icons {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--honey-yellow);
}

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

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: white;
    opacity: 0.9;
}

.footer-legal {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.footer-legal a {
    color: white;
    text-decoration: underline;
}


.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    color: var(--vert-sauge);
    margin-bottom: 0.75rem;
}

.cuisine-values h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-section {
    padding: var(--spacing-xl) 0 var(--spacing-xxl);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xl);
}

.contact-info {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.contact-item {
    margin-bottom: var(--spacing-md);
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--vert-sauge);
}

.contact-item a {
    color: var(--vert-olive);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--vert-sauge);
}

/* Form Styles */
.contact-form {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.form-intro {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background-color: rgba(143, 169, 155, 0.1);
    border-radius: 10px;
    font-size: 0.95rem;
}

.form-section {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(143, 169, 155, 0.2);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    color: var(--vert-sauge);
    margin-bottom: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(143, 169, 155, 0.3);
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--blanc-casse);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--vert-sauge);
    background-color: white;
}

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

/* Checkbox and Radio Styles */
.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.checkbox-label:hover,
.radio-label:hover {
    background-color: rgba(143, 169, 155, 0.05);
}

.checkbox-label input,
.radio-label input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--vert-sauge);
}

.form-submit {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.form-submit .btn {
    min-width: 250px;
    margin-bottom: var(--spacing-md);
}

.form-end-text {
    font-style: italic;
    color: var(--vert-sauge);
    margin-top: var(--spacing-md);
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    padding: var(--spacing-xxl) 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(242, 201, 76, 0.15) 0%, rgba(143, 169, 155, 0.15) 100%);
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

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

/* Ghost code removed */

/* Social Icons */
.social-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.instagram-contact {
    display: flex;
    align-items: center;
}

.instagram-icon {
    transition: var(--transition);
}

.instagram-contact:hover .instagram-icon {
    transform: scale(1.1);
}

/* ===================================
   RESPONSIVE
   =================================== */

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



/* Google-style Reviews */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 60px;
    overflow: hidden;
    /* Prevent horizontal overflow */
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

.carousel-track .review-card {
    flex: 0 0 calc(50% - 1rem);
    min-width: 300px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    text-align: left;
}

.carousel-track .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #555;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.review-info {
    flex: 1;
}

.review-name {
    font-weight: 700;
    color: #333;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.verified-badge {
    color: #1a73e8;
    font-size: 0.8rem;
    font-weight: bold;
}

.review-meta {
    font-size: 0.85rem;
    color: #70757a;
    margin-top: 2px;
}

.google-logo {
    color: #4285F4;
    font-weight: bold;
}

.review-stars-modern {
    color: #FBBC04;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #3c4043;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.read-more:hover {
    text-decoration: underline;
}

/* Modern Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #e0e0e0;
    color: #5f6368;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    z-index: 10;
    transition: var(--transition);
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: #f8f9fa;
    color: #202124;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.carousel-btn.prev {
    left: 15px;
}

.carousel-btn.next {
    right: 15px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dadce0;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: #5f6368;
}


/* Prestations Grid (Home) */
.prestations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}


.prestation-content.reverse {
    direction: ltr;
}

/* Services */
.services-grid {
    grid-template-columns: 1fr;
}

/* Contact */
.contact-layout {
    grid-template-columns: 1fr;
}

.contact-info {
    position: static;
}

/* Steps */
.approach-steps {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.step {
    padding: var(--spacing-lg);
}

.step-number {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
}



/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.philosophy-item,
.value-card {
    animation: fadeIn 0.6s ease forwards;
}

.service-card:nth-child(2) {
    animation-delay: 0.1s;
}

.service-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* ===================================
   UTILITIES
   =================================== */

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

.mt-1 {
    margin-top: var(--spacing-sm);
}

.mt-2 {
    margin-top: var(--spacing-md);
}

.mt-3 {
    margin-top: var(--spacing-lg);
}

.mb-1 {
    margin-bottom: var(--spacing-sm);
}

.mb-2 {
    margin-bottom: var(--spacing-md);
}

.mb-3 {
    margin-bottom: var(--spacing-lg);
}

/* ===================================
   NEW SECTIONS - HOMEPAGE
   =================================== */

/* Sauce Butxu Explanation */
.butxu-explanation {
    padding: var(--spacing-xl) 0;
    background-color: white;
}

.explanation-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.explanation-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.explanation-content .highlight {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--vert-olive);
    margin-top: var(--spacing-md);
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.services-tagline {
    text-align: center;
    margin-top: var(--spacing-lg);
    font-style: italic;
    color: var(--vert-olive);
    opacity: 0.85;
}

.service-note {
    font-size: 0.9rem;
    color: var(--vert-sauge);
    font-style: italic;
    margin-top: 0.5rem;
}

/* SAP Video Section */
.sap-video-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, rgba(230, 190, 124, 0.15) 0%, rgba(182, 189, 158, 0.15) 100%);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Ratio 16/9 */
    height: 0;
    max-width: 800px;
    margin: var(--spacing-lg) auto;
    border-radius: 15px;
    overflow: hidden;
}

.video-placeholder {
    background-color: var(--vert-olive);
    color: white;
    padding: var(--spacing-xxl);
    text-align: center;
    font-size: 1.25rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.card-wide {
    grid-column: span 2;
}

@media (max-width: 900px) {
    .card-wide {
        grid-column: span 1;
    }
}

.info-card {
    background: white !important;
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--beige-dark);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

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

.info-card h3 {
    margin-top: 0;
    margin-bottom: var(--spacing-md);
    font-size: 1.3rem;
    font-weight: 700;
}

.info-card p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.info-card ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

/* Senior Pricing Cards Redesign */
.senior-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.pricing-card-senior {
    background: white;
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--beige-dark);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card-senior:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pricing-header {
    padding: 2.5rem 2rem;
    text-align: center;
    color: white;
}

.pricing-header.sage { background-color: var(--sage-green); }
.pricing-header.honey { background-color: var(--honey-yellow); }

.pricing-header h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: white;
}

.pricing-header p {
    opacity: 0.9;
    font-size: 0.95rem;
    margin: 0;
}

.pricing-body {
    padding: 2rem;
    flex-grow: 1;
}

.price-item {
    padding: 1.5rem 0;
    border-bottom: 1px dashed var(--beige-dark);
}

.price-item:last-child {
    border-bottom: none;
}

.price-label {
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    display: block;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}

.price-after-tax {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--terracotta);
    font-family: var(--font-heading);
}

.price-full {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.7;
}

.price-suffix {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-left: 5px;
}

.pricing-footer {
    padding: 1.5rem 2rem;
    background: var(--beige-light);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid var(--beige-dark);
}

.example-box {
    background: var(--beige-light);
    padding: var(--spacing-md);
    border-radius: 10px;
    margin-top: auto;
    border-left: 4px solid var(--terracotta);
}

.step-list {
    counter-reset: step;
}

.step-list li {
    counter-increment: step;
}

.step-list li::before {
    content: counter(step) !important;
    background: var(--sage-green);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-right: 10px;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: var(--transition);
}

.video-thumbnail:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    transition: var(--transition);
}

.video-thumbnail:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-cta {
    text-align: center;
    margin-top: var(--spacing-md);
    font-size: 1.1rem;
    color: var(--vert-olive);
    font-weight: 500;
}

/* Instagram Section */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.instagram-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 16px;
    transition: var(--transition);
}

.instagram-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.instagram-item .photo-placeholder {
    height: 100%;
}


/* Newsletter CTA Styling */
.newsletter-cta {
    background: linear-gradient(135deg, var(--beige-dark) 0%, white 100%);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: var(--spacing-xxl) 0;
    background-color: white;
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(230, 190, 124, 0.1) 0%, rgba(182, 189, 158, 0.1) 100%);
    border-radius: 20px;
}

.newsletter-box h2 {
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin: var(--spacing-md) 0;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--vert-sauge);
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-dark);
}

.newsletter-form button {
    white-space: nowrap;
}

.newsletter-note {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.85;
}

/* ===================================
   SAP PAGE STYLES
   =================================== */

.sap-main {
    padding: var(--spacing-xl) 0;
}

.sap-highlight {
    background: linear-gradient(135deg, rgba(230, 190, 124, 0.2) 0%, rgba(182, 189, 158, 0.2) 100%);
    padding: var(--spacing-lg);
    border-radius: 20px;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.sap-content {
    margin: var(--spacing-lg) 0;
}

.sap-prestations {
    padding: var(--spacing-xl) 0;
    background-color: white;
}

.sap-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.sap-service-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--vert-sauge);
    text-align: center;
}

.sap-service-card.inactive {
    opacity: 0.6;
    border-color: rgba(0, 0, 0, 0.1);
}

.eligible {
    color: var(--vert-sauge);
    font-weight: 600;
    margin-top: 1rem;
}

.not-eligible {
    color: var(--terracotta);
    font-weight: 500;
    margin-top: 1rem;
}

.sap-process {
    padding: var(--spacing-xl) 0;
}

.process-intro {
    background-color: rgba(182, 189, 158, 0.1);
    padding: var(--spacing-md);
    border-radius: 15px;
    margin-bottom: var(--spacing-lg);
}

.process-steps {
    margin-top: var(--spacing-lg);
    display: grid;
    gap: var(--spacing-md);
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--spacing-md);
    align-items: start;
    background: white;
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.sap-support {
    padding: var(--spacing-xl) 0;
}

.support-box {
    background: linear-gradient(135deg, rgba(230, 190, 124, 0.15) 0%, rgba(182, 189, 158, 0.15) 100%);
    padding: var(--spacing-lg);
    border-radius: 20px;
}

.support-message {
    font-size: 1.15rem;
    font-weight: 500;
    margin-top: var(--spacing-md);
    color: var(--vert-olive);
}

/* ===================================
   TARIFS PAGE
   =================================== */

.tarifs-intro {
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.tarifs-section {
    padding: var(--spacing-xl) 0;
}

.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.tarif-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    overflow: hidden;
    border: 2px solid transparent;
}

.tarif-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--vert-sauge);
}

/* Sections alignées */
.tarif-section {
    padding: 0 var(--spacing-lg);
}

.tarif-section-header {
    text-align: center;
    padding: 2rem 2rem;
    background: linear-gradient(135deg, rgba(182, 189, 158, 0.05) 0%, rgba(230, 190, 124, 0.05) 100%);
    height: var(--x-pixel);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
}

.tarif-section-header h3 {
    margin: 0.75rem 0;
    font-size: 1.5rem;
    line-height: 1.4;
}

.tarif-subtitle {
    font-size: 0.95rem;
    color: var(--vert-sauge);
    font-weight: 500;
    margin: 0.5rem 0 0 0;
    line-height: 1.4;
}

.tarif-section-price {
    text-align: center;
    padding: 2rem 2rem;
    border-bottom: 1px solid rgba(182, 189, 158, 0.2);
    height: var(--y-pixel);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.tarif-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vert-olive);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.tarif-description {
    font-size: 0.95rem;
    opacity: 0.85;
    margin: 0;
    line-height: 1.6;
}

.tarif-section-features {
    padding: 2rem 2rem;
    height: var(--z-pixel);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.75rem;
}

.tarif-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tarif-features li {
    padding: 0.75rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.tarif-features li:first-child {
    padding-top: 0;
}

.tarif-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--vert-sauge);
    font-weight: bold;
    font-size: 1.1rem;
    top: 0.5rem;
}

.tarif-section-fiscal {
    padding: 2rem 2rem;
    height: var(--a-pixel);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tarif-avantage {
    background: linear-gradient(135deg, rgba(230, 190, 124, 0.2) 0%, rgba(182, 189, 158, 0.2) 100%);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--jaune);
}

.tarif-avantage p {
    margin: 0.25rem 0;
}

.tarif-note {
    text-align: center;
}

.tarif-note p {
    margin: 0;
    color: var(--terracotta);
    font-weight: 500;
}

.tarif-section-cta {
    padding: 1.5rem 2rem 2rem;
    height: var(--b-pixel);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Nouveau design bouton */
.btn-tarif {
    display: block;
    width: 100%;
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, var(--vert-sauge) 0%, var(--vert-olive) 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(143, 169, 155, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-tarif::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--vert-olive) 0%, var(--vert-sauge) 100%);
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-tarif span,
.btn-tarif {
    position: relative;
    z-index: 1;
}

.btn-tarif:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(143, 169, 155, 0.4);
}

.btn-tarif:hover::before {
    left: 0;
}

.btn-tarif:active {
    transform: translateY(0);
}

.avance-reminder {
    padding: var(--spacing-xl) 0;
    background-color: white;
}

.reminder-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(230, 190, 124, 0.2) 0%, rgba(182, 189, 158, 0.2) 100%);
    border-radius: 20px;
}

.tarifs-contact {
    padding: var(--spacing-xl) 0;
}

.contact-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.reason-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* ===================================
   COMMENT ÇA SE PASSE PAGE
   =================================== */

.how-it-works,
.practical-info,
.after-service,
.flexibility-section {
    padding: var(--spacing-xl) 0;
}

.practical-info {
    background-color: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.info-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--vert-sauge);
}

.info-card h3 {
    margin-bottom: 1rem;
    color: var(--vert-sauge);
}

.after-content {
    max-width: 700px;
    margin: 0 auto;
}

.flexibility-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(230, 190, 124, 0.15) 0%, rgba(182, 189, 158, 0.15) 100%);
    border-radius: 20px;
}

/* ===================================
   CONTACT PAGE - QUICK FORM
   =================================== */

.quick-contact-section {
    padding: var(--spacing-xl) 0;
}

.quick-contact-intro {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.quick-contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.quick-contact-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(182, 189, 158, 0.3);
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 1rem;
    background-color: var(--blanc-casse);
    cursor: pointer;
}

.quick-contact-form select:focus {
    outline: none;
    border-color: var(--vert-sauge);
    background-color: white;
}

.detailed-form-link {
    max-width: 700px;
    margin: var(--spacing-lg) auto 0;
    text-align: center;
}

.detailed-form-link p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--vert-olive);
}

.detailed-form-section {
    padding: var(--spacing-xl) 0;
    background-color: white;
}

.detailed-form-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.contact-info-section {
    padding: var(--spacing-xl) 0;
    background-color: rgba(182, 189, 158, 0.05);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.contact-info-section .contact-item {
    background: white;
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* ===================================
   MA CUISINE PAGE - NEW SECTIONS
   =================================== */

.cuisine-gourmande,
.cuisine-engagee,
.cuisine-humaine,
.cuisine-process {
    padding: var(--spacing-xl) 0;
}

.cuisine-gourmande {
    background-color: white;
}

.cuisine-process {
    background-color: rgba(182, 189, 158, 0.05);
}

.gourmande-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.gourmande-item {
    background: white;
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.gourmande-item p {
    font-size: 1.05rem;
    margin: 0;
}

.philosophy-intro {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.prestations-intro {
    padding: var(--spacing-lg) 0;
    text-align: center;
    background-color: rgba(182, 189, 158, 0.05);
}

.organisation-section {
    padding: var(--spacing-xl) 0;
    background-color: white;
}

.organisation-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--vert-sauge);
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.85;
}

/* ===================================
   RESPONSIVE UPDATES
   =================================== */


/* ===================================
   FAQ SECTION
   =================================== */

.faq-category {
    margin-bottom: var(--spacing-lg);
}

.faq-item {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--beige-dark);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--sage-green-light);
}

.faq-item h4 {
    padding: 2rem 2rem 0.5rem;
    color: var(--sage-green);
    font-weight: 600;
}

.faq-item p {
    padding: 0 2rem 2rem;
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--sage-green);
    text-align: left;
    transition: var(--transition);
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--beige-dark);
    border-radius: 50%;
    color: var(--sage-green);
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--sage-green);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    background-color: rgba(245, 241, 232, 0.3);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.5rem;
    }
}

/* ===================================
   CONSOLIDATED RESPONSIVE RULES
   =================================== */

@media (max-width: 1024px) {
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .hero-grid,
    .about-grid,
    .footer-grid,
    .contact-layout,
    .approach-steps,
    .prestations-grid,
    .tarifs-grid,
    .contact-info-grid,
    .gourmande-grid,
    .info-grid,
    .contact-reasons {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .hero-visual .photo-placeholder.large {
        order: -1;
    }

    .hero-content {
        text-align: center !important;
        padding-top: 2rem;
    }

    .hero-cta {
        justify-content: center !important;
    }

    .about-grid.reverse>*:first-child,
    .about-grid.reverse>*:last-child {
        order: unset !important;
    }

    .footer-grid {
        text-align: center !important;
    }

    .footer-brand,
    .footer-contact,
    .footer-newsletter,
    .footer-location {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-list li {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    /* Mobile Menu Toggle Design */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        width: 48px;
        height: 48px;
        background-color: white !important;
        border: none;
        border-radius: 50%;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 2000;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        padding: 0;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 26px;
        height: 3px;
        background-color: var(--vert-olive);
        border-radius: 3px;
        transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    }

    /* Animation: 3 Bars -> X */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 100% !important;
        height: 100vh !important;
        background-color: #FDFBF7 !important;
        /* Force opaque heritage */
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        z-index: 1500 !important;
        transition: right 0.4s ease !important;
    }

    .nav-menu.active {
        right: 0 !important;
    }

    /* Fix Carousel Overflow */
    .carousel-container {
        padding: 2rem 15px !important;
        overflow: hidden !important;
        width: 100% !important;
    }

    .carousel-track .review-card {
        flex: 0 0 100% !important;
        min-width: unset !important;
        width: 100% !important;
    }

    .hero h1 {
        font-size: 2.5rem !important;
    }

    /* Espace entre le logo et la première section sur mobile */
    header.section.pt-xl {
        padding-top: 120px !important;
    }

    .hero p {
        font-size: 1.1rem !important;
    }

    /* Tax Credit Banner Mobile */
    .tax-credit-banner {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        gap: 2rem;
    }

    .cta-wrapper {
        width: 100%;
    }
}

/* ===================================
   MODAL SYSTEM
   =================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(16px) scale(0.97);
    transition: transform 0.25s ease, opacity 0.25s ease;
    opacity: 0;
    text-align: center;
}

.modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.modal-msg {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-btn {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
}

.modal-btn-cancel {
    background: #f0f0f0;
    color: #555;
}

.modal-btn-cancel:hover {
    background: #e0e0e0;
}

.modal-btn-confirm {
    background: linear-gradient(135deg, var(--sage-green), #7a8a4b);
    color: white;
}

.modal-btn-confirm:hover {
    background: linear-gradient(135deg, #7a8a4b, #6a7a3b);
    transform: translateY(-2px);
}

/* ===================================
   SENIOR PAGE COMPONENTS
   =================================== */

.benefit-list {
    list-style: none;
    margin-top: 1rem;
    padding-left: 0;
}

.benefit-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.benefit-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--sage-green);
    font-size: 1.5rem;
    line-height: 1;
}

.repas-logic {
    background: rgba(255, 255, 255, 0.4);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--sage-green);
}

.repas-logic p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.repas-logic p:last-child {
    margin-bottom: 0;
}

.price-tier {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.tax-price {
    font-weight: 700;
}

.card-white {
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.list-simple {
    list-style: none;
    padding-left: 0;
}

.list-simple li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
}

.list-simple li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--terracotta);
}

@media (max-width: 768px) {
    .price-display {
        flex-direction: column;
        gap: 0.2rem;
    }
}

.modal-btn-danger {
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
    color: white;
}

.modal-btn-danger:hover {
    background: linear-gradient(135deg, var(--terracotta-dark), #a33);
    transform: translateY(-2px);
}

/* ===================================
   GOOGLE CALENDAR APPOINTMENT BUTTON
   =================================== */
.qxCTlb {
    padding: 1.2rem 2.5rem !important;
    font-size: 1.25rem !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
    box-shadow: var(--shadow-soft) !important;
    min-width: 320px !important;
    height: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.qxCTlb:hover {
    transform: translateY(-3px) !important;
    box-shadow: var(--shadow-hover) !important;
    filter: brightness(1.1) !important;
}

#calendar-container {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Video Thumbnail System */
.video-link-box {
    max-width: 800px;
    margin: 0 auto;
}

.video-thumbnail {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    cursor: pointer;
}

.video-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.video-thumbnail img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(226, 114, 91, 0.9); /* Terracotta */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(226, 114, 91, 0.5);
}

.play-button svg {
    width: 40px;
    height: 40px;
    margin-left: 5px;
}

.video-thumbnail:hover .play-button {
    background: var(--terracotta);
    transform: translate(-50%, -50%) scale(1.1);
}