/* ==========================================================================
   AXBOROT-RESURS MARKAZI (RESOURCES) - MASTER STYLESHEET
==========================================================================
*/

/* =========================================
   1. HERO SECTION (PREMIUM ELITE)
========================================= */

.resource-hero-elite {
    position: relative;
    padding: 30px 0 30px;
    margin: 110px auto 60px;
    background: url('https://images.unsplash.com/photo-1521587760476-6c12a4b040da?q=80&w=2076') no-repeat center center / cover;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
    border-radius: 40px;
    max-width: 1320px;
    box-shadow: 0 30px 80px rgba(7, 0, 107, 0.25);
    color: #fff;
    z-index: 10;
}

.hero-overlay-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(7, 0, 107, 0.4) 0%, rgba(7, 0, 107, 0.95) 100%);
    z-index: 1;
}

.page-hero-header-premium {
    position: relative;
    z-index: 2;
}

.hero-badge-top {
    display: inline-block;
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid #FFC107;
    color: #FFC107;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.title-premium {
    font-family: 'Unbounded', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 0;
}

.highlight-text-premium {
    color: transparent;
    -webkit-text-stroke: 2px #FFC107;
    position: relative;
    display: inline-block;
}

.highlight-text-premium::before {
    content: 'MARKAZI';
    position: absolute; left: 0; top: 0; width: 0; height: 100%;
    color: #FFC107; overflow: hidden;
    border-right: 4px solid #FFC107;
    animation: fillGold 2s ease-out forwards 0.5s;
}
@keyframes fillGold { to { width: 100%; border-right-color: transparent; } }

.premium-line-divider {
    height: 6px; width: 150px;
    background: linear-gradient(90deg, #FFC107, transparent);
    margin: 25px auto 0;
    border-radius: 10px;
}

.hero-subtitle {
    font-size: 1.1rem; opacity: 0.9; line-height: 1.7;
    max-width: 700px; margin: 0 auto; font-weight: 300;
}


/* =========================================
   2. INTRO SECTION
========================================= */

.resources-body-bg { padding-bottom: 80px; }

/* Resources sahifasi uchun rasmni biroz moslashtiramiz */
.vaw-image-wrapper {
    min-height: 450px; /* Rasm balandligi */
}

/* Play tugmasini (Kofe ikonka) markazlashtirish */
.vaw-play-btn i {
    font-size: 28px;
    color: #07006b;
}

/* Oltin yozuv effekti */
.highlight-gold {
    color: #07006b;
    font-weight: 700;
    background: linear-gradient(120deg, rgba(255,193,7,0.3) 0%, rgba(255,193,7,0) 100%);
    padding: 0 5px;
}

/* Mobil uchun moslashuv */
@media (max-width: 991px) {
    .vaw-image-wrapper {
        margin-top: 50px;
        min-height: 300px;
    }
}


/* =========================================
   3. GALLERY STYLES (SWIPER GRID)
========================================= */
.gallery-section-wrapper { margin-bottom: 60px; }

.section-title-center {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800; font-size: 2.5rem; color: #07006b; text-align: center; margin-bottom: 0;
}
.divider-gold-center {
    width: 80px; height: 4px; background: #FFC107; margin: 20px auto 50px; border-radius: 2px;
}

.grid-slider {
    height: 600px; /* Swiper balandligi */
    padding-bottom: 50px;
}

.gallery-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.4s;
    background: #000;
    cursor: default; /* Bosilganda qo'l belgisi chiqmasin */
}

.gallery-card img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease;
}

/* Hover Effects - Faqat rasm yaqinlashadi, boshqa narsa chiqmaydi */
.gallery-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(7, 0, 107, 0.2); }
.gallery-card:hover img { transform: scale(1.1); }

/* Swiper Dots */
.swiper-pagination-bullet-active { background: #07006b !important; opacity: 1; }
.swiper-pagination-bullet { width: 10px; height: 10px; transition: 0.3s; }


/* =========================================
   4. PLATFORM CARDS (BUSINESS PAGE STYLE)
========================================= */

.platforms-section { margin-bottom: 60px; }

/* Asosiy Karta Konteyneri */
.platform-elite-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(7, 0, 107, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* HOVER EFFECTS - Business Style */
.platform-elite-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(7, 0, 107, 0.15);
    border-color: transparent;
}

/* Pastki oltin chiziq */
.platform-elite-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 6px;
    background: linear-gradient(90deg, #FFC107, #f57f17);
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.platform-elite-card:hover::after { transform: scaleX(1); }

/* HEADER QISMI */
.platform-header {
    display: flex; align-items: center; gap: 20px; margin-bottom: 25px;
}

.p-icon-box {
    width: 65px; height: 65px;
    background: rgba(7, 0, 107, 0.05); color: #07006b;
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-size: 28px; transition: 0.4s; flex-shrink: 0;
}

.p-icon-box.blue { background: rgba(21, 101, 192, 0.1); color: #1565c0; }

.platform-elite-card:hover .p-icon-box {
    background: #07006b; color: #FFC107;
    box-shadow: 0 10px 20px rgba(7, 0, 107, 0.2); transform: rotate(5deg);
}

.platform-header h3 {
    font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 1.4rem;
    color: #07006b; margin: 0; line-height: 1.3;
}

/* BODY QISMI */
.platform-body {
    margin-bottom: auto; color: #555; font-size: 1.05rem; line-height: 1.7;
}
.platform-body p { margin-bottom: 20px; }
.platform-body ul { list-style: none; padding: 0; margin: 0; }
.platform-body ul li {
    margin-bottom: 12px; display: flex; align-items: flex-start; gap: 12px;
    font-weight: 500; color: #444;
}
.platform-body ul li i {
    color: #FFC107; font-size: 0.9rem; margin-top: 6px;
    background: rgba(255, 193, 7, 0.1); padding: 5px; border-radius: 50%;
}

/* FOOTER & BUTTON */
.platform-footer {
    margin-top: 35px; padding-top: 25px; border-top: 1px solid rgba(0,0,0,0.05);
}

.btn-platform {
    display: inline-flex; align-items: center; gap: 12px;
    color: #07006b;  font-weight: 800;
    text-decoration: none; transition: 0.3s;
    font-size: 1rem; text-transform: uppercase; letter-spacing: 1px;
}
.btn-platform:hover { color: #f57f17; }
.btn-platform:hover i { transform: translateX(8px); color: #f57f17; }

/* Responsive */
@media (max-width: 991px) {
    .title-premium { font-size: 2.2rem; }
    .resource-hero-elite { padding: 40px 0; border-radius: 20px; }
    .grid-slider { height: 900px; }
}

@media (max-width: 768px) {
    .platform-elite-card { padding: 30px 25px; }
    .platform-header h3 { font-size: 1.25rem; }
    .p-icon-box { width: 55px; height: 55px; font-size: 24px; }
}

/* =========================================
   NEO GLASS SECTION – PREMIUM UI
========================================= */

.neo-glass-section {
    position: relative;
    padding: 40px 40px;
    margin: 100px auto;
    max-width: 1400px;

    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.02)
    );

    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);

    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.25);

    box-shadow:
        0 40px 90px rgba(7, 0, 107, 0.18),
        inset 0 0 0 1px rgba(255,255,255,0.15);

    overflow: hidden;
    isolation: isolate;
}

/* ================= GLOW SPOTS ================= */

.glow-spot {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    animation: glowPulse 8s ease-in-out infinite;
    z-index: 0;
}

.spot-1 {
    background: rgba(255, 193, 7, 0.7);
    top: -120px;
    left: -120px;
}

.spot-2 {
    background: rgba(7, 0, 107, 0.7);
    bottom: -120px;
    right: -120px;
    animation-delay: 4s;
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.35;
    }
    50% {
        transform: scale(1.25);
        opacity: 0.55;
    }
}

/* ================= CONTENT LAYER ================= */

.relative-z {
    position: relative;
    z-index: 2;
}

/* ================= HEADER ================= */

.neo-header .premium-badge {
    display: inline-block;
    padding: 8px 26px;
    border-radius: 30px;
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.5);
    color: #FFC107;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    backdrop-filter: blur(6px);
}

.neo-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    margin: 20px 0 10px;
    color: #07006b;
}

.text-gold {
    background: linear-gradient(90deg, #FFC107, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.neo-subtitle {
    font-size: 1.1rem;
    color: rgba(0,0,0,0.6);
}

/* ================= VIP CARD ================= */

.vip-glass-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;

    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 30px 35px;

    box-shadow: 0 20px 50px rgba(7,0,107,0.15);
    border: 1px solid rgba(255,255,255,0.4);

    transition: 0.4s ease;
}

.vip-glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 80px rgba(7,0,107,0.25);
}

.vip-content {
    display: flex;
    gap: 20px;
    align-items: center;
}

.vip-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #FFC107, #ff9800);
    color: #07006b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(255,193,7,0.5);
}

.btn-neo-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 30px;

    background: linear-gradient(135deg, #FFC107, #ff9800);
    color: #07006b;
    font-weight: 800;
    text-decoration: none;

    box-shadow: 0 10px 30px rgba(255,193,7,0.5);
    transition: 0.3s;
}

.btn-neo-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(255,193,7,0.7);
}

/* ================= GLASS PANELS ================= */

.glass-panel {
    height: 100%;
    padding: 30px;

    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(14px);
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.35);

    box-shadow: 0 20px 45px rgba(7,0,107,0.12);
    transition: 0.4s ease;
}

.glass-panel:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 75px rgba(7,0,107,0.25);
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
}

.panel-header i {
    font-size: 22px;
    color: #FFC107;
}

.panel-header h4 {
    margin: 0;
    font-weight: 700;
    color: #07006b;
}

/* ================= LINKS ================= */

.neo-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: #444;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.neo-link:hover {
    color: #07006b;
    transform: translateX(6px);
}

.neo-link.sm {
    font-size: 0.95rem;
}
/* ===============================
   FLOATING PREMIUM CARDS
================================ */

/* Barcha kartalar uchun */
.glass-panel {
    position: relative;
    animation-duration: 10s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    will-change: transform;
}

/* Tepadan pastga */
.glass-panel:nth-child(odd) {
    animation-name: floatDown;
}

/* Pastdan tepaga */
.glass-panel:nth-child(even) {
    animation-name: floatUp;
}

/* Hover bo‘lsa to‘xtasin */
.glass-panel:hover {
    animation-play-state: paused;
    transform: translateY(-12px) scale(1.02);
}

/* ================= ANIMATIONS ================= */

@keyframes floatUp {
    0% {
        transform: translateY(12px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(12px);
    }
}

@keyframes floatDown {
    0% {
        transform: translateY(-12px);
    }
    50% {
        transform: translateY(12px);
    }
    100% {
        transform: translateY(-12px);
    }
}

/* ================= YUMSHOQ VARIATSIYA ================= */
/* Har xil tezlik — sun’iy ko‘rinmasligi uchun */

.glass-panel:nth-child(1) { animation-duration: 9s; }
.glass-panel:nth-child(2) { animation-duration: 11s; }
.glass-panel:nth-child(3) { animation-duration: 10s; }
.glass-panel:nth-child(4) { animation-duration: 12s; }



/* ===============================
   ARM INFO – PREMIUM FINAL
================================ */

.arm-info-section {
    padding-bottom: 80px;
}

.arm-info-card {
    position: relative;
    padding: 70px 70px;
    border-radius: 40px;

    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.45);

    box-shadow: 0 40px 90px rgba(7,0,107,0.18);
    overflow: hidden;
}

/* background shine */
.arm-info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,193,7,0.12), transparent 40%),
        radial-gradient(circle at bottom right, rgba(7,0,107,0.12), transparent 45%);
    pointer-events: none;
}

/* header */

.arm-info-header {
    text-align: center;
    margin-bottom: 40px;
}

.arm-badge {
    display: inline-block;
    padding: 8px 26px;
    border-radius: 30px;
    background: rgba(255,193,7,0.15);
    border: 1px solid rgba(255,193,7,0.5);
    color: #FFC107;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.arm-info-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: #07006b;
    margin-top: 20px;
}

.arm-info-title span {
    background: linear-gradient(90deg, #FFC107, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* text */

.arm-info-text {
    max-width: 900px;
    margin: 0 auto 18px;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

/* ================= STATS ================= */

.arm-stats {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* stat card */

.premium-stat {
    position: relative;
    padding: 40px 26px 34px;
    border-radius: 28px;
    text-align: center;

    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.95),
        rgba(255,255,255,0.7)
    );

    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.5);

    box-shadow:
        0 25px 60px rgba(7,0,107,0.18),
        inset 0 1px 0 rgba(255,255,255,0.8);

    transition: 0.5s cubic-bezier(.22,.61,.36,1);
    animation: statFloat 10s ease-in-out infinite;
}

.premium-stat:nth-child(2) { animation-duration: 11s; }
.premium-stat:nth-child(3) { animation-duration: 12s; }
.premium-stat:nth-child(4) { animation-duration: 13s; }

@keyframes statFloat {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* icon */

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #07006b, #1a237e);
    color: #FFC107;
    font-size: 22px;

    box-shadow: 0 12px 30px rgba(7,0,107,0.35);
}

/* number */

.stat-number {
    display: block;
    font-size: 2.3rem;
    font-weight: 900;
    color: #07006b;
    margin-bottom: 6px;
}

/* label */

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
}

/* glow line */

.stat-glow {
    position: absolute;
    left: 50%;
    bottom: 16px;
    width: 60%;
    height: 3px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, #FFC107, transparent);
    opacity: 0.6;
    border-radius: 10px;
}

/* hover */

.premium-stat:hover {
    transform: translateY(-18px) scale(1.05);
    box-shadow:
        0 45px 90px rgba(7,0,107,0.3),
        0 0 35px rgba(255,193,7,0.25);
}

.premium-stat:hover .stat-icon {
    transform: rotate(6deg) scale(1.08);
}

/* responsive */

@media (max-width: 991px) {
    .arm-info-card {
        padding: 50px 35px;
    }
    .arm-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .arm-stats {
        grid-template-columns: 1fr;
    }
}
