﻿/* gallery.css - Complete Professional Styling for Gallery Page */
/* (Same CSS as provided in the previous response) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background: #ffffff;
}

.gallery-page-wrapper {
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.gallery-hero {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 120px;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content-gallery {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

.hero-badge-gallery {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

    .hero-badge-gallery i {
        font-size: 14px;
        color: #ffd700;
    }

.hero-title-gallery {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

    .hero-title-gallery .highlight-gold {
        color: #ffd700;
        position: relative;
        display: inline-block;
    }

.hero-description-gallery {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats-gallery {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.stat-gallery {
    text-align: center;
}

.stat-number-gallery {
    font-size: 36px;
    font-weight: 800;
    color: #ffd700;
    display: block;
    margin-bottom: 8px;
}

.stat-label-gallery {
    font-size: 14px;
    opacity: 0.9;
}

.hero-wave-gallery {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* Gallery Section */
.vems-gallery {
    padding: 80px 0;
    background: #ffffff;
}

.vems-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Gallery Header */
.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

    .gallery-badge i {
        color: #ffd700;
        font-size: 18px;
    }

    .gallery-badge span {
        color: #ff8c00;
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

.gallery-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}

    .gallery-title .highlight {
        background: linear-gradient(135deg, #ffd700, #ff8c00);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.gallery-subtitle {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: #f5f5f5;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

    .filter-btn:hover {
        background: #ffd700;
        color: #1a1a2e;
        transform: translateY(-2px);
    }

    .filter-btn.active {
        background: linear-gradient(135deg, #ffd700, #ff8c00);
        color: #1a1a2e;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.gallery-card {
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s ease;
}

    .gallery-card.hide {
        display: none;
    }

.gallery-card-inner {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .gallery-card-inner:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

.gallery-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

    .gallery-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.gallery-card-inner:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.gallery-card-inner:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-card-inner:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
    color: #ffd700;
}

.overlay-content span {
    font-size: 14px;
    font-weight: 500;
}

/* Gallery Info */
.gallery-info {
    padding: 20px;
}

.gallery-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f5f5f5;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

    .gallery-category-badge i {
        font-size: 12px;
        color: #ff8c00;
    }

    .gallery-category-badge span {
        font-size: 11px;
        font-weight: 600;
        color: #666;
        letter-spacing: 0.5px;
    }

.gallery-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.4;
}

.gallery-card-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.gallery-meta {
    display: flex;
    gap: 15px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

    .gallery-meta span {
        font-size: 12px;
        color: #999;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .gallery-meta i {
        color: #ff8c00;
        font-size: 11px;
    }

/* Load More Button */
.gallery-load-more {
    text-align: center;
    margin-top: 20px;
}

.load-more-btn {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #1a1a2e;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

    .load-more-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
        gap: 15px;
    }

    .load-more-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

/* Featured Video Section */
.featured-video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.video-header {
    text-align: center;
    margin-bottom: 40px;
}

.video-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff8c00;
    background: rgba(255, 140, 0, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.video-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.video-header .highlight {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.video-header p {
    color: #666;
    font-size: 16px;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-placeholder {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .video-placeholder:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .video-placeholder i {
        font-size: 80px;
        color: #ffd700;
        margin-bottom: 20px;
        display: block;
    }

    .video-placeholder h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .video-placeholder p {
        margin-bottom: 20px;
        opacity: 0.8;
    }

.watch-trailer-btn {
    background: #ffd700;
    color: #1a1a2e;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

    .watch-trailer-btn:hover {
        transform: translateY(-2px);
        gap: 15px;
    }

/* Stats Section */
.gallery-stats-section {
    padding: 80px 0;
    background: white;
}

.stats-grid-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card-gallery {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
}

    .stat-card-gallery:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

.stat-icon-gallery {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .stat-icon-gallery i {
        font-size: 32px;
        color: #ff8c00;
    }

.stat-number-counter {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.stat-label-gallery {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

/* Testimonial Section */
.testimonial-gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff8c00;
    background: rgba(255, 140, 0, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.testimonial-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
}

.testimonial-header .highlight {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.testimonial-gallery-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-gallery-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .testimonial-gallery-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .testimonial-gallery-card i {
        font-size: 40px;
        color: #ffd700;
        opacity: 0.3;
        position: absolute;
        top: 20px;
        left: 20px;
    }

    .testimonial-gallery-card p {
        font-size: 14px;
        line-height: 1.7;
        color: #666;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

.testimonial-author-gallery h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.testimonial-author-gallery span {
    font-size: 12px;
    color: #ff8c00;
}

/* CTA Section */
.gallery-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.cta-gallery-wrapper {
    text-align: center;
    color: white;
}

.cta-gallery-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

    .cta-gallery-content h2 span {
        color: #ffd700;
    }

.cta-gallery-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffd700;
    color: #1a1a2e;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .cta-gallery-btn:hover {
        transform: translateY(-3px);
        gap: 16px;
        box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    }

/* Lightbox Modal */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

    .gallery-lightbox.active {
        display: flex;
        animation: fadeIn 0.3s ease;
    }

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-caption {
    text-align: center;
    margin-top: 20px;
    color: white;
}

    .lightbox-caption h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .lightbox-caption p {
        font-size: 14px;
        opacity: 0.8;
    }

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .lightbox-close:hover {
        color: #ffd700;
        transform: rotate(90deg);
    }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

    .lightbox-prev:hover,
    .lightbox-next:hover {
        background: #ffd700;
        color: #1a1a2e;
    }

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title-gallery {
        font-size: 44px;
    }

    .gallery-title {
        font-size: 36px;
    }

    .lightbox-prev {
        left: -50px;
    }

    .lightbox-next {
        right: -50px;
    }
}

@media (max-width: 768px) {
    .hero-title-gallery {
        font-size: 32px;
    }

    .hero-stats-gallery {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 12px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-grid-gallery {
        grid-template-columns: 1fr;
    }

    .testimonial-gallery-slider {
        grid-template-columns: 1fr;
    }

    .cta-gallery-content h2 {
        font-size: 32px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .lightbox-prev {
        left: -40px;
    }

    .lightbox-next {
        right: -40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title-gallery {
        font-size: 28px;
    }

    .gallery-title {
        font-size: 28px;
    }

    .gallery-filters {
        flex-wrap: wrap;
    }

    .filter-btn {
        width: calc(50% - 5px);
        text-align: center;
    }

    .lightbox-prev,
    .lightbox-next {
        display: none;
    }

    .video-placeholder {
        padding: 40px 20px;
    }

        .video-placeholder h3 {
            font-size: 18px;
        }

    .cta-gallery-btn {
        width: 100%;
        justify-content: center;
    }
}
