/* Hero Section */
.hero-section-payment-confirmation {
    padding: 150px 0 10px;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Transaction Check Section */
.transaction-check-section {
    padding: 60px 0 100px;
    position: relative;
    z-index: 1;
}

/* Search Card */
.search-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.search-header {
    margin-bottom: 30px;
    text-align: center;
}

.search-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.search-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.search-form {
    margin-top: 30px;
}

.form-label {
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.search-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 15px 20px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(99, 102, 241, 0.5);
    color: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.search-input.is-invalid {
    border-color: rgba(239, 68, 68, 0.5);
}

.invalid-feedback,
.text-danger {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
}

/* Info Card */
.info-card {
    background: rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 25px 30px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #3b82f6;
}

.info-content h5 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-content ul li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.info-content ul li:before {
    content: "•";
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.info-content ul li:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .search-card {
        padding: 25px 20px;
    }

    .search-title {
        font-size: 1.5rem;
    }

    .info-card {
        flex-direction: column;
        gap: 15px;
    }

    .hero-section-payment-confirmation {
        padding: 120px 0 10px;
    }
}
