/* ============================================
   PROFESSIONAL HERO SECTIONS
   Miniwear Overseas - UI/UX Optimized
   ============================================ */

/* ============================================
   HOMEPAGE HERO - SIMPLE PURPLE GRADIENT
   ============================================ */
.hero-ultra-luxury {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

/* ============================================
   ABOUT PAGE HERO - DARK BLUE GRADIENT
   ============================================ */
.hero-about {
    background: linear-gradient(135deg, #0c4a6e 0%, #1e40af 50%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-about .container,
.hero-products .container,
.hero-catalogs .container,
.hero-contact .container,
.hero-product-detail .container {
    position: relative;
    z-index: 5;
}

.hero-about .row,
.hero-products .row,
.hero-catalogs .row,
.hero-contact .row,
.hero-product-detail .row {
    position: relative;
    z-index: 5;
}

.hero-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 6, 23, 0.50);
    pointer-events: none;
    z-index: 0;
    animation: parallaxMove 20s ease-in-out infinite;
}

/* ============================================
   PRODUCTS PAGE HERO - DARK TEAL GRADIENT
   ============================================ */
.hero-products {
    background: linear-gradient(135deg, #134e4a 0%, #0f766e 50%, #14b8a6 100%);
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 6, 23, 0.50);
    pointer-events: none;
    z-index: 0;
    animation: parallaxMove 20s ease-in-out infinite;
}

/* ============================================
   CATALOGS PAGE HERO - DARK ORANGE GRADIENT
   ============================================ */
.hero-catalogs {
    background: linear-gradient(135deg, #9a3412 0%, #ea580c 50%, #fb923c 100%);
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-catalogs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 6, 23, 0.50);
    pointer-events: none;
    z-index: 0;
    animation: parallaxMove 20s ease-in-out infinite;
}

/* ============================================
   CONTACT PAGE HERO - DARK GREEN GRADIENT
   ============================================ */
.hero-contact {
    background: linear-gradient(135deg, #14532d 0%, #15803d 50%, #22c55e 100%);
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 6, 23, 0.50);
    pointer-events: none;
    z-index: 0;
    animation: parallaxMove 20s ease-in-out infinite;
}

/* ============================================
   PRODUCT DETAIL HERO - DARK INDIGO GRADIENT
   ============================================ */
.hero-product-detail {
    background: linear-gradient(135deg, #312e81 0%, #4c1d95 50%, #7c3aed 100%);
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-product-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 6, 23, 0.50);
    pointer-events: none;
    z-index: 0;
    animation: parallaxMove 20s ease-in-out infinite;
}

/* ============================================
   COMMON HERO STYLES - PROFESSIONAL
   ============================================ */
.hero-title {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.15;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
}

.hero-subtitle {
    color: #ffffff !important;
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.75;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    max-width: 650px;
    margin-bottom: 2rem;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    padding: 12px 28px;
    font-size: 0.9rem;
    border-radius: 50px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin-bottom: 2rem;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
}

.hero-stats {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    padding: 28px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.hero-stats:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-stats h3 {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: 2.75rem;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 0.5rem;
    line-height: 1;
    opacity: 1 !important;
}

.hero-stats small {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 1 !important;
}

/* ============================================
   RESPONSIVE DESIGN - PROFESSIONAL
   ============================================ */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 991px) {
    .hero-ultra-luxury {
        min-height: 70vh;
    }
    
    .hero-ultra-luxury .hero-content {
        padding: 80px 15px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-about,
    .hero-products,
    .hero-catalogs,
    .hero-contact {
        min-height: 50vh;
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .hero-ultra-luxury {
        min-height: auto;
    }
    
    .hero-ultra-luxury .hero-content {
        padding: 60px 15px;
    }
    
    .hero-title {
        font-size: 2.25rem;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .hero-badge {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .hero-stats {
        padding: 20px 15px;
    }
    
    .hero-stats h3 {
        font-size: 2.25rem;
    }
    
    .hero-about,
    .hero-products,
    .hero-catalogs,
    .hero-contact {
        min-height: auto;
        padding: 50px 0;
    }
    
    .hero-product-detail {
        min-height: auto;
        padding: 40px 0;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.875rem;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats h3 {
        font-size: 2rem;
    }
    
    .hero-stats small {
        font-size: 0.85rem;
    }
}

/* Floating Trophy Icon */
.floating-trophy {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    animation: floatTrophy 6s ease-in-out infinite;
}

.floating-trophy i {
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.15);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

@keyframes floatTrophy {
    0%, 100% {
        transform: translateY(-50%) translateX(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-55%) translateX(10px) rotate(5deg);
    }
}

@media (max-width: 991px) {
    .floating-trophy {
        right: 5%;
    }
    .floating-trophy i {
        font-size: 10rem;
    }
}

@media (max-width: 767px) {
    .floating-trophy {
        display: none;
    }
}



/* ============================================
   HERO CTA BUTTONS - PROFESSIONAL
   ============================================ */
.hero-cta-primary {
    background: #ffffff;
    color: #1e1b4b;
    font-size: 1.05rem;
    font-weight: 800;
    padding: 16px 40px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
    color: #1e1b4b;
    background: #f8fafc;
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    padding: 16px 40px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
    color: #ffffff;
}

@media (max-width: 767px) {
    .hero-cta-primary,
    .hero-cta-secondary {
        padding: 14px 32px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}
