/* Hero Section - Original Layout with Navy Blue Theme */

/* ══════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════ */
.hero-slider {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    z-index: 1;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Extra admin banners — full-bleed image only */
.hero-banner-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: #0a1628;
    padding: 0 !important; /* override .hero-section padding — image must be edge-to-edge */
    display: block !important;
    align-items: stretch !important;
}

.hero-slide-banner {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.hero-banner-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-banner-media img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    display: block;
    -webkit-user-drag: none;
    user-select: none;
}

/* Animate content when slide becomes active */
.hero-slide.active .hero-container,
.hero-slide.active .hero-slide-2-container,
.hero-slide.active .hero-banner-media {
    animation: fadeInUp 0.8s ease-out;
}

/* ── Dynamic banner responsive ── */
@media (max-width: 992px) {
    .hero-banner-media img {
        object-position: center center;
    }
}

@media (max-width: 768px) {
    .hero-slide-banner,
    .hero-slide-banner.active,
    .hero-banner-section {
        min-height: 70vh;
        min-height: 70dvh;
        height: 70vh;
        height: 70dvh;
    }

    /* Keep slider height in sync while a banner slide is active */
    .hero-slider:has(.hero-slide-banner.active) {
        min-height: 70vh;
        min-height: 70dvh;
    }

    .hero-banner-section {
        padding: 0 !important;
    }

    .hero-banner-media img {
        object-fit: cover;
        object-position: center center;
    }
}

@media (max-width: 576px) {
    .hero-slide-banner,
    .hero-slide-banner.active,
    .hero-banner-section {
        min-height: 56vh;
        min-height: 56dvh;
        height: 56vh;
        height: 56dvh;
        max-height: 620px;
    }

    .hero-slider:has(.hero-slide-banner.active) {
        min-height: 56vh;
        min-height: 56dvh;
    }

    .hero-banner-media img {
        object-fit: cover;
        object-position: center 40%;
    }
}

@media (max-width: 400px) {
    .hero-slide-banner,
    .hero-slide-banner.active,
    .hero-banner-section {
        min-height: 50vh;
        min-height: 50dvh;
        height: 50vh;
        height: 50dvh;
    }

    .hero-slider:has(.hero-slide-banner.active) {
        min-height: 50vh;
        min-height: 50dvh;
    }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-slide-banner,
    .hero-slide-banner.active,
    .hero-banner-section {
        min-height: 100vh;
        min-height: 100dvh;
        height: 100vh;
        height: 100dvh;
        max-height: none;
    }

    .hero-banner-media img {
        object-position: center center;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.slider-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.slider-dots .dot.active {
    background: #3b82f6;
    border-color: #3b82f6;
    transform: scale(1.3);
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(15, 29, 53, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slider-arrow:hover {
    background: rgba(15, 29, 53, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* ═══════════════════════════════════════════
   SLIDE 2 - Corporate Apparel
   ═══════════════════════════════════════════ */
.hero-slide-2 {
    background: #f8f9fa !important;
    min-height: 100vh;
}

.hero-slide-2 .hero-section {
    min-height: 100vh;
}

/* Slide 1 specific background */
.hero-slide:first-child .hero-section {
    background: #060d1a;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(248, 249, 250, 0.95) 0%, rgba(248, 249, 250, 0.85) 50%, rgba(248, 249, 250, 0.3) 100%);
    z-index: 1;
}

.hero-slide-2-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-slide-2-left {
    flex: 1;
    max-width: 55%;
    z-index: 10;
}

.hero-2-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 15px 0;
    letter-spacing: -0.02em;
}

.hero-2-title .text-navy {
    color: #0f1d35;
}

.hero-2-title .text-dark {
    color: #1a1a1a;
}

.hero-2-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #333;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 20px 0;
}

.hero-2-subtitle strong {
    color: #0f1d35;
    font-weight: 700;
}

.hero-2-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 550px;
}

.hero-2-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-2-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.hero-2-features li i {
    color: #25D366;
    font-size: 1.2rem;
}

.hero-2-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-quote, .btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-quote {
    background: #0f1d35;
    color: #fff;
    border: 2px solid #0f1d35;
}

.btn-quote:hover {
    background: #1e3a5f;
    border-color: #1e3a5f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 29, 53, 0.3);
}

.btn-contact {
    background: #fff;
    color: #0f1d35;
    border: 2px solid #0f1d35;
}

.btn-contact:hover {
    background: #0f1d35;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 29, 53, 0.3);
}

.hero-slide-2-right {
    flex: 0 0 auto;
    width: 45%;
    z-index: 10;
}

.products-showcase {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Responsive for Slide 2 */
@media (max-width: 1200px) {
    .hero-slide-2-container {
        flex-direction: column;
        text-align: center;
        padding: 60px 5%;
    }
    
    .hero-slide-2-left {
        max-width: 100%;
    }
    
    .hero-2-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-2-features {
        justify-items: center;
    }
    
    .hero-2-buttons {
        justify-content: center;
    }
    
    .hero-slide-2-right {
        width: 100%;
        max-width: 500px;
    }
    
    .products-showcase {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-2-title {
        font-size: 2.2rem;
    }
    
    .hero-2-subtitle {
        font-size: 1rem;
    }
    
    .hero-2-features {
        grid-template-columns: 1fr;
    }
    
    .btn-quote, .btn-contact {
        padding: 12px 22px;
        font-size: 0.85rem;
    }
    
    .products-showcase {
        height: 280px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-2-title {
        font-size: 1.8rem;
    }
    
    .hero-2-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-quote, .btn-contact {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Overlay for Text Visibility */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(15, 29, 53, 0.75) 50%, rgba(10, 22, 40, 0.8) 100%);
    z-index: 1;
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

/* Left Column - Title & Stats */
.hero-left {
    flex: 1;
    max-width: 55%;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
}

.hero-title-underline {
    width: 60px;
    height: 4px;
    background: #3b82f6;
    margin-bottom: 30px;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 500px;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Right Column - CTA Cards */
.hero-right {
    flex: 0 0 auto;
    width: 420px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-cta-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Card 1 - Navy Blue (darker) */
.hero-cta-card-1 {
    background: linear-gradient(135deg, #0f1d35 0%, #1e3a5f 100%);
}

.hero-cta-card-1:hover {
    border-color: #3b82f6;
}

/* Card 2 - Medium Navy */
.hero-cta-card-2 {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
}

.hero-cta-card-2:hover {
    border-color: #60a5fa;
}

/* Card 3 - Light Blue/Navy */
.hero-cta-card-3 {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.hero-cta-card-3:hover {
    border-color: #93c5fd;
}

.hero-cta-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-cta-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.hero-cta-content {
    flex: 1;
}

.hero-cta-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.hero-cta-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    
    .hero-left {
        max-width: 100%;
    }
    
    .hero-title-underline {
        margin: 0 auto 30px auto;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-right {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .hero-stat-number {
        font-size: 1.8rem;
    }
    
    .hero-cta-card {
        padding: 18px;
    }
    
    .hero-cta-icon {
        width: 60px;
        height: 60px;
    }
    
    .hero-cta-icon img {
        width: 35px;
        height: 35px;
    }
    
    .hero-cta-content h3 {
        font-size: 1rem;
    }
    
    .hero-cta-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .hero-stat {
        text-align: center;
    }

    .hero-right {
        gap: 14px;
    }

    .hero-cta-card {
        padding: 14px;
        gap: 14px;
    }

    .hero-cta-icon {
        width: 50px;
        height: 50px;
    }

    .hero-cta-icon img {
        width: 28px;
        height: 28px;
    }

    .hero-cta-content h3 {
        font-size: 0.9rem;
    }

    .slider-dots {
        bottom: 15px;
        gap: 8px;
    }

    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }

    .slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .products-showcase {
        height: 220px;
    }

    .hero-2-desc {
        font-size: 0.9rem;
    }

    .hero-2-features li {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-2-title {
        font-size: 1.5rem;
    }

    .hero-cta-card {
        flex-direction: column;
        text-align: center;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }
}
