 .contact-hero-section-section {
        font-family: 'Poppins', sans-serif;
        background: #000;
        color: #ffffff;
        overflow-x: hidden;
    }

    .contact-hero-section {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    /* Video Background */
    #heroVideo {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        z-index: 1;
        object-fit: cover;
        opacity: 0.15;
    }

    

    /* Animated Orbs */
    .orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(100px);
        opacity: 0.4;
        animation: float 25s infinite ease-in-out;
        will-change: transform;
    }

    .orb-1 {
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
        top: -250px;
        left: -250px;
        animation-delay: 0s;
        z-index: 3;
    }

    .orb-2 {
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(120,120,120,0.12) 0%, transparent 70%);
        bottom: -300px;
        right: -300px;
        animation-delay: 8s;
        z-index: 3;
    }

    .orb-3 {
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(150,150,150,0.1) 0%, transparent 70%);
        top: 40%;
        right: 5%;
        animation-delay: 16s;
        z-index: 3;
    }

    @keyframes float {
        0%, 100% {
            transform: translate(0, 0) scale(1);
            opacity: 0.4;
        }
        25% {
            transform: translate(60px, -40px) scale(1.1);
            opacity: 0.5;
        }
        50% {
            transform: translate(-30px, 60px) scale(0.95);
            opacity: 0.35;
        }
        75% {
            transform: translate(40px, 30px) scale(1.05);
            opacity: 0.45;
        }
    }

    /* Grid Overlay */
    .grid-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        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: 50px 50px;
        z-index: 4;
        animation: gridMove 30s linear infinite;
        opacity: 0.6;
    }

    @keyframes gridMove {
        0% {
            transform: translate(0, 0);
        }
        100% {
            transform: translate(50px, 50px);
        }
    }

    /* Hero Content */
    .contact-hero-content {
        position: relative;
        z-index: 10;
        text-align: center;
        padding: 80px 40px;
        max-width: 1400px;
        margin: 0 auto;
    }

    /* Breadcrumb */
    .breadcrumb {
        font-size: 13px;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: #888;
        margin-bottom: 40px;
        margin-top: 50px;
        text-align: center;
        opacity: 0;
        animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
        font-weight: 300;
    }

    .breadcrumb i {
        margin: 0 12px;
        font-size: 9px;
        vertical-align: middle;
    }

    .breadcrumb span {
        transition: color 0.3s ease;
    }

    .breadcrumb span:hover {
        color: #fff;
    }

    /* Subtitle */
    .contact-subtitle {
        font-size: 15px;
        letter-spacing: 6px;
        text-transform: uppercase;
        color: #999;
        margin-bottom: 30px;
        font-weight: 300;
        opacity: 0;
        animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.4s;
    }

    /* Main Title */
    .contact-title {
        font-size: clamp(42px, 8vw, 96px);
        font-weight: 700;
        letter-spacing: 4px;
        margin-bottom: 35px;
        background: linear-gradient(135deg, #ffffff 0%, #999999 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        opacity: 0;
        animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.6s;
        line-height: 1.15;
        text-shadow: 0 0 80px rgba(255,255,255,0.1);
    }

    /* Tagline */
    .contact-tagline {
        font-size: clamp(18px, 2.5vw, 32px);
        font-weight: 300;
        line-height: 1.6;
        margin-bottom: 50px;
        color: #bbb;
        opacity: 0;
        animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.8s;
        max-width: 850px;
        margin-left: auto;
        margin-right: auto;
    }

    /* CTA Button */
    .cta-button {
        display: inline-block;
        padding: 18px 45px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 12px;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        opacity: 0;
        animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 1s;
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(10px);
    }

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        transition: left 0.6s ease;
    }

    .cta-button:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.4);
        transform: translateY(-2px);
        box-shadow: 0 10px 40px rgba(255,255,255,0.1);
    }

    .cta-button:hover::before {
        left: 100%;
    }

    /* Decorative Lines */
    .deco-line {
        position: absolute;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        z-index: 5;
    }

    .deco-line-1 {
        top: 25%;
        left: 0;
        width: 100%;
        animation: slideRight 4s ease-in-out infinite;
    }

    .deco-line-2 {
        bottom: 35%;
        left: 0;
        width: 100%;
        animation: slideLeft 5s ease-in-out infinite 1s;
    }

    @keyframes slideRight {
        0%, 100% {
            transform: translateX(-100%);
            opacity: 0;
        }
        10%, 90% {
            opacity: 1;
        }
        100% {
            transform: translateX(100%);
        }
    }

    @keyframes slideLeft {
        0%, 100% {
            transform: translateX(100%);
            opacity: 0;
        }
        10%, 90% {
            opacity: 1;
        }
        100% {
            transform: translateX(-100%);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .contact-hero-content {
            padding: 60px 30px;
        }

        .orb-1, .orb-2, .orb-3 {
            filter: blur(80px);
        }
    }

    @media (max-width: 768px) {
        .contact-hero-section {
            min-height: 100svh;
        }

        .contact-hero-content {
            padding: 50px 25px;
        }

        .breadcrumb {
            font-size: 11px;
            letter-spacing: 2px;
            margin-bottom: 30px;
        }

        .contact-subtitle {
            font-size: 13px;
            letter-spacing: 4px;
            margin-bottom: 25px;
        }

        .contact-title {
            font-size: clamp(36px, 10vw, 60px);
            letter-spacing: 2px;
            margin-bottom: 25px;
        }

        .contact-tagline {
            font-size: clamp(16px, 4vw, 24px);
            margin-bottom: 40px;
        }

        .cta-button {
            padding: 15px 35px;
            font-size: 11px;
            letter-spacing: 2px;
        }

        .orb-1, .orb-2, .orb-3 {
            filter: blur(60px);
            opacity: 0.3;
        }
    }

    @media (max-width: 480px) {
        .contact-hero-content {
            padding: 40px 20px;
        }

        .contact-title {
            font-size: clamp(32px, 9vw, 48px);
            letter-spacing: 1px;
        }

        .contact-tagline {
            font-size: clamp(14px, 4vw, 20px);
            line-height: 1.5;
        }

        .cta-button {
            padding: 14px 30px;
            font-size: 10px;
        }

        .grid-overlay {
            background-size: 40px 40px;
        }
    }