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

body {
    font-family: "Barlow", sans-serif;
    letter-spacing: 0.09rem;
    overflow-x: hidden;
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.3s, backdrop-filter 0.3s;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    min-height: 80px;
}

header.scrolled .header-content {
    min-height: 65px;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    margin: 0 auto;
}

.logo img {
    height: 100px;
    display: block;
}

.phone {
    font-size: 14px;
    color: #6D5952;
}

.book {
    border-radius: 50px;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    background-color: #6D5952;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.header-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 10px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.header-nav a {
    text-decoration: none;
    color: #6D5952;
    font-size: 16px;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    white-space: nowrap;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #fff;
    border-top: 1px solid #ddd;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 99;
}

.mobile-menu a {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    text-decoration: none;
    color: #6D5952;
}

.cgv-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cgv-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

.cgv-date {
    text-align: center;
    color: #999;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.cgv-section {
    margin-bottom: 25px;
}

.cgv-section h2 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.cgv-section p {
    line-height: 1.6;
    margin: 5px 0;
}

a {
    color: #d8b4a6;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.footer-contact {
    position: relative;
    background-color: #f3e6d5;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 3rem 2rem;
    flex-wrap: wrap;
    color: #000;
}

.footer-contact-content {
    position: relative;
    z-index: 2;
    max-width: 400px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-contact-info i {
    font-size: 1.4rem;
    margin-right: 0.8rem;
    color: #50403a;
}

.footer-contact-socials {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    padding: 0;
    margin: 0;
    color: #50403a;
}

.footer-contact-socials li {
    font-size: 1.4rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.footer-contact-socials li:hover {
    transform: scale(1.2);
}

.footer-contact-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 45%;
    background-image: url('./img/footer-img.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.footer-contact-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.footer-contact-links li a {
    color: #6D5952;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s, text-decoration 0.3s;
}

.footer-contact-links li a:hover {
    color: #090909;
    text-decoration: underline;
}

.footer-contact-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

#uniqueTestimonialCarousel2 {
    position: relative;
    background: url('./img/wellness.jpeg') center center / cover no-repeat;
    padding: 80px 20px;
    color: #6D5952;
    overflow: hidden;
}

.unique-carousel2-overlay {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.unique-carousel2-wrapper {
    position: relative;
    width: 100%;
    height: auto;
}

.unique-carousel2-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    text-align: center;
    padding: 20px 0;
}

.unique-carousel2-slide.active {
    opacity: 1;
    position: relative;
}

.unique-carousel2-text {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.unique-carousel2-author {
    font-style: italic;
    font-size: 1rem;
}

.unique-carousel2-arrow {
    background: #6D5952;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.3s;
    z-index: 2;
    border-radius: 50%;
}

.unique-carousel2-prev {
    left: -60px;
}

.unique-carousel2-next {
    right: -60px;
}

.footer-contact-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.footer-contact-links li a {
    color: #6D5952;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s, text-decoration 0.3s;
}

.footer-contact-links li a:hover {
    color: #090909;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .hamburger {
        display: block;
        padding: 5px;
        font-size: 24px;
        order: 1;
    }

    .phone.desktop-only {
        display: none;
    }

    .hero-section {
        padding: 0;
    }

    .footer-contact {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contact-background {
        position: static;
        width: 100%;
        height: 250px;
        margin-top: 2rem;
        background-position: center top;
    }

    .footer-contact-background::after {
        background-color: rgb(0 0 0 / 0%);
    }

    .header-content {
        min-height: 80px;
    }

    header.scrolled .header-content {
        min-height: 80px;
    }

    .header-left {
        order: 1;
        gap: 10px;
    }

    .logo {
        order: 2;
        margin: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo img {
        height: 80px;
    }

    header.scrolled .logo img {
        height: 80px;
    }

    .header-right {
        order: 3;
        justify-content: flex-end;
        gap: 0;
    }

    .book {
        padding: 8px 15px;
        font-size: 13px;
    }

    .mobile-menu {
        top: 75px;
    }

    header.scrolled .mobile-menu {
        top: 65px;
    }
}