/* ===== RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #B8A294;
    --primary-light: #CBBDB2;
    --primary-dark: #9B8778;
    --accent: #C49A6C;
    --text-dark: #3D3835;
    --text-light: #7A7370;
    --text-muted: #B0A8A4;
    --bg-white: #FDFBF7;
    --bg-light: #F5F2ED;
    --bg-cream: #EDE8E0;
    --shadow: rgba(184, 162, 148, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    font-size: 16px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-white);
    padding: 1rem 5%;
    z-index: 1000;
    border-bottom: 1px solid rgba(184, 162, 148, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.logo:hover {
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 400;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-item {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 220px;
    padding: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 10px 40px var(--shadow-dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.dropdown a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.dropdown a::after {
    display: none;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger div {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    background: var(--bg-white);
}

.hero-banner {
    position: relative;
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 88vh;
    object-fit: cover;
    object-position: center top;
}

.hero-curve {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-curve svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 20px var(--shadow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
section {
    padding: 5rem 5%;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
    margin-top: 70px;
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
    padding: 4rem 5%;
    background: var(--primary);
    text-align: center;
}

.quote-section blockquote {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.5rem;
    font-style: italic;
    color: white;
    line-height: 1.6;
    font-weight: 300;
}

/* ===== SERVICES GRID ===== */
.services-section {
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(184, 162, 148, 0.15);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px var(--shadow);
    border-color: var(--primary);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-card .btn {
    margin-top: 1.5rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--bg-light);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px var(--shadow);
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.2rem;
}

/* ===== TARIFS SECTION ===== */
.tarifs-section {
    background: var(--bg-white);
}

.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.tarif-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.tarif-card:hover {
    border-color: var(--primary);
}

.tarif-card.featured {
    background: var(--primary);
    color: white;
}

.tarif-card.featured h3,
.tarif-card.featured p {
    color: white;
}

.tarif-card h3 {
    margin-bottom: 1rem;
}

.tarif-price {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
    margin: 1rem 0;
}

.tarif-card.featured .tarif-price {
    color: white;
}

.tarif-price span {
    font-size: 1rem;
    font-weight: 400;
}

/* ===== GALLERY ===== */
.gallery-section {
    background: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--bg-light);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.contact-item {
    text-align: center;
}

.contact-item strong {
    display: block;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-item span,
.contact-item a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: var(--primary);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    padding: 4rem 5%;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-section .btn {
    background: white;
    color: var(--primary);
}

.cta-section .btn:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 5%;
    text-align: center;
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

footer a {
    color: var(--primary-light);
}

footer a:hover {
    color: var(--primary);
}

/* ===== TABS ===== */
.tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    border-bottom: 2px solid rgba(184, 162, 148, 0.2);
}

.tab {
    padding: 1rem 2rem;
    color: var(--text-light);
    font-size: 1rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s ease;
}

.tab:hover,
.tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* ===== LIST STYLES ===== */
.service-list {
    max-width: 600px;
    margin: 2rem auto;
}

.service-list-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(184, 162, 148, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.service-list-item:hover {
    padding-left: 1rem;
    color: var(--primary);
}

.service-list-item::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonial {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow);
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 500;
    color: var(--primary);
}

/* ===== ANIMATIONS & EFFECTS ===== */

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes underlineGrow {
    from { width: 0; }
    to { width: 100%; }
}

/* Animate on scroll classes */
.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade {
    animation: fadeIn 1s ease-out forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-scale {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Staggered animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* Hero banner animation */
.hero-banner {
    animation: fadeIn 1s ease-out;
}

/* Gradient text effect */
.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--primary-light) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

/* Underline effect on headings */
.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.section-header:hover h2::after {
    width: 100px;
}

/* Hero banner subtle zoom */
.hero-banner img {
    transition: transform 8s ease;
}

.hero-banner:hover img {
    transform: scale(1.02);
}

/* Card hover effects enhanced */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 162, 148, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

/* Text reveal on scroll */
.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.reveal-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Quote animation */
.quote-section blockquote {
    animation: fadeIn 1.5s ease-out;
    position: relative;
}

.quote-section blockquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    font-family: Georgia, serif;
}

/* Button pulse effect */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

/* Link hover underline effect */
.about-text a,
.contact-item a {
    position: relative;
}

.about-text a::after,
.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.about-text a:hover::after,
.contact-item a:hover::after {
    width: 100%;
}

/* Testimonial fade effect */
.testimonial {
    animation: fadeInUp 0.8s ease-out;
}

.testimonial-text {
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Tarif card hover */
.tarif-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tarif-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Gallery zoom effect */
.gallery-item {
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(184, 162, 148, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Service list item animation */
.service-list-item {
    position: relative;
    overflow: hidden;
}

.service-list-item::after {
    content: '→';
    position: absolute;
    right: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--primary);
}

.service-list-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Page header text animation */
.page-header h1 {
    animation: fadeInUp 0.8s ease-out;
}

.page-header p {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Nav link shimmer */
.nav-links a {
    position: relative;
    overflow: hidden;
}

/* CTA section pulse */
.cta-section h2 {
    animation: fadeIn 1s ease-out;
}

.cta-section .btn {
    animation: pulse 2s ease-in-out infinite;
    animation-delay: 1s;
}

/* Smooth section transitions */
section {
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Footer link effects */
footer a {
    position: relative;
    transition: color 0.3s ease;
}

footer a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-light);
    transition: width 0.3s ease;
}

footer a:hover::before {
    width: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 65px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 10px 30px var(--shadow-dark);
        transition: right 0.3s ease;
        gap: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(184, 162, 148, 0.1);
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 1.5rem;
        background: transparent;
    }

    .burger {
        display: flex;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    .about-image img {
        height: 350px;
    }

    .services-grid,
    .gallery-grid,
    .tarifs-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .tabs {
        flex-wrap: wrap;
    }

    .tab {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .btn-group {
        flex-direction: column;
    }

    section {
        padding: 3rem 4%;
    }

    .section-header {
        margin: 0 auto 2.5rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Hero mobile */
    .hero-banner img {
        max-height: 50vh;
    }

    /* Quote section mobile */
    .quote-section blockquote {
        font-size: 1.15rem;
        padding: 0 0.5rem;
    }

    .quote-with-bg {
        min-height: 200px;
    }

    /* Service cards visual mobile */
    .service-card-visual .service-content {
        padding: 1.5rem;
    }

    .service-card-visual h3 {
        font-size: 1.25rem;
    }

    .service-card-visual p {
        font-size: 0.9rem;
    }

    .service-card-visual .service-image {
        min-height: 180px;
    }

    /* Peace section mobile */
    .peace-image {
        flex: 0 0 100%;
    }

    .peace-values span {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }

    /* About section mobile */
    .about-image img {
        height: 280px;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    /* CTA mobile */
    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    /* Footer mobile */
    footer {
        padding: 2rem 4%;
    }

    footer p {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .footer-legal {
        font-size: 0.8rem;
    }
}

/* ===== LEGAL PAGES ===== */
.legal-section {
    padding: 4rem 8%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-light);
}

.legal-content h2 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
}

.legal-content h2:first-of-type {
    margin-top: 1rem;
}

.legal-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-color);
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-dark);
}

/* Footer legal links */
.footer-legal {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-legal a {
    color: var(--text-light);
    margin: 0 0.5rem;
}

.footer-legal a:hover {
    color: var(--primary-light);
}

.footer-credit {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-credit a:hover {
    color: var(--primary-light);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 1.5rem 5%;
    box-shadow: 0 -5px 30px var(--shadow-dark);
    z-index: 10000;
    display: none;
    animation: slideUp 0.5s ease;
}

.cookie-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-weight: 500;
}

.cookie-btn-accept {
    background: var(--primary);
    color: white;
}

.cookie-btn-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.cookie-btn-decline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--text-light);
    text-decoration: underline;
    padding: 0.8rem 1rem;
}

.cookie-btn-settings:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        min-width: auto;
    }

    .cookie-text p {
        font-size: 0.85rem;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }

    .legal-content {
        padding: 2rem 1.5rem;
    }
}

/* ===== GOOGLE REVIEWS SECTION ===== */
.reviews-section {
    background: var(--bg-light);
    padding: 5rem 5%;
}

.reviews-section .section-header {
    margin-bottom: 2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.review-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow);
}

.review-stars {
    color: #D4A96A;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(184, 162, 148, 0.15);
}

.review-author strong {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.review-author span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.reviews-cta {
    text-align: center;
    margin-top: 2rem;
}

.reviews-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Google star rating display (fallback) */
.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.google-rating .stars {
    color: #D4A96A;
    font-size: 1.5rem;
}

.google-rating .rating-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
}

.google-rating .review-count {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== RESERVATION & PAYMENT SECTION ===== */
.reservation-section {
    background: var(--bg-white);
    padding: 3rem 5%;
}

.calendly-inline-widget {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
}

/* Payment Options */
.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.payment-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.payment-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.payment-card.featured h3,
.payment-card.featured p {
    color: white;
}

.payment-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.payment-card.featured h3 {
    color: white;
}

.payment-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1rem 0;
}

.payment-card.featured .payment-price {
    color: white;
}

.payment-savings {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.payment-card .btn {
    margin-top: 1rem;
    width: 100%;
}

.payment-card.featured .btn {
    background: white;
    color: var(--primary);
}

.payment-card.featured .btn:hover {
    background: var(--bg-light);
}

.payment-info {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Single payment button section */
.payment-single {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.payment-single p {
    margin-bottom: 1.5rem;
}

.payment-single .btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.payment-single .payment-info {
    margin-top: 1.5rem;
    background: var(--bg-white);
}

.payment-info strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

/* Stripe secure badge style */
.stripe-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.stripe-badge svg {
    width: 40px;
    height: auto;
}

/* Responsive adjustments for payment section */
@media (max-width: 768px) {
    .payment-options {
        grid-template-columns: 1fr;
    }

    .payment-card {
        padding: 1.5rem;
    }

    .calendly-inline-widget {
        min-height: 800px;
    }
}

/* ===== QUOTE WITH BACKGROUND ===== */
.quote-with-bg {
    position: relative;
    background: linear-gradient(135deg, rgba(184, 162, 148, 0.9) 0%, rgba(155, 135, 120, 0.95) 100%),
                url('assets/images/asdf.png') center/cover no-repeat;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-with-bg .quote-overlay {
    position: absolute;
    inset: 0;
    background: inherit;
    opacity: 0;
}

.quote-with-bg blockquote {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ===== JOURNEY/TRANSFORMATION SECTION ===== */
.journey-section {
    background: var(--bg-white);
    padding: 5rem 5%;
}

.journey-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.journey-step {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.journey-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    border: 4px solid var(--primary);
}

.journey-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journey-content {
    padding: 0 1rem;
}

.journey-label {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.journey-step:first-child .journey-label {
    background: var(--text-muted);
}

.journey-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.journey-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.journey-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.journey-arrow img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0.8;
}

.journey-arrow span {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
}

/* ===== VISUAL SERVICES SECTION ===== */
.services-visual {
    background: var(--bg-light);
}

.services-grid-visual {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card-visual {
    display: flex;
    gap: 2rem;
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-visual:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(184, 162, 148, 0.2);
}

.service-card-visual:nth-child(even) {
    flex-direction: row-reverse;
}

.service-card-visual .service-image {
    flex: 0 0 40%;
    min-height: 280px;
}

.service-card-visual .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-visual .service-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-visual h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card-visual p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card-visual .btn {
    align-self: flex-start;
}

/* ===== INNER PEACE SECTION ===== */
.peace-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #F0EDE8 100%);
    padding: 5rem 5%;
}

.peace-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.peace-image {
    flex: 0 0 45%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(184, 162, 148, 0.25);
}

.peace-image img {
    width: 100%;
    height: auto;
    display: block;
}

.peace-text {
    flex: 1;
}

.peace-text h2 {
    color: var(--text-dark);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.peace-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.peace-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.peace-values {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.peace-values span {
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(184, 162, 148, 0.3);
}

/* ===== RESPONSIVE FOR NEW SECTIONS ===== */
@media (max-width: 992px) {
    .journey-steps {
        flex-direction: column;
    }

    .journey-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .journey-arrow img {
        width: 80px;
        height: 80px;
    }

    .service-card-visual,
    .service-card-visual:nth-child(even) {
        flex-direction: column;
    }

    .service-card-visual .service-image {
        min-height: 220px;
    }

    .peace-content {
        flex-direction: column;
        text-align: center;
    }

    .peace-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .peace-values {
        justify-content: center;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .journey-image {
        width: 150px;
        height: 150px;
    }

    .journey-content h3 {
        font-size: 1.1rem;
    }

    .peace-text h2 {
        font-size: 1.8rem;
    }

    .peace-text p {
        font-size: 1rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .review-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .review-author strong {
        font-size: 0.9rem;
    }

    .review-stars {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .google-rating {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.3rem;
    }

    .google-rating .stars {
        font-size: 1.2rem;
    }

    .reviews-section {
        padding: 3rem 4%;
    }

    .reviews-cta .btn {
        width: 100%;
        text-align: center;
    }
}
