/* Local Fonts */
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'RoxboroughCF';
    src: url('../fonts/roxborough-cf-regular.woff2') format('woff2'),
         url('../fonts/roxborough-cf-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s;
    backdrop-filter: blur(5px);
}

/* Hide only text content while preloading, keeping structure/boxes visible */
body.preloading h1,
body.preloading h2,
body.preloading h3,
body.preloading h4,
body.preloading p,
body.preloading span,
body.preloading a:not(.rotating-lotus),
body.preloading li,
body.preloading td,
body.preloading th,
body.preloading blockquote,
body.preloading i {
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.3s ease;
}

/* Ensure images and structure stay visible */
body.preloading img:not(.rotating-lotus) {
    opacity: 0.2; /* Faded but structural */
    transition: opacity 0.3s ease;
}

.preloader-content .rotating-lotus {
    width: 150px;
    height: auto;
    animation: rotateLotus 3s infinite linear;
}

@keyframes rotateLotus {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 1rem;
    z-index: 10000;
    transition: top 0.3s;
    text-decoration: none;
    font-weight: 700;
}
.skip-link:focus { top: 0; }

:focus {
    outline: 3px solid var(--secondary);
    outline-offset: 4px;
}

:focus:not(:focus-visible) {
    outline: none;
}

:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 4px;
}

:root {
    --primary: #D32C7C; /* Magenta */
    --secondary: #1e6b6d; /* Darker Teal for AA contrast */
    --accent: #F2BDD7; /* Soft Pink */
    --accent-light: #60C5C7; /* Light Teal */
    --text: #1e293b;
    --text-light: #475569;
    --white: #fff;
    --font-heading: 'RoxboroughCF', 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text);
    background: linear-gradient(135deg, #fae6f2 0%, #e0f2f2 100%);
    background-attachment: fixed;
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

header {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.5rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    min-height: 60px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 10px;
    transition: all 0.3s ease;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    transition: var(--transition);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

nav ul li a:hover {
    color: var(--primary);
}

.lang-switcher {
    display: none !important;
    gap: 10px;
}

.lang-switcher button {
    background: transparent;
    border: 1px solid var(--secondary);
    color: var(--text);
    padding: 3px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: var(--transition);
}

.lang-switcher button.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.hero {
    background: linear-gradient(135deg, rgba(211, 44, 124, 0.7), rgba(40, 150, 152, 0.7)), 
                url('../images/hero.jpg') 25% center/cover;
    min-height: 90vh;
    margin-top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 100px 20px;
}

.hero-content {
    max-width: 900px;
}

.hero-logo img {
    height: 200px;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.hero h1 {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-text {
    margin-top: 3rem;
    font-style: italic;
    opacity: 0.8;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .hero-cta-group {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
}

.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    text-align: center;
}

.cta-button:hover,
.cta-button:focus {
    background-color: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    outline: none; /* Accessible styling handled by color/shadow */
}

.cta-button:active, .floating-btn:active, .contact-btn:active, .event-cta:active {
    transform: scale(0.95) translateY(0);
    filter: brightness(0.8);
    transition: transform 0.1s;
}

.cta-button.secondary-cta {
    background-color: var(--secondary);
}

.cta-button.secondary-cta:hover,
.cta-button.secondary-cta:focus {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* --- Global Section Container --- */
.container {
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    width: 90%;
}

.site-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.section-accordion-item {
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    border: 2px solid var(--secondary);
    transition: var(--transition);
}

.section-header {
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: background-color 0.3s ease;
}
.section-header:hover { background-color: #fdf5f9; }
.section-header h2 { margin: 0; font-size: 2rem; color: var(--secondary); }
.section-header i { 
    font-size: 1.8rem; 
    color: var(--primary); 
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease; 
    position: relative;
    z-index: 1;
}

.always-visible-content {
    padding: 2rem 5% 1rem;
}

.about-visual-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.about-visual-flex .image-content { 
    flex: 0 0 400px; 
    position: relative;
}

.experience-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.experience-box h2 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--secondary);
    background: #f1f5f9;
}

.experience-box span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--secondary);
    background: #f1f5f9;
    padding: 12px 20px;
    border-radius: 8px;
    border-left: 5px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    min-height: 60px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

@media (max-width: 992px) {
    .about-visual-flex { 
        flex-direction: column; 
        text-align: center;
    }
    .about-visual-flex .image-content { 
        flex: 1; 
        width: 100%; 
        max-width: 500px;
    }
}

.about-intro-text {
    margin-bottom: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.about-subtitle {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.section-intro {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sub-section-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 5%;
    text-align: left;
}

.section-accordion-item.active { border-color: var(--primary); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.section-accordion-item.active .section-content { 
    max-height: 15000px; 
    transition: max-height 1.2s cubic-bezier(0.4, 0, 0.2, 1), padding 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding-bottom: 4rem; 
    padding-top: 2rem; 
}
.section-accordion-item.active .section-header { border-bottom: 1px solid #f1f5f9; }
.section-accordion-item.active .section-header i { transform: rotate(180deg); color: var(--secondary); }

/* Internal Sub-Accordion */
.accordion-item { background: #f8fafc; border-radius: 15px; margin-bottom: 1rem; overflow: hidden; border: 1px solid #eee; }
.accordion-header { padding: 1.2rem 2rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: background-color 0.3s ease; }
.accordion-header:hover { background: #fdf5f9; }
.accordion-header h3 { font-size: 1.2rem; color: var(--primary); display: flex; flex-direction: column; }
.accordion-header h3 span { font-family: var(--font-heading); font-size: 1.1rem; color: var(--secondary); text-transform: none; font-weight: 600; margin-top: 5px; }
.accordion-header i { 
    font-size: 1.2rem; 
    color: var(--primary); 
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); 
    position: relative;
    z-index: 1;
}
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; padding: 0 2rem; }
.accordion-item.active .accordion-content { max-height: 5000px; padding: 2rem; background: var(--white); }
.accordion-item.active .accordion-header { background: var(--accent); }
.accordion-item.active .accordion-header i { transform: rotate(180deg); color: var(--secondary); }

/* Pulse Animation for closed Accordion Icons */
.section-accordion-item:not(.active) .section-header i::after,
.accordion-item:not(.active) .accordion-header i::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    border-radius: 50%;
    z-index: -1;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    pointer-events: none;
    animation: ripplePulse 2s infinite ease-out;
}

@keyframes ripplePulse {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.4; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Hover effects for improved interactivity */
.accordion-header:hover i {
    transform: scale(1.2);
}
.accordion-item.active .accordion-header:hover i {
    transform: rotate(180deg) scale(1.2);
}

/* Elements */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.service-card { background: #f8fafc; padding: 1.5rem; border-radius: 15px; border-left: 5px solid var(--primary); text-align: left; }
.service-card h4 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--primary); margin-bottom: 1rem; }
.table-cat-title { font-family: var(--font-heading); font-size: 1.2rem; color: var(--secondary); margin: 2rem 0 0.5rem; text-transform: uppercase; letter-spacing: 1px; }
.table-cat-subtitle { font-family: var(--font-body); font-size: 1rem; color: var(--primary); font-style: italic; margin-bottom: 1.5rem; }

.sub-section-full-image {
    margin: 2rem 0;
    width: 100%;
}

.full-service-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 10px 10px 0 var(--accent);
}

@media (max-width: 992px) {
    .full-service-img {
        box-shadow: 8px 8px 0 var(--accent);
    }
}

/* Rituals Section */
.rituals-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #f1f5f9;
    text-align: center;
}

.rituals-title {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.rituals-intro {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.rituals-intro p {
    margin-bottom: 1.5rem;
}

.rituals-cta {
    margin-bottom: 4rem;
}

.rituals-sub-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 2.5rem;
    text-align: center;
}

.rituals-grid {
    margin-bottom: 4rem;
}

.ritual-card {
    border-bottom: 4px solid var(--secondary) !important;
}

.how-it-works-section {
    background: #f8fafc;
    padding: 3rem 5%;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
}

.step-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.rituals-investment {
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 700;
    margin-top: 2rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .rituals-title { font-size: 1.8rem; }
    .rituals-sub-title { font-size: 1.5rem; }
}

.specialized-paths { background: var(--secondary); color: var(--white); padding: 2rem; border-radius: 15px; margin-top: 2rem; text-align: left; }
.specialized-paths h4 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--white); margin-bottom: 1rem; }
.specialized-paths ul { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 15px; margin-top: 1rem; }
.specialized-paths li { position: relative; padding-left: 25px; margin-bottom: 1rem; line-height: 1.4; }
.specialized-paths li::before { position: absolute; left: 0; top: 0; content: '✦'; color: var(--accent); }

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

.table-responsive { overflow-x: auto; margin-top: 1rem; }
table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 10px; overflow: hidden; }
th, td { padding: 12px 15px; text-align: left; border-bottom: 1px solid #f1f5f9; }
th { background-color: var(--secondary); color: var(--white); font-size: 0.75rem; text-transform: uppercase; }

.section-flex { display: flex; align-items: flex-start; gap: 40px; text-align: left; }
.image-content img { width: 100%; border-radius: 20px; box-shadow: 10px 10px 0 var(--accent); }
.philosophy-section { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid #eee; }
.philosophy-quote { 
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem; 
    font-style: italic; 
    color: var(--secondary); 
    margin-bottom: 2rem; 
    line-height: 1.3; 
}
.principles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; text-align: left; }
.principle-card { padding: 1.5rem; background: #f8fafc; border-radius: 20px; border-bottom: 4px solid var(--primary); }

.events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; text-align: left; margin-bottom: 2rem; }
.event-card { background: var(--white); padding: 1.5rem; border-radius: 15px; border: 1px solid #eee; }
.event-cta { color: var(--primary); font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--primary); }

/* Reviews Slider */
.reviews-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.reviews-slider-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.reviews-wrapper {
    display: flex;
}

.review-card {
    flex: 0 0 100%;
    padding: 2.5rem 2rem;
    box-sizing: border-box;
    text-align: center;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 380px;
}

.review-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-author {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.contact-wrapper { max-width: 1000px; margin: 0 auto; }
.contact-info-container { text-align: left; }
.map-link { 
    color: var(--text); 
    text-decoration: none; 
    transition: var(--transition);
    display: block;
}
.map-link:hover { 
    color: var(--primary); 
    text-decoration: underline;
}
.contact-methods { display: flex; flex-direction: column; gap: 15px; margin-top: 2rem; }
.contact-btn { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 15px; border-radius: 10px; text-decoration: none; font-weight: 700; color: #fff; transition: 0.3s; }
.whatsapp-btn { background: #25D366; }
.treatwell-btn { background: #1a1a1a; }

/* --- Floating Buttons (Bottom Right) --- */
.fixed-nav-buttons { position: fixed; bottom: 80px; right: 20px; display: flex; flex-direction: column; gap: 10px; z-index: 2500; }
.floating-btn { width: 45px; height: 45px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: 0 5px 20px rgba(0,0,0,0.2); text-decoration: none; transition: var(--transition); }
.floating-btn:hover { transform: scale(1.1) translateY(-5px); background: var(--secondary); }
#btn-to-top { background: var(--secondary); }

/* --- Footer --- */
footer { background: #1e293b; color: var(--white); padding: 4rem 5% 2rem; }
.footer-top { max-width: 1200px; margin: 0 auto 3rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 2rem; }
.footer-logo { font-family: var(--font-heading); font-weight: 900; color: var(--primary); font-size: 1.5rem; text-transform: uppercase; }
.social-bar { display: flex; gap: 15px; }
.social-bar a { color: var(--white); font-size: 1.2rem; width: 40px; height: 40px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: var(--transition); }
.social-bar a:hover { background: var(--primary); transform: translateY(-5px); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 25px; margin-bottom: 3rem; }
.footer-links a { color: var(--white); text-decoration: none; opacity: 0.7; font-size: 0.85rem; text-transform: uppercase; }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; font-size: 0.8rem; display: flex; flex-direction: column; gap: 10px; }
.legal-links { display: flex; justify-content: center; gap: 20px; }
.legal-links a { color: var(--white); opacity: 0.5; text-decoration: none; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 20px; left: 20px; right: 20px; background: #fff; box-shadow: 0 10px 40px rgba(0,0,0,0.2); padding: 20px; border-radius: 15px; z-index: 2000; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.cookie-btn.accept { background: var(--primary); color: #fff; }

html { scroll-padding-top: 100px; }

@media (max-width: 992px) {
    .section-flex, .footer-top { flex-direction: column; text-align: center; gap: 20px; }
    .hero h1 { font-size: 1.8rem; }
    .section-header h2 { font-size: 1.4rem; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    nav ul { display: none; flex-direction: column; position: absolute; top: 100%; left: -5%; width: 110%; background: #fff; padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
    nav ul.active { display: flex; }
    nav ul li { margin: 10px 0; }

    .services-grid { grid-template-columns: 1fr; }
    .specialized-paths { padding: 1.2rem; }
    .specialized-paths ul { grid-template-columns: 1fr; gap: 10px; }
    .cta-button { padding: 12px 20px; font-size: 0.85rem; width: auto; max-width: 100%; box-sizing: border-box; }
    .accordion-header { padding: 1rem 1.2rem; }
    .accordion-content { padding: 0 1.2rem; }

    td { display: block; padding: 12px 15px 12px 45%; position: relative; text-align: right; font-size: 0.85rem; border: none; border-bottom: 1px solid #f1f5f9; }
    td::before { content: attr(data-label); position: absolute; left: 15px; font-weight: 800; color: var(--secondary); font-size: 0.7rem; text-transform: uppercase; top: 50%; transform: translateY(-50%); }
    tr { display: block; margin-bottom: 1rem; border: 1px solid #eee; border-radius: 10px; }
    thead { display: none; }
    .cookie-banner { flex-direction: column; text-align: center; }
    .floating-btn { width: 45px; height: 45px; font-size: 1.1rem; }
}

/* User Request: Hide Logo on Mobile */
@media (max-width: 992px) {
    .nav-logo {
        display: none !important;
    }
}

/* --- Modern Static Layout Overrides (Post-Accordion Removal) --- */

/* Remove card-like borders from main sections to make them look like standard pages */
.section-accordion-item, .section-accordion-item.active {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Center and clean up main section titles */
.section-header {
    cursor: default !important;
    justify-content: center !important;
    text-align: center;
    padding-bottom: 1rem;
}

.section-header:hover {
    background-color: var(--white) !important;
}

.section-header h2 {
    font-size: 2.5rem !important; /* Make main titles slightly larger and more impactful */
}

/* Clean up sub-accordions (Services) */



/* --- Homepage Specific Box Styles --- */
.homepage-box {
    background: var(--white);
    border: 2px solid var(--secondary);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    margin-bottom: 4rem;
    overflow: hidden;
    position: relative;
}

/* Ensure the header inside the homepage boxes doesn't have weird hover or cursors */
.homepage-box .section-header {
    background: transparent !important;
    cursor: default !important;
    padding-top: 2rem;
    padding-bottom: 1rem;
    border-bottom: 0 !important;
}

.homepage-box .section-content {
    opacity: 1 !important;
    visibility: visible !important;
    max-height: none !important;
    padding: 0 5% 3rem 5%;
}

/* --- Meditation Section Enhancement --- */
.meditation-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.meditation-image-container {
    flex: 1;
    min-width: 300px;
}

.meditation-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(193, 153, 107, 0.2);
    transition: all 0.4s ease;
}

.meditation-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.meditation-table-container {
    flex: 1.5;
}

@media (max-width: 992px) {
    .meditation-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .meditation-image-container {
        width: 100%;
        max-width: 600px;
        order: -1; /* Image first on mobile if needed, or keep order */
    }
}

/* --- Scroll Reveal Animations --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Accessibility Themes & Widget --- */

/* 1. High Contrast Mode */
body.high-contrast {
    background: #000 !important;
    color: #fff !important;
}
body.high-contrast :not(#accessibility-widget *) {
    background-color: #000 !important;
    color: #ffff00 !important; /* Yellow text on black for maximum contrast */
    border-color: #ffff00 !important;
    text-shadow: none !important;
    box-shadow: none !important;
}
body.high-contrast a {
    color: #00ffff !important; /* Cyan for links */
    text-decoration: underline !important;
}
body.high-contrast .cta-button, 
body.high-contrast button {
    background: #ffff00 !important;
    color: #000 !important;
    border: 2px solid #fff !important;
}

/* 2. Large Text Mode */
html.large-text {
    font-size: 130% !important; /* Increased from 125% for better visibility */
}
/* Uniformly ensure line-height remains readable when text is large */
html.large-text body {
    line-height: 1.5 !important;
}
/* Specific corrections for components that might need extra help */
html.large-text .hero h1,
html.large-text .section-header h2,
html.large-text h3,
html.large-text h4 {
    letter-spacing: normal !important; /* Avoid overlap in large text */
}

/* 3. Dyslexia Font Mode */
body.dyslexia-font {
    font-family: Arial, sans-serif !important;
    letter-spacing: 0.1em !important;
    word-spacing: 0.2em !important;
    line-height: 1.8 !important;
}

/* 4. Reduce Motion Mode */
body.reduce-motion *,
body.reduce-motion *::before,
body.reduce-motion *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
}
body.reduce-motion .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
}

/* Accessibility Widget UI */
#accessibility-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

#accessibility-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

#accessibility-toggle:hover {
    transform: scale(1.1);
    background: var(--primary);
}

#accessibility-menu {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 250px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 1.5rem;
    border: 1px solid #eee;
}

#accessibility-menu h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text);
    text-align: center;
}

#accessibility-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#accessibility-menu li {
    margin-bottom: 0.5rem;
}

#accessibility-menu button {
    width: 100%;
    padding: 10px;
    border: 1px solid #eee;
    background: #f8fafc;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

#accessibility-menu button:hover {
    background: #f1f5f9;
    border-color: var(--secondary);
}

#accessibility-menu button[aria-pressed="true"] {
    background: var(--accent);
    border-color: var(--primary);
    color: var(--primary);
    font-weight: bold;
}

#reset-accessibility {
    margin-top: 0.5rem;
    color: var(--text-light);
    font-style: italic;
}

#reset-accessibility:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    #accessibility-widget {
        bottom: 80px; /* Avoid overlapping with floating nav buttons if they exist */
    }
}

.footer-logo img {
    height: 100px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* --- Direct Contact Section Styles --- */
.direct-contact-section .info-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--secondary);
}

.contact-info-container .info-item:nth-child(n+2) {
    margin-top: 3rem;
}

.direct-contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.contact-link-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
}

.contact-link-item i {
    color: var(--primary);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.contact-link-item a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-link-item a:hover {
    color: var(--primary);
}


/* --- Mini Map Section --- */
.mini-map-container {
    width: 100%;
    margin-top: 1rem;
    order: 2;
    overflow: visible !important;
}

.mini-map-container img {
    border-radius: 20px;
    box-shadow: 10px 10px 0 var(--accent);
}

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

#btn-to-contact {
    background-color: #25D366; /* WhatsApp Green */
    color: white;
}

#btn-to-contact:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* --- Mobile Fix for Direct Contacts --- */
@media (max-width: 600px) {
    .direct-contact-section .info-item {
        padding: 1.25rem !important;
        overflow: hidden;
    }
    .contact-link-item {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: flex-start !important;
        gap: 0.5rem;
        font-size: 1rem;
        width: 100%;
    }
    .contact-link-item i {
        margin-bottom: 0.2rem;
        width: auto !important;
        font-size: 1.25rem !important;
        margin-left: 0 !important;
    }
    .contact-link-item a {
        flex-basis: 100%;
        text-align: left;
        width: 100%;
        margin-left: 0 !important;
        word-break: break-all;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 340px) {
    .contact-link-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    .contact-link-item i {
        text-align: left;
        margin-bottom: 0px;
    }
}



