 :root {
            --primary-gold: #D4AF37;
            --dark-gold: #B8860B;
            --deep-emerald: #065F46;
            --accent-emerald: #10B981;
            --glass-bg: rgba(255, 255, 255, 0.92);
            --text-main: #1F2937;
        }

        body {
            background: radial-gradient(circle at top left, #e8f5e9, #ffffff, #d1fae5);
            background-attachment: fixed;
            font-family: 'Poppins', sans-serif;
            color: var(--text-main);
            min-height: 100vh;
            margin: 0;
            padding: 0;
        }

        .page-wrap {
            max-width: 520px;
            margin: 0 auto;
            padding: 40px 15px;
            animation: fadeInUp 0.8s ease-out;
        }

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

        .page-title {
            font-family: 'Cinzel', serif;
            font-size: 1.6rem;
            color: var(--deep-emerald);
            letter-spacing: 2px;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 8px;
            font-weight: 900;
        }

        .page-subtitle {
            text-align: center;
            color: #6B7280;
            font-size: 0.95rem;
            margin-bottom: 30px;
            font-weight: 300;
        }

        /* Luxury Glass Card */
        .main-card {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            padding: 35px 25px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            border: 1px solid rgba(212, 175, 55, 0.4);
            position: relative;
            overflow: hidden;
        }

        .main-card::before {
            content: "";
            position: absolute;
            top: 0; left: 0; width: 100%; height: 6px;
            background: linear-gradient(to right, var(--dark-gold), var(--primary-gold), var(--dark-gold));
        }

        /* Feature Badges */
        .badge-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            margin-bottom: 30px;
        }
        .feature-badge {
            background: #f0faf7;
            color: var(--deep-emerald);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            border: 1px solid var(--accent-emerald);
            box-shadow: 0 2px 4px rgba(0,0,0,0.02);
        }

        /* Fixed Icon and Input Alignment */
        .form-label-custom {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--deep-emerald);
            margin-bottom: 6px;
            display: block;
        }

        .input-group-custom {
            position: relative;
            margin-bottom: 20px;
        }

        .input-group-custom .icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.1rem;
            z-index: 10;
            pointer-events: none;
            opacity: 0.7;
        }

        .form-control-lg {
            font-size: 15px !important;
            height: 52px !important;
            border-radius: 12px !important;
            padding-left: 45px !important;
            border: 1px solid #E5E7EB;
            transition: all 0.3s ease;
            background: #fff;
            width: 100%;
        }

        .form-control-lg:focus {
            border-color: var(--primary-gold);
            box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
            outline: none;
        }

        select.form-control-lg {
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23065F46' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding-right: 40px !important;
            cursor: pointer;
        }

        /* Price Tag */
        .price-tag {
            background: #f0faf7;
            border: 1px solid var(--primary-gold);
            color: var(--deep-emerald);
            font-weight: 700;
            text-align: center;
            border-radius: 12px;
            padding: 12px;
            font-size: 1.3rem;
            margin-bottom: 20px;
            display: block;
        }

        /* Custom Submit Button */
        .custom-button {
            background: linear-gradient(135deg, var(--deep-emerald), var(--accent-emerald));
            color: #fff !important;
            border: none;
            border-radius: 12px;
            padding: 15px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            box-shadow: 0 10px 20px rgba(6, 95, 70, 0.2);
        }

        .custom-button:hover {
            transform: translateY(-2px);
            filter: brightness(1.1);
        }

        .info-message {
            display: none;
            color: #EF4444;
            font-size: 13px;
            text-align: center;
            margin-top: -15px;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .info-icon {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .info-icon:hover { transform: scale(1.2); }

        @media (max-width:576px){
            .page-wrap { padding: 20px 10px; }
            .main-card { padding: 25px 15px; }
        }