/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B5CF6;
    --secondary-color: #EC4899;
    --accent-color: #F59E0B;
    --healing-green: #10B981;
    --peaceful-blue: #3B82F6;
    --love-pink: #F472B6;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --background-light: #FAFAFA;
    --background-dark: #111827;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-healing: linear-gradient(135deg, var(--healing-green), var(--peaceful-blue));
    --shadow-soft: 0 10px 30px rgba(139, 92, 246, 0.1);
    --shadow-strong: 0 20px 60px rgba(139, 92, 246, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Energy Particles */
.energy-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Language suggestion */
.language-suggestion {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(139, 92, 246, 0.15);
    padding: 1rem 1.25rem;
    z-index: 1100;
    display: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(10px);
    opacity: 0;
}

.language-suggestion--visible {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.language-suggestion__content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.language-suggestion__content p {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.language-suggestion__content a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.language-suggestion__close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.language-suggestion__close:hover,
.language-suggestion__close:focus {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .language-suggestion {
        left: 1rem;
        right: 1rem;
        bottom: 1.5rem;
    }

    .language-suggestion__content {
        flex-direction: column;
        gap: 0.75rem;
    }

    .language-suggestion__close {
        align-self: flex-end;
    }
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
    opacity: 0.6;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--primary-color);
}

.logo-symbol {
    font-size: 2rem;
}

.logo-image {
    width: auto;
    object-fit: contain;
    max-width: 4rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.dropdown-toggle:hover {
    background: rgba(139, 92, 246, 0.1);
}

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

.dropdown-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(139, 92, 246, 0.1);
    min-width: 60px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
}

.dropdown-item:hover {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-color);
}

.dropdown-item.active {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    padding: 4rem 0;
}


.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: var(--text-dark);
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
}

.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.4s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
    color: var(--text-light);
    font-weight: 400;
}

@keyframes fadeIn {
    to { opacity: 0.9; }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeIn 1s ease 0.8s forwards;
    opacity: 0;
    position: relative;
    z-index: 10;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
    font-size: 1rem;
    min-height: 48px;
    min-width: 48px;
    box-sizing: border-box;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    border: none;
    outline: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: manipulation;
    position: relative;
    z-index: 10;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-soft);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-secondary:active {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

.hero-buttons .btn-secondary {
    background: rgba(31, 41, 55, 0.1) !important;
    color: var(--text-dark) !important;
    border: 2px solid var(--text-dark) !important;
}

/* Tablet styles for healing grid */
@media (max-width: 1024px) {
    .healing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}
@media (max-width: 768px) {
    .btn {
        min-height: 44px;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
    
    .btn-primary {
        background: var(--white) !important;
        color: var(--primary-color) !important;
        box-shadow: var(--shadow-soft) !important;
    }
    
    .btn-primary:hover,
    .btn-primary:active,
    .btn-primary:focus {
        background: var(--white) !important;
        color: var(--primary-color) !important;
        transform: none !important;
    }
    
    .btn-secondary {
        background: rgba(31, 41, 55, 0.1) !important;
        color: var(--text-dark) !important;
        border: 2px solid var(--text-dark) !important;
    }
    
    .btn-secondary:hover,
    .btn-secondary:active,
    .btn-secondary:focus {
        background: var(--text-dark) !important;
        color: var(--white) !important;
    }
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    width: 500px;
    height: 600px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-main-image {
    transform: scale(1.05);
}


/* Personal Story Section */
.personal-story {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.1);
}

.personal-story h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.personal-story h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.personal-story p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.personal-signature {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(139, 92, 246, 0.2);
    text-align: center;
}

.personal-signature p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 0;
}

/* Accordion */
.accordion {
    border-top: 1px solid rgba(139, 92, 246, 0.15);
}

.accordion-item {
    border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.accordion-header i {
    color: var(--primary-color);
    transition: transform 0.2s ease;
}

.accordion-header[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.accordion-panel {
    padding: 0 0 1rem 0;
}

.accordion-panel[hidden] {
    display: none;
}

/* Mobile responsiveness for personal story */
@media (max-width: 768px) {
    .personal-story {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .personal-story h3 {
        font-size: 1.8rem;
    }
    
    .personal-story h4 {
        font-size: 1.3rem;
    }
    
    .personal-story p {
        font-size: 1rem;
    }
    
    .personal-signature p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .personal-story {
        padding: 1rem;
    }
    
    .personal-story h3 {
        font-size: 1.6rem;
    }
    
    .personal-story h4 {
        font-size: 1.2rem;
    }
}
.sacred-geometry {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.geometry-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s infinite linear;
}

.geometry-triangle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: translate(-50%, -50%);
    animation: rotate 15s infinite linear reverse;
}

.geometry-square {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%) rotate(45deg);
    animation: rotate 10s infinite linear;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.geometry-square {
    animation: rotate 10s infinite linear;
}

.geometry-square {
    animation: rotate 10s infinite linear;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    z-index: 0;
    scroll-margin-top: 80px;
}

/* Healing Section */
.healing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 80px;
}

.healing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="healing-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%238B5CF6" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23healing-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.healing-content {
    position: relative;
    z-index: 2;
}

.healing-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.healing-intro h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.healing-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.healing-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    z-index: 2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.healing-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgb(255, 255, 255);
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.healing-benefits li:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
    border-color: var(--primary-color);
    z-index: 2;
}

.healing-benefits i {
    font-size: 1.5rem;
    color: var(--healing-green);
    width: 40px;
    text-align: center; 
    z-index: 2;
}

.healing-benefits span {
    font-weight: 600;
    color: var(--text-dark);
    z-index: 2;
}

.healing-methods {
    margin-bottom: 4rem;
}

.healing-methods h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.healing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.healing-method-full {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    text-align: left;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    min-height: 200px;
}

.healing-method-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 2;
}

.healing-method-full:hover::before {
    transform: scaleX(1);
    z-index: 2;
}

.healing-method-full:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    z-index: 2;
}

.healing-method-full .method-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-healing);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative; 
    z-index: 2;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.healing-method-full .method-icon::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 3px solid var(--healing-green);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.healing-method-full:hover .method-icon::after {
    opacity: 0.4;
    transform: scale(1.05);
    z-index: 2;
}

.healing-method-full .method-icon i {
    font-size: 2.5rem;
    color: var(--white);
    z-index: 2;
}

.healing-method-full .method-content {
    flex: 1;
    z-index: 2;
}

.healing-method-full h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    font-weight: 600;
    z-index: 2;
}

.healing-method-full p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    z-index: 2;
}

.healing-method-full .method-info {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.healing-method-full .method-duration {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-color);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    border: 2px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.1);
}

.healing-method-full .method-price {
    background: rgba(16, 185, 129, 0.1);
    color: var(--healing-green);
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    border: 2px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

.healing-method-full .btn-booking {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.4rem 3rem;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-left: auto;
}

.healing-method-full .btn-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, #7C3AED, #DB2777);
}

.healing-method {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.healing-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 2;
}

.healing-method:hover::before {
    transform: scaleX(1);
    z-index: 2;
}

.healing-method:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    z-index: 2;
}

.method-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-healing);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative; 
    z-index: 2;
}

.method-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--healing-green);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.healing-method:hover .method-icon::after {
    opacity: 0.3;
    transform: scale(1.1);
    z-index: 2;
}

.method-icon i {
    font-size: 2rem;
    color: var(--white);
    z-index: 2;
}

.healing-method h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;    
    z-index: 2;
}

.healing-method p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: auto;
    flex-grow: 1;
    z-index: 2;
}

.method-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
}

.method-duration {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.method-price {
    background: rgba(16, 185, 129, 0.1);
    color: var(--healing-green);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.btn-booking {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    width: 100%;
    max-width: 220px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #7C3AED, #DB2777);
}

.healing-process {
    margin-bottom: 4rem;
}

.healing-process h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgb(255, 255, 255);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: var(--primary-color);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.healing-cta {
    margin-top: 4rem;
    text-align: center;
    background: rgba(255, 255, 255, 1);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.healing-cta .cta-buttons {
    margin-top: 2rem;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

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




.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.about-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 3;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    position: relative;
    z-index: 3;
}

.qualities {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 3;
}

.quality {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.quality i {
    font-size: 2rem;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.quality span {
    font-weight: 600;
    color: var(--text-dark);
}

.about-image {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.about-image-container {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(138, 92, 246, 0);
    background: var(--gradient-primary);
    z-index: 3;
}

.about-image-picture {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.about-image-container:hover .about-main-image {
    transform: scale(1.03);
}

/* About Image Energy Aura */
.about-energy-aura {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    z-index: 1;
    animation: aboutAura 6s infinite ease-in-out;
}

@keyframes aboutAura {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.2; 
    }
    50% { 
        transform: scale(1.1) rotate(180deg); 
        opacity: 0.4; 
    }
}

/* About Sacred Geometry */
.about-sacred-geometry {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.about-geometry-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: aboutRotate 25s infinite linear;
}

.about-geometry-triangle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: translate(-50%, -50%);
    animation: aboutRotate 20s infinite linear reverse;
}

@keyframes aboutRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Services Section */
.services {
    display: none;
    padding: 6rem 0;
    background: var(--background-light);
    position: relative;
    z-index: 0;
    scroll-margin-top: 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
    position: relative;
    z-index: 3;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Coming Soon Service Cards */
.service-card.coming-soon {
    opacity: 0.4;
    position: relative;
    filter: grayscale(0.3);
}

.service-card.coming-soon:hover {
    opacity: 0.5;
    transform: translateY(-3px);
    filter: grayscale(0.2);
}

.service-card.coming-soon .service-icon {
    opacity: 0.3;
    filter: grayscale(0.5);
}

.service-card.coming-soon:hover .service-icon {
    opacity: 0.4;
    filter: grayscale(0.3);
}

.coming-soon-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

/* Connection Section */
.connection {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    z-index: 0;
    scroll-margin-top: 80px;
}

.connection-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 3;
}

.connection-form h3,
.connection-info h3 {
    margin-top: 0;
    margin-bottom: 2rem;
    padding-top: 0;
}

.connection-form {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    position: relative;
    z-index: 3;
}

.connection-form h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    margin-top: 0;
    padding-top: 0;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 3;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    z-index: 3;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    position: relative;
    z-index: 3;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.connection-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    z-index: 3;
    margin-top: 2.5rem;
    padding-top: 0;
}

.connection-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    position: relative;
    z-index: 3;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 3;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 3;
}

.benefit i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.benefit span {
    font-weight: 500;
    color: var(--text-dark);
}

.connection-image {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.connection-main-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.connection-main-image:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--background-light);
    position: relative;
    z-index: 0;
    scroll-margin-top: 80px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 3;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 3;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 3;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 3;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

/* Footer */
.footer {
    background: var(--background-dark);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    position: relative;
    z-index: 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 3;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-logo-symbol {
    height: 60px;
    width: auto;
    object-fit: contain;
    max-width: 4rem;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 1000;
    transition: left 0.3s ease;
    padding-top: 80px;
    box-shadow: var(--shadow-strong);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 2rem;
    margin: 0;
}

.mobile-menu li {
    margin-bottom: 1.5rem;
}

.mobile-menu ul a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.mobile-menu ul a:hover {
    color: var(--primary-color);
}

/* Mobile menu CTA wrapper uses no inline styles to preserve button look */
.mobile-cta {
    padding: 0 2rem 2rem 2rem;
    display: flex;
    justify-content: center;
}

.mobile-cta .btn.btn-booking {
    width: 100%;
    max-width: 220px;
    text-align: center;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 1001;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .language-selector {
        gap: 0.25rem;
    }
    
    .flag-btn {
        width: 35px;
        height: 35px;
        padding: 0.4rem;
    }
    
    .flag {
        font-size: 1.2rem;
    }
    
    .hero {
        padding-top: 85px;
    }
    
    .about,
    .healing,
    .services,
    .connection,
    .contact {
        scroll-margin-top: 90px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image-container {
        width: 350px;
        height: 420px;
    }
    
    .sacred-geometry {
        width: 300px;
        height: 300px;
    }
    
    .about-content,
    .connection-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image-container {
        width: 320px;
        height: 400px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .qualities {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }
    
    .healing-grid {
        grid-template-columns: 1fr;
    }
    
    .healing-method-full {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
        margin: 2rem auto 0;
    }
    
    .healing-method-full .method-icon {
        width: 80px;
        height: 80px;
    }
    
    .healing-method-full .method-icon i {
        font-size: 2rem;
    }
    
    .healing-method-full h4 {
        font-size: 1.5rem;
    }
    
    .healing-method-full p {
        font-size: 1rem;
    }
    
    .healing-method-full .method-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .healing-method-full .btn-booking {
        margin-left: 0;
        padding: 1.2rem 2.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .healing-benefits {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cta-text {
        text-align: center;
    }
    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
       
    }
    .footer-logo-symbol {
        height: 60px;
        width: auto;
        object-fit: contain;
        max-width: 6rem;
    }
    
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.9rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .hero-image-container {
        width: 280px;
        height: 336px;
    }
    
    .about-image-container {
        width: 280px;
        height: 350px;
    }
    
    /* Healing CTA Mobile Optimizations */
    .healing-cta {
        padding: 2rem 1.5rem;
        margin: 0 auto;
        border-radius: 15px;
        max-width: calc(100% - 30px);
    }
    
    .cta-content {
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .cta-text h3 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .cta-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
}

/* iPhone 13 mini and similar small devices */
@media (max-width: 385px) {
    .hero {
        padding-top: 80px;
    }
    
    .about,
    .healing,
    .services,
    .connection,
    .contact {
        scroll-margin-top: 90px;
    }
    
    .healing-cta {
        padding: 1.5rem 1rem;
        margin: 0 auto;
        max-width: calc(100% - 20px);
    }
    
    .cta-content {
        gap: 1rem;
        max-width: 100%;
    }
    
    .cta-text h3 {
        font-size: 1.8rem;
    }
    
    .cta-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    .section-header h2 {
        font-size: 1.9rem;
    }
    .healing-benefits li {
        font-size: 0.9rem;
    }   
}

/* Extra small devices - iPhone 13 mini specific */
@media (max-width: 360px) {
    .hero {
        padding-top: 90px;
    }
    
    .about,
    .healing,
    .services,
    .connection,
    .contact {
        scroll-margin-top: 100px;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .healing-cta {
        padding: 1.2rem 0.8rem;
        margin: 0 auto;
        max-width: calc(100% - 16px);
    }
}
