/* Hero Section */
    .hero-section {
        background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1235 100%);
        position: relative;
        overflow: hidden;
        padding: 60px 0 30px 0;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(79, 70, 229, 0.15) 0%, transparent 50%);
        pointer-events: none;
    }

    .hero-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
        pointer-events: none;
    }

    .hero-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 40px;
        position: relative;
        z-index: 2;
    }

    /* Two Column Layout */
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        margin-bottom: 50px;
    }

    /* Left Content */
    .hero-content {
        max-width: 100%;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(79, 70, 229, 0.2);
        border: 1px solid rgba(79, 70, 229, 0.4);
        border-radius: 100px;
        padding: 6px 16px;
        margin-bottom: 24px;
    }

    .hero-badge span {
        color: #fff;
        font-size: 13px;
        font-weight: 500;
    }

    .hero-badge .dot {
        width: 6px;
        height: 6px;
        background: #10b981;
        border-radius: 50%;
    }

    .hero-title {
        font-size: 48px;
        font-weight: 700;
        color: white;
        line-height: 1.2;
        margin-bottom: 20px;
        letter-spacing: -0.02em;
    }

    .hero-title span {
        background: linear-gradient(135deg, #818cf8, #c084fc);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .hero-description {
        font-size: 18px;
        color: #ffffff;
        line-height: 1.5;
        margin-bottom: 32px;
        opacity: 0.9;
    }

    /* Feature Tags */
    .hero-features {
        display: flex;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap;
    }

    .feature-tag {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #a0a5c0;
        font-size: 14px;
        font-weight: 500;
    }

    .feature-tag svg {
        width: 18px;
        height: 18px;
    }

    /* ========== FORM STYLES ========== */
    .hero-form-card {
        background: rgba(255, 255, 255, 0.05);
        
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        padding: 32px;
        transition: all 0.3s ease;
    }

    .hero-form-card:hover {
        border-color: rgba(79, 70, 229, 0.5);
        background: rgba(255, 255, 255, 0.08);
    }

    .form-availability {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 24px;
        font-size: 14px;
        font-weight: 500;
        color: #a0a5c0;
    }

    .form-live-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #22c55e;
        position: relative;
        flex-shrink: 0;
    }

    .form-live-dot::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: #22c55e;
        opacity: .45;
        animation: pulse 1.8s infinite;
    }

    @keyframes pulse {
        0% { transform: scale(1); opacity: .45; }
        70% { transform: scale(2.2); opacity: 0; }
        100% { transform: scale(2.2); opacity: 0; }
    }

    .hero-quote-form {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .form-field {
        position: relative;
        width: 100%;
    }

    .form-icon {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        color: #818cf8;
        pointer-events: none;
        z-index: 1;
    }

    .hero-select,
    .hero-input {
        width: 100%;
        height: 54px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: rgba(255, 255, 255, 0.08);
        padding: 0 16px 0 46px;
        font-size: 15px;
        color: white;
        outline: none;
        transition: .25s ease;
        font-family: inherit;
    }

    .hero-select option {
        background: #1a1f3a;
        color: white;
    }

    .hero-select:hover,
    .hero-input:hover {
        border-color: rgba(79, 70, 229, 0.5);
        background: rgba(255, 255, 255, 0.12);
    }

    .hero-select:focus,
    .hero-input:focus {
        border-color: #4f46e5;
        box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
    }

    .hero-select {
        appearance: none;
        cursor: pointer;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23818cf8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        background-size: 16px;
        padding-right: 40px;
    }

    /* Custom Budget Section */
    .custom-budget-wrap {
        display: none;
        flex-direction: column;
        gap: 8px;
        animation: fadeUp 0.25s ease;
        width: 100%;
    }

    .custom-budget-wrap.show {
        display: flex;
    }

    @keyframes fadeUp {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .custom-budget-wrap .form-field {
        position: relative;
        width: 100%;
    }

    .custom-budget-wrap .form-icon {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        color: #818cf8;
        pointer-events: none;
        z-index: 2;
    }

    .custom-budget-wrap .hero-input {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .custom-budget-wrap .hero-input[type="number"] {
        -moz-appearance: textfield;
    }

    .custom-budget-wrap .hero-input[type="number"]::-webkit-inner-spin-button,
    .custom-budget-wrap .hero-input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .budget-hint {
        font-size: 12px;
        color: #818cf8;
        margin-left: 4px;
    }

    .form-error {
        display: none;
        align-items: center;
        gap: 6px;
        margin-top: 6px;
        color: #f87171;
        font-size: 12px;
    }

    .form-error.show {
        display: flex;
    }

    .form-error svg {
        width: 14px;
        height: 14px;
    }

    /* Submit Button */
    .hero-submit-btn {
        width: 100%;
        height: 54px;
        border: none;
        border-radius: 12px;
        background: linear-gradient(135deg, #4f46e5, #7c3aed);
        color: white;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: inherit;
        margin-top: 8px;
    }

    .hero-submit-btn:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.4);
    }

    .hero-submit-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

    .hero-submit-btn.loading {
        pointer-events: none;
    }

    .btn-loader {
        width: 16px;
        height: 16px;
        border: 2px solid rgba(255,255,255,0.3);
        border-top-color: white;
        border-radius: 50%;
        display: inline-block;
        margin-right: 8px;
        animation: spin 0.7s linear infinite;
    }

    @keyframes spin {
        to { transform: rotate(360deg); }
    }

    /* Trust Badges */
    .form-trust {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
        flex-wrap: wrap;
    }

    .form-trust span {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        color: #7c82a0;
    }

    .form-trust svg {
        width: 14px;
        height: 14px;
        color: #22c55e;
    }

    /* ========== BOTTOM SERVICE MENU ========== */
    .services-menu {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 30px;
        margin-top: 20px;
    }

    .services-menu-items {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px 24px;
    }

    .service-menu-link {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #a0a5c0;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.2s ease;
        padding: 8px 0;
    }

    .service-menu-link svg {
        width: 18px;
        height: 18px;
        color: #818cf8;
        transition: all 0.2s ease;
    }

    .service-menu-link:hover {
        color: white;
    }

    .service-menu-link:hover svg {
        color: #c084fc;
        transform: translateY(-2px);
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .hero-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .hero-title {
            font-size: 40px;
        }
        .hero-content {
            text-align: center;
        }
        .hero-features {
            justify-content: center;
        }
        .hero-container {
            padding: 0 24px;
        }
        .services-menu-items {
            justify-content: center;
        }
    }

/* Mobile only (max-width: 768px) */
@media (max-width: 768px) {
    /* Hide bottom service menu */
    .services-menu {
        display: none;
    }
    
    /* Hide the 150+ projects delivered feature tag */
    .hero-features .feature-tag:first-child {
        display: none;
    }
}
    @media (max-width: 600px) {
        .hero-section {
            padding: 40px 0 20px 0;
        }
        .hero-title {
            font-size: 32px;
        }
        .hero-description {
            font-size: 16px;
        }
        .hero-form-card {
            padding: 24px;
        }
        .services-menu-items {
            gap: 12px 16px;
        }
        .service-menu-link {
            font-size: 12px;
        }
        .service-menu-link svg {
            width: 14px;
            height: 14px;
        }
    }