/* ==========================================================================
   HERO STYLES (WITH EMBEDDED MP4 SHOWREEL)
   ========================================================================== */

.video-hero-section {
    background: linear-gradient(135deg, #071a52 0%, #040e2d 100%);
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: auto;
    display: flex;
    align-items: center;
    color: #ffffff;
    position: relative;
    overflow-x: hidden !important;
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 123, 44, 0.12) 0%, rgba(7, 26, 82, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

/* Badge Style */
.agency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 123, 44, 0.35);
    padding: 6px 14px;
    border-radius: 999px;
    max-width: 100%;
}

.badge-text {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ff7b2c;
    white-space: normal;
    word-break: break-word;
}

.badge-pulsing-dot {
    width: 8px;
    height: 8px;
    background-color: #ff7b2c;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(255, 123, 44, 0.7);
    animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(255, 123, 44, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(255, 123, 44, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 123, 44, 0); }
}

/* Typography */
.agency-hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: #ffffff !important;
}

.gradient-text {
    background: linear-gradient(135deg, #ff9e5e 0%, #ff5e00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.agency-hero-subtitle {
    font-size: 17px;
    line-height: 1.75;
    color: #94a3b8;
    max-width: 90%;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 14px;
}

.btn-agency-gradient {
    background: linear-gradient(135deg, #ff7b2c 0%, #ff5e00 100%);
    color: #ffffff !important;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 123, 44, 0.3);
    text-decoration: none !important;
    text-align: center;
}

.btn-agency-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 123, 44, 0.45);
}

.btn-agency-outline {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    text-align: center;
}

.btn-agency-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
}

.text-orange {
    color: #ff7b2c !important;
}

/* Stats Row */
.border-agency-light {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.agency-stats-row {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.stat-item h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2px;
    line-height: 1.2;
}

.stat-item p {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: normal;
    word-break: break-word;
}

.stat-divider {
    width: 1px;
    height: 34px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

/* Embedded MP4 Video Container */
.agency-visual-container {
    position: relative;
    padding: 0;
}

.video-preview-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.video-player-wrapper {
    position: relative;
    width: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-showreel-video {
    width: 100%;
    height: auto;
    max-height: 280px;
    display: block;
    object-fit: cover;
}

.video-preview-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(4, 14, 45, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 2;
    pointer-events: none;
}

.preview-footer {
    padding: 16px 18px;
    background: #090d16;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-footer strong {
    display: block;
    font-size: 13.3px;
    color: #ffffff;
}

.preview-footer small {
    color: #94a3b8;
    font-size: 11px;
}

/* ==========================================================================
   BREAKPOINTS (MOBILE & TABLET)
   ========================================================================== */

@media (max-width: 991px) {
    .video-hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .agency-hero-title {
        font-size: 36px;
        letter-spacing: -0.5px;
    }

    .agency-hero-subtitle {
        font-size: 15px;
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .video-hero-section {
        padding-top: 90px;
        padding-bottom: 50px;
    }

    .agency-hero-title {
        font-size: 28px;
        line-height: 1.25;
    }

    .badge-text {
        font-size: 9.5px;
    }

    .hero-cta-group {
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
        font-size: 15px;
        padding: 12px 20px;
    }

    .agency-stats-row {
        gap: 8px;
        padding-top: 16px !important;
    }

    .stat-item h3 {
        font-size: 17px;
    }

    .stat-item p {
        font-size: 9px;
        line-height: 1.2;
    }

    .stat-divider {
        height: 28px;
    }

    .hero-showreel-video {
        max-height: 220px;
    }
}