/* ─── CINEMATIC HERO IMAGE ─── */
.cinematic-img {
    width: 100%; height: 100%;
    object-fit: cover;
    animation: panZoom 35s infinite alternate ease-in-out;
    filter: brightness(0.65) contrast(1.1) saturate(1.1);
    will-change: transform;
}

@keyframes panZoom {
    0%   { transform: scale(1.0) translate(0,0); }
    100% { transform: scale(1.12) translate(-3%, 2%); }
}

/* ─── GLASSMORPHISM CARDS ─── */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
                border-color 0.3s ease,
                box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(197,160,89,0.4);
    box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(197,160,89,0.1);
}

/* Card shimmer on hover */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: -120%; width: 60%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.06), transparent);
    transform: skewX(-20deg);
    transition: none;
    pointer-events: none;
}

.glass-card:hover::before {
    animation: cardShimmer 0.7s ease forwards;
}

@keyframes cardShimmer {
    from { left: -120%; }
    to   { left: 200%; }
}

/* ─── PAGE TRANSITION OVERLAY ─── */
.page-transition-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), #0a1a35);
    z-index: 9999;
    display: none;
    transform-origin: top;
}

/* ─── GSAP REVEAL ─── */
.gsap-reveal {
    opacity: 0;
    transform: translateY(35px);
    will-change: opacity, transform;
}

/* ─── TEXT EFFECTS ─── */
.glow-text {
    text-shadow: 0 0 30px rgba(197,160,89,0.5), 0 0 60px rgba(197,160,89,0.2);
}

.gradient-text {
    background: linear-gradient(135deg, #fff 30%, var(--accent-color) 70%, var(--gold-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ─── PARTICLES ─── */
.particles-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px; height: 2px;
    background: rgba(197,160,89,0.7);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(197,160,89,0.9), 0 0 20px rgba(197,160,89,0.4);
    animation: floatParticle 12s infinite linear;
}

@keyframes floatParticle {
    0%   { transform: translateY(100vh) translateX(0) scale(0); opacity: 0; }
    10%  { opacity: 1; transform: translateY(85vh) translateX(10px) scale(1); }
    90%  { opacity: 0.8; }
    100% { transform: translateY(-10px) translateX(60px) scale(0.5); opacity: 0; }
}

/* ─── BUTTON ANIMATIONS ─── */
@keyframes movingGradient {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ─── FLOATING ITEMS ─── */
.floating-item {
    animation: floatUpAndDown 7s ease-in-out infinite;
    will-change: transform;
}

@keyframes floatUpAndDown {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-14px); }
    100% { transform: translateY(0px); }
}

/* ─── SECTIONS ─── */
section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, var(--text-main), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ─── HERO BADGES ─── */
.hero-badge {
    background: rgba(197,160,89,0.08);
    border: 1px solid rgba(197,160,89,0.25);
    backdrop-filter: blur(12px);
    padding: 0.65rem 1.4rem;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(240,244,255,0.9);
    transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.hero-badge:hover {
    background: rgba(197,160,89,0.15);
    border-color: rgba(197,160,89,0.5);
    transform: translateY(-3px);
}

/* ─── HERO GRADIENT OVERLAY ─── */
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(to top, var(--primary-color) 0%, rgba(2,9,18,0.7) 40%, rgba(2,9,18,0.3) 100%),
        linear-gradient(to right, rgba(2,9,18,0.8) 0%, transparent 60%);
}

/* ─── STAT NUMBERS ─── */
.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    font-family: var(--font-heading);
    display: block;
    text-shadow: 0 0 30px var(--accent-glow);
}

/* ─── CONTACT CARDS ─── */
.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 3rem;
    text-align: center;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
    text-decoration: none;
    color: var(--text-main);
    position: relative;
    overflow: hidden;
}

.contact-card.whatsapp-card {
    background: linear-gradient(135deg, rgba(37,211,102,0.12), rgba(37,211,102,0.05));
    border: 1px solid rgba(37,211,102,0.25);
}

.contact-card.telegram-card {
    background: linear-gradient(135deg, rgba(0,136,204,0.12), rgba(0,136,204,0.05));
    border: 1px solid rgba(0,136,204,0.25);
}

.contact-card.whatsapp-card:hover {
    background: linear-gradient(135deg, rgba(37,211,102,0.25), rgba(37,211,102,0.1));
    border-color: rgba(37,211,102,0.6);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(37,211,102,0.25);
}

.contact-card.telegram-card:hover {
    background: linear-gradient(135deg, rgba(0,136,204,0.25), rgba(0,136,204,0.1));
    border-color: rgba(0,136,204,0.6);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,136,204,0.25);
}

.contact-card-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.2rem;
}

/* ─── GLOW LINES / DIVIDERS ─── */
.glow-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.3;
    margin: 0;
}

/* ─── SCROLL REVEAL FADE ─── */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media(max-width: 768px) {
    .section-header h2 { font-size: 2.2rem; }
    section { padding: 5rem 0; }
}

@media(max-width: 600px) {
    .section-header h2 { font-size: 1.9rem; }
}
