﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* CJK Language Support */
body[lang="ko"] {
    font-family: 'Noto Sans KR', 'Poppins', sans-serif;
}

body[lang="zh"] {
    font-family: 'Noto Sans SC', 'Poppins', sans-serif;
}

body[lang="ja"] {
    font-family: 'Noto Sans JP', 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
    will-change: transform;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #00d4ff;
    position: relative;
}

.logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo span {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: linear-gradient(45deg, #00d4ff, #00ffaa, #00d4ff, #ff00ff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite, textGlow 2s ease-in-out infinite alternate;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-5px) rotate(-5deg);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes textGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(102, 126, 234, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.8));
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #b0b0b0;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #00d4ff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #00d4ff;
}

.nav-link:hover::after {
    width: 70%;
}

.nav-link:active {
    color: #00aacc;
}

/* Active state for navigation */
.nav-link.active {
    color: #00d4ff;
    font-weight: 600;
}

.nav-link.active::after {
    width: 70%;
}


/* Language Switcher */
.language-switcher {
    position: relative;
}

.language-select {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    padding: 8px 15px;
    font-size: 14px;
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    outline: none;
    position: relative;
    overflow: hidden;
}

.language-select::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.language-select:hover::before {
    left: 100%;
}

.language-select:hover {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.language-select:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.3);
}



.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hamburger:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.1);
}

.bar {
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 2px;
    position: relative;
}

.hamburger:hover .bar {
    background: #00d4ff;
    transform: scaleX(1.2);
}

.hamburger:hover .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger:hover .bar:nth-child(2) {
    opacity: 0;
}

.hamburger:hover .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 70vh;
    background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #000000 100%);
    color: white;
    padding: 4rem 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.spa-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-leaf {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.leaf-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.leaf-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.leaf-3 {
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

.leaf-4 {
    top: 80%;
    left: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

/* Hero Logo with Leaf Background */
.hero-logo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.logo-background {
    position: relative;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.logo-leaf {
    position: absolute;
    font-size: 3rem;
    opacity: 0.6;
    animation: logoFloat 4s ease-in-out infinite;
}

.logo-leaf.leaf-1 {
    top: 20px;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(-15deg);
}

.logo-leaf.leaf-2 {
    top: 40px;
    right: 15%;
    animation-delay: 1s;
    transform: rotate(20deg);
}

.logo-leaf.leaf-3 {
    bottom: 30px;
    left: 20%;
    animation-delay: 2s;
    transform: rotate(-10deg);
}

.logo-leaf.leaf-4 {
    bottom: 20px;
    right: 10%;
    animation-delay: 3s;
    transform: rotate(15deg);
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(var(--rotation, 0deg));
    }
    50% {
        transform: translateY(-10px) rotate(var(--rotation, 0deg));
    }
}

.logo-text {
    position: relative;
    z-index: 3;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #00d4ff, #00ffaa, #ff00ff, #00d4ff);
    background-size: 400% 400%;
    color: #000000;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: gradientShift 4s ease-in-out infinite;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.8);
    filter: brightness(1.2);
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.massage-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spa-icon {
    position: relative;
    font-size: 8rem;
    opacity: 0.8;
}

.spa-icon i {
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.energy-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wave {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: wave 3s ease-in-out infinite;
}

.wave-1 {
    width: 120px;
    height: 120px;
    animation-delay: 0s;
}

.wave-2 {
    width: 180px;
    height: 180px;
    animation-delay: 1s;
}

.wave-3 {
    width: 240px;
    height: 240px;
    animation-delay: 2s;
}

@keyframes wave {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #ffffff;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

/* About Section */
.about {
    background: #0a0a0a;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.about-text p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature i {
    font-size: 2rem;
    color: #00d4ff;
    margin-top: 0.5rem;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.feature p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #00d4ff;
}

.stat-label {
    font-size: 1rem;
    color: #b0b0b0;
}

/* Pricing Section */
.pricing {
    background: #1a1a1a;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.currency-converter {
    background: rgba(0, 212, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.currency-converter h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.converter-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.converter-controls label {
    font-weight: 500;
    color: #b0b0b0;
}

.converter-controls select {
    padding: 10px 15px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: #e0e0e0;
    cursor: pointer;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid rgba(0, 212, 255, 0.3);
    will-change: transform;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4);
}

.pricing-card.featured {
    border-color: #00d4ff;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.5);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff00ff, #00d4ff);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-header i {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.card-header h3 {
    font-size: 1.5rem;
    color: #ffffff;
}

.price {
    text-align: center;
    margin-bottom: 2rem;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.currency {
    font-size: 1.5rem;
    color: #00d4ff;
}

.duration {
    font-size: 1rem;
    color: #b0b0b0;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.features-list i {
    color: #4caf50;
    font-size: 0.9rem;
}

.book-btn {
    width: 100%;
    background: linear-gradient(45deg, #00d4ff, #00ffaa, #ff00ff);
    background-size: 300% 300%;
    color: #000000;
    border: none;
    padding: 18px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.05em;
    animation: gradientShift 3s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.book-btn:hover::before {
    left: 100%;
}

.book-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.7);
    filter: brightness(1.2);
}

.book-btn:active {
    transform: translateY(-1px) scale(1.01);
}

/* Portfolio Section */
.portfolio {
    background: #0a0a0a;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.video-item {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.video-item h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.2rem;
}

.video-container {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.video-container:hover .video-overlay {
    opacity: 0.8;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #4a90e2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.video-info {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 0.5rem;
}

.video-info span {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.video-info .duration {
    background: rgba(0, 0, 0, 0.8);
}

.video-info .quality {
    background: rgba(74, 144, 226, 0.9);
}

.video-item p {
    color: #b0b0b0;
    font-size: 0.95rem;
}


.custom-video-section {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.custom-video-section h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.video-input-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.video-input-container input {
    flex: 1;
    padding: 12px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: #e0e0e0;
}

.video-input-container button {
    background: #00d4ff;
    color: #000000;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.custom-video-player {
    margin-top: 1rem;
}

.custom-video-player video {
    width: 100%;
    max-height: 400px;
    border-radius: 10px;
}

/* Contacts Section */
.contacts {
    background: #1a1a1a;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: #ffffff;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #00d4ff;
    margin-top: 0.2rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-item p {
    color: #b0b0b0;
    margin: 0;
}


.contact-form {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.contact-form select {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: #e0e0e0;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #ff5252;
}

.map-container {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe,
.map-container #yandex-map {
    border-radius: 15px;
}

.map-placeholder {
    background: rgba(0, 0, 0, 0.5);
    height: 300px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

/* Contact Info Section Styles */
.contact-info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-details > div {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.contact-details i {
    font-size: 1.2rem;
    color: #00d4ff;
    width: 20px;
    text-align: center;
}

.contact-details span {
    font-size: 1rem;
    color: #e0e0e0;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #00d4ff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00d4ff;
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: #00d4ff;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* WhatsApp Booking Styles */
.whatsapp-booking {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.whatsapp-booking h4 {
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-booking h4 i {
    font-size: 1.5rem;
}

.whatsapp-booking p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.quick-booking-form {
    display: grid;
    gap: 1rem;
}

.whatsapp-btn {
    background: linear-gradient(45deg, #25d366, #128c7e, #075e54);
    background-size: 300% 300%;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.05em;
    animation: gradientShift 3s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    background: linear-gradient(45deg, #128c7e, #25d366, #075e54);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    filter: brightness(1.1);
}

.whatsapp-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.whatsapp-btn i {
    font-size: 1.3rem;
}

.booking-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.booking-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.booking-divider span {
    background: white;
    padding: 0 1rem;
    color: #666;
    font-weight: 500;
}

.traditional-booking h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

/* РђРЅРёРјР°С†РёРё РґР»СЏ СѓРІРµРґРѕРјР»РµРЅРёР№ */
@keyframes slideInNotification {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutNotification {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.conversion-notification {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-weight: 500;
}

/* Scroll animations */
.pricing-card,
.video-item,
.feature-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.pricing-card.animate,
.video-item.animate,
.feature-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Header scroll effect */
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Star rating animations */
.stars-input i {
    transition: all 0.2s ease;
    cursor: pointer;
}

.stars-input i:hover,
.stars-input i.active {
    color: #ffd700;
    transform: scale(1.1);
}

/* Button hover effects */
.book-btn {
    transition: all 0.3s ease;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn {
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Checkbox responsive fixes */
@media (max-width: 768px) {
    .checkbox-label {
        padding: 1rem;
        gap: 1.2rem;
        min-height: 60px;
    }
    
    .checkmark {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        border-width: 3px;
    }
    
    .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
        font-size: 18px;
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
        padding: 1.5rem 0;
        gap: 0.5rem;
        z-index: 999;
        border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.25rem 0;
    }

    .nav-link {
        margin: 0 1rem;
        padding: 15px 25px;
        font-size: 1rem;
        width: calc(100% - 2rem);
        max-width: 280px;
        border-radius: 8px;
        display: block;
    }

    .language-switcher {
        order: -1;
        margin-right: 1rem;
    }

    .language-select {
        font-size: 12px;
        padding: 6px 10px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 15px;
        margin-top: 70px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .spa-icon {
        font-size: 6rem;
    }

    .floating-leaf {
        font-size: 1.5rem;
    }

    .logo-background {
        height: 150px;
    }

    .logo-leaf {
        font-size: 2rem;
    }

    .logo-text {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .logo span {
        font-size: 1.4rem;
        letter-spacing: 0.1em;
    }

    .logo i {
        font-size: 1.6rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .feature h4 {
        font-size: 1.1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        gap: 1.5rem;
    }

    .contacts-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Better form inputs on mobile */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 14px;
    }

    /* Better buttons on mobile */
    .cta-button,
    .book-btn,
    .whatsapp-btn {
        padding: 16px 30px;
        font-size: 1rem;
        min-height: 48px; /* Better touch target */
    }

    /* Footer improvements */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}


/* Extra small devices (phones in portrait) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .hero {
        padding: 1.5rem 10px;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .card-header h3 {
        font-size: 1.3rem;
    }

    .amount {
        font-size: 2rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-container {
        height: 200px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }

    .whatsapp-booking {
        padding: 1.5rem;
    }

    /* Logo adjustments */
    .logo span {
        font-size: 1.2rem;
    }

    .logo i {
        font-size: 1.4rem;
    }

    /* Navigation */
    .nav-link {
        font-size: 0.95rem;
        padding: 12px 20px;
    }

    /* About section */
    .about-text h3 {
        font-size: 1.3rem;
    }

    .feature {
        flex-direction: column;
        text-align: center;
    }

    .feature i {
        margin: 0 auto 0.5rem;
    }

    /* Stats */
    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* Form improvements */
    .quick-booking-form {
        gap: 0.75rem;
    }

    /* Map */
    .map-container iframe {
        height: 300px;
    }
}

/* Tablet devices (portrait and landscape) */
@media (min-width: 481px) and (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 3rem 20px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-content {
        gap: 2rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .video-container {
        height: 250px;
    }

    .about-content {
        gap: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    /* Improve touch targets for tablets */
    .nav-link {
        padding: 10px 18px;
    }

    .cta-button,
    .book-btn {
        min-height: 44px;
    }
}

/* Landscape mode optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 50vh;
        padding: 1.5rem 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-content {
        gap: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    section {
        padding: 40px 0;
    }

    .massage-card {
        max-width: 280px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-card,
.video-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success states */
.success {
    border-color: #4caf50 !important;
    background-color: #f1f8e9 !important;
}

/* Error states */
.error {
    border-color: #f44336 !important;
    background-color: #ffebee !important;
}

/* New Hero Section Styles */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.massage-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
}

.pattern-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    animation: float 8s ease-in-out infinite;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.circle-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.pattern-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(0, 212, 255, 0.5);
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

.dot-1 {
    top: 25%;
    left: 30%;
    animation-delay: 0s;
}

.dot-2 {
    top: 45%;
    right: 25%;
    animation-delay: 1s;
}

.dot-3 {
    bottom: 35%;
    left: 15%;
    animation-delay: 2s;
}

.dot-4 {
    top: 70%;
    right: 40%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.hero-badge i {
    color: #00d4ff;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(45deg, #00d4ff, #00ffaa);
    color: #000000;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

.cta-button.secondary {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button.primary:hover {
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.8);
}

.cta-button.secondary:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.massage-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    max-width: 350px;
    width: 100%;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.therapist-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00d4ff, #00ffaa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000000;
}

.card-info h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.card-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.massage-preview {
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hands-animation {
    position: relative;
    z-index: 2;
}

.hand {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    animation: massage-motion 3s ease-in-out infinite;
}

.hand-left {
    left: -20px;
    animation-delay: 0s;
}

.hand-right {
    right: -20px;
    animation-delay: 1.5s;
}

@keyframes massage-motion {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.relaxation-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.relaxation-waves .wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.relaxation-waves .wave-1 {
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.relaxation-waves .wave-2 {
    width: 100px;
    height: 100px;
    animation-delay: 0.5s;
}

.relaxation-waves .wave-3 {
    width: 120px;
    height: 120px;
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.card-footer {
    text-align: center;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.rating i {
    color: #ffd700;
    font-size: 1rem;
}

.rating span {
    margin-left: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

/* Mobile responsive for new hero */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .massage-card {
        max-width: 300px;
        padding: 1.5rem;
    }
    
    .pattern-circle {
        display: none;
    }
}

