/* --- CONTACT SPECIFIC STYLES --- */
        .hero-contact {
            height: 60vh;
            min-height: 500px;
            position: relative;
            background-color: #0F172A;
            overflow: hidden;
        }

        .hero-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120%;
            /* For parallax */
            object-fit: cover;
            opacity: 0.4;
            filter: grayscale(100%) contrast(1.2);
            will-change: transform;
        }

        .info-card {
            background-color: #1E293B;
            border: 1px solid #334155;
            transition: all 0.3s ease;
            background: linear-gradient(145deg, #1E293B 0%, #0F172A 100%);
        }

        .info-card:hover {
            border-color: #EF4444;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
        }

        .scad-input {
            width: 100%;
            background-color: #0F172A;
            border: 1px solid #334155;
            color: #F3F4F6;
            padding: 1rem;
            font-size: 0.875rem;
            transition: all 0.3s ease;
            outline: none;
        }

        .scad-input:focus {
            border-color: #EF4444;
            background-color: #1E293B;
            box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.2);
        }

        .scad-label {
            display: block;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #9CA3AF;
            margin-bottom: 0.5rem;
        }

        /* Animation utilities */
        .gsap-fade-in,
        .form-anim {
            opacity: 0;
            will-change: transform, opacity;
        }

        /* === PERFORMANCE OPTIMIZATIONS === */
        .industry-card,
        .industry-img,
        .hero-img {
            will-change: transform;
            transform: translateZ(0);
            backface-visibility: hidden;
        }

        .grid {
            contain: layout paint;
        }