/* Hero Section */
        .sat-hero {
            position: relative;
            padding: 100px 0 80px;
            background: linear-gradient(135deg, #0b1120 0%, #1a2a3a 50%, #2d1b4b 100%);
            overflow: hidden;
        }

        .sat-hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, rgba(0,0,0,0) 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .sat-hero .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
            color: white;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(12px);
            padding: 8px 22px;
            border-radius: 60px;
            margin-bottom: 28px;
        }

        .hero-badge i {
            color: #ffd966;
        }

        .hero-title {
            font-size: 3.6rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .hero-title span {
            background: linear-gradient(135deg, #FFD966, #FF8A5C);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-description {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            color: rgba(255,255,255,0.9);
        }

        /* Stats Section */
        .stats-section {
            max-width: 1200px;
            margin: -40px auto 50px;
            padding: 0 20px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            background: white;
            border-radius: 30px;
            padding: 35px 30px;
            box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1);
        }

        .stat-card {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #da0b4e, #4f46e5);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            color: #64748b;
            margin-top: 5px;
            font-size: 0.9rem;
        }

        /* Main Form Section */
        .form-section {
            max-width: 1200px;
            margin: 0 auto 70px;
            padding: 0 20px;
        }

        .form-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            background: white;
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 0 25px 50px -20px rgba(0,0,0,0.2);
        }

        /* Form Side */
        .form-side {
            padding: 50px 40px;
        }

        .form-header {
            margin-bottom: 30px;
        }

        .form-header h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #0b1120;
            margin-bottom: 8px;
        }

        .form-header p {
            color: #64748b;
            font-size: 0.95rem;
        }

        .form-group {
            margin-bottom: 22px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #1e293b;
            font-size: 0.9rem;
        }

        .form-group label i {
            color: #da0b4e;
            margin-right: 8px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            font-size: 1rem;
            transition: all 0.3s;
            font-family: inherit;
            background: #fefefe;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #da0b4e;
            background: white;
            box-shadow: 0 0 0 3px rgba(218, 11, 78, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-group.error input,
        .form-group.error select,
        .form-group.error textarea {
            border-color: #dc2626;
            background-color: #fff5f5;
        }

        .error-message {
            color: #dc2626;
            font-size: 0.75rem;
            margin-top: 5px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Row with 2 columns */
        .row-2cols {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        /* Captcha Section */
        .captcha-wrapper {
            margin: 20px 0;
            display: flex;
            justify-content: center;
        }

        .captcha-skip-notice {
            background: #f0f9ff;
            border: 1px solid #bae6fd;
            border-radius: 12px;
            padding: 10px 15px;
            margin: 15px 0;
            display: none;
            align-items: center;
            gap: 10px;
            color: #0369a1;
            font-size: 0.8rem;
        }

        .captcha-skip-notice i {
            font-size: 1rem;
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #da0b4e, #4f46e5);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
        }

        .submit-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px -8px rgba(218, 11, 78, 0.4);
        }

        .submit-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        /* Form Messages */
        .form-message {
            padding: 14px 18px;
            border-radius: 12px;
            margin-bottom: 20px;
            display: none;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
        }

        .form-message.success {
            background: #10b98120;
            border: 1px solid #10b981;
            color: #065f46;
        }

        .form-message.error {
            background: #ef444420;
            border: 1px solid #ef4444;
            color: #991b1b;
        }

        .form-message.show {
            display: flex;
        }

        /* Info Side */
        .info-side {
            background: linear-gradient(135deg, #0b1120, #1a2a3a);
            padding: 50px 40px;
            color: white;
        }

        .info-side h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .info-card {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .info-icon i {
            font-size: 1.3rem;
            color: #ffd966;
        }

        .info-content h4 {
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .info-content p {
            color: rgba(255,255,255,0.7);
            font-size: 0.85rem;
            line-height: 1.5;
        }

        .sat-score-card {
            background: rgba(255,255,255,0.05);
            border-radius: 20px;
            padding: 25px;
            margin-top: 30px;
            text-align: center;
            border: 1px solid rgba(255,215,0,0.2);
        }

        .sat-score-card h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .score-range {
            display: flex;
            justify-content: space-between;
            gap: 15px;
            margin-top: 15px;
        }

        .score-item {
            text-align: center;
        }

        .score-number {
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffd966;
        }

        .score-label {
            font-size: 0.7rem;
            opacity: 0.7;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .form-container {
                grid-template-columns: 1fr;
            }
            .info-side {
                order: -1;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            .form-side, .info-side {
                padding: 30px 25px;
            }
            .row-2cols {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .captcha-wrapper {
                transform: scale(0.85);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .form-container {
            animation: fadeInUp 0.6s ease forwards;
        }

        .flatpickr-calendar {
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }