/* Demo Page Styles */

/* Hero Section */
.demo-hero {
    background: var(--primary);
    border-radius: 0 0 2.5rem 2.5rem;
}

.demo-hero-logo {
    height: 48px;
    margin-right: 16px;
}

.demo-hero-title {
    font-size: 2rem;
    color: var(--accent);
}

.demo-hero-icon {
    font-size: 4rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

/* Demo Form Card */
.demo-form-card {
    border: none;
    border-radius: 1rem;
    transition: box-shadow 0.3s ease;
}

.demo-form-card:hover {
    box-shadow: 0 8px 24px rgba(90, 74, 227, 0.15);
}

.demo-form-card .card-body {
    padding: 2rem;
}

.demo-form-card h2 {
    color: var(--primary);
    font-weight: 700;
}

.demo-form-card .form-label {
    font-weight: 500;
    color: var(--text-primary);
}

.demo-form-card .form-control {
    border-radius: 0.5rem;
    border: 1px solid rgba(90, 74, 227, 0.2);
    padding: 0.75rem 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.demo-form-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(90, 74, 227, 0.15);
}

/* Demo Info Panel */
.demo-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.demo-info-panel h4 {
    color: var(--primary);
    font-weight: 700;
}

.demo-info-panel p {
    color: var(--text-muted);
}

.demo-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 320px;
}

.demo-features-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.demo-features-list .bi-check-circle {
    color: var(--accent);
}

.demo-features-list .bi-shield-lock {
    color: var(--primary);
}

.demo-features-list .bi-phone {
    color: var(--accent);
}

/* Success Alert */
.demo-success-alert {
    background: rgba(0, 184, 148, 0.1);
    border: 1px solid rgba(0, 184, 148, 0.3);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    color: var(--text-primary);
}

.demo-success-alert .bi-check-circle-fill {
    color: #00b894;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .demo-hero {
        border-radius: 0 0 1.5rem 1.5rem;
        padding: 2rem 1rem;
    }

    .demo-hero-logo {
        height: 40px;
        margin-right: 12px;
    }

    .demo-hero-title {
        font-size: 1.5rem;
    }

    .demo-hero-icon {
        font-size: 3rem;
    }

    .demo-info-panel {
        margin-top: 2rem;
        text-align: center;
    }

    .demo-features-list {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .demo-hero-logo {
        height: 36px;
    }

    .demo-hero-title {
        font-size: 1.25rem;
    }

    .demo-form-card .card-body {
        padding: 1.5rem;
    }

    .demo-features-list {
        max-width: 100%;
    }

    .demo-features-list li {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .demo-hero {
        border-radius: 0 0 1rem 1rem;
    }

    .demo-hero h1 {
        font-size: 1.5rem;
    }

    .demo-hero .lead {
        font-size: 1rem;
    }

    .demo-hero-icon {
        font-size: 2.5rem;
    }

    .demo-form-card .card-body {
        padding: 1.25rem;
    }
}