body { font-family: 'Arial', sans-serif; margin: 0; color: #333; scroll-behavior: smooth; }
.swiper { width: 100%; height: 100%; }
.swiper-slide { background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; color: #fff; text-align: center; }
.rooms {
    padding: 100px 20px;
    background-color: #fdfdfd; /* Сәл ғана сұрғылт фон, ақтан ажырату үшін */
}

.room-grid {
    display: grid;
    /* 300px-ден кем емес, бірақ 400px-ден аспайтындай реттейміз */
    grid-template-columns: repeat(auto-fit, minmax(320px, 400px)); 
    gap: 40px;
    justify-content: center; /* Карталарды ортаға жинау */
    max-width: 1200px;
    margin: 0 auto;
}
.room-card {
    background: #fff;
    border-radius: 15px; /* Жұмсақ бұрыштар */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Жеңіл көлеңке */
    transition: all 0.4s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.15); /* Алтын түстес көлеңке */
    border-color: #c5a059;
}

/* Суреттің пропорциясын сақтау */
.room-card img {
    width: 100%;
    height: 250px; /* Биіктігін нақты бекітеміз */
    object-fit: cover; /* Суретті созбай, қиып толтырады */
    transition: 0.5s;
}

.room-card:hover img {
    transform: scale(1.05); /* Hover кезінде сурет сәл жақындайды */
}
.room-info {
    padding: 25px;
    text-align: center;
}

.room-info h3 {
    font-family: 'Georgia', serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.room-info button {
    background: transparent;
    border: 1px solid #c5a059;
    color: #c5a059;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.room-info button:hover {
    background: #c5a059;
    color: #fff;
}
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); }
.modal-content { background: #fff; margin: 5% auto; padding: 20px; width: 80%; max-width: 800px; border-radius: 10px; position: relative; }
.close { position: absolute; right: 20px; top: 10px; font-size: 30px; cursor: pointer; }

.contact { background: #f9f9f9; padding: 60px 20px; text-align: center; }
form { display: flex; flex-direction: column; max-width: 400px; margin: auto; gap: 15px; }
form input, form select, form button { padding: 12px; border: 1px solid #ccc; border-radius: 5px; }
form button { background: #c5a059; color: #fff; border: none; cursor: pointer; }
.lazy {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.fade-in {
    opacity: 1;
}
header {
    background: rgba(255, 255, 255, 0.95); /* Мөлдірлеу ақ түс */
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px); /* Артқы жақты әдемі бұлдырату */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Логотип стилі */
.logo {
    font-size: 24px;
    font-weight: 800;
    color: #c5a059; /* Алтын түс */
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Georgia', serif; /* Классикалық стиль */
}
nav ul {
    display: flex;
    list-style: none;
    gap: 10px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 4px; /* Тік бұрышты, бірақ сәл жұмсақ */
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

/* Hover эффектісі - батырманың астына сызық пайда болу */
nav ul li a:hover {
    color: #c5a059;
    background: rgba(197, 160, 89, 0.1);
}

/* "Брондау" батырмасын ерекшелеу (Акцент) */
.btn-book {
    background: #c5a059 !important;
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.3);
}

.btn-book:hover {
    background: #a38345 !important;
    transform: translateY(-1px);
}
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    /* Параллакс эффектісінің негізі */
    background-image: url('../images/adtrh-1362.webp'); 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Фотоның үстіндегі қараңғы қабат (текст жақсы көріну үшін) */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* 40% қараңғылық */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    font-family: 'Georgia', serif;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 20px;
    z-index: 2;
}

.scroll-down::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #fff;
    margin-left: -3px;
    border-radius: 50%;
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}
.room-img-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.room-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Суретті созбай, қиып толтырады */
    transition: transform 0.5s ease;
}

.room-card:hover .room-img-container img {
    transform: scale(1.1); /* Hover кезінде суреттің сәл жақындауы */
}

.room-info p {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}
.treatments {
    padding: 100px 20px;
    background-color: #f4f7f6; /* Ақшыл-көгілдір, емдік түс */
    text-align: center;
}

.section-subtitle {
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.treatment-grid {
    display: grid;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
	    /* Карточкалардың биіктігін бірдей қылу */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch; 
}

.treatment-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
	display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.treatment-card:hover {
    transform: translateY(-5px);
    border-bottom: 4px solid #c5a059; /* Hover кезінде алтын сызық шығады */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.treatment-card p {
    font-size: 14px;
    line-height: 1.5;
}
.treatment-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.treatment-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-family: 'Georgia', serif;
}

.treatment-card p {
    color: #7f8c8d;
    font-size: 15px;
    line-height: 1.6;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 20px 0;
}

.section-header h2 {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* Декоративті бөлім (Divider) */
.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-divider .line {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, #c5a059);
}

.title-divider .line:last-child {
    background: linear-gradient(to left, transparent, #c5a059);
}

.title-divider .diamond {
    width: 12px;
    height: 12px;
    background-color: #c5a059;
    transform: rotate(45deg);
    display: inline-block;
}
/* Мобильді батырма стилі (әдепкіде жасырулы) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle .bar {
    width: 28px;
    height: 3px;
    background-color: #c5a059;
    transition: all 0.3s ease;
}

/* 768px-ден төмен экрандар үшін (Телефондар) */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 1001;
		   }
		   .section-header h2 {font-size:1.5rem !important;}

    .nav-menu {
        position: fixed;
        left: -100%; /* Бастапқыда экранның сол жағында жасырулы */
        top: 0;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding-top: 100px;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0; /* Басқанда экранға шығады */
    }

    .nav-menu li {
        margin: 25px 0;
    }

    nav ul li a {
        font-size: 1.2rem;
        display: block;
    }

    /* Батырманы "X" пішініне айналдыру анимациясы */
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}
.pricing-section {
    padding: 80px 20px;
    background-color: #fff;
}

.pricing-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.price-column {
    flex: 1; /* Екі баған тең бөлінеді */
    background: #fdfdfd;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.price-column h3 {
    font-family: 'Georgia', serif;
    color: #c5a059;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.price-list {
    display: flex;
    flex-direction: column;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #ddd; /* Нүктелі сызық әдемі көрінеді */
    font-size: 15px;
    color: #444;
    transition: 0.2s;
}

.price-item:hover {
    background-color: rgba(197, 160, 89, 0.05);
    padding-left: 5px;
    color: #000;
}

.price-item .amount {
    font-weight: 700;
    color: #c5a059;
    white-space: nowrap;
}

/* Мобильді нұсқа (Телефондар үшін) */
@media screen and (max-width: 992px) {
    .pricing-container {
        flex-direction: column; /* Асты-үстіне қою */
        gap: 20px;
    }
    
    .price-column {
        padding: 20px;
    }
}
.reviews-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px; /* Стрелкалар үшін орын */
}

.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.review-photo {
    flex-shrink: 0;
}

.review-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%; /* Дөңгелек фото */
    object-fit: cover;
    border: 3px solid #c5a059;
}

.review-text p {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.review-text h4 {
    color: #333;
    margin-bottom: 5px;
}

.review-text span {
    font-size: 13px;
    color: #c5a059;
}

/* Стрелкаларды алтын түске бояу */
.reviews-section .swiper-button-next,
.reviews-section .swiper-button-prev {
    color: #c5a059;
}

/* Мобильді нұсқада фотоны ортаға қою (таңдау бойынша) */
@media screen and (max-width: 600px) {
    .review-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    /* Элементтерді астынан жоғары қарай ретпен тізу */
    flex-direction: column-reverse; 
    align-items: center;
    gap: 15px;
}

/* Қосымша батырмалардың анимациясын реттеу */
.fab-buttons {
    display: flex;
    flex-direction: column-reverse; /* Мұнда да кері бағыт */
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    /* Батырма ашылғанда астынан жоғары қарай көтерілу эффектісі */
    transform: translateY(20px); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Ашылғандағы күйі */
.fab-container.active .fab-buttons {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Негізгі батырманың стилі (өзгеріссіз қалды) */
.fab-main {
    width: 60px;
    height: 60px;
    background-color: #c5a059;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 2;
}

.fab-icon-main { font-size: 30px; }

/* Қосымша батырмалар блогы */
.fab-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fab-container.active .fab-buttons {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.fab-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.fab-item:hover { transform: scale(1.1); }

.whatsapp { background-color: #25D366; color: white; font-weight: bold; }
.phone { background-color: #34b7f1; color: white; }

/* Pulse анимациясы */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(197, 160, 89, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

/* Батырма ашық тұрғанда негізгі батырманың айналуы */
.fab-container.active .fab-main {
    transform: rotate(135deg);
    background-color: #e74c3c; /* Жабу кезінде қызыл түске өзгереді */
}
/* Иконкалардың өлшемі */
.fab-main i {
    font-size: 28px;
    color: white;
    transition: transform 0.3s ease;
}

.fab-item i {
    font-size: 22px;
    color: white;
}

/* Батырма ашылғанда негізгі иконканың айналуы */
.fab-container.active .fab-main i {
    transform: rotate(135deg); /* Плюс белгісі болса, Х-ке айналады */
}

/* WhatsApp түсін сәл қанық қылу */
.whatsapp {
    background-color: #25D366;
}

/* Телефон түсі */
.phone {
    background-color: #34b7f1;
}
.price-item i {
    color: #c5a059; /* Алтын түс */
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.price-item strong {
    color: #333;
    font-weight: 600;
}
/* Соңғы бонус қатарды ерекшелеу */
.bonus-item {
    background-color: rgba(197, 160, 89, 0.08);
    border-radius: 8px;
    padding: 15px !important;
    margin-top: 10px;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.bonus-item i {
    color: #c5a059;
}

/* Бағалардың түсі мен шрифтін қатыру */
.amount {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    background: #fdf8ef;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #eee;
}
.footer {
    background-color: #1a1a1a; /* Қара-сұр, премиум түс */
    color: #fff;
    padding: 80px 20px 20px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-about .logo {
    color: #c5a059;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
}

.footer h4 {
    color: #c5a059;
    margin-bottom: 25px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer p {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-contact i {
    color: #c5a059;
    margin-right: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: #c5a059;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 14px;
}
.pricing-table-section { padding: 10px 0 50px; background: #fff; }

/* Табтарды стильдеу */
.lang-tabs { text-align: center; margin-bottom: 30px; }
.tab-btn {
    padding: 10px 25px;
    border: 1px solid #c5a059;
    background: transparent;
    color: #c5a059;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    margin: 0 5px;
}
.tab-btn.active, .tab-btn:hover { background: #c5a059; color: #fff; }

/* Скролл механизмі */
.table-responsive {
    width: 100%;
    overflow-x: auto; /* Горизонталды скролл */
    -webkit-overflow-scrolling: touch;
    border: 1px solid #eee;
    border-radius: 8px;
}

table {
    width: 100%;
    min-width: 800px; /* Скролл пайда болуы үшін минималды ен */
    border-collapse: collapse;
    background: white;
}

th { background: #f8f5f0; color: #c5a059; padding: 15px; text-align: left; border-bottom: 2px solid #c5a059; }
td { padding: 15px; border-bottom: 1px solid #eee; color: #444; }
.center { text-align: center; font-weight: bold; }
.sub-head { background: #fafafa; font-weight: bold; color: #c5a059; }

.price-note { margin-top: 15px; font-size: 0.9rem; color: #888; font-style: italic; }

/* Табтарды жасыру/көрсету */
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.5s; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lang-switcher {
    position: fixed;
    top: 10px;
    right: 100px; /* Брондау батырмасына кедергі келтірмеу үшін */
    z-index: 1002;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #c5a059;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.lang-link:hover {
    color: #c5a059;
}

.divider {
    color: #ccc;
}

/* Мобильді нұсқада ыңғайлы болу үшін */
@media screen and (max-width: 768px) {
    .lang-switcher {
        top: 12px;
        right: 78px;
        padding: 5px 12px;
    }
}
.gallery-section { padding: 80px 20px; background: #fff; }

/* Фото Слайдер */
.photo-slider-container { max-width: 1000px; margin: 0 auto 60px; }
.photoSwiper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

/* Reels Grid */
.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.reel-card {
    aspect-ratio: 9 / 16; /* 9:16 форматы */
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.reel-card video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Видео толық сыйып тұруы үшін */
}

@media screen and (max-width: 768px) {
    .reels-grid {
        grid-template-columns: repeat(2, 1fr); /* Мобильдіде 2 баған */
    }
    .photoSwiper img { height: 300px; }
}
.contact {
    padding: 80px 20px;
    background: #fdfaf5;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.input-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.select-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.select-wrapper label {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
    margin-left: 5px;
}

input, select {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    font-size: 16px;
    background: #f9f9f9;
    transition: 0.3s;
}

input:focus, select:focus {
    outline: none;
    border-color: #c5a059;
    background: #fff;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #c5a059;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #ac8b4a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

@media screen and (max-width: 600px) {
    .input-group {
        flex-direction: column;
        gap: 0;
    }
    .form-container {
        padding: 25px;
    }
	.hero-content h1{font-size:2.5rem;}
	.tab-content {max-width:100%;}
}
/* Бастапқы күйі: көрінбейді және 50px төмен тұр */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    transition-property: transform, opacity;
}

/* Экранға келгендегі күйі: көрінеді және орнына келеді */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* Батырманың стилі */
.dark-mode-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #c5a059;
    color: white;
    border: none;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-size: 20px;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-mode-btn:hover {
    transform: scale(1.1);
    background: #ac8b4a;
}

/* Қараңғы режимнің негізгі түстері */
body.dark-theme {
    background-color: #121212;
    color: #e0e0e0;
}

/* Қараңғы режимдегі басқа блоктардың өзгеруі */
.dark-theme .rooms, 
.dark-theme .pricing-section,
.dark-theme .form-container,
.dark-theme .pricing-table-section {
    background-color: #1e1e1e !important;
    color: #ffffff;
}

.dark-theme .room-card, 
.dark-theme .treatment-card,
.dark-theme .review-card {
    background-color: #252525;
    border: 1px solid #333;
}

.dark-theme h2, .dark-theme h3 {
    color: #c5a059;
}

.dark-theme input, .dark-theme select {
    background: #333;
    color: white;
    border: 1px solid #444;
}
/* --- DARK MODE ТОЛЫҚ НҰСҚАСЫ --- */

/* Негізгі фон мен мәтін түсі */
body.dark-theme {
    background-color: #121212;
    color: #e0e0e0;
}

/* Барлық ақ немесе ақшыл секциялар мен контейнерлер */
.dark-theme .rooms, 
.dark-theme .pricing-section,
.dark-theme .form-container,
.dark-theme .pricing-table-section,
.dark-theme .treatments,
.dark-theme .reviews-section,
.dark-theme .gallery-section,
.dark-theme .contact,
.dark-theme header {
    background-color: #1a1a1a !important;
    color: #e0e0e0;
}

/* Header және Навигация */
.dark-theme header {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    background: rgba(26, 26, 26, 0.95) !important;
}

.dark-theme nav ul li a {
    color: #bbb;
}

.dark-theme .lang-switcher {
    background: #252525;
    border-color: #c5a059;
}

.dark-theme .lang-link {
    color: #fff;
}

/* Карточкалар (Нөмірлер, Емшаралар, Пікірлер) */
.dark-theme .room-card, 
.dark-theme .treatment-card,
.dark-theme .review-card,
.dark-theme .price-column,
.dark-theme .reel-card {
    background-color: #252525 !important;
    border: 1px solid #333 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.dark-theme .room-info h3,
.dark-theme .treatment-card h3,
.dark-theme .review-text h4 {
    color: #fff;
}

.dark-theme .room-info p,
.dark-theme .treatment-card p,
.dark-theme .review-text p,
.dark-theme .section-subtitle {
    color: #bbb;
}

/* Кестелер (Pricing Table) */
.dark-theme table {
    background-color: #252525;
    color: #e0e0e0;
}

.dark-theme th {
    background-color: #333;
    color: #c5a059;
    border-bottom: 2px solid #c5a059;
}

.dark-theme td {
    border-bottom: 1px solid #333;
    color: #bbb;
}

.dark-theme .sub-head {
    background: #2a2a2a;
    color: #c5a059;
}

/* Форма элементтері */
.dark-theme input, 
.dark-theme select,
.dark-theme textarea {
    background: #333 !important;
    color: white !important;
    border: 1px solid #444 !important;
}

.dark-theme .select-wrapper label {
    color: #c5a059;
}

/* Бағалар мен тізімдер */
.dark-theme .price-item {
    border-bottom: 1px dashed #444;
    color: #bbb;
}

.dark-theme .price-item strong {
    color: #fff;
}

.dark-theme .amount {
    background: #333;
    border-color: #444;
}

.dark-theme .bonus-item {
    background-color: rgba(197, 160, 89, 0.1);
    border-color: rgba(197, 160, 89, 0.3);
}

/* Футер */
.dark-theme .footer {
    background-color: #0a0a0a;
    border-top: 1px solid #222;
}

/* Модальді терезелер */
.dark-theme .modal-content {
    background-color: #1e1e1e;
    color: #fff;
}

/* Скролл және Divider */
.dark-theme .section-header h2 {
    color: #fff;
}

.dark-theme .title-divider .line {
    background: linear-gradient(to right, transparent, #c5a059);
}
.tab-content {max-width:1200px;margin:0 auto;}