/* 
 * Версия: 1.0.1
 * Дата последнего обновления: 2025-01-15
 * 
 * При изменении этого файла обновите версию выше и в index.html
 */

:root {
    --primary-color: #fff;
    --secondary-color: #0D1528;
    --accent-color: #D4AF37;
    --text-primary: #fff;
    --text-secondary: #9ca3af;
    --bg-light: #0D1528;
    --bg-dark: #050A1A;
    --bg-card: #0D1528;
    --border-color: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Spotlight Cursor Effect */
.spotlight-canvas {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    width: 100%;
    height: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Убедимся, что все основные элементы видимы */
h1, h2, h3, h4, h5, h6,
p, span, div, section, article, 
nav, header, footer {
    visibility: visible;
    opacity: 1;
}

ul {
    list-style: none;
    visibility: visible;
    opacity: 1;
}

li {
    visibility: visible;
    opacity: 1;
}

a, button {
    visibility: visible;
    opacity: 1;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-dark);
    overflow-x: hidden;
    min-height: 100vh;
    display: block;
    visibility: visible;
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(5, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    width: 100%;
}

.nav-content * {
    visibility: visible;
    opacity: 1;
}

.logo {
    display: flex;
    align-items: center;
    visibility: visible;
    opacity: 1;
}

.logo-img {
    height: 75px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 10.4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
    border-bottom-color: rgba(212, 175, 55, 0.6);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 4px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s;
    font-family: var(--font-main);
}

.lang-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    background: var(--accent-color);
    color: #000;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.phone {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
}

.btn-phone {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 14.4px 38.4px;
    font-size: 11.2px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    border-radius: 50px;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.btn-phone:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #F1D592;
    color: #F1D592;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary {
    background: var(--accent-color);
    color: #000;
    border: none;
    padding: 14.4px 38.4px;
    font-size: 11.2px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    font-family: var(--font-main);
    border-radius: 9999px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
    white-space: nowrap;
}

.btn-primary:hover {
    background: #F1D592;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 18px 48px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    font-family: var(--font-main);
    border-radius: 9999px;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    width: 100%;
    visibility: visible;
    opacity: 1;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.35) contrast(1.15) saturate(1.3);
    animation: heroImageZoom 25s ease-in-out infinite;
    will-change: transform;
}

@keyframes heroImageZoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.75) 100%),
        radial-gradient(ellipse at center, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    z-index: 1;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.shader-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
    mix-blend-mode: screen;
}

.hero__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0.4;
    pointer-events: none;
}

.hero__grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 3;
    pointer-events: none;
    mix-blend-mode: screen;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-main {
    position: relative;
    z-index: 2;
    color: var(--secondary-color);
}

.hero-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--primary-color);
    display: block;
    visibility: visible;
    text-transform: uppercase;
}

.gold-gradient {
    background: linear-gradient(90deg, #D4AF37 0%, #F1D592 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 96px;
    }
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    font-weight: 300;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 24px;
    }
}

/* Animated Hero Section */
.animated-hero-section {
    padding: 60px 0;
    background: #080E1E;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.neural-noise-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.3;
    z-index: 1;
}

.animated-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.animated-hero-title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--primary-color);
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

.animated-hero-subtitle {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.8);
    margin: 24px 0 0 0;
    text-align: center;
    font-weight: 400;
}

@media (max-width: 768px) {
    .animated-hero-title {
        font-size: 28px;
    }
    
    .animated-hero-subtitle {
        font-size: 24px;
    }
    
    .about-restart-text {
        font-size: 19.6px;
    }
    
}

@media (max-width: 640px) {
    .animated-hero-section {
        padding: 40px 0;
    }
    
    .animated-hero-title {
        font-size: 24px;
    }
    
    .animated-hero-subtitle {
        font-size: 20px;
    }
    
    .about-restart-text {
        font-size: 16.8px;
    }
    
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.location-icon {
    font-size: 20px;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-cta-main-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 64px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #B8941F 100%);
    color: var(--text-primary);
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4), 0 0 0 0 rgba(212, 175, 55, 0.7);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: pulseButton 2s ease-in-out infinite;
    border: none;
    cursor: pointer;
}

@keyframes pulseButton {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4), 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        box-shadow: 0 8px 32px rgba(212, 175, 55, 0.6), 0 0 0 8px rgba(212, 175, 55, 0);
    }
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 48px rgba(212, 175, 55, 0.6);
}

.btn-hero:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero:active {
    transform: translateY(-2px) scale(0.98);
}

.hero-remaining {
    margin-top: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.neon-text {
    color: var(--accent-color);
    font-weight: 900;
    font-size: 16px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    animation: pulseNumber 2s ease-in-out infinite;
}

@keyframes pulseNumber {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    }
    50% {
        opacity: 0.9;
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    }
}

.hero-cta-main:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.5);
}

.countdown-container {
    margin-top: 40px;
}

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

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    gap: 8px;
    min-width: 80px;
}

.countdown-value {
    font-size: 28px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-label-small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: lowercase;
    letter-spacing: 0.05em;
    font-weight: 400;
}

.countdown-divider {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1;
    margin: 0 4px;
}

@media (max-width: 640px) {
    .countdown-value {
        font-size: 24px;
    }
    
    .countdown-divider {
        font-size: 18px;
    }
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features span {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: inline-block;
}

.special-offer {
    background: var(--accent-color) !important;
    color: var(--primary-color);
    font-weight: 600;
}

/* Social Proof Section */

.hero-scroll {
    position: absolute;
    right: 40px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
}

/* Sections */
.section {
    padding: 100px 0;
    width: 100%;
    display: block;
    visibility: visible;
    opacity: 1;
    position: relative;
    background: var(--bg-dark);
}

.section:nth-child(even) {
    background: #080E1E;
}

.section-header {
    margin-bottom: 60px;
}

.section-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 600;
}

.section-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--primary-color);
    text-transform: uppercase;
}

.about .section-title {
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.about .section-label {
    color: var(--accent-color);
}

/* About Section */
.about {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.about-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35;
    animation: slowZoom 25s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(5, 10, 26, 0.88) 0%, rgba(5, 10, 26, 0.82) 100%),
        radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    z-index: 1;
    backdrop-filter: blur(2px);
}

.connections-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.5;
}

.about .container {
    position: relative;
    z-index: 3;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 3;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.lead {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.6;
    color: #fff;
}

.about-text p {
    color: rgba(255, 255, 255, 0.9);
}

.about-restart {
    margin: 40px 0;
    padding: 30px 0;
}

.about-restart-text {
    font-size: 25.2px;
    line-height: 1.0;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-align: left;
}

.about-highlights {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

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

.highlight-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.highlight-text {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background: #0D1528;
    display: flex;
    align-items: flex-start;
}

.about-image-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Turbulence Section */
.turbulence {
    background: linear-gradient(135deg, #0a0f1a 0%, #1a2332 50%, #0f1419 100%);
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.turbulence::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.turbulence-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.turbulence-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.turbulence-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 50px 0;
    letter-spacing: -0.03em;
    color: #fff;
    text-transform: uppercase;
}

.turbulence-title-accent {
    background: linear-gradient(135deg, #D4AF37 0%, #F1D592 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-top: 10px;
}

.turbulence-factors {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 50px 0 60px 0;
    justify-content: center;
}

.turbulence-factors span {
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-transform: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    letter-spacing: 0.02em;
}

.turbulence-factors span:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
    color: #fff;
}

.turbulence-description {
    font-size: 20px;
    line-height: 1.8;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    font-weight: 400;
}

.turbulence-description em {
    font-style: normal;
    font-weight: 600;
    color: var(--accent-color);
    background: linear-gradient(135deg, #D4AF37 0%, #F1D592 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.turbulence-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin: 60px 0;
    flex-wrap: wrap;
}

.turbulence-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 12px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
}

.turbulence-stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.turbulence-stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #4A90E2;
    line-height: 1;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.4);
}

.turbulence-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.4;
    font-weight: 500;
}

.turbulence-conclusion {
    font-size: 20px;
    line-height: 1.8;
    margin-top: 50px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    font-weight: 400;
}

.turbulence-conclusion em {
    font-style: normal;
    font-weight: 600;
    color: var(--accent-color);
    background: linear-gradient(135deg, #D4AF37 0%, #F1D592 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    padding: 40px;
    background: var(--bg-card);
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    min-height: 220px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Speakers Section */
.speakers {
    padding: 120px 0 120px;
    background: #080E1E;
    position: relative;
}

.speakers::before,
.speakers::after {
    content: '';
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
}

.speakers::before {
    left: 0;
}

.speakers::after {
    right: 0;
}

.speakers .section-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 32px;
    margin-bottom: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.speakers .section-header > div:last-child p {
    color: var(--text-secondary);
    font-size: 15px;
    max-width: 450px;
    text-align: right;
    line-height: 1.7;
    margin: 0;
}

.speakers .section-title {
    margin: 0;
}

.neon-text {
    color: var(--accent-color);
}

.gold-gradient {
    background: linear-gradient(135deg, #D4AF37 0%, #F1D592 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.organizers-subtitle-wrapper {
    grid-column: 1 / -1;
    margin: 60px 0 40px 0;
    text-align: left;
}

.organizers-subtitle-wrapper .section-title {
    margin: 0;
}

.speaker-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.speaker-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.speaker-placeholder {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #d0d0d0 0%, #e8e8e8 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.speaker-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.speaker-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 12px;
}

.speaker-name {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin: 0;
    flex-grow: 1;
}

.speaker-country-tag {
    display: inline-block;
    padding: 4px 10px;
    background: #1F1F1F;
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 500;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.speaker-country-tag.organizer-tag {
    background: rgba(227, 195, 102, 0.15);
    color: var(--accent-color);
    border: 1px solid rgba(227, 195, 102, 0.3);
}

.speaker-bio {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: justify;
    text-justify: inter-word;
    orphans: 3;
    widows: 3;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
}

.speaker-bio p {
    margin: 0 0 12px 0;
}

.speaker-bio p:last-child {
    margin-bottom: 0;
}

.speaker-topic {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.topic-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    
    margin-bottom: 8px;
}

.topic-text {
    font-size: 14px;
    line-height: 1.5;
    color: #000;
    margin: 0;
}

.speaker-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

/* speakers-subtitle removed - using unified grid */

/* Old speaker-badge styles removed - using speaker-country-tag instead */

.speaker-photo {
    width: 100%;
    height: 550px;
    overflow: hidden;
    background: #0D1528;
}

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

.speaker-card:hover .speaker-photo img {
    transform: scale(1.1);
}

/* Interactive Timeline Section */
.timeline-section {
    background: var(--bg-card);
    position: relative;
}

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

.timeline-wrapper {
    margin-bottom: 60px;
}

.timeline-track {
    position: relative;
    padding: 40px 20px;
}

.timeline-days {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.timeline-day {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.timeline-day:hover {
    transform: translateY(-5px);
}

.timeline-day.active .day-number {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    border: none;
}

.timeline-day.active .day-label {
    color: var(--primary-color);
    font-weight: 700;
}

.day-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-light);
    border: none;
    border: 2px solid #D0AC37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-secondary);
    transition: all 0.3s;
    margin-bottom: 12px;
}

.day-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    transition: all 0.3s;
}

.timeline-line {
    position: absolute;
    top: 90px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    z-index: 1;
}

.timeline-slider {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--accent-color);
    border-radius: 2px;
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1), width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: calc(16.67% - 20px);
}

.timeline-range {
    position: absolute;
    top: 88px;
    left: 10%;
    right: 10%;
    width: calc(80% - 20px);
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    z-index: 3;
}

.timeline-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 0;
    height: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.timeline-range::-webkit-slider-thumb:hover {
    width: 0;
    height: 0;
}

.timeline-range::-moz-range-thumb {
    width: 0;
    height: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.timeline-range::-moz-range-thumb:hover {
    width: 0;
    height: 0;
}

.timeline-content {
    min-height: 500px;
    position: relative;
}

.timeline-day-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    padding: 40px;
    background: var(--secondary-color);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-color);
}

.timeline-day-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.day-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.day-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.day-theme {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-color);
}

.day-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
}

.day-description p {
    margin-bottom: 16px;
}

.program-schedule {
    margin-top: 30px;
}

.schedule-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.schedule-item:last-child {
    border-bottom: none;
}

/* Hotel Info */
.hotel-info {
    margin-top: 30px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
}

.hotel-info p {
    margin: 10px 0;
    line-height: 1.6;
    color: var(--text-primary);
}

.hotel-info strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* Safari Banner Video */
.safari-banner-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Safari Gallery */
.safari-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.safari-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.safari-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.safari-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.safari-gallery-item:hover img {
    transform: scale(1.05);
}

/* Day 6 Gallery Grid */
.day6-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.day6-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.day6-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.day6-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.day6-gallery-item:hover img {
    transform: scale(1.05);
}

.schedule-time {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 16px;
}

.schedule-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
}

.schedule-text strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* Golden bullet for program lists */
.schedule-text .golden-bullet {
    color: var(--accent-color);
    font-weight: 700;
    margin-right: 8px;
    display: inline-block;
}

/* Schedule item full width */
.schedule-item-full {
    grid-template-columns: 1fr !important;
}

.schedule-item-full .schedule-text {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Safari note styling */
.safari-note-item {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding: 40px 0;
    border-bottom: none;
}

.safari-note-item .schedule-time {
    display: none;
}

.safari-note-text {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.safari-note-text .gold-gradient {
    background: linear-gradient(135deg, #D4AF37 0%, #F1D592 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .safari-note-text {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .safari-note-text {
        font-size: 20px;
    }
}

.game-features,
.excursion-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.game-features li,
.excursion-list li {
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
}

/* Speaker Links in Program */
.speaker-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
}

.speaker-link:hover {
    color: #F1D592;
    border-bottom-color: #F1D592;
}

.speakers-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.speakers-list li {
    padding: 12px 0;
    font-size: 18px;
    line-height: 1.6;
}

.speakers-list .speaker-link {
    font-size: 18px;
    font-weight: 700;
}

/* Speaker Popup Modal */
.speaker-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.speaker-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.speaker-modal-content {
    background: var(--bg-card);
    margin: auto;
    padding: 0;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.speaker-modal.active .speaker-modal-content {
    transform: scale(1);
}

.speaker-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--text-primary);
    font-size: 36px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.speaker-modal-close:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-color);
    transform: rotate(90deg);
}

.speaker-modal-body {
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.speaker-modal-photo-wrapper {
    flex-shrink: 0;
    width: 280px;
}

.speaker-modal-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    border: 3px solid var(--accent-color);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.speaker-modal-content-wrapper {
    flex: 1;
    min-width: 0;
}

.speaker-modal-name {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: left;
}

.speaker-modal-role {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
    text-align: left;
}

.speaker-modal-bio {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.speaker-modal-bio p {
    margin-bottom: 16px;
}

.speaker-modal-topic {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.speaker-modal-topic-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    margin-bottom: 12px;
    display: block;
}

.speaker-modal-topic-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
}

.speaker-modal-social {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.speaker-modal-social-link {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.speaker-modal-social-link:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Responsive Speaker Modal */
@media (max-width: 968px) {
    .speaker-modal-content {
        width: 95%;
        max-width: 95%;
        max-height: 95vh;
    }
    
    .speaker-modal-body {
        flex-direction: column;
        padding: 50px 30px 30px;
        gap: 30px;
    }
    
    .speaker-modal-photo-wrapper {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .speaker-modal-name {
        font-size: 24px;
        text-align: center;
    }
    
    .speaker-modal-role {
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

/* Responsive Timeline */
@media (max-width: 968px) {
    .timeline-day {
        flex: 0 0 auto;
        width: 80px;
    }
    
    .timeline-days {
        overflow-x: auto;
        padding-bottom: 20px;
        scrollbar-width: thin;
    }
    
    .timeline-day .day-label {
        font-size: 12px;
    }
    
    .day-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .schedule-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .day6-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .schedule-time {
        font-weight: 700;
        color: var(--accent-color);
    }
}

/* Rates Section */
.rates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    align-items: stretch;
}

.rate-card {
    padding: 3px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
    color: #fff;
    z-index: 10;
}

.rate-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-color), rgba(212, 175, 55, 0.8));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.rate-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 55, 0.3);
}

.rate-card:hover::before {
    opacity: 0.15;
}

.rate-card > div {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--border-color);
}

.rate-card.featured {
    border-color: var(--accent-color);
    border-width: 3px;
}

.rate-card.premium {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
    grid-column: 1 / -1;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rate-card.premium > div {
    background: var(--bg-light);
    max-width: 1200px;
    width: 100%;
}

.rate-card.premium .rate-header,
.rate-card.premium .rate-target,
.rate-card.premium .rate-features,
.rate-card.premium .rate-btn {
    width: 100%;
    text-align: left;
}

.rate-card.premium .rate-header {
    text-align: center;
}

.rate-card.premium .rate-header .rate-name,
.rate-card.premium .rate-header .rate-price {
    text-align: center;
}

.rate-card.premium .rate-target {
    text-align: center;
}

.rate-card.premium:hover::before {
    opacity: 0.25;
    background: linear-gradient(135deg, var(--accent-color), rgba(212, 175, 55, 0.9));
}

.rate-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 20;
}

/* rate-badge-value removed */

.rate-per-day {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    font-weight: 500;
}

.rate-target {
    padding: 12px 0;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.rate-btn {
    width: 100%;
    margin-top: 20px;
    text-align: center;
    padding: 18px 48px !important;
    font-size: 14px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
}

.rate-header {
    margin-bottom: 30px;
    text-align: center;
}

.rate-name {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

.rate-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    justify-content: center;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.price-currency {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.rate-features {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
    padding: 0;
}

.rate-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rate-features li:last-child {
    border-bottom: none;
}

.feature-included {
    color: #fff;
}

.feature-excluded {
    color: rgba(255, 255, 255, 0.6);
    padding-left: 36px; /* Выравнивание с включенными пунктами (24px + 12px gap) */
}

.check-icon {
    width: 12px;
    height: 12px;
    min-width: 12px;
    border-radius: 50%;
    background: #00ff88;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(0, 255, 136, 0.6), 0 0 12px rgba(0, 255, 136, 0.3);
}

.check-icon::after {
    content: '✓';
    color: #000;
    font-size: 7px;
    font-weight: 900;
    line-height: 1;
}

.rates-note {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #050A1A 0%, #0a0f1a 50%, #050A1A 100%);
    color: var(--secondary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.energy-beam-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.energy-beam-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.6;
    mix-blend-mode: screen;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta .btn-primary {
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
    padding: 20px 48px;
    font-size: 18px;
}

.cta .btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
}

.cta-title {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.cta-title-accent {
    background: linear-gradient(135deg, #D4AF37 0%, #F1D592 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 80px;
    }
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.partner-item {
    padding: 40px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.partner-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.partner-item:hover::before {
    opacity: 1;
}

.partners-cta {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.partners-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.partners-cta h3 {
    position: relative;
    z-index: 1;
}

.partners-cta button {
    position: relative;
    z-index: 1;
}

.partners-cta h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid var(--border-color);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-secondary);
    line-height: 1;
}

.modal-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.form-group label input[type="checkbox"] + span {
    font-weight: 400;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: #9ca3af;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #9ca3af;
}

.footer-info p {
    margin-bottom: 8px;
    color: #9ca3af;
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-country strong {
    color: #9ca3af;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.footer-contact a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--text-primary);
}

/* Value Section */
.value {
    background: var(--bg-dark);
    color: var(--text-primary);
}

.value .section-title,
.value .section-label {
    color: var(--text-primary);
}

.value .section-label {
    color: var(--accent-color);
}

.value .value-text,
.value .value-lead {
    color: var(--text-primary);
}

.value-wrapper {
     display: flex;
    justify-content: center;
    align-items: start;
}

.value-left {
    display: flex;
    flex-direction: column;
    max-width: 1080px;
    width: 100%;
    text-align: left;
}

.value .section-header {
    margin-bottom: 40px;
}

.value-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-top: 0;
    padding-top: 0;
}

.value-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-self: start;
}

.value-lead {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.6;
    color: var(--text-primary);
}

.value-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.value-feature {
    padding: 30px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    min-height: 180px;
}

.value-feature h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
    min-height: 72px;
    display: flex;
    align-items: flex-start;
}

.value-feature p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.cta-subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .cta-subtitle {
        font-size: 22px;
    }
}

.cta-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    transition: all 0.3s;
}

.cta-stat-item:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.cta-stat-icon {
    font-size: 20px;
    line-height: 1;
}

.cta-stat-text {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.02em;
}

.cta-note {
    margin-top: 30px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Included Section */
.included {
    background: var(--bg-card);
}

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

.included-item {
    padding: 30px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.included-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.included-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.included-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.included-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq {
    background: var(--bg-card);
}

.faq-list {
    max-width: 900px;
    margin: 0;
}

.faq-item {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active {
    border-color: var(--accent-color);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.2);
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
    transition: background 0.3s;
}

.faq-item.active .faq-question {
    background: rgba(255, 215, 0, 0.1);
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 32px;
    font-weight: 300;
    color: var(--accent-color);
    transition: transform 0.3s;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 24px 30px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
    margin: 0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    border-top: 3px solid var(--accent-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    padding: 16px 20px;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.show {
    display: block;
    transform: translateY(0);
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sticky-cta-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.sticky-count {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-color);
}

.sticky-btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all 0.3s;
    color: var(--secondary-color);
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    background: #20BA5A;
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
}

.rates-note {
    text-align: center;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.8;
}

.rates-note p {
    margin-bottom: 12px;
}

.rates-note p:last-child {
    margin-bottom: 0;
}

@media (max-width: 968px) {
    .value-content {
        grid-template-columns: 1fr;
    }
    
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .countdown {
        gap: 20px;
    }
    
    .countdown-value {
        font-size: 36px;
    }
    
    .sticky-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .sticky-btn {
        width: 100%;
    }
    
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 640px) {
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .day6-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .safari-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-title .location-text {
        font-size: 28px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 16px;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .speakers-grid {
        grid-template-columns: 1fr;
    }
    
    .speaker-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .speaker-image {
        width: 180px;
        height: 180px;
        margin: 0 auto;
    }
    
    .speaker-info {
        text-align: center;
        width: 100%;
    }
    
    .speaker-social {
        justify-content: center;
    }
    
    .speaker-badge {
        top: 15px;
        right: 15px;
    }
    
    .speaker-card {
        min-height: auto;
    }
    
    .rates-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Mobile Header Adaptations */
    .nav-content {
        flex-wrap: wrap;
        padding: 15px 0;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(5, 10, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-top: 1px solid var(--border-color);
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 0;
        font-size: 14px;
        border-bottom: none;
    }
    
    .nav-contact {
        order: 3;
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
        margin-top: 0;
        display: flex;
        justify-content: space-between;
    }
    
    .language-switcher {
        order: -1;
        margin-right: auto;
        margin-left: 10px;
    }
    
    .lang-btn {
        padding: 4px 10px;
        font-size: 10px;
    }
    
    .btn-phone {
        padding: 10px 16px;
        font-size: 9px;
        flex: 1;
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .nav-btn {
        flex: 1;
        min-width: 0;
        padding: 10px 16px;
        font-size: 9px;
        white-space: nowrap;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta-group .btn-primary,
    .hero-cta-group .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 640px) {
    /* Mobile Header - Extra Small Screens */
    .nav-content {
        padding: 12px 0;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .nav-contact {
        flex-direction: row;
        width: 100%;
        gap: 8px;
        justify-content: space-between;
    }
    
    .btn-phone {
        flex: 0 0 auto;
        padding: 10px 12px;
        font-size: 8px;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .nav-btn {
        flex: 1;
        min-width: 0;
        padding: 10px 12px;
        font-size: 9px;
        white-space: nowrap;
    }
    
    .nav-menu {
        padding: 15px 20px;
    }
    
    .nav-menu a {
        font-size: 13px;
        padding: 12px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-title .location-text {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .turbulence-title {
        font-size: 42px;
    }
    
    .turbulence-description {
        font-size: 18px;
    }
    
    .turbulence-factors {
        gap: 12px;
    }
    
    .turbulence-factors span {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .cta-title {
        font-size: 42px;
    }
    
    .cta-subtitle {
        font-size: 18px;
    }
    
    .cta-stat-item {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .speaker-name {
        font-size: 24px;
    }
    
    .speaker-role {
        font-size: 16px;
    }
    
    .speaker-bio {
        font-size: 14px;
    }
    
    .speaker-image {
        width: 150px;
        height: 150px;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .countdown-value {
        font-size: 36px;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery Section (Hotel) */
.gallery {
    padding: 0;
    background: var(--bg-dark);
    position: relative;
}

.gallery-slider-wrapper {
    width: 100%;
    margin-bottom: 64px;
}

.gallery-slider {
    width: 100%;
    position: relative;
}

.gallery-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 600px;
    border-radius: 0;
}

.gallery-slides {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.gallery-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-slider-prev,
.gallery-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.gallery-slider-prev:hover,
.gallery-slider-next:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.gallery-slider-prev {
    left: 20px;
}

.gallery-slider-next {
    right: 20px;
}

.gallery-slider-prev svg,
.gallery-slider-next svg {
    width: 24px;
    height: 24px;
}

.gallery-slider-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.gallery-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-slider-dot.active {
    background: var(--accent-color);
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

.gallery-text {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stars {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    justify-content: center;
    color: var(--accent-color);
}

.stars svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.4));
}

.gallery-title {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.gallery-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-highlight {
    color: var(--accent-color);
    font-weight: 700;
}

.gallery-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-info-box {
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s;
    backdrop-filter: blur(20px);
}

.gallery-info-box:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.gallery-info-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.gallery-info-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 968px) {
    .gallery-slider-container {
        height: 400px;
    }
    
    .gallery-text {
        padding: 60px 20px;
    }
    
    .gallery-title {
        font-size: 36px;
    }
    
    .gallery-info {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 640px) {
    .gallery-slider-container {
        height: 300px;
    }
    
    .gallery-text {
        padding: 40px 20px;
    }
    
    .gallery-title {
        font-size: 28px;
    }
    
    .gallery-description {
        font-size: 16px;
    }
    
    .gallery-slider-prev,
    .gallery-slider-next {
        width: 40px;
        height: 40px;
    }
    
    .gallery-slider-prev {
        left: 10px;
    }
    
    .gallery-slider-next {
        right: 10px;
    }
}
/* Summit Goals Section */
.summit-goals {
    padding: 100px 0;
    background: var(--bg-dark);
}

.summit-goals .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.summit-goals .section-title {
    color: #D4AF37;
}

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

.goal-card {
    padding: 40px;
    background: var(--bg-card);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.goal-card-with-bg {
    background-image: url('images/partnership.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-color: rgba(255, 255, 255, 0.2);
    min-height: 220px;
}

.goal-card-with-bg-2 {
    background-image: url('images/expiriens.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-color: rgba(255, 255, 255, 0.2);
    min-height: 220px;
}

.goal-card-with-bg-3 {
    background-image: url('images/transform.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-color: rgba(255, 255, 255, 0.2);
    min-height: 220px;
}

.goal-card-with-bg-4 {
    background-image: url('images/meditation.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-color: rgba(255, 255, 255, 0.2);
    min-height: 220px;
}

.goal-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
    transition: background 0.3s ease;
}

.goal-card-with-bg:hover .goal-card-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.goal-card-content {
    position: relative;
    z-index: 2;
}

.goal-card-with-bg .goal-title,
.goal-card-with-bg-2 .goal-title,
.goal-card-with-bg-3 .goal-title,
.goal-card-with-bg-4 .goal-title {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.goal-card-with-bg .goal-text,
.goal-card-with-bg-2 .goal-text,
.goal-card-with-bg-3 .goal-text,
.goal-card-with-bg-4 .goal-text {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.goal-card-with-bg-2:hover .goal-card-overlay,
.goal-card-with-bg-3:hover .goal-card-overlay,
.goal-card-with-bg-4:hover .goal-card-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.goal-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
    line-height: 1.3;
}

.goal-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

@media (max-width: 768px) {
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .goal-card {
        padding: 30px;
    }
    
    .goal-title {
        font-size: 20px;
    }
}
/* Summit Power Section */
.summit-power {
    padding: 100px 0;
    background: var(#050A1A);
}

.summit-power-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.summit-power .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.summit-power-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.summit-power-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.summit-power-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.summit-power-paragraph {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin: 0;
    padding: 0;
}

.summit-power-paragraph:first-child {
    position: relative;
    padding-left: 30px;
}

.summit-power-paragraph:first-child::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #D4AF37, rgba(212, 175, 55, 0.3));
    border-radius: 2px;
}

@media (max-width: 968px) {
    .summit-power-title {
        font-size: 36px;
        letter-spacing: 1px;
    }
    
    .summit-power-paragraph {
        font-size: 18px;
        line-height: 1.7;
    }
}

@media (max-width: 768px) {
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .goal-card {
        padding: 30px;
    }
    
    .goal-title {
        font-size: 20px;
    }
    
    .summit-power {
        padding: 80px 0;
    }
    
    .summit-power-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .summit-power-paragraph {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .summit-power-paragraph:first-child {
        padding-left: 20px;
    }
}
