/* CSS Variables - Exact colors from Framer */
:root {
    /* Color tokens from Framer */
    --token-dark-text: rgb(38, 38, 38);
    --token-gray-text: rgb(87, 87, 87);
    --token-accent-brown: rgb(122, 59, 59);
    --token-white: rgb(255, 255, 255);
    --token-light-bg: rgb(250, 250, 250);
    --token-lighter-bg: rgb(246, 246, 246);
    --token-purple: rgb(147, 46, 250);
    --token-blue-gray: rgb(220, 228, 234);
    --token-call-button: rgb(85, 107, 107);
    --token-cta-bg: rgb(200, 200, 200);
    
    /* Font families */
    --font-satoshi: "Satoshi", "Satoshi Placeholder", sans-serif;
    --font-inter: "Inter", sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-satoshi);
    font-size: 12px;
    background: var(--token-light-bg);
    color: var(--token-dark-text);
    line-height: 1.5;
    min-height: 100vh;
}

/* Text Animation Classes */
.text-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.text-reveal.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-up-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.7s ease-out;
}

.slide-in-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.7s ease-out;
}

.slide-in-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease-out;
}

.scale-in.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animation delays */
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
.animate-delay-6 { transition-delay: 0.6s; }

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background-color: rgba(250, 250, 250, 0.75);
    width: 100%;
    padding: 20px 0;
    transition: transform 0.3s ease-in-out;
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    flex: 1;
    max-width: 80%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.logo-image {
    width: 58px;
    height: 58px;
    border-radius: inherit;
    flex-shrink: 0;
}

.logo-image img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-position: center;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    min-width: 0;
}

.logo-title p,
.logo-subtitle p {
    font-family: var(--font-satoshi);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0px;
    color: var(--token-dark-text);
    margin: 0;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.logo-subtitle p {
    font-size: 16px;
    opacity: 0.8;
}

/* Navigation Styles */
.navigation {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
}

.menu-items {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.menu-items li {
    display: flex;
    align-items: center;
}

.menu-items a {
    font-family: var(--font-satoshi);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--token-gray-text);
    text-transform: capitalize;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.menu-items a:hover {
    color: var(--token-dark-text);
}

/* Call Button */
.call-button {
    background-color: var(--token-call-button);
    border-radius: 24px;
    padding: 12px 24px;
    text-decoration: none;
    font-family: var(--font-satoshi);
    font-weight: 500;
    color: var(--token-white);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.call-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(85, 107, 107, 0.3);
}

/* Mobile Menu Icon */
.mobile-menu-icon {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-line {
    width: 24px;
    height: 3px;
    background-color: var(--token-accent-brown);
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 90px 0 80px;
    background: var(--token-light-bg);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 600px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-label {
    font-family: var(--font-satoshi);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgb(139,134,128);
    opacity: 1;
    box-shadow: rgba(173,173,173,0.08);
    border-radius: 16px;
    padding: 8px;
    width: fit-content;
}

.hero-title {
    font-family: var(--font-satoshi);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--token-dark-text);
    margin: 0;
}

.hero-description {
    font-family: var(--font-satoshi);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--token-gray-text);
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.btn {
    padding: 10px 12px;
    border-radius: 24px;
    text-decoration: none;
    font-family: var(--font-satoshi);
    font-weight: 500;
    font-size: 16px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background-color: #556B6B;
    color: var(--token-white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--token-call-button);
    border: 2px solid var(--token-call-button);
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: var(--token-light-bg);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-family: var(--font-satoshi);
    font-size: 72px;
    font-weight: 700;
    color: var(--token-dark-text);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-satoshi);
    font-size: 16px;
    font-weight: 500;
    color: var(--token-gray-text);
}

/* Languages Section */
.languages {
    /* padding: 80px 0; */
    background: var(--token-light-bg);
}

.languages-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.languages-title {
    font-family: var(--font-satoshi);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--token-dark-text);
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.languages-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.language-item {
    padding: 16px 24px;
    background: var(--token-white);
    border-radius: 12px;
    font-family: var(--font-satoshi);
    font-weight: 500;
    color: var(--token-dark-text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.language-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--token-light-bg);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--token-white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.service-title {
    font-family: var(--font-satoshi);
    font-size: 24px;
    font-weight: 700;
    color: #1a3b36;
    margin-bottom: 16px;
}

.service-description {
    font-family: var(--font-satoshi);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #1a3b36;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--token-cta-bg), #d0d0d0);
    position: relative;
    overflow: hidden;
}

.cta-section::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="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.cta-content {
    background: var(--token-white);
    padding: 80px 60px;
    border-radius: 24px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.cta-label {
    font-family: var(--font-satoshi);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--token-gray-text);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.cta-title {
    font-family: var(--font-satoshi);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--token-dark-text);
    margin-bottom: 24px;
}

.cta-description {
    font-family: var(--font-satoshi);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--token-gray-text);
    margin-bottom: 40px;
}

.cta-button {
    background-color: var(--token-call-button);
    color: var(--token-white);
    padding: 16px 32px;
    border-radius: 24px;
    text-decoration: none;
    font-family: var(--font-satoshi);
    font-weight: 500;
    font-size: 16px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(85, 107, 107, 0.3);
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: var(--token-light-bg);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gallery-title {
    font-family: var(--font-satoshi);
    font-size: 48px;
    font-weight: 400;
    color: #1a3b36;
    text-align: center;
    margin-bottom: 64px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(50px) scale(0.9);
}

.gallery-item.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Individual gallery item animation delays */
.gallery-item:nth-child(1) { transition-delay: 0.1s; }
.gallery-item:nth-child(2) { transition-delay: 0.2s; }
.gallery-item:nth-child(3) { transition-delay: 0.3s; }
.gallery-item:nth-child(4) { transition-delay: 0.4s; }
.gallery-item:nth-child(5) { transition-delay: 0.5s; }
.gallery-item:nth-child(6) { transition-delay: 0.6s; }
.gallery-item:nth-child(7) { transition-delay: 0.7s; }

/* Therapist Section */
.therapist {
    padding: 80px 0;
    background: var(--token-light-bg);
}

.therapist-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.therapist-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.therapist-image {
    position: relative;
}

.therapist-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
}

.therapist-info {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: var(--token-white);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.therapist-name {
    font-family: var(--font-satoshi);
    font-size: 20px;
    font-weight: 700;
    color: var(--token-dark-text);
    margin-bottom: 8px;
}

.therapist-degree {
    font-weight: 400;
    font-size: 16px;
}

.therapist-role {
    font-family: var(--font-satoshi);
    font-size: 16px;
    font-weight: 500;
    color: var(--token-gray-text);
}

.therapist-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.therapist-label {
    font-family: var(--font-satoshi);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--token-gray-text);
    text-transform: uppercase;
}

.therapist-title {
    font-family: var(--font-satoshi);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: #1a3b36;
}

.therapist-description {
    font-family: var(--font-satoshi);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--token-gray-text);
}

.therapist-buttons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

/* Holistic Section */
.holistic {
    padding: 80px 0;
    background: var(--token-light-bg);
    text-align: center;
}

.holistic-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.holistic-label {
    font-family: var(--font-satoshi);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--token-gray-text);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.holistic-title {
    font-family: var(--font-satoshi);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: #1a3b36;
    margin-bottom: 32px;
}

.holistic-description {
    font-family: var(--font-satoshi);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--token-gray-text);
    text-align: justify;
}

/* Maps Section */
.maps {
    padding: 80px 0;
    background: var(--token-lighter-bg);
}

.maps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.maps-header {
    text-align: center;
    margin-bottom: 64px;
}

.maps-title {
    font-family: var(--font-satoshi);
    font-size: 48px;
    font-weight: 700;
    color: var(--token-dark-text);
    margin-bottom: 16px;
}

.maps-subtitle {
    font-family: var(--font-satoshi);
    font-size: 18px;
    font-weight: 400;
    color: var(--token-gray-text);
    max-width: 600px;
    margin: 0 auto;
}

.maps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.map-card {
    background: var(--token-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.map-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.map-iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.map-info {
    padding: 24px;
}

.map-title {
    font-family: var(--font-satoshi);
    font-size: 20px;
    font-weight: 700;
    color: var(--token-dark-text);
    margin-bottom: 8px;
}

.map-address {
    font-family: var(--font-satoshi);
    font-size: 14px;
    font-weight: 400;
    color: var(--token-gray-text);
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    /* background: var(--token-lighter-bg); */
    overflow: hidden;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
}

.testimonials-label {
    font-family: var(--font-satoshi);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--token-gray-text);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.testimonials-title {
    font-family: var(--font-satoshi);
    font-size: 48px;
    font-weight: 400;
    color: #1a3b36;
}


.testimonial-card {
    background: var(--token-white);
    padding: 42px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    width: 400px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.testimonials-scroll{
      display: flex;
    gap: 30px;
    flex-direction: row;
    justify-content: center;
    align-items: center;

}


.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-family: var(--font-satoshi);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--token-gray-text);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--token-purple);
}

.author-name {
    font-family: var(--font-satoshi);
    font-weight: 600;
    color: var(--token-dark-text);
}


/* Footer */
.footer {
    background: var(--token-white);
    padding: 60px 0 40px;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.footer-logo .logo-container {
    gap: 12px;
}

.footer-logo .logo-title p {
    font-size: 18px;
    font-weight: 600;
}

.footer-registration p {
    font-family: var(--font-satoshi);
    font-size: 14px;
    font-weight: 500;
    color: var(--token-gray-text);
}

.footer-contact {
    margin-bottom: 40px;
}

.footer-address {
    font-family: var(--font-satoshi);
    font-size: 16px;
    font-weight: 400;
    color: var(--token-gray-text);
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer-contact-info {
    display: flex;
    gap: 32px;
}

.footer-phone,
.footer-email {
    font-family: var(--font-satoshi);
    font-size: 16px;
    font-weight: 500;
    color: var(--token-dark-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.footer-bottom p {
    font-family: var(--font-satoshi);
    font-size: 14px;
    font-weight: 400;
    color: var(--token-gray-text);
}

/* Mobile Menu Styles */
@media (max-width: 809px) {
    .navigation {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(250, 250, 250, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .navigation.mobile-open {
        display: flex;
    }
    /* flex-wrap: wrap; */
    .testimonials-scroll{
        display: flex;
        flex-wrap: wrap;
    }
    .navigation.mobile-open .menu-items {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
        width: 100%;
    }
    
    .navigation.mobile-open .menu-items li {
        width: 100%;
        text-align: center;
    }
    
    .mobile-menu-icon {
        display: flex;
    }
    
    .mobile-menu-icon.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-icon.active .menu-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-icon.active .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Responsive Design */
@media (max-width: 1199px) {
    .header-wrapper {
        padding: 0 16px;
    }
    
    .hero-content {
        gap: 48px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .stats-container {
        gap: 48px;
    }
    
    .languages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .maps-grid {
        gap: 24px;
    }
    
    .therapist-content {
        gap: 48px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 809px) {
    .header {
        padding: 15px 0;
    }
    
    .header-content {
        min-height: 50px;
    }
    
    .logo {
        max-width: 70%;
    }
    
    .logo-container {
        gap: 12px;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }
    
    .logo-title p {
        font-size: 16px;
    }
    
    .logo-subtitle p {
        font-size: 14px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .languages-title {
        font-size: 24px;
    }
    
    .languages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        padding: 60px 40px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .therapist-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .therapist-title {
        font-size: 32px;
    }
    
    .therapist-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .holistic-title {
        font-size: 32px;
    }
    
    .maps-grid {
        grid-template-columns: 1fr;
    }
    
    .maps-title {
        font-size: 32px;
    }
    
    .testimonials-title {
        font-size: 32px;
    }
    
    .testimonial-card {
        width: 320px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-contact-info {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .logo {
        max-width: 65%;
    }
    .hero-text{
        width: fit-content;
    }
    .hero-img{
        width: 100%;
        height: auto;
    }
    
    .logo-title p {
        font-size: 14px;
        line-height: 1.1;
    }
    
    .logo-subtitle p {
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .languages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .cta-content {
        padding: 40px 24px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .testimonial-card {
        width: 280px;
    }
    
    .therapist-title {
        font-size: 28px;
    }
    
    .holistic-title {
        font-size: 28px;
    }
     iframe {
        width: 100% !important;
    }
    
    /* Enhanced mobile centering and alignment */
    .hero-content,
    .therapist-content,
    .services-container,
    .holistic-container,
    .gallery-container,
    .testimonials-container {
        text-align: center;
    }
    
    .hero-text,
    .therapist-text {
        align-items: center;
    }
    
    .service-card,
    .gallery-item {
        margin: 0 auto;
        max-width: 100%;
    }
    
    /* Improved stats section for mobile */
    .stats-container {
        padding: 20px;
        text-align: center;
    }
    
    /* Better button alignment on mobile */
    .hero-buttons,
    .therapist-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        text-align: center;
    }
    
    /* Improved service cards layout */
    .services-grid {
        gap: 20px;
    }
    
    .service-card {
        padding: 24px;
        text-align: center;
    }
    
    /* Better gallery layout */
    .gallery-grid {
        gap: 16px;
        padding: 0 10px;
    }
    
    /* Improved maps section */
    #maps > div {
        padding: 0 10px;
    }
    
    #maps iframe {
        width: 100% !important;
        max-width: 100% !important;
        height: 300px !important;
    }
    
    /* Better footer alignment */
    footer {
        text-align: center;
    }
    
    footer > div > div:first-child {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    footer > div > div:first-child > div:first-child {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }
    
    /* Improved CTA section */
    section[style*="position: relative"] {
        padding: 20px 10px 60px;
    }
    
    section[style*="position: relative"] > div[style*="background-image"] {
        height: 300px !important;
        margin: 0 10px;
    }
    
    section[style*="position: relative"] > div[style*="position: absolute"] {
        width: 95% !important;
        padding: 30px 20px !important;
        bottom: 10% !important;
    }
    
    /* Language buttons better spacing */
    div[style*="display: flex; justify-content: center; flex-wrap: wrap"] {
        gap: 10px !important;
        padding: 0 10px;
    }
    
    div[style*="display: flex; justify-content: center; flex-wrap: wrap"] > div {
        padding: 8px 16px !important;
        font-size: 14px !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.testimonial-card,
.language-item,
.map-card {
    animation: fadeInUp 0.6s ease-out;
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
body:not(.loaded) {
    overflow: hidden;
}

body:not(.loaded)::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--token-light-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

