#heroCarousel.carousel-fade .carousel-item {
    opacity: 0;
}

#heroCarousel.carousel-fade .carousel-item.active,
#heroCarousel.carousel-fade .carousel-item-next.carousel-item-start,
#heroCarousel.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

#heroCarousel.carousel-fade .active.carousel-item-start,
#heroCarousel.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

#heroCarousel.carousel-fade .carousel-item,
#heroCarousel.carousel-fade .active.carousel-item-start,
#heroCarousel.carousel-fade .active.carousel-item-end {
    transform: translateX(0);
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #4a4a4a;
    background-color: #fefefe;
    overflow-x: hidden;
}

/* Color Palette - Calming Naturals */
:root {
    --sage-green: #8fa68e;
    --soft-green: #b4c5a9;
    --warm-beige: #f5f1e8;
    --earthy-brown: #6b5b4d;
    --light-cream: #faf9f6;
    --muted-gray: #8b8b8b;
    --accent-green: #7a9b76;
    --text-dark: #3a3a3a;
    --text-light: #6b6b6b;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: var(--earthy-brown);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--earthy-brown);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background-color: var(--light-cream);
    padding: 2rem 3rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
    font-size: 1.8rem;
    color: var(--earthy-brown);
    font-weight: 700;
}


.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-green);
}

/* Hero Section */
.hero {
    display: flex;
    min-height: 100vh;
    align-items: center;
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--soft-green) 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--earthy-brown);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Slideshow */
#heroCarousel {
    width: 450px;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    position: relative;
}

#heroCarousel .carousel-inner {
    height: 100%;
    position: relative;
    overflow: hidden;
}

#heroCarousel .carousel-item {
    height: 100%;
    transition: opacity 0.6s ease-in-out;
}

#heroCarousel .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}


#heroCarousel .carousel-indicators {
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    margin: 0;
    padding: 0;
}

#heroCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 0.25rem;
}

#heroCarousel .carousel-indicators button.active {
    background-color: var(--sage-green);
}

.hero-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.hero-placeholder {
    background: linear-gradient(135deg, var(--sage-green), var(--accent-green));
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-placeholder p {
    margin-top: 1rem;
    font-size: 1.5rem;
    color: white;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-green), var(--sage-green));
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(122, 155, 118, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(122, 155, 118, 0.4);
}

/* About Section */
.about {
    padding: 8rem 0;
    background-color: var(--light-cream);
}

.about .container {
    max-width: 1200px;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-green), var(--sage-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem auto;
}

.feature-item h4 {
    color: var(--earthy-brown);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.about-content {
    animation: fadeInUp 1s ease-out;
}

.about-images {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-placeholder {
    background: linear-gradient(135deg, var(--sage-green), var(--accent-green));
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 350px;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-image-placeholder:hover {
    transform: translateY(-5px);
}

.about-image-placeholder i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.about-image-placeholder p {
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
}

.about-image {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
}

/* Special Offers Section */
.offers {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--warm-beige) 50%, var(--soft-green) 100%);
    position: relative;
    overflow: hidden;
}

.offers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.offers-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.offers-header h2 {
    color: var(--earthy-brown);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
}


.offers-header .section-intro {
    color: var(--text-light);
    font-size: 1.2rem;
    font-style: italic;
    margin-top: 1rem;
}

.offers-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.offer-item {
    background: white;
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.offer-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-green), var(--sage-green));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

/* Removed offer-item hover animations */

.offer-item.full-moon {
    background: white;
}

.offer-item.referral {
    background: white;
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-green), var(--sage-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 2rem auto 1.5rem auto;
    box-shadow: 0 8px 25px rgba(122, 155, 118, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Removed offer-icon hover animation */

.offer-content {
    padding: 0 2.5rem 2.5rem 2.5rem;
    position: relative;
    z-index: 1;
}

.offer-content h4 {
    color: var(--earthy-brown);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.offer-content p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.offer-highlight {
    text-align: center;
    margin-top: 1.5rem;
}

.discount {
    background: linear-gradient(135deg, var(--accent-green), var(--sage-green));
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(122, 155, 118, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.discount::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.offer-item:hover .discount::before {
    left: 100%;
}

.offer-item:hover .discount {
    box-shadow: 0 8px 30px rgba(122, 155, 118, 0.4);
}


/* USP Section (keeping for reference but not used) */
.usp {
    padding: 3rem 0;
    background-color: white;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.usp-item {
    text-align: center;
    background: var(--light-cream);
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.usp-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-green), var(--sage-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin: 0 auto 0.75rem auto;
}

/* Treatments Preview Section */
.treatments-preview {
    padding: 5rem 0;
    background-color: var(--light-cream);
}

.treatments-preview .section-intro {
    text-align: left;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.treatments-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.treatment-preview-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.treatment-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.treatment-preview-card .treatment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-green), var(--sage-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem auto;
}

.treatment-preview-card h3 {
    margin-bottom: 1rem;
    color: var(--earthy-brown);
}

.treatment-price {
    background-color: var(--soft-green);
    color: var(--earthy-brown);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
}

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

/* Treatments Section (Detailed Page) */
.treatments {
    padding: 5rem 0;
    background-color: var(--sage-green);
    color: white;
}

.treatments .intro-text {
    text-align: left;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.treatment-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-out;
}


.treatment-card .treatment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-green), var(--sage-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem auto;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.treatment-card .treatment-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.treatment-card:hover .treatment-icon::before {
    left: 100%;
}

.treatment-card:hover .treatment-icon {
    box-shadow: 0 8px 30px rgba(122, 155, 118, 0.4);
}

.treatment-card h3 {
    margin-bottom: 1rem;
    color: var(--earthy-brown);
}

.treatment-card p {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.treatment-price {
    background-color: var(--accent-green);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    margin-top: 0.2rem;
    display: inline-block;
    min-width: 60px;
    text-align: center;
}

.treatment-duration {
    background-color: var(--sage-green);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    margin-top: 0.2rem;
    display: inline-block;
    min-width: 60px;
    text-align: center;
}

.treatment-badge {
    background-color: var(--accent-green);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    margin-top: 0.2rem;
    display: inline-block;
    min-width: 60px;
    text-align: center;
}

.treatment-details-btn {
    background: var(--accent-green) !important;
    border: 2px solid var(--accent-green) !important;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px !important;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
    width: 100%;
}

/* CTA Card Styling */
.cta-card {
    grid-column: 1 / -1;
    background: white !important;
    border: 3px solid var(--accent-green);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}


.cta-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-green), var(--sage-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 10px 30px rgba(122, 155, 118, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}


.cta-card h3 {
    color: var(--earthy-brown);
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
    text-shadow: none;
}

.cta-card p {
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.cta-grey-text {
    color: #666666;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-buttons .cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--accent-green), var(--sage-green));
    color: white;
    box-shadow: 0 8px 25px rgba(122, 155, 118, 0.4);
    flex-shrink: 0;
}


/* Override Bootstrap button styles specifically */
.btn.treatment-details-btn {
    border-radius: 50px !important;
}


.booking-cta {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Treatments Header */
.treatments-header {
    text-align: center;
    margin-bottom: 4rem;
}

.treatments-header h2,
.treatments-header p {
    color: white;
}

.custom-massage-cta {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0 4rem 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-green), var(--sage-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 1.5rem;
    color: white;
}

.cta-content p {
    color: var(--earthy-brown);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pricing-option {
    background-color: var(--accent-green);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    min-width: 60px;
    display: inline-block;
    margin-bottom: 0.2rem;
    margin-top: 0.2rem;
}

/* Additional Treatments (Hidden Initially) */
.treatment-card.additional {
    display: none;
}

/* Hide Elfsight branding */
a[href*="elfsight.com/instagram-feed"],
a[title=""][href*="elfsight.com"],
.elfsight-app-de9ec921-66a8-420c-ba67-383fc8ad0bc2 a[href*="elfsight.com"],
div[data-elfsight-app-lazy] a[href*="elfsight.com"],
a[href*="elfsight.com"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
}

/* Additional targeting for any Elfsight links */
a[href*="elfsight.com"] {
    display: none !important;
}

.treatment-card.additional:not(.hidden) {
    display: block;
    animation: fadeInUp 0.6s ease-out;
}

.treatments-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background-color: white;
}

.testimonial-hidden {
    display: none;
}

.testimonials-actions {
    text-align: center;
    margin-top: 3rem;
}

.testimonials-actions .btn {
    width: auto;
    padding-left: 3rem;
    padding-right: 3rem;
}

@media (max-width: 768px) {
    .testimonials-actions .btn {
        width: 100%;
    }
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.testimonial-card {
    background: var(--light-cream);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

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

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.quote-icon {
    color: var(--accent-green);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    text-align: center;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1.5rem;
}

.author-info h4 {
    color: var(--earthy-brown);
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.author-info p {
    display: none;
}

.rating {
    color: #ffd700;
    font-size: 1rem;
}

.rating i {
    margin-left: 0.1rem;
}

/* Booking Section */
.booking {
    padding: 5rem 0;
    background-color: white;
}

.booking .intro-text {
    text-align: left;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.booking-container {
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.booking-form {
    background: var(--light-cream);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--earthy-brown);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(122, 155, 118, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 25px;
}

.confirmation-message {
    text-align: left;
    background: var(--light-cream);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.confirmation-content i {
    font-size: 4rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.confirmation-content h3 {
    color: var(--earthy-brown);
    margin-bottom: 1rem;
}

.booking-info {
    background: var(--warm-beige);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.booking-info ul {
    list-style: none;
}

.booking-info li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.booking-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--light-cream);
}

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

.contact-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

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

.contact-item a:hover {
    color: var(--accent-green);
}

/* Treatment Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    position: relative;
    animation: slideIn 0.3s ease;
    display: flex;
    flex-direction: column;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--text-light);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close:hover {
    color: var(--accent-green);
}

.modal-header {
    background: linear-gradient(135deg, var(--accent-green), var(--sage-green));
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.modal-header {
    background: linear-gradient(135deg, var(--accent-green), var(--sage-green));
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.modal-icon-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.modal-icon-row i {
    font-size: 1.8rem;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.6rem;
    text-align: center;
}

.modal-footer {
    margin-top: 1.5rem;
    text-align: center;
    border-top: none;
}


.modal-body {
    padding: 2rem;
    flex: 1;
    overflow-y: auto;
}

.modal-body p {
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.modal-body .treatment-duration {
    background-color: var(--sage-green);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    min-width: 60px;
    text-align: center;
}

.modal-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.modal-badges .treatment-price,
.modal-badges .treatment-duration,
.modal-badges .treatment-badge {
    display: inline-block;
    margin-bottom: 0;
    margin-top: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background-color: var(--earthy-brown);
    color: white;
    padding: 5rem 0 2rem 0;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

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

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-contact-quick p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact-quick a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-quick a:hover {
    color: var(--accent-green);
}

/* Webcube credit styling */
/* Only the link uses Lexend, not the whole paragraph */
.webcube-credit { }

.webcube-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    letter-spacing: -1px;
    transition: 0s;
    line-height: 30px;
    white-space: nowrap;
    font-family: 'Lexend', sans-serif;
}

.webcube-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Keep webcube link white on hover in footer despite generic hover rule */
.footer-contact-quick .webcube-link:hover {
    color: rgba(255, 255, 255, 0.9) !important;
}

.webcube-logo {
    display: inline-block;
    vertical-align: middle;
    transition: transform 0s;
}

.webcube-link:hover .webcube-logo {
    transform: rotate(120deg);
    transition: transform 0.8s ease;
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 15px;
}


/* Footer Contact Form */
.footer-contact-form .form-floating {
    margin-bottom: 1rem;
}

.footer-contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: white;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.footer-contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-green);
    box-shadow: 0 0 0 2px rgba(122, 155, 118, 0.3);
    color: white;
}

.footer-contact-form .form-floating label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-submit-btn {
    width: 100%;
    padding: 0.8rem;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    border-radius: 25px;
}

/* Contact Page */
.contact-page {
    padding: 5rem 0;
    background-color: white;
}

.contact-page .intro-text {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: var(--earthy-brown);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-green);
    margin-top: 0.25rem;
    min-width: 25px;
}

.contact-item h4 {
    margin: 0 0 0.5rem 0;
    color: var(--earthy-brown);
    font-size: 1rem;
}

.contact-item p {
    margin: 0;
    color: var(--text-light);
}

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

.contact-item a:hover {
    color: var(--accent-green);
}

.contact-form-section {
    background: var(--light-cream);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form .form-floating {
    margin-bottom: 1.5rem;
}

.contact-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(122, 155, 118, 0.1);
}

.contact-form .form-floating label {
    font-weight: 600;
    color: var(--earthy-brown);
    font-size: 1rem;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .about-text {
        padding-left: 2rem;
    }
}

@media (max-width: 1024px) {
    .usp-grid {
        grid-template-columns: 1fr;
    }
    
    .offers-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-content {
        padding: 2rem 0 0 0;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-image {
        width: 100%;
        margin-bottom: 2rem;
    }

    #heroCarousel {
        width: 100%;
        max-width: 400px;
        height: 500px;
        position: relative;
    }
    
    #heroCarousel .carousel-inner {
        height: 100%;
        position: relative;
    }
    
    #heroCarousel .carousel-item {
        height: 100%;
        position: relative;
    }
    
    #heroCarousel .hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
    }
    
    /* Ensure Bootstrap fade works on iOS: don't force display changes */
    
    #heroCarousel .carousel-indicators {
        position: absolute;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto;
        margin: 0;
        padding: 0;
    }
    
    #heroCarousel .carousel-indicators button {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.5);
        border: none;
        margin: 0 0.25rem;
    }
    
    #heroCarousel .carousel-indicators button.active {
        background-color: var(--sage-green);
    }



    .hero-placeholder {
        width: 100%;
        height: 200px;
        border-radius: 20px;
    }

    .treatments-preview-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .treatment-preview-card {
        padding: 1.5rem;
    }

    .treatments-grid {
        grid-template-columns: 1fr;
    }

    .treatment-card {
        padding: 1.5rem;
    }

    .cta-buttons {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }

    .cta-buttons .cta-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .booking-form {
        padding: 2rem 1.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-section {
        padding: 2rem;
    }

    /* About section responsive */
    .about-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .about-images {
        margin-top: 2rem;
    }

    .about-image-placeholder {
        width: 100%;
        height: 100%;
        min-height: 300px;
        padding: 2rem;
    }

    .about-image {
        width: 100%;
        height: 280px;
        border-radius: 15px;
    }

    .about-header {
        margin-bottom: 2rem;
    }

    .about-features {
        flex-direction: row;
        gap: 1rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    /* Special offers responsive */
    .offers {
        padding: 4rem 0;
    }

    .offers-header h2 {
        font-size: 1.7rem;
    }


    .offers-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offer-content {
        padding: 0 2rem 2rem 2rem;
    }

    .offer-content h4 {
        font-size: 1.4rem;
    }

    .offer-content p {
        font-size: 1rem;
    }

    .offer-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    /* Testimonials responsive */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card-wide {
        grid-column: span 1;
    }

    .testimonial-author {
        justify-content: space-between;
        align-items: center;
    }
    
    .pricing-options {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .pricing-option {
        width: 100%;
        max-width: 200px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .map-container iframe {
        height: 250px;
    }

    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.25rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .footer-main {
        gap: 2rem;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .map-container iframe {
        height: 200px;
    }

    .treatment-preview-card {
        padding: 1rem;
    }

    /* Special offers mobile */
    .offers {
        padding: 3rem 0;
    }

    .offers-header h2 {
        font-size: 1.7rem;
    }


    .offers-content {
        gap: 1.5rem;
    }

    .offer-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .offer-content h4 {
        font-size: 1.2rem;
    }

    .offer-content p {
        font-size: 0.95rem;
    }

    .offer-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 1.5rem auto 1rem auto;
    }

    .discount {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
}

/* Loading states and transitions */
.fade-in {
    animation: fadeInUp 1s ease-out;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

/* Form validation styles */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: var(--accent-green);
}

/* Modal mobile styles */
@media (max-width: 768px) {
    .modal-content {
        margin: 0;
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }

    .modal-header {
        border-radius: 0;
    }
}
