/* ============================================
   VEER'S WHITE FIELDS - GALLERY PAGE STYLES
   Ultra-Premium Luxurious Design
   100% Consistent with Global Design System
   ============================================ */

/* ==================== PAGE HEADER SECTION ==================== */
.page-header-section {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #0F1419 0%, #1A2332 50%, #2C3E50 100%);
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.95) 0%, rgba(26, 35, 50, 0.9) 100%),
        url('../../images/gallery/gallery hero.png') center/cover no-repeat;
    background-attachment: fixed;
    z-index: 0;
    animation: subtleZoom 20s ease-in-out infinite alternate;
}

@keyframes subtleZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(15, 20, 25, 0.9) 0%,
            rgba(26, 35, 50, 0.85) 50%,
            rgba(212, 175, 55, 0.08) 100%);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--neutral-white);
    max-width: 900px;
    margin: 0 auto;
}

.breadcrumb-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-gold);
    margin-bottom: var(--spacing-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeInDown 0.6s ease-out;
}

.breadcrumb-wrapper a {
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-wrapper a:hover {
    color: var(--primary-gold);
}

.breadcrumb-wrapper .separator {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.breadcrumb-wrapper .current {
    color: var(--primary-gold);
    font-weight: 600;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.15;
    color: var(--neutral-white);
    font-family: var(--font-secondary);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.page-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== GALLERY FILTER SECTION ==================== */
.gallery-filter-section {
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.03), rgba(212, 175, 55, 0.03));
    padding: 3rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    z-index: 10;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.gallery-filter-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.05) 0%, transparent 50%);
    z-index: 0;
}

.gallery-filter-section .container {
    position: relative;
    z-index: 1;
}

.gallery-filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: var(--neutral-white);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-navy);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    font-family: var(--font-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    transition: width 0.5s ease, height 0.5s ease, top 0.5s ease, left 0.5s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    width: 300%;
    height: 300%;
    top: -100%;
    left: -100%;
}

.filter-btn:hover {
    color: var(--neutral-white);
    border-color: var(--primary-gold);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    color: var(--neutral-white);
    border-color: var(--primary-gold);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
    transform: scale(1.08);
}

.filter-btn i {
    font-size: 1.25rem;
    transition: transform var(--transition-normal);
}

.filter-btn:hover i,
.filter-btn.active i {
    transform: scale(1.2) rotate(5deg);
}

.filter-btn span {
    position: relative;
    z-index: 1;
}

/* Responsive Filters */
@media (max-width: 768px) {
    .gallery-filter-section {
        padding: 2rem 0;
    }

    .filter-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
    }

    .filter-btn i {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .gallery-filter-wrapper {
        gap: 0.75rem;
    }

    .filter-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* ==================== GALLERY GRID SECTION ==================== */
.gallery-grid-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 50%, #F8F9FA 100%);
    padding: 4rem 0;
    position: relative;
}

.gallery-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(26, 35, 50, 0.02) 0%, transparent 50%);
    z-index: 0;
}

.gallery-grid-section .container {
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

/* ==================== GALLERY ITEM ==================== */
.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-slow);
    background: var(--neutral-white);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
    z-index: 2;
}

.gallery-item:hover::before {
    transform: scaleX(1);
}

.gallery-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.gallery-link {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
}

/* Gallery Image Container */
.gallery-image {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-navy), var(--secondary-navy-light));
}

.gallery-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.15);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(26, 35, 50, 0) 0%,
            rgba(26, 35, 50, 0.6) 50%,
            rgba(26, 35, 50, 0.95) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Gallery Icon */
.gallery-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--neutral-white);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.gallery-item:hover .gallery-icon {
    transform: translateY(0) scale(1.1) rotate(360deg);
}

/* Gallery Text */
.gallery-text {
    text-align: center;
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.gallery-item:hover .gallery-text {
    transform: translateY(0);
}

.gallery-text h4 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neutral-white);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.gallery-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 500;
}

/* Category Badge (Optional - can be added to HTML) */
.gallery-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(184, 148, 31, 0.95));
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--neutral-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary-navy), var(--secondary-navy-light));
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(26, 35, 50, 0.95) 0%,
        rgba(44, 62, 80, 0.9) 50%,
        rgba(212, 175, 55, 0.1) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--neutral-white);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.cta-buttons .btn {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
}

/* ==================== TRUST & COMPLIANCE SECTION ==================== */
.trust-bar-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 50%, #F8F9FA 100%);
    padding: 4rem 0;
    position: relative;
}

.trust-bar-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.05) 0%, transparent 50%);
    z-index: 0;
}

.trust-bar-section .container {
    position: relative;
    z-index: 1;
}

.trust-bar-wrapper {
    background: linear-gradient(135deg, var(--secondary-navy), var(--secondary-navy-light));
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.trust-bar-header {
    text-align: center;
    margin-bottom: 3rem;
}

.trust-bar-header h3 {
    font-family: var(--font-secondary);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--neutral-white);
    margin-bottom: 0.75rem;
}

.trust-bar-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.trust-bar-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.25rem;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    min-height: 220px;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.trust-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    border-radius: var(--radius-md);
    font-size: 2rem;
    color: var(--neutral-white);
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transition: all var(--transition-normal);
}

.trust-item:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.trust-icon.rera {
    background: linear-gradient(135deg, #E74C3C, #C0392B);
}

.trust-icon.dtcp {
    background: linear-gradient(135deg, #3498DB, #2980B9);
}

.trust-icon.title {
    background: linear-gradient(135deg, #27AE60, #229954);
}

.trust-details {
    text-align: center;
}

.trust-details h4 {
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--neutral-white);
    margin-bottom: 0.5rem;
}

.trust-number {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.25rem;
    font-family: var(--font-secondary);
}

.trust-validity {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* QR Item - Same size as other cards */
.trust-item.qr-item {
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.qr-verification-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.qr-code-placeholder {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 3px dashed var(--primary-gold);
    border-radius: var(--radius-md);
}

.qr-code-placeholder i {
    font-size: 3rem;
    color: var(--primary-gold);
}

.qr-text {
    text-align: center;
}

.qr-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--neutral-white);
    margin-bottom: 0.25rem;
}

.qr-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 991px) {
    .page-header-section {
        min-height: 50vh;
        padding: 150px 0 80px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .gallery-filter-section {
        top: 90px;
    }

    .trust-bar-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .trust-item {
        min-height: 200px;
    }

    .cta-section {
        padding: 4rem 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .page-header-section {
        padding: 130px 0 60px;
    }

    .breadcrumb-wrapper {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-filter-wrapper {
        gap: 0.75rem;
    }

    .filter-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .gallery-filter-section {
        top: 70px;
        padding: 1.5rem 0;
    }

    .gallery-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .gallery-text h4 {
        font-size: 1.25rem;
    }

    .trust-bar-wrapper {
        padding: 2rem 1.5rem;
    }

    .trust-bar-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        min-height: 180px;
    }
}

@media (max-width: 575px) {
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 0.95rem;
    }

    .gallery-overlay {
        padding: 1.5rem;
    }

    .gallery-text h4 {
        font-size: 1.1rem;
    }

    .trust-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .trust-bar-header h3 {
        font-size: 1.5rem;
    }
}

/* ==================== ANIMATION CLASSES ==================== */
.gallery-item.filtered-out {
    display: none;
}

.gallery-item.filtered-in {
    animation: fadeInScale 0.5s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================
   PREMIUM HERO SECTION - 100% Consistent with About & Projects
   ========================================== */

.gallery-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.gallery-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.gallery-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(26, 35, 50, 0.92) 0%,
        rgba(26, 35, 50, 0.85) 50%,
        rgba(212, 175, 55, 0.15) 100%);
    z-index: 2;
}

/* Decorative Elements */
.gallery-hero-section .hero-decoration-top-left {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
    border-radius: 50%;
    z-index: 2;
    animation: pulse-glow 8s ease-in-out infinite;
}

.gallery-hero-section .hero-decoration-bottom-right {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 50%;
    z-index: 2;
    animation: pulse-glow 10s ease-in-out infinite reverse;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

.gallery-hero-section .container {
    position: relative;
    z-index: 3;
}

.gallery-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

/* Breadcrumb Premium */
.gallery-hero-section .breadcrumb-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.gallery-hero-section .breadcrumb-premium a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-hero-section .breadcrumb-premium a:hover {
    color: var(--primary-gold);
}

.gallery-hero-section .breadcrumb-premium .separator {
    color: rgba(212, 175, 55, 0.6);
    font-size: 0.7rem;
}

.gallery-hero-section .breadcrumb-premium .current {
    color: var(--primary-gold);
    font-weight: 600;
}

/* Hero Badge Premium */
.gallery-hero-section .hero-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

.gallery-hero-section .hero-badge-premium .badge-icon {
    color: var(--primary-gold);
    font-size: 1.2rem;
    animation: rotate-icon 20s linear infinite;
}

@keyframes rotate-icon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.gallery-hero-section .hero-badge-premium .badge-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Hero Title Premium */
.gallery-hero-section .hero-title-premium {
    font-family: var(--font-secondary);
    font-size: 4rem;
    font-weight: 800;
    color: var(--neutral-white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.gallery-hero-section .hero-title-premium .title-highlight {
    background: linear-gradient(135deg, var(--primary-gold), #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

/* Hero Subtitle Premium */
.gallery-hero-section .hero-subtitle-premium {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Stats Row */
.gallery-hero-section .hero-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.gallery-hero-section .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gallery-hero-section .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.gallery-hero-section .stat-content {
    text-align: left;
}

.gallery-hero-section .stat-number {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
    margin: 0;
}

.gallery-hero-section .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    margin-top: 0.25rem;
}

.gallery-hero-section .stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.5), transparent);
}

/* Hero CTA Buttons */
.gallery-hero-section .hero-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-hero-section .btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gallery-hero-section .btn-primary-premium {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    color: var(--secondary-navy);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.gallery-hero-section .btn-primary-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
    color: var(--secondary-navy);
}

.gallery-hero-section .btn-outline-premium {
    background: transparent;
    color: var(--neutral-white);
    border: 2px solid rgba(212, 175, 55, 0.6);
}

.gallery-hero-section .btn-outline-premium:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    color: var(--neutral-white);
}

/* Scroll Indicator Premium - Centered */
.gallery-hero-section .scroll-indicator-premium {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    animation: bounce-vertical 2s ease-in-out infinite;
    z-index: 10;
}

.gallery-hero-section .scroll-indicator-premium i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

@keyframes bounce-vertical {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Responsive for Hero */
@media (max-width: 992px) {
    .gallery-hero-section {
        min-height: 90vh;
        padding: 100px 0 60px;
    }

    .gallery-hero-section .hero-title-premium {
        font-size: 3rem;
    }

    .gallery-hero-section .hero-subtitle-premium {
        font-size: 1.1rem;
    }

    .gallery-hero-section .hero-stats-row {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .gallery-hero-section .stat-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .gallery-hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .gallery-hero-section .hero-title-premium {
        font-size: 2.5rem;
    }

    .gallery-hero-section .hero-subtitle-premium {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .gallery-hero-section .hero-stats-row {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .gallery-hero-section .stat-item {
        width: 100%;
        justify-content: center;
    }

    .gallery-hero-section .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .gallery-hero-section .btn-premium {
        width: 100%;
        justify-content: center;
    }

    .gallery-hero-section .scroll-indicator-premium {
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .gallery-hero-section .hero-title-premium {
        font-size: 2rem;
    }

    .gallery-hero-section .hero-badge-premium {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    .gallery-hero-section .stat-number {
        font-size: 1.75rem;
    }

    .gallery-hero-section .stat-label {
        font-size: 0.85rem;
    }
}
