/* ===== Certificates Section Premium ===== */
.certificates-section-premium {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.certificates-section-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(212, 175, 55, 0.03) 2px,
        rgba(212, 175, 55, 0.03) 4px
    );
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.certificates-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

.certificates-section-premium .container {
    position: relative;
    z-index: 2;
}

.certificates-section-premium .section-subtitle {
    color: var(--white);
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 10px;
}

/* Tabs */
.certificates-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 60px 0 50px;
    flex-wrap: wrap;
    position: relative;
}

.certificates-tabs::after {
    content: '← اسحب لرؤية المزيد →';
    display: none;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 13px;
    opacity: 0.8;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .certificates-tabs::after {
        display: block;
    }
}

.cert-tab {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.8) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 15px 30px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.cert-tab i {
    font-size: 18px;
    color: var(--gold);
}

.cert-tab:hover,
.cert-tab.active {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(184, 134, 11, 0.3) 100%);
}

/* Active state for mobile */
@media (max-width: 768px) {
    .cert-tab.active {
        transform: translateY(0);
        border-width: 3px;
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    }
}

/* Certificates Showcase */
.certificates-showcase {
    position: relative;
    min-height: 600px;
}

.cert-display {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    animation: fadeInCert 0.6s ease;
}

.cert-display.active {
    display: grid;
}

@keyframes fadeInCert {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 3D Frame */
.cert-3d-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 30px 90px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(212, 175, 55, 0.5);
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    cursor: pointer;
    background: #000;
}

.cert-3d-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.cert-3d-frame:hover {
    transform: rotateY(5deg) rotateX(-5deg) scale(1.02);
    box-shadow: 
        0 40px 120px rgba(212, 175, 55, 0.4),
        0 0 0 2px var(--gold);
}

.cert-3d-frame:hover img {
    transform: scale(1.05);
}

/* Shine Effect */
.cert-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Glass Overlay */
.cert-glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 50%,
        rgba(212, 175, 55, 0.05) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Certificate Details */
.cert-details {
    padding: 40px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(10, 10, 10, 0.6) 100%);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    text-align: center;
}

.cert-icon-badge {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.cert-icon-badge i {
    font-size: 36px;
    color: #000;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 60px rgba(212, 175, 55, 0.6);
    }
}

.cert-details h3 {
    font-size: 36px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.cert-details p {
    font-size: 18px;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.view-cert-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: #000;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.view-cert-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.view-cert-btn i {
    font-size: 18px;
}

/* Counter */
.cert-counter {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.counter-item {
    text-align: center;
    padding: 40px 60px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.8) 100%);
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.counter-item i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.counter-number {
    font-size: 64px;
    font-weight: 900;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.counter-item p {
    font-size: 20px;
    color: var(--light-gray);
    font-weight: 600;
}

/* Lightbox */
.cert-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cert-lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 2;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 20px 80px rgba(212, 175, 55, 0.5);
    border: 2px solid var(--gold);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--gold);
    color: #000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
    .cert-display {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .certificates-section-premium {
        padding: 60px 0;
    }
    
    .certificates-tabs {
        gap: 8px;
        margin: 40px 0 30px;
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 10px 5px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .certificates-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .cert-tab {
        padding: 18px 25px;
        font-size: 14px;
        flex-shrink: 0;
        min-width: 90px;
        border-radius: 15px;
        border-width: 2px;
        /* Improve touch target */
        min-height: 50px;
    }
    
    .cert-tab span {
        display: inline;
        font-size: 12px;
        font-weight: 600;
    }
    
    .cert-tab i {
        font-size: 20px;
    }
    
    /* Make active state more visible on mobile */
    .cert-tab.active {
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.4) 0%, rgba(184, 134, 11, 0.4) 100%);
        border-color: var(--gold);
        border-width: 3px;
        box-shadow: 0 5px 25px rgba(212, 175, 55, 0.6);
    }
    
    .cert-display {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cert-details {
        padding: 30px 20px;
    }
    
    .cert-details h3 {
        font-size: 28px;
    }
    
    .cert-details p {
        font-size: 16px;
    }
    
    .cert-icon-badge {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .cert-icon-badge i {
        font-size: 28px;
    }
    
    .counter-item {
        padding: 30px 40px;
    }
    
    .counter-number {
        font-size: 48px;
    }
    
    .counter-item p {
        font-size: 16px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .cert-tab {
        padding: 10px 15px;
    }
    
    .cert-details h3 {
        font-size: 24px;
    }
    
    .view-cert-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}


/* ===== Partners Section Premium ===== */
.partners-section-premium {
    padding: 120px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.partners-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.partners-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.partners-section-premium .container {
    position: relative;
    z-index: 2;
}

/* Scroll indicator hint */
.swipe-hint {
    display: block;
    text-align: center;
    color: var(--gold);
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.7;
}

.partners-section-premium .section-subtitle {
    color: var(--white);
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 10px;
}

/* Partners Grid - Scrollable */
.partners-grid-premium {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    cursor: grab;
}

.partners-grid-premium:active {
    cursor: grabbing;
}

/* Custom scrollbar for webkit browsers */
.partners-grid-premium::-webkit-scrollbar {
    height: 8px;
}

.partners-grid-premium::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.partners-grid-premium::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.partners-grid-premium::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gold);
}

.partner-card-premium {
    position: relative;
    animation: fadeInUp 0.6s ease backwards;
    flex-shrink: 0;
    width: 200px;
}

.partner-card-premium:nth-child(1) { animation-delay: 0.1s; }
.partner-card-premium:nth-child(2) { animation-delay: 0.2s; }
.partner-card-premium:nth-child(3) { animation-delay: 0.3s; }
.partner-card-premium:nth-child(4) { animation-delay: 0.4s; }
.partner-card-premium:nth-child(5) { animation-delay: 0.5s; }
.partner-card-premium:nth-child(6) { animation-delay: 0.6s; }
.partner-card-premium:nth-child(7) { animation-delay: 0.7s; }
.partner-card-premium:nth-child(8) { animation-delay: 0.8s; }
.partner-card-premium:nth-child(9) { animation-delay: 0.9s; }
.partner-card-premium:nth-child(10) { animation-delay: 1s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Partner Frame */
.partner-frame {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.8) 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.partner-frame:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--gold);
    box-shadow: 
        0 20px 60px rgba(212, 175, 55, 0.3),
        0 0 0 1px var(--gold);
}

.partner-frame:hover::before {
    opacity: 1;
}

.partner-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.partner-frame:hover img {
    transform: scale(1.1);
}

/* Partner Overlay */
.partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.1) 0%,
        transparent 50%,
        rgba(212, 175, 55, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.partner-frame:hover .partner-overlay {
    opacity: 1;
}

/* Shine Effect */
.partner-frame::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.partner-frame:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Responsive */
@media (max-width: 1200px) {
    .partners-grid-premium {
        gap: 25px;
    }
    
    .partner-card-premium {
        width: 180px;
    }
}

@media (max-width: 992px) {
    .partners-grid-premium {
        gap: 20px;
    }
    
    .partner-card-premium {
        width: 160px;
    }
}

@media (max-width: 768px) {
    .partners-section-premium {
        padding: 60px 0;
    }
    
    .partners-grid-premium {
        gap: 20px;
        margin-top: 40px;
        padding: 20px 0;
        scrollbar-width: none; /* Hide scrollbar on mobile */
    }
    
    /* Hide scrollbar on mobile */
    .partners-grid-premium::-webkit-scrollbar {
        display: none;
    }
    
    .partner-card-premium {
        width: 150px;
        animation: none;
    }
    
    .partner-frame {
        padding: 15px;
        width: 150px;
        height: 150px;
    }
    
    .partner-frame:hover {
        transform: scale(1.05);
    }
    
    /* Scroll indicator */
    .partners-section-premium::after {
        content: '← اسحب لرؤية المزيد →';
        display: block;
        text-align: center;
        color: var(--gold);
        font-size: 14px;
        margin-top: 20px;
        opacity: 0.7;
    }
}

@media (max-width: 480px) {
    .partner-card-premium {
        width: 120px;
    }
    
    .partner-frame {
        padding: 10px;
        width: 120px;
        height: 120px;
    }
}


/* ===== Statistics Counter Section - Premium ===== */
.statistics-section {
    padding: 120px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.statistics-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(212, 175, 55, 0.02) 2px,
        rgba(212, 175, 55, 0.02) 4px
    );
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    will-change: transform;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 2px solid transparent;
    border-radius: 25px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Animated border gradient */
.stat-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--gold), 
        var(--dark-gold), 
        var(--gold), 
        var(--dark-gold)
    );
    background-size: 300% 300%;
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    animation: gradientShift 3s ease infinite;
    transition: opacity 0.3s ease;
    will-change: opacity;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.stat-item:hover::before {
    opacity: 1;
}

/* Shine effect */
.stat-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.stat-item:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(212, 175, 55, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.5),
        inset 0 0 60px rgba(212, 175, 55, 0.1);
}

/* Icon container with 3D effect */
.stat-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 35px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 15px 50px rgba(212, 175, 55, 0.5),
        inset 0 -5px 15px rgba(0, 0, 0, 0.3),
        inset 0 5px 15px rgba(255, 255, 255, 0.3);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    position: relative;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 50%;
    opacity: 0.6;
}

.stat-item:hover .stat-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 
        0 20px 70px rgba(212, 175, 55, 0.7),
        inset 0 -5px 15px rgba(0, 0, 0, 0.3),
        inset 0 5px 15px rgba(255, 255, 255, 0.3);
}

.stat-icon i {
    font-size: 42px;
    color: #000;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

/* Number styling with glow */
.stat-number {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold) 0%, #fff 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    direction: ltr;
    display: inline-block;
    width: 100%;
}

.stat-number::before {
    content: '+';
    font-size: 52px;
    margin-right: 5px;
    opacity: 0.9;
}

/* Label with elegant styling */
.stat-label {
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
    padding-top: 20px;
}

.stat-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

/* Floating particles effect */
.stat-item .stat-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover .stat-particles {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    .statistics-grid {
        gap: 40px;
    }
    
    .stat-item {
        padding: 50px 30px;
    }
    
    .stat-number {
        font-size: 58px;
    }
    
    .stat-number::before {
        font-size: 48px;
    }
}

@media (max-width: 1024px) {
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .stat-number {
        font-size: 54px;
    }
    
    .stat-number::before {
        font-size: 46px;
    }
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 80px 0;
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stat-item {
        padding: 40px 20px;
    }
    
    .stat-icon {
        width: 75px;
        height: 75px;
        margin-bottom: 25px;
    }
    
    .stat-icon i {
        font-size: 34px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .stat-number::before {
        font-size: 36px;
        margin-right: 3px;
    }
    
    .stat-label {
        font-size: 15px;
        padding-top: 15px;
    }
    
    .stat-label::before {
        width: 40px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 35px 15px;
    }
    
    .stat-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }
    
    .stat-icon i {
        font-size: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-number::before {
        font-size: 32px;
        margin-right: 2px;
    }
    
    .stat-label {
        font-size: 13px;
        padding-top: 12px;
    }
    
    .stat-label::before {
        width: 35px;
    }
}


/* ===== Brands Slider Section ===== */
.brands-slider-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.brands-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.brands-slider-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.brands-slider-wrapper {
    margin-top: 60px;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    width: 100%;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.brands-slider-wrapper:active {
    cursor: grabbing;
}

.brands-slider-wrapper::-webkit-scrollbar {
    display: none;
}

.brands-slider-wrapper::before,
.brands-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-slider-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #000000 0%, transparent 100%);
}

.brands-slider-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #000000 0%, transparent 100%);
}

.brands-slider-track {
    display: flex;
    gap: 60px;
    width: max-content;
    padding: 20px 0;
}

.brand-slide {
    flex-shrink: 0;
    width: 180px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-slide:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.brand-slide:hover::before {
    opacity: 1;
}

.brand-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-slide:hover img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .brands-slider-section {
        padding: 60px 0;
    }
    
    .brands-slider-track {
        gap: 40px;
        animation-duration: 20s;
    }
    
    .brand-slide {
        width: 150px;
        height: 90px;
        padding: 15px;
    }
    
    .brands-slider-wrapper::before,
    .brands-slider-wrapper::after {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .brand-slide {
        width: 120px;
        height: 70px;
        padding: 10px;
    }
    
    .brands-slider-track {
        gap: 30px;
    }
}


/* ===== Products Section Premium ===== */
.products-section-premium {
    padding: 120px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.products-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.products-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.products-section-premium .container {
    position: relative;
    z-index: 2;
}

/* Products Grid */
.products-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

/* Product Card */
.product-card-premium {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 50px 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

/* Animated border gradient */
.product-card-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    animation: gradientMove 3s ease infinite;
    transition: opacity 0.5s ease;
}

.product-card-premium:hover::before {
    opacity: 1;
}

.product-card-premium:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 
        0 30px 80px rgba(212, 175, 55, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.5),
        inset 0 0 60px rgba(212, 175, 55, 0.1);
}

/* Product Number */
.product-number {
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.08);
    line-height: 1;
    z-index: 0;
    transition: all 0.5s ease;
}

.product-card-premium:hover .product-number {
    color: rgba(212, 175, 55, 0.15);
    transform: scale(1.1);
}

/* Product Icon Container */
.product-icon-container {
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
}

.product-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 15px 50px rgba(212, 175, 55, 0.5),
        inset 0 -5px 15px rgba(0, 0, 0, 0.3),
        inset 0 5px 15px rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-icon::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 50%;
    opacity: 0.6;
}

.product-card-premium:hover .product-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 
        0 20px 70px rgba(212, 175, 55, 0.7),
        inset 0 -5px 15px rgba(0, 0, 0, 0.3),
        inset 0 5px 15px rgba(255, 255, 255, 0.3);
}

.product-icon i {
    font-size: 42px;
    color: #000;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

/* Product Title */
.product-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Product Divider */
.product-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 30px;
    border-radius: 2px;
}

/* Product Features */
.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    transition: all 0.3s ease;
}

.product-features li:hover {
    color: var(--white);
    transform: translateX(-5px);
}

.product-features li i {
    color: var(--gold);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

/* Product Glow Effect */
.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.product-card-premium:hover .product-glow {
    opacity: 1;
}

/* Shine Effect */
.product-card-premium::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.8s ease;
}

.product-card-premium:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Responsive */
@media (max-width: 1024px) {
    .products-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .products-section-premium {
        padding: 80px 0;
    }
    
    .products-grid-premium {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 50px;
    }
    
    .product-card-premium {
        padding: 40px 30px;
    }
    
    .product-number {
        font-size: 80px;
        top: -10px;
        right: 20px;
    }
    
    .product-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }
    
    .product-icon i {
        font-size: 36px;
    }
    
    .product-title {
        font-size: 22px;
    }
    
    .product-features li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .products-section-premium {
        padding: 60px 0;
    }
    
    .product-card-premium {
        padding: 35px 25px;
    }
    
    .product-number {
        font-size: 60px;
    }
    
    .product-icon {
        width: 70px;
        height: 70px;
    }
    
    .product-icon i {
        font-size: 32px;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .product-features li {
        font-size: 13px;
        gap: 12px;
    }
}


/* ===== App Download Section ===== */
.app-download-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.app-download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.app-download-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.app-text {
    margin-bottom: 50px;
}

.app-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    line-height: 1.3;
}

.app-description {
    font-size: 20px;
    color: var(--white);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.app-store-btn,
.google-play-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-width: 200px;
}

.app-store-btn::before,
.google-play-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    animation: gradientMove 3s ease infinite;
    transition: opacity 0.4s ease;
}

.app-store-btn:hover::before,
.google-play-btn:hover::before {
    opacity: 1;
}

.app-store-btn:hover,
.google-play-btn:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 
        0 15px 40px rgba(212, 175, 55, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, rgba(26, 26, 26, 1) 0%, rgba(10, 10, 10, 1) 100%);
}

.app-store-btn i,
.google-play-btn i {
    font-size: 36px;
    color: var(--gold);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.btn-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.btn-store {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

/* Shine effect */
.app-store-btn::after,
.google-play-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.app-store-btn:hover::after,
.google-play-btn:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .app-download-section {
        padding: 70px 0;
    }
    
    .app-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .app-description {
        font-size: 17px;
        line-height: 1.7;
    }
    
    .app-text {
        margin-bottom: 40px;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .app-store-btn,
    .google-play-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 16px 30px;
    }
}

@media (max-width: 480px) {
    .app-download-section {
        padding: 50px 0;
    }
    
    .app-title {
        font-size: 26px;
    }
    
    .app-description {
        font-size: 15px;
    }
    
    .app-store-btn i,
    .google-play-btn i {
        font-size: 32px;
    }
    
    .btn-label {
        font-size: 10px;
    }
    
    .btn-store {
        font-size: 18px;
    }
}


/* ===== Gallery Section Premium ===== */
.gallery-section-premium {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, #0a0a0a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(212, 175, 55, 0.03) 2px,
        rgba(212, 175, 55, 0.03) 4px
    );
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

.gallery-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.gallery-section-premium .container {
    position: relative;
    z-index: 2;
}

/* Gallery Grid */
.gallery-grid-premium {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 80px;
}

/* Gallery Item */
.gallery-item-premium {
    position: relative;
    animation: fadeInScale 0.8s ease backwards;
}

.gallery-item-premium:nth-child(1) { animation-delay: 0.1s; }
.gallery-item-premium:nth-child(2) { animation-delay: 0.2s; }
.gallery-item-premium:nth-child(3) { animation-delay: 0.3s; }
.gallery-item-premium:nth-child(4) { animation-delay: 0.4s; }
.gallery-item-premium:nth-child(5) { animation-delay: 0.5s; }
.gallery-item-premium:nth-child(6) { animation-delay: 0.6s; }
.gallery-item-premium:nth-child(7) { animation-delay: 0.7s; }
.gallery-item-premium:nth-child(8) { animation-delay: 0.8s; }
.gallery-item-premium:nth-child(9) { animation-delay: 0.9s; }
.gallery-item-premium:nth-child(10) { animation-delay: 1s; }

/* Gallery Frame */
.gallery-frame {
    position: relative;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.gallery-frame::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    animation: gradientMove 3s ease infinite;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.gallery-frame:hover::before {
    opacity: 1;
}

.gallery-frame:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(212, 175, 55, 0.5),
        0 0 0 1px var(--gold);
}

.gallery-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-frame:hover img {
    transform: scale(1.1);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(212, 175, 55, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.gallery-frame:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 
        0 10px 40px rgba(212, 175, 55, 0.6),
        inset 0 -5px 15px rgba(0, 0, 0, 0.3),
        inset 0 5px 15px rgba(255, 255, 255, 0.3);
}

.gallery-frame:hover .gallery-icon {
    transform: scale(1);
}

.gallery-icon i {
    font-size: 32px;
    color: #000;
    font-weight: 900;
}

/* Gallery Shine */
.gallery-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.8s ease;
    pointer-events: none;
    z-index: 3;
}

.gallery-frame:hover .gallery-shine {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox.active {
    display: flex;
}

.gallery-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.gallery-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 2;
    animation: zoomIn 0.4s ease;
}

.gallery-lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 15px;
    box-shadow: 0 30px 100px rgba(212, 175, 55, 0.6);
    border: 3px solid var(--gold);
}

.gallery-lightbox-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: var(--gold);
    color: #000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.gallery-lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.7);
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.gallery-lightbox-prev {
    right: -80px;
}

.gallery-lightbox-next {
    left: -80px;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.7);
}

.gallery-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

/* View More Button */
.gallery-view-more {
    text-align: center;
    margin-top: 60px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.view-more-btn::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;
}

.view-more-btn:hover::before {
    width: 300px;
    height: 300px;
}

.view-more-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.view-more-btn span {
    position: relative;
    z-index: 1;
}

.view-more-btn i {
    position: relative;
    z-index: 1;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.view-more-btn:hover i {
    transform: translateX(-5px);
}

/* Responsive */
@media (max-width: 1200px) {
    .gallery-grid-premium {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .gallery-grid-premium {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .gallery-section-premium {
        padding: 80px 0;
    }
    
    .gallery-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 50px;
    }
    
    .gallery-icon {
        width: 60px;
        height: 60px;
    }
    
    .gallery-icon i {
        font-size: 24px;
    }
    
    .gallery-lightbox-prev {
        right: 10px;
    }
    
    .gallery-lightbox-next {
        left: 10px;
    }
    
    .gallery-lightbox-close {
        top: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .gallery-counter {
        bottom: 10px;
        font-size: 16px;
        padding: 8px 20px;
    }
    
    .gallery-view-more {
        margin-top: 50px;
    }
    
    .view-more-btn {
        padding: 16px 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .gallery-section-premium {
        padding: 60px 0;
    }
    
    .gallery-grid-premium {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .gallery-view-more {
        margin-top: 40px;
    }
    
    .view-more-btn {
        padding: 14px 35px;
        font-size: 15px;
    }
    
    .view-more-btn i {
        font-size: 18px;
    }
}


/* ===== Video Section Premium ===== */
.video-section-premium {
    padding: 120px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.video-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.video-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.video-section-premium .container {
    position: relative;
    z-index: 2;
}

/* Videos Grid */
.videos-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 80px auto 0;
}

/* Video Container */
.video-container-premium {
    position: relative;
}

.video-frame {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 25px;
    border: 3px solid transparent;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.8) 100%);
    transition: all 0.5s ease;
}

/* Animated border gradient */
.video-frame::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 25px;
    padding: 3px;
    background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: gradientMove 3s ease infinite;
    z-index: 1;
}

.video-frame:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 80px rgba(212, 175, 55, 0.5),
        0 0 0 1px var(--gold);
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    z-index: 2;
}

/* Video Glow Effect */
.video-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.video-frame:hover .video-glow {
    opacity: 1;
}

/* Play Button Overlay (Optional Enhancement) */
.video-frame::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.8s ease;
    pointer-events: none;
    z-index: 3;
}

.video-frame:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Responsive */
@media (max-width: 1024px) {
    .videos-grid-premium {
        gap: 30px;
    }
}

/* Video More Button */
.video-more-btn-container {
    text-align: center;
    margin-top: 60px;
}

.video-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.video-more-btn::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;
}

.video-more-btn:hover::before {
    width: 300px;
    height: 300px;
}

.video-more-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.video-more-btn .btn-text {
    position: relative;
    z-index: 1;
}

.video-more-btn i {
    position: relative;
    z-index: 1;
    font-size: 22px;
    transition: transform 0.3s ease;
}

.video-more-btn:hover i {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .video-section-premium {
        padding: 80px 0;
    }
    
    .videos-grid-premium {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 50px;
    }
    
    .video-frame {
        border-radius: 20px;
    }
    
    .video-frame iframe {
        border-radius: 17px;
    }

    .video-more-btn-container {
        margin-top: 50px;
    }
    
    .video-more-btn {
        padding: 16px 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .video-section-premium {
        padding: 60px 0;
    }
    
    .videos-grid-premium {
        gap: 30px;
    }

    .video-more-btn-container {
        margin-top: 40px;
    }
    
    .video-more-btn {
        padding: 14px 35px;
        font-size: 15px;
    }
    
    .video-more-btn i {
        font-size: 20px;
    }
}
        margin-top: 40px;
    }
    
    .video-frame {
        border-radius: 15px;
    }
    
    .video-frame iframe {
        border-radius: 12px;
    }
}


/* ===== Profile Download Section ===== */
.profile-download-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.profile-download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.profile-download-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 60px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-radius: 30px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.profile-download-content::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: gradientMove 3s ease infinite;
}

.profile-download-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.profile-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.4),
        inset 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.profile-icon i {
    font-size: 40px;
    color: #000;
}

.profile-text {
    flex: 1;
}

.profile-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 10px 0;
}

.profile-text p {
    font-size: 16px;
    color: var(--light-gray);
    margin: 0;
}

.profile-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    flex-shrink: 0;
}

.profile-download-btn::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;
}

.profile-download-btn:hover::before {
    width: 300px;
    height: 300px;
}

.profile-download-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.profile-download-btn span,
.profile-download-btn i {
    position: relative;
    z-index: 1;
}

.profile-download-btn i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.profile-download-btn:hover i {
    transform: translateY(3px);
}

/* Responsive */
@media (max-width: 992px) {
    .profile-download-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .profile-text h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .profile-download-section {
        padding: 60px 0;
    }
    
    .profile-download-content {
        padding: 30px 20px;
        gap: 25px;
    }
    
    .profile-icon {
        width: 70px;
        height: 70px;
    }
    
    .profile-icon i {
        font-size: 35px;
    }
    
    .profile-text h3 {
        font-size: 22px;
    }
    
    .profile-text p {
        font-size: 15px;
    }
    
    .profile-download-btn {
        padding: 16px 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .profile-download-section {
        padding: 50px 0;
    }
    
    .profile-download-content {
        padding: 25px 15px;
        border-radius: 20px;
    }
    
    .profile-icon {
        width: 60px;
        height: 60px;
    }
    
    .profile-icon i {
        font-size: 30px;
    }
    
    .profile-text h3 {
        font-size: 20px;
    }
    
    .profile-text p {
        font-size: 14px;
    }
    
    .profile-download-btn {
        padding: 14px 30px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
}
