/* Spacing for Sticky Nav */
        .contact-hero {
            height: 50vh;
            min-height: 400px;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            background-color: var(--bg-dark);
            padding-top: 120px; 
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* RAW HUBSPOT FORM AESTHETIC OVERRIDES */
        .hubspot-form-container {
            background: var(--bg-lightest);
            border: 1px solid rgba(255, 87, 34, 0.2);
            padding: 3rem;
            border-radius: 8px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        }

        /* Field Styling */
        .hs-form-field {
            margin-bottom: 1.5rem;
        }

        .hs-form-field label {
            display: block;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--primary-orange);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .hs-input {
            width: 100% !important;
            background: var(--bg-dark) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            padding: 12px 15px !important;
            color: #fff !important;
            font-family: var(--font-sans) !important;
            border-radius: 2px !important;
            transition: border-color 0.3s ease;
        }

        .hs-input:focus {
            outline: none !important;
            border-color: var(--primary-orange) !important;
        }

        /* Submit Button Styling */
        .hs-submit input {
            background-color: var(--primary-orange) !important;
            color: #fff !important;
            border: none !important;
            padding: 1rem 2rem !important;
            text-transform: uppercase !important;
            font-weight: 800 !important;
            letter-spacing: 0.05em !important;
            cursor: pointer !important;
            width: 100% !important;
            transition: background 0.3s ease !important;
            margin-top: 1rem;
        }

        .hs-submit input:hover {
            background-color: var(--primary-orange-hover) !important;
        }

        /* Error messages */
        .hs-error-msgs label {
            color: #ff3333 !important;
            font-size: 0.7rem !important;
            margin-top: 5px;
            text-transform: none !important;
        }