* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #ffffff;
    --primary-light: #f9f7f3;
    --accent-gold: #d4a574;
    --accent-purple: #5a3b7e;
    --text-light: #2c2c2c;
    --border-color: #5a3b7e;
}

body {
    background-color: #f9f7f3;
    color: var(--text-light);
    font-family: 'Georgia', serif;
    overflow-x: hidden;
    background-image: 
        linear-gradient(135deg, rgba(90, 59, 126, 0.03) 0%, rgba(212, 165, 116, 0.03) 100%);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ============ HEADER ============ */
.header {
    height: 71px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo__icon {
    width: 50px;
    height: 50px;
    color: white;
    font-size: 40px;
}

.logo__text {
    text-align: left;
}

.logo__title {
    position: absolute;
    bottom:23px;
    left:85px;
    font-size: 12px;
    color: var(--accent-purple);
    font-weight: normal;
}

.logo__subtitle {
    bottom: 33px;
    position: absolute;
    left:85px;
    font-size: 16px;
    color: var(--accent-purple);
    font-weight: bold;
}

.header__contacts {
    display: flex;
    align-items: center;
    gap: 30px;
    position: absolute;
    right: 155px;
    top: 50%;
    transform: translateY(-50%);
}

.phone {
    position: absolute;
    right: 128px;  /* Отступ от края */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    white-space: nowrap;  /* Чтобы не переносился */
}

.phone:hover {
    color: var(--accent-purple);
}

.social {
    display: flex;
    gap: 12px;
}

.social__link {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
    overflow: hidden;
}

.social__link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social__link:hover {
    transform: scale(1.1);
}

.menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--accent-purple);
    color: var(--accent-purple);
    font-size: 24px;
    cursor:pointer;
    padding: 5px 10px;
    position:absolute;
    right: 10px;
    margin-bottom: 6px;
}

/* ============ LANGUAGE SWITCHER ============ */
.language-switcher {
    position: fixed;
    right: 15px;
    top: 20px;
    z-index: 15;
}

.lang-btn {
    padding: 6px 11px;
    background: transparent;
    border: 2px solid var(--accent-purple);
    color: var(--accent-purple);
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    white-space: nowrap;
    margin-left: 5px;
}

.lang-btn:hover {
    background: var(--accent-purple);
    color: white;
}

.lang-btn.active {
    background: var(--accent-purple);
    color: white;
}
.language-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.language-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.language-modal__content {
    position: relative;
    z-index: 101;
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.4s ease-out;
}

.language-modal__title {
    font-size: 36px;
    color: var(--accent-purple);
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
}

.language-modal__subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.language-modal__buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.language-modal__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 40px;
    border: 2px solid var(--accent-purple);
    background: white;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.language-modal__btn:hover {
    background: var(--accent-purple);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(90, 59, 126, 0.2);
}

.language-modal__btn:hover .language-modal__flag,
.language-modal__btn:hover .language-modal__name,
.language-modal__btn:hover .language-modal__full {
    color: white;
}

.language-modal__flag {
    font-size: 50px;
    line-height: 1;
    transition: color 0.3s ease;
}

.language-modal__name {
    font-size: 18px;
    font-weight: bold;
    color: var(--accent-purple);
    transition: color 0.3s ease;
}

.language-modal__full {
    font-size: 12px;
    color: var(--accent-gold);
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

.language-modal__note {
    font-size: 13px;
    color: #999;
    font-style: italic;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============ MOBILE MENU ============ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -350px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(249, 247, 243, 0.95));
    border-right: 1px solid #e8e8e8;
    z-index: 20;
    transition: left 0.4s ease;
    overflow-y: auto;
    box-shadow: 4px 0 16px rgba(0, 0, 0, 0.08);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: 2px solid var(--accent-purple);
    color: var(--accent-purple);
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.mobile-menu__close:hover {
    background: var(--accent-purple);
    color: white;
}

.mobile-menu__content {
    padding: 100px 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.mobile-menu__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}

.mobile-menu__phone:hover {
    color: var(--accent-purple);
    transform: scale(1.05);
}

.mobile-menu__divider {
    width: 80%;
    height: 1px;
    background: rgba(90, 59, 126, 0.2);
}

.mobile-menu__social {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 10px 0;
}

.mobile-menu__social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mobile-menu__social-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-menu__social-link.instagram-link {
    background: #E4405F;
}

.mobile-menu__social-link.whatsapp-link {
    background: #25D366;
}

.mobile-menu__social-link.telegram-link {
    background: #0088cc;
}

.mobile-menu__social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(90, 59, 126, 0.15);
}

.mobile-menu__link {
    color: var(--accent-purple);
    text-decoration: none;
    font-size: 18px;
    margin-top: 20px;
    transition: all 0.3s;
}

.mobile-menu__link:hover {
    color: var(--accent-gold);
    transform: scale(1.1);
}

/* ============ HERO SECTION ============ */
.hero {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e8e8e8;
    padding: 40px 20px;
    background: linear-gradient(135deg, #fafbff 0%, #f9f7f3 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
}
.hero__circles {
    position: absolute;
    right: 100px;
    top: 15%;
    z-index: 3;
}

.hero__content {
    text-align: center;
    z-index: 5;
    position: relative;
    width: 100%;
    max-width: 800px;
}

.hero__title {
    font-size: 40px;
    color: var(--text-light);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
    letter-spacing: 2px;
    word-wrap: break-word;
}

.hero__subtitle {
    font-size: 24px;
    color: var(--accent-purple);
    font-style: italic;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.hero__intro-text {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin: 0 auto;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.03);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero__time {
    position: absolute;
    bottom: 6px;
    left: 20px;
    z-index: 5;
}

.time-badge {
    width: 60px;
    height: 60px;
    border: 2px solid var(--accent-purple);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 12px rgba(90, 59, 126, 0.1);
}

.time-badge__number {
    font-size: 9px;
    font-weight: bold;
    color: var(--accent-purple);
}

.time-badge__text {
    font-size: 10px;
    color: var(--accent-purple);
    line-height: 1.2;
}

.chat-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 5;
    font-size: 40px;
    cursor: pointer;
    animation: pulse 2s ease-in-out infinite;
    text-decoration: none;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ============ SECTION TITLE ============ */
.section-title {
    font-size: 48px;
    text-align: center;
    color: var(--accent-purple);
    margin-bottom: 50px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
}

/* ============ ABOUT SECTION ============ */
.about {
    padding: 80px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    background-color: #ffffff;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about__image {
    width: 100%;
    max-width: 400px;
    justify-self: end;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.about__text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

.about__text p {
    margin-bottom: 20px;
}

/* ============ SERVICES SECTION ============ */
.services {
    padding: 80px 0;
    background-color: #f9f7f3;
}

.services__intro {
    text-align: center;
    color: var(--accent-purple);
    margin-bottom: 50px;
    font-size: 18px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.services__grid--hidden {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.6s ease-in-out;
    margin-bottom: 0;
}

.services__grid--hidden.visible {
    max-height: 2000px;
    opacity: 1;
    margin-bottom: 60px;
}

.service-card {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 30px;
    background: white;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(90, 59, 126, 0.12);
}

.service-card:hover::before {
    box-shadow: 0 8px 24px rgba(90, 59, 126, 0.12);
}

.service-card__image {
    margin-bottom: 20px;
}

.circle-image {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(249, 247, 243, 0.8);
    border: 2px solid var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(90, 59, 126, 0.1);
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card__title {
    font-size: 18px;
    color: var(--accent-purple);
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.02);
}

.service-card__decoration {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    margin: 15px auto;
    box-shadow: 0 0 8px rgba(212, 165, 116, 0.2);
}

.service-card__text {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
    font-weight: normal;
}

.services__disclaimer {
    text-align: center;
    color: var(--accent-purple);
    margin-top: 60px;
    font-style: italic;
    font-size: 14px;
}

/* ============ SEPARATOR & EXPAND BUTTON ============ */
.services__separator {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
    justify-content: center;
}

.separator-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: #e8e8e8;
}

.expand-button {
    background: transparent;
    border: 2px solid var(--accent-purple);
    color: var(--accent-purple);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-family: 'Georgia', serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.expand-button:hover {
    background: var(--accent-purple);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(90, 59, 126, 0.15);
}

.expand-arrow {
    display: inline-block;
    transition: transform 0.4s;
}

.expand-button.expanded .expand-arrow {
    transform: rotate(180deg);
}

/* ============ MAGIC HELP SECTION ============ */
.magic-help {
    padding: 100px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    background-color: #f9f7f3;
}

.magic-help__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.magic-help__decoration {
    display: inline-block;
    font-size: 50px;
    margin-bottom: 40px;
}

.magic-help__title {
    font-size: 42px;
    color: var(--accent-purple);
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
}

.magic-help__subtitle {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 50px;
    line-height: 1.8;
}

.magic-help__frame {
    border: 1px solid #e8e8e8;
    border-radius: 15px;
    padding: 50px;
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.magic-help__text-block {
    max-width: 800px;
    margin: 0 auto;
}

.magic-help__text-block p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: left;
}

.magic-help__restrictions {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
    background: rgba(249, 247, 243, 0.8);
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.magic-help__restrictions-title {
    color: var(--accent-purple);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.magic-help__list {
    list-style: none;
}

.magic-help__list li {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 15px;
    padding-left: 20px;
    position: relative;
}

.magic-help__list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.magic-help__attention {
    color: var(--accent-purple);
    font-size: 18px;
    font-weight: bold;
    margin: 40px 0 20px 0;
    text-align: left;
}

.magic-help__warning {
    margin: 40px 0;
    padding: 30px;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.magic-help__warning-title {
    color: var(--accent-purple);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.magic-help__warning-age {
    color: var(--accent-purple);
    font-size: 28px;
    font-weight: bold;
}

/* ============ WARNINGS SECTION ============ */
.warnings {
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.warnings__content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.warnings__text {
    max-width: 900px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.warnings__title {
    font-size: 36px;
    color: var(--accent-purple);
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
    text-align: center;
}

.warnings__item {
    color: var(--text-light);
    line-height: 2;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
}

.warnings__support {
    margin-top: 60px;
    padding: 40px;
    border: 1px solid #e8e8e8;
    border-radius: 15px;
    background: rgba(249, 247, 243, 0.8);
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.warnings__support-title {
    font-size: 24.5px;
    color: var(--accent-purple);
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.02);
    text-align: center;
}

.warnings__support-text {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 16px;
    font-style: italic;
    text-align: center;
}

.warnings__image-block {
    display: none;
}

.warnings__image {
    display: none;
}

/* ============ CONTACTS SECTION ============ */
.contacts {
    padding: 100px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    background-color: #ffffff;
}

.contacts__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contacts__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contacts__title {
    font-size: 48px;
    color: var(--accent-purple);
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
}

.contacts__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.contacts__phone:hover {
    transform: scale(1.1);
    color: var(--accent-purple);
}

.contacts__phone-icon {
    font-size: 28px;
}

.contacts__social {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    justify-content: center;
}

.contacts__social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contacts__social-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contacts__social-link.instagram-link {
    background: #E4405F;
}

.contacts__social-link.whatsapp-link {
    background: #25D366;
}

.contacts__social-link.telegram-link {
    background: #0088cc;
}

.contacts__social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(90, 59, 126, 0.15);
    border-color: var(--accent-purple);
}

.contacts__tarot-icon {
    width: 180px;
    height: 180px;
    margin: 40px 0;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    overflow: hidden;
    background: #f9f7f3;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contacts__tarot-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contacts__description {
    max-width: 400px;
    text-align: center;
}

.contacts__description p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.contacts__right {
    display: flex;
    flex-direction: column;
}

.contacts__form-header {
    margin-bottom: 30px;
}

.contacts__form-quote {
    color: var(--accent-purple);
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
}

.contacts__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contacts__input,
.contacts__select,
.contacts__textarea {
    padding: 15px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    background: white;
    color: var(--text-light);
    font-family: 'Georgia', serif;
    font-size: 14px;
    transition: all 0.3s;
}

.contacts__input:focus,
.contacts__select:focus,
.contacts__textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    background: white;
    box-shadow: 0 4px 12px rgba(90, 59, 126, 0.1);
}

.contacts__textarea {
    resize: vertical;
    min-height: 120px;
}

.contacts__button {
    padding: 15px 30px;
    border: 2px solid var(--accent-purple);
    background: var(--accent-purple);
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 8px;
    margin-top: 10px;
}

.contacts__button:hover {
    background: white;
    color: var(--accent-purple);
    box-shadow: 0 4px 16px rgba(90, 59, 126, 0.15);
}

/* ============ FOOTER ============ */
.footer {
    background-color: #ffffff;
    border-top: 1px solid #e8e8e8;
    padding: 30px 0;
    text-align: center;
    color: var(--accent-purple);
    font-size: 14px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.03);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contacts__content {
        gap: 40px;
    }

    .hero {
        height: 200px;
        padding: 40px 20px;
    }

    .hero__circles {
        right: 50px;
    }

    .chat-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 5;
    font-size: 32px;
    cursor: pointer;
    animation: pulse 2s ease-in-out infinite;
    text-decoration: none;
    filter: drop-shadow(0 0 10px rgba(212, 165, 116, 0.5));
}

    .logo__title {
    left:85px;
    bottom:23px;
    }

    .logo__subtitle {
        bottom:33px;
        left:85px;
    }

    .hero__time {
        position: absolute;
        bottom: 6px;
        left: 50px;
        transform: translateX(-50%);
    }
    .hero__title{
    font-size: 38px;
    margin-bottom: 10px;
}

   .language-switcher {
        top: 20px;
        right: 15px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
}
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        bottom:7px;
    }   
    
    .header {
        height:71px;
    }

    .header__contacts {
        display: none;
    }

    .hero {
        min-height: 200px;
        padding: 40px 20px;
    }

    .hero__title {
        font-size: 35px;
        margin-bottom: 10px;
    }

    .hero__subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .hero__intro-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .hero__circles {
        display: none;
    }

     .hero__time {
        position: absolute;
        bottom: 6px;
        left: 50px;
        transform: translateX(-50%);
    }


    .chat-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 5;
    font-size: 32px;
    cursor: pointer;
    animation: pulse 2s ease-in-out infinite;
    text-decoration: none;
    filter: drop-shadow(0 0 10px rgba(212, 165, 116, 0.5));
}

    .about__content {
        grid-template-columns: 1fr;
    }

    .about__image {
    width: 100%;
    max-width: 400px;
    justify-self: center;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .warnings {
        padding: 80px 0;
    }

    .warnings__title {
        font-size: 28px;
    }

    .warnings__item {
        font-size: 15px;
        line-height: 1.8;
    }

    .warnings__support {
        padding: 30px;
        margin-top: 50px;
    }

    .warnings__support-title {
        font-size: 22px;
    }

    .warnings__support-text {
        font-size: 14px;
    }

    .contacts__content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .section-title {
        font-size: 36px;
    }

    .magic-help__title {
        font-size: 32px;
    }

    .magic-help__frame {
        padding: 30px;
    }

    .magic-help__text-block p {
        font-size: 14px;
    }

    .contacts__title {
        font-size: 36px;
    }

    .separator-line {
        max-width: 100px;
    }

      .language-switcher {
        top: 20px;
        right: 80px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
}

@media (max-width: 680px) {

    .menu-toggle {
        display: block;
    }   
    

    .header__contacts {
        display: none;
    }

    .hero {
        min-height: 200px;
        padding: 60px 20px;
    }

    .hero__title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .hero__subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .hero__intro-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .hero__circles {
        display: none;
    }

     .hero__time {
        position: absolute;
        bottom: 6px;
        left: 50px;
        transform: translateX(-50%);
    }


    .chat-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 5;
    font-size: 32px;
    cursor: pointer;
    animation: pulse 2s ease-in-out infinite;
    text-decoration: none;
    filter: drop-shadow(0 0 10px rgba(212, 165, 116, 0.5));
}

    .about__content {
        grid-template-columns: 1fr;
    }
.about__image {
    width: 100%;
    max-width: 400px;
    justify-self: center;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .warnings {
        padding: 80px 0;
    }

    .warnings__title {
        font-size: 28px;
    }

    .warnings__item {
        font-size: 15px;
        line-height: 1.8;
    }

    .warnings__support {
        padding: 30px;
        margin-top: 50px;
    }

    .warnings__support-title {
        font-size: 22px;
    }

    .warnings__support-text {
        font-size: 14px;
    }

    .contacts__content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .section-title {
        font-size: 36px;
    }

    .magic-help__title {
        font-size: 32px;
    }

    .magic-help__frame {
        padding: 30px;
    }

    .magic-help__text-block p {
        font-size: 14px;
    }

    .contacts__title {
        font-size: 36px;
    }

    .separator-line {
        max-width: 100px;
    }
       .language-switcher {
        top: 20px;
        right: 80px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
}

@media (max-width: 599px) {
   

    .menu-toggle {
        display: block;
    }   
    

    .header__contacts {
        display: none;
    }

    .hero {
        min-height: 200px;
        padding: 60px 20px;
    }

    .hero__title {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .hero__subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .hero__intro-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .hero__circles {
        display: none;
    }

     .hero__time {
        position: absolute;
        bottom: 6px;
        left: 50px;
        transform: translateX(-50%);
    }


    .chat-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 5;
    font-size: 32px;
    cursor: pointer;
    animation: pulse 2s ease-in-out infinite;
    text-decoration: none;
    filter: drop-shadow(0 0 10px rgba(212, 165, 116, 0.5));
}

    .about__content {
        grid-template-columns: 1fr;
    }
    .about__image {
    width: 100%;
    max-width: 400px;
    justify-self: center;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .warnings {
        padding: 80px 0;
    }

    .warnings__title {
        font-size: 28px;
    }

    .warnings__item {
        font-size: 15px;
        line-height: 1.8;
    }

    .warnings__support {
        padding: 30px;
        margin-top: 50px;
    }

    .warnings__support-title {
        font-size: 22px;
    }

    .warnings__support-text {
        font-size: 14px;
    }

    .contacts__content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .section-title {
        font-size: 36px;
    }

    .magic-help__title {
        font-size: 32px;
    }

    .magic-help__frame {
        padding: 30px;
    }

    .magic-help__text-block p {
        font-size: 14px;
    }

    .contacts__title {
        font-size: 36px;
    }

    .separator-line {
        max-width: 100px;
    }
        .language-switcher {
        top: 20px;
        right: 80px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
}

@media (max-width: 500px) {

    .about__image {
    width: 100%;
    max-width: 400px;
    justify-self: center;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .menu-toggle {
        display: block;
    }   
    

    .header__contacts {
        display: none;
    }

    .hero {
        min-height: 200px;
        padding: 60px 20px;
    }

    .hero__title {
        font-size: 23px;
        margin-bottom: 7px;
    }

    .hero__subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .hero__intro-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .hero__circles {
        display: none;
    }

     .hero__time {
        position: absolute;
        bottom: 6px;
        left: 50px;
        transform: translateX(-50%);
    }


    .chat-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 5;
    font-size: 32px;
    cursor: pointer;
    animation: pulse 2s ease-in-out infinite;
    text-decoration: none;
    filter: drop-shadow(0 0 10px rgba(212, 165, 116, 0.5));
}

    .about__content {
        grid-template-columns: 1fr;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .warnings {
        padding: 80px 0;
    }

    .warnings__title {
        font-size: 28px;
    }

    .warnings__item {
        font-size: 15px;
        line-height: 1.8;
    }

    .warnings__support {
        padding: 30px;
        margin-top: 50px;
    }

    .warnings__support-title {
        font-size: 22px;
    }

    .warnings__support-text {
        font-size: 14px;
    }

    .contacts__content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .section-title {
        font-size: 36px;
    }

    .magic-help__title {
        font-size: 32px;
    }

    .magic-help__frame {
        padding: 30px;
    }

    .magic-help__text-block p {
        font-size: 14px;
    }

    .contacts__title {
        font-size: 36px;
    }

    .separator-line {
        max-width: 100px;
    }
      .language-switcher {
        top: 20px;
        right: 80px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
}


@media (max-width: 480px) {
    .services__grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 200px;
        padding: 40px 15px;
    }

    .hero__time {
        position: absolute;
        bottom: 6px;
        left: 50px;
        transform: translateX(-50%);
    }

    .hero__title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .hero__subtitle {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .hero__intro-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .section-title {
        font-size: 28px;
    }

    .magic-help__title {
        font-size: 24px;
    }

    .warnings {
        padding: 60px 0;
    }

    .warnings__title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .warnings__item {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .warnings__support {
        padding: 20px;
        margin-top: 40px;
    }

    .warnings__support-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .warnings__support-text {
        font-size: 13px;
        line-height: 1.7;
    }

    .contacts__title {
        font-size: 28px;
    }

    .magic-help__frame {
        padding: 20px;
        border-width: 2px;
    }

    .magic-help__restrictions {
        padding: 20px;
    }

    .contacts__form {
        gap: 15px;
    }

    .contacts__input,
    .contacts__select,
    .contacts__textarea {
        padding: 12px;
        font-size: 13px;
    }

    .services__separator {
        gap: 10px;
    }

    .separator-line {
        max-width: 50px;
    }

    .expand-button {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .time-badge {
        width: 100px;
        height: 100px;
    }

    .time-badge__number {
        font-size: 24px;
    }

    .time-badge__text {
        font-size: 9px;
    }
       .language-switcher {
        top: 20px;
        right: 80px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
}
