/* ============================= */
/* === ГЛОБАЛЬНЫЕ СТИЛИ       === */
/* ============================= */
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
*, *:before, *:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    color: #FFFFFF;
    position: relative;
    z-index: 0;
    background-color: #000000;
    overflow-x: hidden;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Псевдоэлемент для фона */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background: url('https://i.imgur.com/2TBsORR.jpeg') no-repeat center center;
    background-size: cover;
}


/* ============================= */
/* === ШАПКА (HEADER)         === */
/* ============================= */
.header {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 40px;
    border-bottom: 1px solid #d4af37;
    box-shadow: 0 2px 25px rgba(212, 175, 55, 0.12);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: #d4af37;
    font-family: 'IM Fell English SC', serif;
    text-decoration: none;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
    flex-shrink: 0;
}
.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

/* Навигация */
.nav {
    display: flex;
    gap: 30px;
}
.nav a {
    text-decoration: none;
    color: #d4af37;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}
.nav a:hover {
    color: #ffffff;
}
/* Стиль активной ссылки */
.nav a.active {
    color: #ffffff;
    position: relative;
}
.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #d4af37;
    border-radius: 1px;
}

.desktop-nav {
    display: flex;
    gap: 40px;
    margin-left: auto;
    margin-right: auto;
}

/* Кнопка CTA */
.cta-button {
    padding: 8px 18px;
    border: 1px solid #d4af37;
    color: #d4af37;
    background-color: transparent;
    border-radius: 25px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}
.cta-button:hover {
    background-color: #d4af37;
    color: #000000;
    transform: scale(1.05);
}

/* Переключатель языков (десктоп) */
.language-switcher-desktop {
    margin-left: 25px;
    display: flex;
    gap: 5px;
    align-items: center;
}
.language-switcher-desktop a {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: color 0.3s;
}
.language-switcher-desktop a:hover,
.language-switcher-desktop a.lang-active {
    color: #ffffff;
}
.language-switcher-desktop span {
    color: #555;
}

/* Переключатель языков (мобильный) */
.language-switcher-mobile {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
    padding: 10px 0;
}
.language-switcher-mobile a {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s;
}
.language-switcher-mobile a:hover,
.language-switcher-mobile a.lang-active {
    color: #ffffff;
}
.language-switcher-mobile span {
    color: #888;
}

/* Бургер-меню */
.burger-menu {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #d4af37;
    background: none;
    border: none;
    padding: 5px;
    line-height: 1;
}

/* Мобильное меню */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
}
.mobile-nav a {
    font-size: 18px;
    padding: 10px;
    display: block;
    color: #d4af37 !important;
    width: 100%;
    text-align: center;
}
.mobile-nav.active {
    display: flex;
}


/* ============================= */
/* === ПЛАНЕТЫ (PARALLAX)     === */
/* ============================= */
.planet {
    position: fixed;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
#planet1 {
    width: 150px;
    height: 150px;
    background-image: url('https://i.imgur.com/y9Jiaby.png');
    top: 15%;
    left: 5%;
}
#planet2 {
    width: 100px;
    height: 100px;
    background-image: url('https://i.imgur.com/NtrTWK0.png');
    bottom: 15%;
    right: 5%;
}


/* ============================= */
/* === СЕКЦИЯ ЭКСТРАСЕНСА     === */
/* === (index.html hero)      === */
/* ============================= */
.psychic-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
    min-height: calc(100vh - 75px);
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    z-index: 2;
}

.content {
    max-width: 1100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.text {
    width: 55%;
    text-align: left;
}
.text h1 {
    font-family: 'IM Fell English SC', serif;
    font-size: 46px;
    color: #d4af37;
    margin-top: 0;
    margin-bottom: 15px;
}
.text h1 i {
    font-style: italic;
    color: #d4af37;
}
.text h2 {
    font-style: italic;
    font-size: 34px;
    font-weight: 400;
    color: #dddddd;
    margin-top: 0;
    margin-bottom: 20px;
}
.text p {
    font-size: 16px;
    color: #f0f0f0;
    line-height: 1.7;
    margin-bottom: 1em;
}
.text p:last-child {
    margin-bottom: 0;
}


/* ============================= */
/* === КАРУСЕЛЬ               === */
/* ============================= */
.carousel-container {
    width: 40%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    flex-shrink: 0;
    background-color: rgba(0, 0, 0, 0.2);
}
.carousel-images {
    display: flex;
    height: 100%;
    transition: transform 1s ease-in-out;
}
.carousel-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}


/* ============================= */
/* === СЕКЦИЯ УСЛУГ (ГЛАВНАЯ) === */
/* ============================= */
.services-home-section {
    background-color: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.services-home-section h2 {
    color: #d4af37;
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'IM Fell English SC', serif;
}
.services-home-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.services-home-item {
    background-color: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-home-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}
.services-home-item h3 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 10px;
}
.services-home-item p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}


/* ============================= */
/* === СЕКЦИЯ ПРЕДСКАЗАНИЙ    === */
/* ============================= */
.predictions-section {
    background: rgba(0, 0, 0, 0.9);
    padding: 4rem 1rem;
    position: relative;
    z-index: 2;
}
.predictions-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.predictions-section .section-title {
    color: #d4af37;
    font-size: 2.5rem;
    border-bottom: 3px solid #d4ab70;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
    font-weight: 600;
    text-align: center;
    font-family: 'IM Fell English SC', serif;
}

/* Временная шкала */
.predictions-timeline {
    position: relative;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.predictions-timeline::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 0;
    height: 100%;
    width: 2px;
    background: #d4af37;
}

.prediction-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 40px;
}

.checkmark {
    color: #d4af37;
    font-size: 20px;
    margin-right: 10px;
    flex-shrink: 0;
}

.prediction-content {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    position: relative;
}
.prediction-date {
    color: #d4af37;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}
.prediction-text {
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
}


/* ============================= */
/* === СЕКЦИЯ БИТВА           === */
/* ============================= */
.battle-section {
    background: rgba(0, 0, 0, 0.9);
    padding: 4rem 1rem;
    position: relative;
    border-top: 3px solid #d4af37;
    z-index: 2;
}
.battle-container {
    max-width: 1200px;
    margin: 0 auto;
}
.battle-title {
    color: #d4af37;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'IM Fell English SC', serif;
}
.battle-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.battle-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.achievement-card {
    background: rgba(212, 175, 55, 0.1);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #d4af37;
}
.achievement-title {
    color: #d4af37;
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 15px;
}
.achievement-text {
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}
.battle-facts {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.fact-item {
    color: #fff;
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 1.1rem;
}
.fact-item::before {
    content: "✓";
    color: #d4af37;
    margin-right: 10px;
}

/* Видео обертка */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* ============================= */
/* === СЕКЦИЯ МЕДИА           === */
/* ============================= */
.prestige-media {
    background: #0a0a0a;
    padding: 4rem 1rem;
    position: relative;
    z-index: 2;
}
.prestige-container {
    max-width: 1200px;
    margin: 0 auto;
}
.gold-title {
    color: #d4af37;
    font-size: 2.5rem;
    text-align: center;
    font-family: 'IM Fell English SC', serif;
    margin-bottom: 1rem;
}
.title-underline {
    width: 120px;
    height: 2px;
    background: #d4af37;
    margin: 0 auto 3rem;
}
.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.video-cinema {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(212,175,55,0.1);
}
.video-caption {
    text-align: center;
    padding: 1rem;
    color: #fff;
}
.video-caption h3 {
    color: #d4af37;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.video-caption p {
    color: #ccc;
    margin: 0;
}

/* Панель СМИ */
.media-panel {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 1.5rem;
    max-width: 600px;
}
.panel-header {
    border-bottom: 1px solid #d4af37;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.panel-header h4 {
    color: #d4af37;
    font-size: 1.5rem;
    margin: 0;
}
.media-scroller {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}
/* Кастомный скроллбар для медиа-панели */
.media-scroller::-webkit-scrollbar {
    width: 6px;
}
.media-scroller::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
}
.media-scroller::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 3px;
}
.press-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0,0,0,0.3);
    border-radius: 6px;
    transition: transform 0.3s, background 0.3s;
    text-decoration: none;
    color: white;
    align-items: center;
}
.press-card:hover {
    transform: translateX(10px);
    background: rgba(212, 175, 55, 0.1);
}
.text-logo {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #d4af37;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 12px;
    display: inline-block;
    border-radius: 5px;
    min-width: 80px;
    text-align: center;
    flex-shrink: 0;
}
.press-info {
    color: #fff;
    flex: 1;
}
.press-info time {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #d4af37;
    font-size: 0.85rem;
}
.press-info p {
    margin: 0 0 5px 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #ccc;
}
.read-more {
    color: #d4af37;
    font-weight: bold;
    font-size: 0.9rem;
}


/* ============================= */
/* === СЕКЦИЯ ОТЗЫВОВ         === */
/* ============================= */
.testimonials-section {
    padding: 5rem 1rem;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.85);
}
.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}
.testimonials-section .section-title {
    color: #d4af37;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    font-family: 'IM Fell English SC', serif;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.testimonial-card {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(212,175,55,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.1);
}
.client-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}
.client-avatar {
    position: relative;
    margin-right: 1.5rem;
}
.avatar-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #d4af37;
    padding: 3px;
    object-fit: cover;
}
.verification-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #d4af37;
    color: #000;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
}
.client-info {
    flex: 1;
}
.client-name {
    color: #fff;
    margin: 0;
    font-size: 1.2rem;
}
.client-location {
    color: #d4af37;
    font-size: 0.9rem;
    display: block;
}
.review-date {
    color: #666;
    font-size: 0.8rem;
}
.quote-icon {
    color: #d4af37;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: -1.5rem;
    font-family: Georgia, serif;
}
.review-content p {
    color: #fff;
    line-height: 1.6;
    font-size: 1rem;
}
.social-proof {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d4af37;
    font-size: 0.9rem;
}
.social-proof img {
    width: 20px;
    height: 20px;
}
.reviews-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}
.nav-arrow {
    background: none;
    border: 1px solid #d4af37;
    color: #d4af37;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-arrow:hover {
    background: #d4af37;
    color: #000;
}

/* Контактная информация на главной */
.home-contact-info {
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    border: 1px solid #d4af37;
    text-align: center;
}
.home-contact-info h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 15px;
    font-family: 'IM Fell English SC', serif;
}
.home-contact-info p {
    font-size: 1.1rem;
    color: #fff;
    margin: 10px 0;
}
.home-contact-info a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s;
}
.home-contact-info a:hover {
    color: #ffd700;
}


/* ============================= */
/* === СТРАНИЦА "О НАС"       === */
/* ============================= */
.about-section {
    position: relative;
    z-index: 2;
    padding: 100px 20px 50px 20px;
    min-height: calc(100vh - 75px);
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.about-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.75);
    padding: 40px 50px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}
.about-title {
    color: #d4af37;
    font-family: 'IM Fell English SC', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 40px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}
.about-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    opacity: 0.95;
}
.about-content h3 {
    color: #d4af37;
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}
.about-content p,
.about-content ul {
    margin-bottom: 20px;
}
.about-content ul {
    padding-left: 25px;
    list-style: none;
}
.about-content li {
    padding-left: 15px;
    position: relative;
    margin-bottom: 8px;
}
.about-content li::before {
    content: "✧";
    color: #d4af37;
    position: absolute;
    left: -10px;
    top: 0px;
    font-size: 1.2em;
}


/* ============================= */
/* === СТРАНИЦА УСЛУГ         === */
/* ============================= */
.services-section {
    padding: 100px 20px 50px 20px;
    min-height: calc(100vh - 75px);
    position: relative;
    z-index: 2;
    color: #FFFFFF;
}
.services-container {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.75);
    padding: 40px 50px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}
.services-title {
    color: #d4af37;
    font-family: 'IM Fell English SC', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 50px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}
.service-item {
    margin-bottom: 35px;
    padding: 25px 30px;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 10px;
    border-left: 5px solid #d4af37;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.service-item:last-child {
    margin-bottom: 0;
}
.service-item:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
    border-left-color: #f0c44e;
}
.service-item h3 {
    color: #eac145;
    font-size: 1.7rem;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 500;
    font-family: 'IM Fell English SC', serif;
}
.service-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e0e0e0;
    opacity: 0.95;
    margin-bottom: 0;
}


/* ============================= */
/* === СТРАНИЦА КОНТАКТОВ     === */
/* ============================= */
.contact-section {
    padding: 100px 20px 50px 20px;
    min-height: calc(100vh - 75px);
    position: relative;
    z-index: 2;
    color: #FFFFFF;
}
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.75);
    padding: 40px 50px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contact-block {
    margin-bottom: 35px;
}
.contact-block h3 {
    color: #d4af37;
    font-family: 'IM Fell English SC', serif;
    font-size: 1.9rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}
.contact-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e0e0e0;
    opacity: 0.95;
    margin-bottom: 10px;
}
/* Кнопки мессенджеров */
.messenger-links {
    display: flex;
    gap: 12px;
    margin-top: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.messenger-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.25);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
    text-shadow: none;
}
.messenger-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.2);
}
.messenger-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
textarea {
    resize: vertical;
    min-height: 120px;
}
input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}
.submit-button {
    align-self: flex-start;
    padding: 12px 35px;
    background: #d4af37;
    color: #000;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}
.submit-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    background: #eac145;
}

/* Сообщение статуса формы */
#form-status-message {
    padding: 0;
    margin-top: 0;
    border-radius: 8px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
}
#form-status-message.visible {
    opacity: 1;
    max-height: 100px;
    padding: 15px;
    margin-top: 20px;
}
#form-status-message.success {
    background-color: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    border: 1px solid #d4af37;
}
#form-status-message.error {
    background-color: rgba(211, 69, 69, 0.15);
    color: #ff9a9a;
    border: 1px solid #D85A5A;
}

.map-container {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.4);
    margin-top: 10px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* ============================= */
/* === ФУТЕР                  === */
/* ============================= */
.site-footer {
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid #d4af37;
    padding: 30px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-links a {
    color: #d4af37;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #ffffff;
}
.footer-contacts {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}
.footer-contacts a:hover {
    color: #d4af37;
}
.footer-copy {
    color: #666;
    font-size: 13px;
    margin: 0;
}

/* Мессенджеры в футере */
.footer-messengers {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.footer-msg-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #e0e0e0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.25s ease;
    text-shadow: none;
}
.footer-msg-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.6);
    color: #fff;
    transform: translateY(-2px);
}
.footer-msg-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}


/* ============================= */
/* === АНИМАЦИИ               === */
/* ============================= */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Scroll-reveal анимация */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal.reveal-left {
    transform: translateX(-40px);
}
.reveal.reveal-left.visible {
    transform: translateX(0);
}
.reveal.reveal-right {
    transform: translateX(40px);
}
.reveal.reveal-right.visible {
    transform: translateX(0);
}
.reveal.reveal-scale {
    transform: scale(0.95);
}
.reveal.reveal-scale.visible {
    transform: scale(1);
}

/* Стагнированные задержки для каскадного эффекта */
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }

/* Отключение анимаций для тех, кто предпочитает без них */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* ============================= */
/* === ПЛАВАЮЩАЯ КНОПКА ЗВОНКА === */
/* ============================= */
.fab-call {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 9999;
    background: linear-gradient(135deg, #d4af37, #f0c94e);
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.55), 0 0 0 0 rgba(212, 175, 55, 0.4);
    text-decoration: none;
    letter-spacing: 0.5px;
    animation: fab-pulse 2.5s infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fab-call:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 28px rgba(212, 175, 55, 0.7);
}
@keyframes fab-pulse {
    0%   { box-shadow: 0 4px 20px rgba(212,175,55,0.55), 0 0 0 0 rgba(212,175,55,0.45); }
    70%  { box-shadow: 0 4px 20px rgba(212,175,55,0.55), 0 0 0 14px rgba(212,175,55,0); }
    100% { box-shadow: 0 4px 20px rgba(212,175,55,0.55), 0 0 0 0 rgba(212,175,55,0); }
}


/* ============================= */
/* === АДАПТИВ (МОБИЛЬНЫЕ)    === */
/* ============================= */
@media (max-width: 768px) {

    /* Плавающая кнопка */
    .fab-call { display: flex; align-items: center; gap: 8px; }

    /* Шапка */
    .header {
        padding: 10px 15px;
        background-color: rgba(0, 0, 0, 0.92);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 2px 20px rgba(212, 175, 55, 0.18);
    }
    .logo {
        font-size: 22px;
        order: 1;
        flex-grow: 1;
        margin-right: 0;
        text-align: left;
        letter-spacing: 0.3px;
    }
    .desktop-nav { display: none; }
    .cta-button { display: none; }
    .language-switcher-desktop { display: none !important; }
    .burger-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        order: 2;
        font-size: 26px;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid rgba(212, 175, 55, 0.25);
        transition: background 0.2s;
    }
    .burger-menu:active { background: rgba(212, 175, 55, 0.25); }
    .mobile-nav { top: 100%; }
    .mobile-nav .cta-button { display: none; }
    .mobile-nav a {
        font-size: 17px;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    }
    .mobile-nav a:last-of-type { border-bottom: none; }

    /* Планеты */
    .planet { opacity: 0.5; }
    #planet1 { width: 70px; height: 70px; top: 10%; left: 1%; }
    #planet2 { width: 45px; height: 45px; bottom: 10%; right: 1%; }

    /* Секция экстрасенса */
    .psychic-section {
        padding: 30px 15px 40px;
        min-height: auto;
    }
    .content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .text {
        width: 100%;
        text-align: center;
        order: 2;
    }
    .text h1 { font-size: 28px; line-height: 1.3; }
    .text h2 { font-size: 21px; }
    .text p { font-size: 15px; text-align: left; line-height: 1.7; }
    .carousel-container {
        width: 82%;
        max-width: 280px;
        order: 1;
        margin: 0 auto 10px;
        border-radius: 16px;
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
    }

    /* Услуги на главной */
    .services-home-section { padding: 35px 15px 50px; }
    .services-home-section h2 { font-size: 28px; }
    .services-home-item {
        width: 100%;
        border: 1px solid rgba(212, 175, 55, 0.2);
        background: rgba(212, 175, 55, 0.08);
    }

    /* Контактная информация на главной */
    .home-contact-info { margin-bottom: 70px; }

    /* Предсказания */
    .predictions-section { padding: 2.5rem 1rem; }
    .predictions-section .section-title { font-size: 1.9rem; }
    .predictions-timeline::before { left: 6px; }
    .prediction-item { padding-left: 28px; }
    .prediction-content {
        padding: 12px 15px;
        box-shadow: 0 0 12px rgba(212, 175, 55, 0.08);
    }

    /* Битва */
    .battle-section { padding: 2.5rem 1rem; }
    .battle-content { grid-template-columns: 1fr; }
    .battle-title { font-size: 2rem; }
    .achievement-card {
        padding: 20px;
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
    }

    /* Медиа */
    .prestige-media { padding: 2.5rem 1rem; }
    .media-grid { grid-template-columns: 1fr; }
    .gold-title { font-size: 1.9rem; }
    .media-panel { max-width: 100%; }

    /* Отзывы на главной */
    .testimonials-section { padding: 3rem 1rem; }
    .testimonials-section .section-title { font-size: 2rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card { padding: 1.5rem; }

    /* Страница "О нас" */
    .about-section { padding: 70px 15px 40px; }
    .about-container {
        padding: 25px 18px;
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
        border: 1px solid rgba(212, 175, 55, 0.2);
    }
    .about-title { font-size: 1.9rem; margin-bottom: 25px; }
    .about-content { font-size: 1rem; line-height: 1.75; }
    .about-content h3 { font-size: 1.4rem; margin-top: 25px; }
    .about-content ul { padding-left: 18px; }
    .about-content li { padding-left: 10px; }
    .about-content li::before { left: -8px; top: -1px; }

    /* Страница Услуг */
    .services-section { padding: 70px 15px 40px; }
    .services-container {
        padding: 25px 18px;
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
        border: 1px solid rgba(212, 175, 55, 0.2);
    }
    .services-title { font-size: 1.9rem; margin-bottom: 30px; }
    .service-item {
        padding: 18px 16px;
        margin-bottom: 18px;
        border-left-width: 4px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    .service-item h3 { font-size: 1.35rem; }
    .service-item p { font-size: 0.97rem; line-height: 1.65; }
    .service-item:hover { transform: none; }
    .service-item:active { transform: scale(0.99); }

    /* Страница Контактов */
    .contact-section { padding: 70px 15px 40px; }
    .contact-container {
        grid-template-columns: 1fr;
        padding: 25px 18px;
        gap: 28px;
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
        border: 1px solid rgba(212, 175, 55, 0.2);
    }
    .contact-block h3 { font-size: 1.5rem; margin-bottom: 15px; }
    .contact-block p { font-size: 1rem; line-height: 1.65; }
    .contact-block a { color: #d4af37; text-decoration: none; }
    .contact-form h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: #d4af37;
        font-family: 'IM Fell English SC', serif;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }
    input[type="text"],
    input[type="tel"],
    input[type="email"],
    textarea { padding: 13px 12px; font-size: 16px; }
    .submit-button {
        align-self: stretch;
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 16px;
        border-radius: 12px;
        margin-bottom: 20px;
    }
    .map-container { height: 220px; }

    /* Футер */
    .site-footer { padding: 25px 15px 80px; }
    .footer-links { gap: 12px; }
    .footer-contacts { flex-direction: column; gap: 8px; }
    .footer-links a, .footer-contacts a { font-size: 13px; }
}

@media (max-width: 480px) {
    .text h1 { font-size: 25px; }
    .text h2 { font-size: 19px; }
    .battle-section { padding: 2rem 0.8rem; }
    .battle-title { font-size: 1.7rem; }
    .fact-item { font-size: 0.97rem; }
    .about-title, .services-title { font-size: 1.7rem; }
    .service-item h3 { font-size: 1.2rem; }
    .predictions-section .section-title { font-size: 1.7rem; }
    .gold-title { font-size: 1.7rem; }
    .testimonials-section .section-title { font-size: 1.8rem; }
    .carousel-container { width: 88%; max-width: 260px; }
}


/* ============================= */
/* === СТРАНИЦА ОТЗЫВОВ       === */
/* ============================= */
.reviews-page-section {
    padding: 100px 20px 60px;
    min-height: calc(100vh - 75px);
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.85);
}
.reviews-hero {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}
.reviews-page-title {
    color: #d4af37;
    font-family: 'IM Fell English SC', serif;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}
.reviews-subtitle {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}
.reviews-stats-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 1.5rem 2rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    margin-bottom: 2rem;
}
.reviews-stat { text-align: center; }
.reviews-stat-num {
    display: block;
    font-size: 2.2rem;
    font-weight: bold;
    color: #d4af37;
    line-height: 1;
}
.reviews-stat-lbl {
    color: #e0e0e0;
    font-size: 0.85rem;
    margin-top: 4px;
    display: block;
}
.reviews-overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.rating-stars-big {
    color: #d4af37;
    font-size: 1.8rem;
    letter-spacing: 4px;
}
.rating-num-big {
    font-size: 2rem;
    font-weight: bold;
    color: #d4af37;
}
.rating-base {
    color: #999;
    font-size: 1rem;
}
.reviews-full-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 1.5rem;
}
.card-stars {
    color: #d4af37;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 4px;
    display: block;
}
.avatar-letter {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #d4af37;
    background: rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: #d4af37;
    font-family: 'IM Fell English SC', serif;
    flex-shrink: 0;
}
.reviews-cta-block {
    max-width: 700px;
    margin: 3rem auto 0;
    text-align: center;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
}
.reviews-cta-block h3 {
    color: #d4af37;
    font-family: 'IM Fell English SC', serif;
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 1rem;
}
.reviews-cta-block p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}
.reviews-cta-btn {
    display: inline-block;
    padding: 12px 35px;
    background: #d4af37;
    color: #000;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}
.reviews-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    background: #eac145;
}

@media (max-width: 768px) {
    .reviews-page-section { padding: 70px 15px 40px; }
    .reviews-page-title { font-size: 2rem; }
    .reviews-stats-bar { gap: 1.5rem; padding: 1.2rem; }
    .reviews-stat-num { font-size: 1.8rem; }
    .reviews-full-grid { grid-template-columns: 1fr; }
    .reviews-subtitle { font-size: 1rem; }
}
@media (max-width: 480px) {
    .reviews-page-title { font-size: 1.7rem; }
    .reviews-overall-rating { flex-direction: column; gap: 0.4rem; }
}


/* ============================= */
/* === FAQ СЕКЦИЯ             === */
/* ============================= */
.faq-section {
    padding: 60px 20px 70px;
    background: rgba(0,0,0,0.45);
    border-top: 1px solid rgba(212,175,55,0.2);
}
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}
.faq-title {
    font-family: 'IM Fell English SC', serif;
    color: #d4af37;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.4rem;
    letter-spacing: 0.03em;
}
.faq-subtitle {
    text-align: center;
    color: #bbb;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}
.faq-item {
    border-bottom: 1px solid rgba(212,175,55,0.18);
}
.faq-item:first-child {
    border-top: 1px solid rgba(212,175,55,0.18);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    padding: 1.25rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s;
}
.faq-question:hover,
.faq-question[aria-expanded="true"] {
    color: #d4af37;
}
.faq-icon {
    font-size: 1.5rem;
    color: #d4af37;
    transition: transform 0.3s;
    flex-shrink: 0;
    line-height: 1;
    font-weight: 300;
}
.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.faq-open .faq-answer {
    max-height: 400px;
    padding-bottom: 1.25rem;
}
.faq-answer p {
    color: #e0e0e0;
    line-height: 1.75;
    margin: 0;
    font-size: 0.95rem;
}
@media (max-width: 768px) {
    .faq-section { padding: 45px 15px 55px; }
    .faq-title { font-size: 1.55rem; }
    .faq-question { font-size: 0.9rem; padding: 1rem 0; }
}
