/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* New hero background for formations-et-voyages */
.formations-voyages-hero .background-image {
    background-image: url('images/voyage.webp'); /* Default background */
    animation: fadeImages 15s infinite linear;
}

@keyframes fadeImages {
    0%, 20% { background-image: url('images/voyage.webp'); }
    25%, 45% { background-image: url('images/voyage2.webp'); }
    50%, 70% { background-image: url('images/questionnement.webp'); }
    75%, 95% { background-image: url('images/SEANCE-AME-_1____serialized1.webp'); }
    100% { background-image: url('images/voyage.webp'); }
}

.formations-voyages-hero .hero-background::before {
    background: linear-gradient(135deg, rgba(234, 219, 198, 0.5) 0%, rgba(146, 125, 92, 0.6) 100%);
}
.event-section {
    margin-bottom: 60px;
    padding: 40px;
    background-color: #fdfaf6;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.event-section h2 {
    font-size: 2.5em;
    color: #5a3a4f;
    margin-bottom: 30px;
    text-align: center;
}
.event-section .info-card {
    border-left: 5px solid #ff6262;
}
.event-section .text-bubble.spiritual {
    border-left: 5px solid #7a6a53;
}
.event-section .important-note {
    border: 2px solid #d4b88c;
}

/* New hero background for formations-et-voyages */
.formations-voyages-hero {
    background-image: url('images/voyage.webp'); /* Default background */
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
}
.formations-voyages-hero .hero-background::before {
    background: linear-gradient(135deg, rgba(234, 219, 198, 0.5) 0%, rgba(146, 125, 92, 0.6) 100%);
}
.event-section {
    margin-bottom: 60px;
    padding: 40px;
    background-color: #fdfaf6;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.event-section h2 {
    font-size: 2.5em;
    color: #5a3a4f;
    margin-bottom: 30px;
    text-align: center;
}
.event-section .info-card {
    border-left: 5px solid #ff6262;
}
.event-section .text-bubble.spiritual {
    border-left: 5px solid #7a6a53;
}
.event-section .important-note {
    border: 2px solid #d4b88c;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Playfair Display', serif;
    color: #917954; /* Changed text color to beige */
    background-color: #fdfaf6;
    line-height: 1.6;
}

/* Header and Navigation */
header {
    position: fixed; /* Changed to fixed to ensure it stays on screen */
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between; /* Align content to left and right */
    align-items: center;
    padding: 15px 30px;
    background-color: rgba(234, 219, 198, 0.86); /* Changed to a beige/brown tone */
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
}

/* Styles for the reserve button when it's directly in the header */
header > .reserve-button {
    padding: 8px 15px; /* Smaller padding for header button */
    font-size: 0.9em; /* Smaller font size for header button */
    margin-top: 0; /* Remove margin-top from header button */
    margin-right: 20px; /* Add some right margin to separate from nav */
    background: linear-gradient(135deg, #F06292 0%, #E91E63 100%); /* Lighter raspberry pink gradient */
    color: white; /* White text */
    text-decoration: none; /* Remove underline */
    border-radius: 8px; /* Rounded corners like hero button */
    font-weight: 600; /* Same font weight as hero button */
    transition: all 0.3s ease; /* Smooth transition for hover effect */
    cursor: pointer; /* Add cursor pointer */
}

header > .reserve-button:hover {
    background: white; /* White background on hover */
    color: #E91E63; /* Raspberry pink text on hover */
    transform: translateY(-3px); /* Same upward movement as hero button */
    border: 2px solid #E91E63; /* Add raspberry pink border on hover */
}

.header-nav {
    margin-left: auto; /* Push the nav to the right */
}

.header-nav ul {
    list-style: none;
    display: flex;
    align-items: center; /* Align items vertically in the nav */
}

.header-nav li {
    margin: 0 20px; /* Keep consistent spacing for all nav items */
}

.header-nav a {
    text-decoration: none;
    color: #917d5c80;
    font-weight: bold;
    font-size: 1.3em;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: #5c4e3d;
}

.menu-button {
    display: none; /* Hidden by default, shown on mobile */
    background: linear-gradient(135deg, #F06292 0%, #E91E63 100%);
    border: none;
    color: white;
    font-size: 1.8em;
    cursor: pointer;
    z-index: 1003; /* Above everything */
    position: fixed;
    top: 15px;
    right: 20px;
    border-radius: 8px;
    padding: 4px 8px;
    transition: all 0.3s ease;
}

.menu-button:hover {
    background: white;
    color: #F06292;
    transform: translateY(-2px);
    border: 2px solid #F06292;
}

/* Background Image */
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/fond.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Services Section */
.services-section {
    padding: 50px 20px;
    text-align: center;
}

.service-item {
    margin-bottom: 40px;
}

.service-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.8em;
    color: #7a6a53;
    margin-bottom: 15px;
}

.service-item p {
    max-width: 600px;
    margin: 0 auto 20px;
}

.service-link {
    display: inline-block;
    background: linear-gradient(135deg, #F06292 0%, #E91E63 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-link:hover {
    background: white;
    color: #F06292;
    transform: translateY(-3px);
    border: 2px solid #F06292;
}

/* Voyages Section */
.voyages-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #fdfaf6;
}

.voyages-section h2,
.formations-section h2,
.about-me-section h2 {
    font-size: 2.2em;
    color: #7a6a53;
    margin-bottom: 30px;
}

.voyages-content,
.formations-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.voyages-content p,
.formations-content p {
    margin-bottom: 20px;
}

.voyage-images,
.formation-images {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.voyage-images img,
.formation-images img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Formations Section */
.formations-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #f8f9fa;
}

.button {
    display: inline-block;
    background: linear-gradient(135deg, #F06292 0%, #E91E63 100%);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.button:hover {
    background: white;
    color: #F06292;
    transform: translateY(-3px);
    border: 2px solid #F06292;
}

/* About Me Section */
.about-me-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #f0f0f0;
}

.about-me-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.about-me-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 30px;
    border: 5px solid #d97ac3;
}

.about-me-text p {
    margin-bottom: 15px;
    text-align: left;
    line-height: 1.8;
    color: #4a4a4a; /* Adjusted for better contrast with light background */
}

.about-me-text p:last-child {
    margin-bottom: 0;
}

/* Content Section for individual service pages */
.content-section {
    padding: 50px 20px;
    background-color: #fdfaf6;
}

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

.content-wrapper {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content-wrapper h2 {
    font-size: 2.2em;
    color: #7a6a53;
    margin-bottom: 25px;
    margin-top: 40px;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    font-size: 1.6em;
    color: #5a3a4f;
    margin-bottom: 15px;
    margin-top: 30px;
}

.content-wrapper p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.content-wrapper ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-wrapper li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #4a4a4a;
}

.content-wrapper .signature {
    font-style: italic;
    color: #7a6a53;
    margin: 30px 0;
    padding: 15px;
    background-color: rgba(234, 219, 198, 0.3);
    border-left: 4px solid #d4b88c;
    border-radius: 4px;
}

.content-wrapper blockquote {
    font-size: 1.4em;
    font-style: italic;
    color: #5a3a4f;
    margin: 30px 0;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-left: 4px solid #ff6262;
    border-radius: 8px;
}

.content-wrapper cite {
    display: block;
    text-align: right;
    font-style: normal;
    color: #7a6a53;
    margin-top: 10px;
    font-weight: 600;
}

/* Service Cards */
.service-card {
    background-color: rgba(234, 219, 198, 0.3);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid #d4b88c;
}

.service-card h3 {
    color: #5a3a4f;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.service-card p {
    margin-bottom: 20px;
}

.service-card .button {
    margin-top: 15px;
}

/* Important Note */
.important-note {
    background-color: rgba(255, 246, 246, 0.8);
    border: 2px solid #ff6262;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

.important-note h3 {
    color: #ff6262;
    margin-bottom: 20px;
    font-size: 1.4em;
}

.important-note p {
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section,
.cta-section-bottom {
    padding: 60px 20px;
    background: linear-gradient(135deg, #eadbc6 0%, #d4b88c 100%);
    text-align: center;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 2.5em;
    color: #5a3a4f;
    margin-bottom: 20px;
}

.cta-container p {
    font-size: 1.2em;
    color: #7a6a53;
    margin-bottom: 40px;
}

.cta-button.large {
    padding: 1.5rem 3rem;
    font-size: 1.3em;
}

/* Introduction Section */
.intro-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #fdfaf6 0%, #f8f9fa 100%);
    text-align: center;
}

.intro-container {
    max-width: 800px;
    margin: 0 auto;
}

.intro-container h2 {
    font-size: 2.5em;
    color: #5a3a4f;
    margin-bottom: 30px;
    font-weight: 600;
}

.intro-container p {
    font-size: 1.2em;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Approach Section */
.approach-section {
    padding: 50px 20px;
    background-color: rgba(234, 219, 198, 0.3);
    text-align: center;
}

.approach-container {
    max-width: 700px;
    margin: 0 auto;
}

.approach-container p {
    font-size: 1.1em;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.approach-container p:last-child {
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: #917d5c80;
    color: #fdfaf6;
    text-align: center;
    padding: 40px 20px 20px;
    margin-top: auto;
    position: relative;
    z-index: 10;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-nav li {
    margin: 0 15px;
}

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

.footer-nav a:hover {
    color: #9a846b;
}

.contact-info {
    margin-top: 20px;
    font-size: 0.9em;
}

.contact-info p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info i {
    margin-right: 10px;
    font-size: 1.2em;
}

.footer-social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social-links a {
    font-size: 1.8em; /* Slightly smaller than main social links */
    color: #fdfaf6;
    transition: color 0.3s ease;
}

.footer-social-links a:hover {
    color: #d4b88c;
}

/* Basic icon styles - Font Awesome is used directly */

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-full-height {
        height: 100vh;
    }

    .postcard-hero {
        min-height: 100vh;
    }

    .header-nav {
        display: none; /* Hide nav by default on mobile */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(51, 51, 51, 0.98);
        z-index: 1002;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .header-nav.active {
        display: flex;
        opacity: 1;
        visibility: visible;
        background-color: rgba(233, 30, 99, 0.95); /* Raspberry pink background for the bubble */
        border: 2px solid #E91E63; /* Raspberry pink border */
        border-radius: 15px; /* Rounded corners for bubble effect */
        width: 200px; /* Adjust width as needed */
        height: auto; /* Adjust height automatically */
        top: 60px; /* Position below the menu button */
        right: 20px; /* Align with the menu button */
        left: auto; /* Override left: 0 */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Add shadow for depth */
        padding: 20px; /* Padding inside the bubble */
    }

    .header-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .header-nav li {
        margin: 20px 0;
    }

    .header-nav a {
        font-size: 1.5em; /* Slightly smaller font for better fit in bubble */
        color: white; /* White text for contrast on red background */
    }

    .header-nav a:hover {
        color: #fdfaf6; /* Lighter color on hover */
    }

    .menu-button {
        display: block;
    }

    header {
        background-color: rgba(234, 219, 198, 0.86);
        backdrop-filter: blur(0px);
        box-shadow: none;
        justify-content: space-between; /* Align button to left, menu button to right */
        transition: backdrop-filter 0.3s ease;
    }

    header.scrolled {
        backdrop-filter: blur(10px);
        background-color: rgba(234, 219, 198, 0.9);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    header > .reserve-button {
        margin-right: auto; /* Push the button to the left */
        margin-left: 0; /* Ensure no left margin from desktop styles */
    }
}

/* Desktop Styles */
@media (min-width: 769px) {
    .services-section {
        display: flex;
        justify-content: space-around;
        align-items: flex-start;
    }

    .service-item {
        flex: 1;
        margin: 0 15px;
    }
}

/* New Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 100px 20px 60px;
    overflow: hidden;
}

/* Soins Hero Specific Styles */
.soins-hero {
    min-height: 100vh; /* Full screen height */
}

.soins-description {
    padding: 2rem;
    max-width: 700px;
    text-align: center;
    margin-top: 2rem;
}

.soins-description p {
    color: #ffffff;
    font-size: 1.2em;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

.soins-description p:last-child {
    margin-bottom: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(234, 219, 198, 0.6) 0%, rgba(146, 125, 92, 0.5) 100%);
    z-index: 1;
}

.hero-header {
    text-align: center;
    margin-bottom: 3rem;
    z-index: 10;
}

.hero-main-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5em;
    color: #5a3a4f;
    margin-bottom: 0.5rem;
}

.hero-main-subtitle {
    font-size: 1.2em;
    color: #6b573b;
    margin-bottom: 0;
}

.hero-content {
    z-index: 10;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.profile-photo {
    width: 250px;
    height: 250px;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
}

.profile-info {
    max-width: 500px;
    margin: 0 auto;
}

.cta-button {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.cta-button.primary {
    background: linear-gradient(135deg, #F06292 0%, #E91E63 100%);
    color: white;
}

.cta-button.primary:hover {
    background: white;
    color: #F06292;
    transform: translateY(-3px);
    border: 2px solid #F06292;
}

/* Mobile Testimonials Section */
.mobile-testimonials-container {
    display: none; /* Hidden by default, shown only on mobile */
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-testimonials-content {
    min-height: 80px;
    display: flex;
    align-items: center;
}

.mobile-testimonial {
    display: none;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
    text-align: center;
}

.mobile-testimonial.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.mobile-stars {
    color: #FFD700;
    font-size: 1.1em;
    margin-bottom: 0.5rem;
}

.mobile-testimonial p {
    color: #4a4a4a;
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 0.85em;
    font-style: italic;
    padding: 0.5rem;
}

/* Social Media Strip */
.social-strip {
    background: linear-gradient(135deg, #eadbc6 0%, #d4b88c 100%);
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 0;
}

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

.social-strip-content {
    text-align: center;
}

.social-links-strip {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.social-link-strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #5a3a4f;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.social-link-strip:hover {
    color: #7a6a53;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.social-link-strip i {
    font-size: 2em;
}

.social-link-strip span {
    font-size: 0.9em;
    font-weight: 500;
}



/* Floating Testimonials Widget */
.floating-testimonials-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 300px;
    background: rgba(243, 227, 205, 0.397);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    z-index: 999;
    font-size: 0.9em;
    transition: all 0.3s ease;
    padding: 1rem;
    opacity: 1;
    visibility: visible;
}

.floating-testimonials-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.floating-testimonials-widget.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.floating-testimonials-content {
    min-height: 100px;
    display: flex;
    align-items: center;
}

.floating-testimonial {
    display: none;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.floating-testimonial.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.floating-stars {
    color: #FFD700;
    font-size: 1.2em;
    margin-bottom: 0.8rem;
}

.floating-testimonial p {
    color: #4a4a4a;
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 0.85em;
    font-style: italic;
    padding: 0.8rem;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 20px 40px;
        min-height: 100vh;
    }

    .soins-hero {
        min-height: 100vh;
        padding: 60px 20px 30px;
    }

    .soins-description {
        padding: 1.5rem;
        margin-top: 1.5rem;
        max-width: 100%;
    }

    .soins-description p {
        font-size: 1em;
        margin-bottom: 0.8rem;
    }

    .profile-photo {
        width: 200px;
        height: 200px;
    }

    .social-link span {
        display: none;
    }

    /* Show mobile testimonials only on mobile */
    .mobile-testimonials-container {
        display: block;
    }

    /* Hide floating testimonials widget on mobile since we have integrated testimonials */
    .floating-testimonials-widget {
        display: none;
    }

    /* Intro and approach sections responsive */
    .intro-section {
        padding: 40px 20px;
    }

    .intro-container h2 {
        font-size: 2em;
        margin-bottom: 25px;
    }

    .intro-container p {
        font-size: 1.1em;
        margin-bottom: 15px;
    }

    .approach-section {
        padding: 40px 20px;
    }

    .approach-container p {
        font-size: 1em;
        margin-bottom: 15px;
    }

    /* Content section responsive styles */
    .content-section {
        padding: 30px 15px;
    }

    .content-wrapper {
        padding: 25px 20px;
    }

    .content-wrapper h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
        margin-top: 30px;
    }

    .content-wrapper h3 {
        font-size: 1.4em;
        margin-bottom: 12px;
        margin-top: 25px;
    }

    .content-wrapper p {
        font-size: 0.95em;
        margin-bottom: 15px;
    }

    .content-wrapper ul {
        padding-left: 20px;
    }

    .content-wrapper li {
        font-size: 0.95em;
        margin-bottom: 8px;
    }

    .service-card {
        padding: 20px;
        margin: 25px 0;
    }

    .important-note {
        padding: 25px 20px;
        margin: 25px 0;
    }

    .cta-section-bottom {
        padding: 40px 20px;
    }

    .cta-container h2 {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .cta-container p {
        font-size: 1.1em;
        margin-bottom: 30px;
    }

    .cta-button.large {
        padding: 1.2rem 2rem;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .cta-button {
        width: 100%;
        justify-content: center;
    }

    /* Hide floating widget on very small screens */
    .floating-testimonials-widget {
        display: none;
    }
}

/* Enhanced Design Elements */
.image-container {
    text-align: center;
    margin: 30px 0;
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.content-image.small {
    max-width: 300px;
}

.content-image.medium {
    max-width: 500px;
}

.content-image.large {
    max-width: 700px;
}

/* Enhanced Quote Styles */
.main-quote {
    font-size: 1.8em;
    font-style: italic;
    color: #5a3a4f;
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(234, 219, 198, 0.3) 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}


/* Text Bubbles */
.text-bubble {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 25px 30px;
    margin: 25px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #ff6262;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.text-bubble:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.text-bubble.highlight {
    background: linear-gradient(135deg, rgba(255, 246, 246, 0.9) 0%, rgba(255, 240, 240, 0.6) 100%);
    border-left-color: #d4b88c;
}

.text-bubble.spiritual {
    background: linear-gradient(135deg, rgba(234, 219, 198, 0.3) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-left-color: #7a6a53;
}

/* Enhanced Button Styles */
.btn-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #F06292 0%, #E91E63 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(240, 98, 146, 0.3);
    border: none;
    cursor: pointer;
}

.btn-enhanced:hover {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    color: #F06292;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 98, 146, 0.4);
    border: 2px solid #F06292;
}

.btn-enhanced.secondary {
    background: linear-gradient(135deg, #7a6a53 0%, #5a3a4f 100%);
    box-shadow: 0 5px 15px rgba(122, 106, 83, 0.3);
}

.btn-enhanced.secondary:hover {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    color: #7a6a53;
    box-shadow: 0 8px 25px rgba(122, 106, 83, 0.4);
    border: 2px solid #7a6a53;
}

/* Enhanced CTA Section */
.cta-section-enhanced {
    background: linear-gradient(135deg, #eadbc6 0%, #d4b88c 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 1;
}

.cta-content-enhanced {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content-enhanced h2 {
    font-size: 2.8em;
    color: #5a3a4f;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-enhanced p {
    font-size: 1.3em;
    color: #7a6a53;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Info Cards */
.info-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(234, 219, 198, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.info-card h3 {
    color: #5a3a4f;
    margin-bottom: 20px;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card .icon {
    font-size: 1.2em;
    color: #ff6262;
}

/* Résalib Reviews Section */
.resalib-reviews-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #fdfaf6 0%, #f0f0f0 100%);
    text-align: center;
}

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

.resalib-reviews-section h2 {
    font-size: 2.5em;
    color: #5a3a4f;
    margin-bottom: 15px;
    font-weight: 600;
}

.resalib-intro {
    font-size: 1.2em;
    color: #7a6a53;
    margin-bottom: 40px;
    font-style: italic;
}

.resalib-widget {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.resalib-widget iframe {
    width: 100%;
    min-height: 400px;
    border: none;
    border-radius: 12px;
}

.resalib-cta {
    margin-top: 20px;
}

.resalib-cta .button {
    background: linear-gradient(135deg, #F06292 0%, #E91E63 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(240, 98, 146, 0.3);
}

.resalib-cta .button:hover {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    color: #F06292;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 98, 146, 0.4);
    border: 2px solid #F06292;
}

/* Responsive Design Enhancements */
@media (max-width: 768px) {
    .main-quote {
        font-size: 1.4em;
        padding: 25px 20px;
        margin: 30px 0;
    }

    .main-quote::before,
    .main-quote::after {
        font-size: 3em;
    }

    .main-quote::before {
        top: -5px;
        left: 15px;
    }

    .main-quote::after {
        bottom: -30px;
        right: 15px;
    }

    .text-bubble {
        padding: 20px 25px;
        margin: 20px 0;
    }

    .btn-enhanced {
        padding: 12px 25px;
        font-size: 1em;
    }

    .cta-section-enhanced {
        padding: 60px 20px;
    }

    .cta-content-enhanced h2 {
        font-size: 2.2em;
        margin-bottom: 15px;
    }

    .cta-content-enhanced p {
        font-size: 1.1em;
        margin-bottom: 30px;
    }

    .info-card {
        padding: 25px 20px;
        margin: 25px 0;
    }

    .info-card h3 {
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    /* Résalib responsive styles */
    .resalib-reviews-section {
        padding: 40px 20px;
    }

    .resalib-reviews-section h2 {
        font-size: 2em;
        margin-bottom: 12px;
    }

    .resalib-intro {
        font-size: 1.1em;
        margin-bottom: 30px;
    }

    .resalib-widget iframe {
        min-height: 400px;
    }

    .resalib-cta .button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .content-image.medium {
        max-width: 100%;
    }

    .content-image.large {
        max-width: 100%;
    }

    .main-quote {
        font-size: 1.2em;
        padding: 20px 15px;
    }

    .text-bubble {
        padding: 18px 20px;
    }

    .btn-enhanced {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }
}
