/* ==========================================
   Һомайҙың ере — Landing Page Styles
   Color Palette:
   - Deep Green:    #2F5D50
   - Warm Beige:    #E9D9B7
   - Terracotta:    #A85C3A
   - Dark Brown:    #4A3428
   - Milk/Light:    #F7F3EC
   ========================================== */

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #4A3428;
    background: #F7F3EC;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #A85C3A;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #2F5D50;
}

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

.section {
    padding: 80px 0;
}

.section--alt {
    background: #F0E8D8;
}

.section__title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2F5D50;
    position: relative;
}

.section__title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #A85C3A, #E9D9B7);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    gap: 8px;
}

.btn--primary {
    background: #A85C3A;
    color: #fff;
    border-color: #A85C3A;
}

.btn--primary:hover {
    background: #8B4C30;
    border-color: #8B4C30;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 92, 58, 0.35);
}

.btn--outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn--outline:hover {
    background: #fff;
    color: #A85C3A;
}

.btn--secondary {
    background: #2F5D50;
    color: #fff;
    border-color: #2F5D50;
}

.btn--secondary:hover {
    background: #245046;
    border-color: #245046;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 93, 80, 0.35);
}

.btn--lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn--full {
    width: 100%;
}

/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 16px 0;
}

.header--scrolled {
    background: rgba(74, 52, 40, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    text-decoration: none;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.logo-text--sm {
    font-size: 1.2rem;
}

.header__nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #E9D9B7;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E9D9B7;
    transition: width 0.3s;
}

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

.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.header__burger span {
    width: 28px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
    border-radius: 2px;
}

.header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../assets/img/hero-bg.jpg') center/cover no-repeat;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(47, 93, 80, 0.6) 0%,
        rgba(74, 52, 40, 0.7) 50%,
        rgba(74, 52, 40, 0.85) 100%
    );
    z-index: 1;
}

.hero__ornament {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.hero__ornament--top {
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 30px,
        rgba(233, 217, 183, 0.15) 30px,
        rgba(233, 217, 183, 0.15) 32px
    );
}

.hero__ornament--bottom {
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #A85C3A, #E9D9B7, #2F5D50, #E9D9B7, #A85C3A);
}

.hero__content {
    position: relative;
    z-index: 3;
    padding: 120px 20px 80px;
}

.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease-out;
}

.hero__subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* --- ABOUT --- */
.about__intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.about__text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4A3428;
}

.about__meaning {
    background: linear-gradient(135deg, #2F5D50 0%, #3d7565 100%);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 60px;
    color: #F7F3EC;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.about__meaning-icon {
    flex-shrink: 0;
}

.about__meaning-icon svg {
    stroke: #E9D9B7;
}

.about__meaning-icon svg circle {
    stroke: #E9D9B7;
}

.about__meaning-icon svg path {
    fill: #E9D9B7;
    fill-opacity: 0.3;
    stroke: #E9D9B7;
}

.about__quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    border-left: 3px solid #E9D9B7;
    padding-left: 20px;
    opacity: 0.95;
}

.about__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about__card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(74, 52, 40, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 3px solid transparent;
}

.about__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(74, 52, 40, 0.15);
    border-bottom-color: #A85C3A;
}

.about__card-icon {
    margin-bottom: 20px;
}

.about__card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #2F5D50;
    margin-bottom: 12px;
}

.about__card p {
    font-size: 0.95rem;
    color: #6B5B50;
    line-height: 1.6;
}

/* --- PROGRAM --- */
.program__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.program__card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 30px;
    position: relative;
    box-shadow: 0 4px 20px rgba(74, 52, 40, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.program__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #A85C3A, #2F5D50);
    border-radius: 4px 0 0 4px;
}

.program__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(74, 52, 40, 0.12);
}

.program__card-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #E9D9B7;
    margin-bottom: 12px;
    line-height: 1;
}

.program__card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2F5D50;
    margin-bottom: 10px;
}

.program__card p {
    font-size: 0.95rem;
    color: #6B5B50;
    line-height: 1.6;
}

/* --- NEWS --- */
.news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.news__card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(74, 52, 40, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(74, 52, 40, 0.12);
}

.news__card-date {
    font-size: 0.85rem;
    color: #A85C3A;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news__card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #4A3428;
    margin-bottom: 10px;
}

.news__card p {
    font-size: 0.95rem;
    color: #6B5B50;
    line-height: 1.6;
    margin-bottom: 16px;
}

.news__link {
    font-weight: 600;
    font-size: 0.9rem;
}

.news__more {
    text-align: center;
}

/* --- GALLERY --- */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 16px;
    margin-bottom: 40px;
}

.gallery__item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(47, 93, 80, 0);
    transition: background 0.3s;
}

.gallery__item:hover img {
    transform: scale(1.08);
}

.gallery__item:hover::after {
    background: rgba(47, 93, 80, 0.2);
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__item--tall {
    grid-row: span 2;
}

.gallery__more {
    text-align: center;
}

/* --- Lightbox --- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #fff;
    background: rgba(255,255,255,0.1);
    border: none;
    cursor: pointer;
    padding: 16px 20px;
    border-radius: 8px;
    transition: background 0.3s;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255,255,255,0.25);
}

.lightbox__prev {
    left: 20px;
}

.lightbox__next {
    right: 20px;
}

/* --- REVIEWS --- */
.reviews {
    overflow: hidden;
}

.reviews__slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.reviews__track {
    display: flex;
    transition: transform 0.5s ease;
}

.reviews__card {
    min-width: 100%;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(74, 52, 40, 0.08);
    text-align: center;
}

.reviews__stars {
    font-size: 1.5rem;
    color: #E9A03A;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.reviews__text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    color: #4A3428;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reviews__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.reviews__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2F5D50, #A85C3A);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.reviews__author strong {
    display: block;
    color: #4A3428;
    font-size: 1rem;
}

.reviews__author span {
    font-size: 0.85rem;
    color: #8B7B70;
}

.reviews__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.reviews__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #2F5D50;
    background: transparent;
    color: #2F5D50;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.reviews__btn:hover {
    background: #2F5D50;
    color: #fff;
}

.reviews__dots {
    display: flex;
    gap: 8px;
}

.reviews__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D4C6B0;
    cursor: pointer;
    transition: all 0.3s;
}

.reviews__dot.active {
    background: #A85C3A;
    transform: scale(1.2);
}

/* --- PRICING --- */
.pricing__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.pricing__price-block {
    background: #fff;
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(74, 52, 40, 0.1);
    border-top: 4px solid #A85C3A;
}

.pricing__badge {
    display: inline-block;
    background: #E9D9B7;
    color: #A85C3A;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.pricing__price {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #2F5D50;
    margin-bottom: 4px;
}

.pricing__price span {
    font-size: 2rem;
}

.pricing__note {
    color: #8B7B70;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.pricing__features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing__features li {
    padding: 8px 0;
    border-bottom: 1px solid #F0E8D8;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing__features li .check {
    font-size: 1.1rem;
}

.pricing__discounts h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2F5D50;
    margin-bottom: 24px;
}

.pricing__discount-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing__discount-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 2px 12px rgba(74, 52, 40, 0.06);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s;
}

.pricing__discount-card:hover {
    transform: translateX(4px);
}

.pricing__discount-card--special {
    border: 2px solid #2F5D50;
    background: linear-gradient(135deg, #F7F3EC, #E9F5F0);
}

.pricing__discount-label {
    font-weight: 700;
    color: #4A3428;
    flex: 1;
    min-width: 140px;
}

.pricing__discount-detail {
    font-size: 0.85rem;
    color: #8B7B70;
    flex: 2;
    min-width: 180px;
}

.pricing__discount-price {
    font-weight: 700;
    color: #A85C3A;
    font-size: 1.2rem;
    white-space: nowrap;
}

.pricing__discount-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: #8B7B70;
}

/* --- BOOKING --- */
.booking__form {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 0 8px 40px rgba(74, 52, 40, 0.08);
}

.booking__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4A3428;
}

.required {
    color: #A85C3A;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 2px solid #E0D5C5;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #4A3428;
    background: #F7F3EC;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #2F5D50;
    box-shadow: 0 0 0 3px rgba(47, 93, 80, 0.12);
}

.form-group input.error,
.form-group select.error {
    border-color: #d9534f;
}

.form-group--full {
    margin-bottom: 20px;
}

.form-group--center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking__workshops {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.checkbox-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 2px solid #E0D5C5;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    user-select: none;
}

.checkbox-card:hover {
    border-color: #2F5D50;
}

.checkbox-card input {
    display: none;
}

.checkbox-card__box {
    width: 20px;
    height: 20px;
    border: 2px solid #D4C6B0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.checkbox-card input:checked ~ .checkbox-card__box {
    background: #2F5D50;
    border-color: #2F5D50;
}

.checkbox-card input:checked ~ .checkbox-card__box::after {
    content: '✓';
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}

.checkbox-card input:checked ~ span:last-child {
    color: #2F5D50;
    font-weight: 600;
}

.checkbox-card.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    user-select: none;
}

.checkbox-label input {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #D4C6B0;
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-top: 2px;
}

.checkbox-label input:checked ~ .checkbox-custom {
    background: #2F5D50;
    border-color: #2F5D50;
}

.checkbox-label input:checked ~ .checkbox-custom::after {
    content: '✓';
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}

.checkbox-label a {
    text-decoration: underline;
}

.booking__success {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
}

.booking__success-icon {
    margin-bottom: 24px;
}

.booking__success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2F5D50;
    margin-bottom: 12px;
}

.booking__success p {
    color: #6B5B50;
}

/* --- MAP --- */
.map__wrapper {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(74, 52, 40, 0.08);
}

.map__wrapper iframe {
    display: block;
}

.map__locations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.map__location {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(74, 52, 40, 0.06);
}

.map__location-marker {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.map__location h4 {
    color: #2F5D50;
    font-size: 1rem;
    margin-bottom: 4px;
}

.map__location p {
    font-size: 0.85rem;
    color: #8B7B70;
}

/* --- CONTACTS --- */
.contacts {
    text-align: center;
}

.contacts__subtitle {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #6B5B50;
}

.contacts__socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.contacts__social {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #2F5D50;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.contacts__social:hover {
    background: #A85C3A;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(168, 92, 58, 0.3);
}

.contacts__info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contacts__item {
    font-size: 1rem;
}

.contacts__item a {
    color: #2F5D50;
    font-weight: 600;
}

/* --- FOOTER --- */
.footer {
    background: #4A3428;
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__brand p {
    margin-top: 8px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__nav a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer__nav a:hover {
    color: #E9D9B7;
}

.footer__socials {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer__socials a {
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}

.footer__socials a:hover {
    color: #E9D9B7;
}

.footer__bottom {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer__legal {
    color: rgba(255,255,255,0.6);
    text-decoration: underline;
    font-size: 0.85rem;
}

.footer__legal:hover {
    color: #E9D9B7;
}

/* --- CHATBOT --- */
.chatbot {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

.chatbot__toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2F5D50, #3d7565);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(47, 93, 80, 0.4);
    transition: all 0.3s;
}

.chatbot__toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(47, 93, 80, 0.5);
}

.chatbot__window {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 380px;
    max-height: 520px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 60px rgba(0,0,0,0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: chatSlideUp 0.3s ease;
}

@keyframes chatSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot__header {
    background: linear-gradient(135deg, #2F5D50, #3d7565);
    color: #fff;
    padding: 16px 20px;
}

.chatbot__header strong {
    display: block;
    font-size: 1rem;
}

.chatbot__header span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.chatbot__messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 300px;
    min-height: 200px;
}

.chatbot__msg {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 85%;
    animation: msgFade 0.3s ease;
}

@keyframes msgFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.chatbot__msg--bot {
    background: #F0E8D8;
    color: #4A3428;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chatbot__msg--user {
    background: #2F5D50;
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chatbot__quick {
    padding: 8px 16px 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.chatbot__quick-btn {
    padding: 6px 12px;
    border: 1px solid #E0D5C5;
    border-radius: 20px;
    background: #F7F3EC;
    color: #4A3428;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Montserrat', sans-serif;
}

.chatbot__quick-btn:hover {
    background: #2F5D50;
    color: #fff;
    border-color: #2F5D50;
}

.chatbot__input {
    display: flex;
    border-top: 1px solid #E0D5C5;
}

.chatbot__input input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    background: transparent;
}

.chatbot__input button {
    padding: 14px 16px;
    background: none;
    border: none;
    color: #2F5D50;
    cursor: pointer;
    transition: color 0.3s;
}

.chatbot__input button:hover {
    color: #A85C3A;
}

/* --- ANIMATIONS (simple AOS alternative) --- */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .header__nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(74, 52, 40, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 999;
    }

    .header__nav.active {
        display: flex;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .header__burger {
        display: flex;
        z-index: 1001;
    }

    .about__cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news__grid {
        grid-template-columns: 1fr;
    }

    .pricing__main {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery__item--wide {
        grid-column: span 1;
    }

    .gallery__item--tall {
        grid-row: span 1;
    }

    .map__locations {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__socials {
        justify-content: center;
    }

    .footer__bottom {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .section {
        padding: 60px 0;
    }

    .section__title {
        font-size: 2rem;
        margin-bottom: 36px;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn--lg {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .about__meaning {
        flex-direction: column;
        padding: 28px;
    }

    .about__cards {
        grid-template-columns: 1fr;
    }

    .program__grid {
        grid-template-columns: 1fr;
    }

    .booking__form {
        padding: 28px 20px;
    }

    .booking__grid {
        grid-template-columns: 1fr;
    }

    .booking__workshops {
        flex-direction: column;
    }

    .pricing__price {
        font-size: 3rem;
    }

    .pricing__price-block {
        padding: 32px 24px;
    }

    .pricing__discount-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px;
    }

    .reviews__card {
        padding: 28px 20px;
    }

    .reviews__text {
        font-size: 1.05rem;
    }

    .chatbot__window {
        width: calc(100vw - 32px);
        right: -8px;
    }

    .contacts__info {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
}
