/* Base Variables */
:root {
    /* New Color Palette */
    --site-bg: #e8fadb;
    --header-footer: #739659;
    --purple: #7f3f98;
    --sand: #f3f1d9;
    --dark-green: #5f754e;
    --gold: #facf07;
    --white: #ffffff;
    
    /* Layout */
    --max-width: 1200px;
    --container-padding: 0 1rem;
    --section-padding: 4rem 0;
    --border-radius: 8px;
}

/* Base Reset and Typography */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--site-bg);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Site Layout */
.site-wrapper {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    background-color: var(--white);
}

/* Container Layout */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Header and Footer Extended Background */
.main-header,
.main-footer {
    background-color: var(--header-footer);
    width: 100%;
    position: relative;
}

.main-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--gold);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--sand);
    color: var(--dark-green);
    border: 1px solid var(--dark-green);
}

.btn-secondary {
    background-color: var(--dark-green);
    color: var(--sand);
    border: 1px solid var(--white);
}

/* Carousel Navigation */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

.carousel-arrow i {
    color: var(--dark-green);
    font-size: 1rem;
}

.section-title {
    font-family: "amandine", sans-serif;
    color: var(--purple);
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 0.5rem;
    font-weight: 300;
    position: relative;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    line-height: 1.4; /* increased to prevent overlap */
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 1rem;
    width: calc(100% - 2rem);
    height: 2px;
    background-color: var(--purple);
    transform: none;
}

/* Responsive Typography */
@media screen and (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
}

@media screen and (max-width: 480px) {
    html {
        font-size: 12px;
    }
}

/*===================================
  Header Styles
====================================*/
.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--header-footer);
    border-bottom: 2px solid var(--gold);
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.header-content {
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.15rem 1rem;
    gap: 2rem;
}

.logo {
    flex: 0 0 250px;
    padding: 0.4rem 0;
}

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

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu li a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--sand);
}

.nav-menu .booking-link a {
    background-color: var(--sand);
    color: #333 !important;
    padding: 0.6rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.nav-menu .booking-link a:hover {
    background-color: var(--white);
    color: #333 !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1000;
}

.mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--white);
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) { top: 0; }
.mobile-menu-toggle span:nth-child(2) { top: 10px; }
.mobile-menu-toggle span:nth-child(3) { top: 20px; }

/* Mobile Menu Active States */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

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

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

/* Responsive Styles */
@media screen and (max-width: 1030px) {
    .nav-menu {
        gap: 1rem;
    }
}

@media screen and (max-width: 940px) {
    /* legacy styles */
    
    .nav-menu {
        background-color: var(--dark-sage);
        z-index: 900;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 1000;
    }
    
    
    /* end legacy styles */
    
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 50px;
        right: -300px;
        width: 300px;
        height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: right 0.3s ease;
        padding: 2rem 0 2rem;
        gap: 0;
    }

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

    .nav-menu li {
        width: 100%;
        text-align: center;
        background-color: var(--header-footer);
        margin: 0;
        padding: 1rem;
        border-bottom: 1px solid #d9cdb8;
    }

    .nav-menu li a {
        display: block;
        width: 100%;
        font-size: 1.2rem;
        
    }

    .nav-menu .booking-link {
        
        padding: 2rem;
    }

    .nav-menu .booking-link a {
        width: 100%;
        text-align: center;
        padding: 0.5rem 1rem;
    }

    .mobile-menu-toggle {
        width: 30px;
        height: 30px;
        position: relative;
        margin-left: auto;
    }

    .mobile-menu-toggle.active {
        position: fixed;
        /* right: .5rem;
        top: 1rem; */
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 14px;
    }

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

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

/*===================================
  Hero Section
====================================*/
.hero-section {
    position: relative;
    width: 100%;
    background-color: #000;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
}

.carousel-item {
    position: relative;
    width: 100%;
    height: 500px;
    background-color: #000;
    overflow: hidden;
}

.carousel-item img {
    position: absolute;
    height: 100%;
    width: 100%;
    max-width: 1200px;
    object-fit: cover;
    object-position: right center;
    right: 0;
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    width: 500px;
    min-height: 280px;
    background-color: rgba(51, 51, 51, 0.85);
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-content h2 {
    font-family: "amandine", sans-serif;
    color: var(--gold);
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.carousel-content p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.carousel-content .btn {
    background-color: var(--sand);
    color: #333;
    border: 1px solid var(--white);
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    /* align-self: flex-start; */
}

.carousel-content .btn:hover {
    background-color: var(--white);
    color: #333;
}

/* Carousel Navigation */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-arrow i {
    color: var(--white);
    font-size: 1rem;
}

/* Responsive Styles */
@media screen and (min-width: 1201px) {
    .carousel-item img {
        right: calc((100% - 1200px) / 2);
    }
}

@media screen and (max-width: 1200px) {
    .carousel-item {
        height: 450px;
    }
}

@media screen and (max-width: 992px) {
    .carousel-content {
        width: 450px;
        left: 5%;
    }
    .carousel-item img {
        width: 100vw;
        max-width: none;
        position: absolute;
        right: 50%;
        transform: translateX(50%);
    }
}

@media screen and (max-width: 768px) {
    .carousel-item {
        height: 400px;
    }
    .carousel-item img {
        right: 0;
        transform: none;
        width: 100%;
        object-position: right center;
    }
    .carousel-content {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        min-height: 260px;
        padding: 2rem;
        background-color: rgba(51, 51, 51, 0.65);
    }
    .carousel-content h2 {
        font-size: 2rem;
    }
    .carousel-content .btn {
        align-self: center;
    }
    .carousel-arrow {
        width: 35px;
        height: 35px;
    }
}

@media screen and (max-width: 480px) {
    .carousel-item {
        height: 350px;
    }
    .carousel-content {
        padding: 1.5rem;
        min-height: 240px;
    }
    .carousel-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    .carousel-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/*===================================
  Services Section
====================================*/
.services-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

/* .services-section .section-title {
    font-family: "amandine", sans-serif;
    color: var(--purple);
    font-size: 2.8rem;
    text-align: left;
    margin-bottom: 0.5rem;
    font-weight: 300;
    position: relative;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    line-height: 1.25rem;
}

.services-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 1rem;
    width: calc(100% - 2rem);
    height: 2px;
    background-color: var(--purple);
    transform: none;
} */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: var(--max-width);
    padding: 0 1rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.service-category {
    font-family: "amandine", sans-serif;
    color: var(--dark-green);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.scroll-divider {
    background-image: url('../img/scrolldiv.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 15px;
    margin: 0.5rem 0 1rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.service-name {
    font-size: 1rem;
    color: #333;
}

.service-price {
    font-weight: 600;
    color: var(--dark-green);
    white-space: nowrap;
}

/* In Home Section */
.in-home-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.in-home-section .service-card {
    padding: 1.5rem 2rem;
}

.in-home-section .service-category {
    margin-bottom: 0.5rem;
}

.in-home-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    gap: 2rem;
}

.in-home-pricing {
    font-size: 1.1rem;
    margin: 0;
    color: #333;
}

.in-home-contact {
    color: var(--dark-green);
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card {
        width: 100%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        max-width: 100%;
    }
    
    .services-section .section-title {
      /*  text-align: center; */
    }
    
    .services-section .section-title::after {
        left: 0;
        width: 100%;
    }
    
    .service-category {
        font-size: 2rem;
    }
    
    .service-name, .service-price {
        font-size: 1.25rem;
    }
    
    .in-home-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .in-home-pricing {
        margin-bottom: 0.5rem;
    }
}

/*===================================
  Specials Section
====================================*/
/* Special Buttons Styling */
.specials-section {
    padding: var(--section-padding);
}

.special-buttons {
    display: flex;
    justify-content: center; /* Center the buttons */
    gap: 1rem;
    margin-top: 1.5rem;
    width: 100%;
}

.special-buttons a.btn {
    display: inline-block;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    min-width: 180px;
}

.special-buttons a.btn-outline {
    background: transparent;
    border: 1px solid var(--dark-green);
    color: var(--dark-green);
}

.special-buttons a.btn-outline:hover {
    background-color: rgba(95, 117, 78, 0.1);
}

.special-buttons a.btn-solid {
    background: var(--dark-green);
    border: 1px solid var(--dark-green);
    color: var(--white);
}

.special-buttons a.btn-solid:hover {
    background-color: var(--purple);
    border-color: var(--purple);
}

/* Tooltip styling */
.tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(51, 51, 51, 0.9);
    color: white;
    text-align: center;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    white-space: normal;
    width: max-content;
    max-width: 300px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 100;
    pointer-events: none;
    margin-bottom: 8px;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(51, 51, 51, 0.9) transparent transparent transparent;
}

.special-buttons a:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .special-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .special-buttons a.btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Special Section Styling Improvements */
.special-item {
    margin-bottom: 1.5rem;
    background-color: var(--sand);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.special-header {
    padding: 1.25rem;
    position: relative;
    cursor: pointer;
}

.special-expiry {
    font-size: 0.875rem;
    color: var(--dark-green);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.special-header h3 {
    font-family: "amandine", sans-serif;
    color: var(--dark-green);
    font-size: 2rem;
    margin: 0 0 0.25rem;
    padding-right: 100px;
    font-weight: 300;
    line-height: 1.2;
}

.special-short-desc {
    margin: 0;
    padding-right: 100px;
    color: #333;
}

.special-price {
    position: absolute;
    top: 1.25rem;
    right: 3rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-green);
}

.toggle-button {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-green);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.toggle-button i {
    transition: transform 0.3s ease;
    font-size: 1.25rem;
}

.toggle-button.active i {
    transform: rotate(180deg);
}

/* Content Area */
.special-content {
    display: none;
    padding: 0 1.25rem 1.25rem;
}

.special-content-inner {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.special-image {
    flex: 0 0 200px;
}

.special-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    display: block;
}

.special-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.special-info p {
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .special-header h3 {
        padding-right: 60px;
        font-size: 1.75rem;
    }
    
    .special-price {
        position: static;
        margin: 0.5rem 0;
        text-align: left;
    }
    
    .special-content-inner {
        flex-direction: column;
        padding: 1.25rem;
    }
    
    .special-image {
        flex: 0 0 auto;
        margin-bottom: 1.25rem;
        max-width: 100%;
    }
}

.tooltip-trigger::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem;
    background-color: rgba(51, 51, 51, 0.9);
    color: white;
    border-radius: 4px;
    font-size: 0.875rem;
    white-space: normal;
    width: max-content;
    max-width: 300px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.tooltip-trigger:hover::before {
    visibility: visible;
    opacity: 1;
    bottom: calc(100% + 10px);
}

/*===================================
  About Section
====================================*/
.about-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.about-container {
    max-width: 1000px;
    margin: 2rem auto 0;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.about-profile {
    flex: 0 0 auto;
    text-align: center;
    align-self: flex-start;
}

.profile-image {
    width: 250px;
    height: 333px;
    border-radius: 125px / 166px;
    overflow: hidden;
    margin: 0 auto 1rem;
    position: relative;
    border: 3px solid rgba(0, 0, 0, 0.1);
}

.profile-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 135px / 176px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    pointer-events: none;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name {
    font-family: "amandine", sans-serif;
    color: #333;
    font-size: 1.8rem;
    margin: 1rem 0 0.5rem;
    font-weight: 300;
    text-align: center;
}

.profile-email {
    font-size: 0.9rem;
    color: var(--dark-green);
    text-decoration: none;
    display: block;
    text-align: center;
    margin-bottom: 0.5rem;
}

.profile-address {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 0.25rem;
}

.profile-location-note {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    text-align: center;
}

.about-content {
    flex: 1;
}

.intro-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .about-container {
        max-width: 100%;
        padding: 0 1rem;
    }
}

@media screen and (max-width: 768px) {
    .about-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .about-profile {
        align-self: center;
        margin-bottom: 1rem;
    }

    .profile-name {
        font-size: 1.5rem;
    }

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

    .intro-text {
        font-size: 1.1rem;
        font-weight: 500 !important;
    }
}

/*===================================
  Testimonials Section
====================================*/
.testimonials-section {
    background-color: var(--white);
    padding-bottom: 0;
    padding-top: 3rem;
    padding-bottom: 2rem;
    position: relative;
}

.testimonials-wrapper {
    background-color: var(--purple);
    padding: 3rem 0;
    margin-top: -1rem; /* Connects with title underline */
    position: relative;
    margin-bottom: 3rem; 
}

.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    height: 360px; /* Fixed height for desktop */
}

.testimonial-item {
    padding: 0 1rem;
    height: 360px; /* Match the carousel height */
}

.testimonial-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%; /* Fill the item height */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-stars {
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 1.5rem;
    margin: 0 0.25rem;
}

.testimonial-text {
    position: relative;
    padding: 2rem 0;
    margin: 0;
    text-align: left;
    flex-grow: 1;
    display: flex;
    align-items: center;
    width: 100%;
    overflow-y: auto; /* Add scrolling for very long testimonials */
    max-height: 200px; /* Control maximum height of text */
}

.testimonial-text::before,
.testimonial-text::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--purple);
}

.testimonial-text::before {
    top: 0;
}

.testimonial-text::after {
    bottom: 0;
}

.testimonial-author {
    font-family: 'Allison', cursive;
    color: var(--dark-green);
    font-size: 2rem;
    margin: 1rem 0 0;
    text-align: center;
    width: 100%;
}

/* Carousel Navigation for Testimonials */
.testimonials-section .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-section .carousel-arrow:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.testimonials-section .carousel-prev {
    left: 20px;
}

.testimonials-section .carousel-next {
    right: 20px;
}

.testimonials-section .carousel-arrow i {
    color: var(--white);
    font-size: 1rem;
}

/* Slick Carousel Overrides */
.testimonials-carousel .slick-slide {
    opacity: 0;
    transition: opacity 0.8s linear; /* Match the speed in JS */
}

.testimonials-carousel .slick-active {
    opacity: 1;
}

.testimonials-carousel .slick-list,
.testimonials-carousel .slick-track {
    height: 100%; /* Ensure slick elements respect our fixed height */
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .testimonials-section .carousel-arrow {
        width: 35px;
        height: 35px;
    }
    
    .testimonials-carousel,
    .testimonial-item {
        height: 340px; /* Slightly shorter on mobile */
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        padding: 1.5rem 0;
        max-height: 180px; /* Adjust maximum height for mobile */
    }
    
    .testimonial-author {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    .testimonials-carousel,
    .testimonial-item {
        height: 320px; /* Even shorter on very small screens */
    }
    
    .testimonial-text {
        max-height: 160px; /* Further adjust maximum height */
    }
}

/*===================================
  Products Section
====================================*/
.products-section {
    background-color: var(--white);
    padding: var(--section-padding);
}

.products-description {
    max-width: 900px;
    margin: 2rem auto;
    text-align: center;
}

.products-grid {
    max-width: 900px;
    margin: 3rem auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.product-category {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.product-category h3 {
    font-family: "amandine", sans-serif;
    color: var(--dark-green);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.scroll-divider {
    background-image: url('../img/scrolldiv.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 15px;
    margin: 0.5rem 0 1.5rem;
}

.product-image {
    margin: 1.5rem 0;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

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

.product-list li {
    margin: 0.75rem 0;
    color: var(--dark-green);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-category {
        padding: 1.5rem;
    }
}

/*===================================
  Contact Section
====================================*/
.contact-section {
    background-color: var(--white);
    padding: var(--section-padding);
    padding-top: 20px;
}

.contact-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--sand);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hide honeypot field */
.hp-field {
    display: none;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

label {
    margin-bottom: 0.5rem;
    color: var(--dark-green);
    font-weight: 500;
}

input, select, textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    background-color: var(--white);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--dark-green);
    box-shadow: 0 0 0 2px rgba(95, 117, 78, 0.2);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.g-recaptcha {
    margin-bottom: 1.5rem;
}

.contact-form .btn {
    background-color: var(--dark-green);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-weight: 600;
}

.contact-form .btn:hover {
    background-color: var(--purple);
    transform: translateY(-2px);
}

#form-message {
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: var(--border-radius);
    display: none;
}

#form-message.success {
    background-color: rgba(95, 117, 78, 0.2);
    color: var(--dark-green);
    border: 1px solid var(--dark-green);
    display: block;
}

#form-message.error {
    background-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid #dc3545;
    display: block;
}

@media screen and (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/*===================================
  Footer Styles
====================================*/
.main-footer {
    background-color: var(--header-footer);
    color: var(--white);
    padding: 4rem 0 1rem;
    border-top: 2px solid var(--gold);
}

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

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

.footer-contact, .footer-hours, .footer-newsletter {
    margin-bottom: 1.5rem;
}

.footer-contact h3, .footer-hours h3, .footer-newsletter h3, .footer-map h3 {
    font-family: "amandine", sans-serif;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.footer-contact p, .footer-hours p, .footer-newsletter p {
    margin-bottom: 0.5rem;
}

.footer-contact i {
    width: 20px;
    margin-right: 0.5rem;
    color: var(--sand);
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--sand);
    text-decoration: underline;
}

.subtext {
    font-size: 0.9rem;
    margin-left: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
    max-width: 100%;
}

.newsletter-form input {
    flex-grow: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    margin-right: -1px;
    border-right: none;
}

.newsletter-form button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background-color: var(--sand);
    color: var(--dark-green);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--white);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    border: 0;
}

.get-directions {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--sand);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.get-directions:hover {
    color: var(--white);
    text-decoration: underline;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-right: 1.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: right;
}

.creator-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    line-height:1rem;
}

.creator-info span {
    margin-right: 0.5rem;
}

.creator-info a {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.creator-info a:hover {
    color: var(--white);
}

.creator-info img {
    width: 70px;
    height: 70px;
    margin-right: 0.3rem;
}

.footer-btn {
    background-color: var(--sand);
    color: #333;
    border: 1px solid var(--white);
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration:none;
    border-radius: var(--border-radius);
}

/* Responsive Footer */
@media screen and (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-map {
        grid-column: 1 / -1;
    }
}

@media screen and (max-width: 768px) {
    .footer-info {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
    
    .footer-links, .footer-copyright {
        text-align: center;
        width: 100%;
    }
    
    .footer-links {
        margin-bottom: 1rem;
    }
    
    .footer-links a {
        display: inline-block;
        margin: 0.5rem 0.75rem;
    }
    
    .creator-info {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        margin-right: 0;
        margin-bottom: 0.5rem;
        border-radius: var(--border-radius);
        border-right: 1px solid #ddd;
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius);
        width: 100%;
    }
}

/*===================================
  Legal Pages (Terms & Privacy)
====================================*/
.page-header {
    background-color: var(--header-footer);
    color: var(--white);
    padding: 6rem 0 2rem;
    text-align: center;
    border-bottom: 2px solid var(--gold);
}

.page-header h1 {
    font-family: "amandine", sans-serif;
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0;
    font-weight: 300;
}

.legal-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.legal-section .section-title {
    margin-bottom: 2rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.legal-content h3 {
    color: var(--dark-green);
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Anchor link navigation for direct section access */
.legal-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1rem;
    background-color: var(--sand);
    border-radius: var(--border-radius);
}

.legal-nav a {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: var(--dark-green);
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.legal-nav a:hover {
    background-color: var(--dark-green);
    color: var(--white);
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .page-header {
        padding: 5rem 0 1.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .legal-section {
        padding: 2rem 0;
    }
    
    .legal-content h3 {
        font-size: 1.3rem;
    }
}

/*===================================
  Responsive Styles
====================================*/
@media screen and (max-width: 1200px) {
    :root {
        --section-padding: 3.5rem 0;
    }
    
    h1 {
        font-size: 3.2rem;
    }
    
    h2 {
        font-size: 2.8rem;
    }
    
    h3 {
        font-size: 2.2rem;
    }
    
    .carousel-item img {
        height: 450px;
    }
    
    .carousel-content {
        width: 50%;
        padding: 2.5rem;
    }
}

@media screen and (max-width: 992px) {
    :root {
        --section-padding: 3rem 0;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    h3 {
        font-size: 2rem;
    }
    
    /* .carousel-item img {
        height: 400px;
    }
    
    .carousel-content {
        width: 60%;
        padding: 2rem;
    } */
    
    .founder-info {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-image {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --section-padding: 2.5rem 0;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.3rem;
    }
    
    h3 {
        font-size: 1.8rem;
    }
    
    
    
   /* .carousel-item img {
        height: 350px;
    }
    
    .carousel-content {
        width: 80%;
        left: 10%;
        background-color: rgba(0, 0, 0, 0.7);
        text-align: center;
    }
    
    .carousel-arrow {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }*/
    
    .special-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .special-short-desc, .special-price {
        margin-top: 0.5rem;
        margin-right: 0;
    }
    
    .toggle-icon {
        position: absolute;
        top: 1.2rem;
        right: 1.2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
    
    .footer-links, .footer-copyright {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .creator-info {
        justify-content: center;
    }
} 

@media screen and (max-width: 576px) {
    :root {
        --section-padding: 2rem 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
    }
    .carousel-content {
        padding: 2.5rem;
        width: 75%;
    }
    
    /* 
    
    .carousel-item img {
        width: 75%;
        padding: 2.5rem;
    }
    .carousel-content h2 {
        margin-bottom: 0.5rem;
    }
    
    .carousel-content p {
        margin-bottom: 1rem;
    } */
    
    .product-item {
        min-width: 200px;
    }
}

/* Consultation Section - fixed width solution */
.consultation-section {
    max-width: var(--max-width);
    margin: 0 auto 2rem;
    padding: 0 1rem;
}

.consultation-section .service-card {
    width: 100%;
    box-sizing: border-box;
}

/* Fix the word-break properties for better text wrapping */
.consultation-section .in-home-contact {
    flex: 1;
    word-wrap: break-word;
    word-break: break-word;
    margin: 0;
}

/* Make sure we match the in-home-section width */
.consultation-section,
.in-home-section {
    width: 100%;
    max-width: 100%;
}

/* Force the consultation-section to follow the exact same rules as in-home-section */
@media screen and (max-width: 768px) {
    .consultation-section .in-home-content {
        flex-direction: column;
        text-align: center;
    }
}

.consultation-section .in-home-contact {
    white-space: normal !important; /* Override the nowrap property */
}

/* Promo Modal */
.promo-modal.hidden { display: none; }
.promo-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
}
.promo-dialog {
  position: fixed; top:50%; left:50%;
  transform: translate(-50%,-50%);
  background: #fff; padding:2rem; border-radius:8px;
  max-width: 90%; width: 360px; z-index:1001;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.promo-close {
  position: absolute; top:.5rem; right:.5rem;
  background:none; border:none; font-size:1.5rem; cursor:pointer;
}
.promo-codes { display:flex; gap:.5rem; flex-wrap:wrap; justify-content:center; margin:1rem 0; }
.promo-code-btn {
  flex:1 1 auto; padding:.75rem; border:1px solid #ccc; border-radius:4px;
  background:#f7f7f7; cursor:pointer;
}
.promo-book {
  display:inline-block; margin-top:1rem;
  padding:.75rem 1.5rem; background:#ff7a59; color:#fff; border-radius:4px;
  text-decoration:none;
}

/* Fallback Bar */
.promo-bar {
  background: #ff7a59;  /* same as .promo-book */
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: .5rem 0;
  text-align:center;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
}

#promo-bar-open {
  background:#facf07; border:none; padding:.5rem 1rem; border-radius:4px;
  color:#333; font-weight:600; cursor:pointer;
}

.promo-bar.hidden { display:none; }

/*===================================
  Monthly Specials Section
====================================*/
.monthly-specials-section {
    padding: var(--section-padding);
}

.monthly-offers-container {
    display: flex;
    flex-direction: column; /* Stacks cards by default for mobile */
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Switches to a two-column layout for larger screens */
@media screen and (min-width: 768px) {
    .monthly-offers-container {
        flex-direction: row; /* Places cards side-by-side */
        align-items: stretch; /* Makes cards equal height */
    }
    .monthly-card {
        flex: 1 1 50%; /* Each card takes up half the space */
    }
}

.monthly-card {
    background-color: var(--white);
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.monthly-card-header {
    padding: 0.6rem 1rem;
    text-align: center;
}

.monthly-card-header h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.monthly-card.current .monthly-card-header {
    background-color: var(--purple);
    color: var(--white);
}

.monthly-card.upcoming .monthly-card-header {
    background-color: #f0f0f0;
    color: #666;
}

.monthly-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    flex-grow: 1;
}

.monthly-card .month-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

.monthly-card h5 {
    font-family: "amandine", sans-serif;
    color: var(--dark-green);
    font-size: 1.8rem;
    margin: 0.5rem 0;
    font-weight: 300;
    line-height: 1.2;
}

.monthly-card p {
    color: #333;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.monthly-card.current p {
    flex-grow: 1;
}

.monthly-card strong {
    font-weight: 600;
}

.monthly-offer-buttons {
    margin-top: auto;
    padding-top: 1rem;
}

.upcoming-separator {
    border: 0;
    height: 1px;
    background-color: #e0e0e0;
    margin: 1.5rem auto;
    width: 80%;
}
