/* --- Free Government Phone and Tablet Page Styles --- */

/* Page Hero - Global Standard */
.page-hero {
    background: radial-gradient(circle at center, #002699 0%, #000000 100%);
    color: #fff;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #e0f2fe;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
    color: #e2e8f0;
}

/* Base Sections */
.block-layout {
    padding: 5rem 0;
}

.block-layout.alt-bg {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.sub-heading {
    color: #64748b;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Alert Box */
.alert-box {
    background: #fff;
    border-left: 6px solid #dc2626;
    /* Red warning for availability */
    padding: 2rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    border-left-width: 6px;
}

.alert-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(220, 38, 38, 0.2));
}

.alert-content h3 {
    margin: 0 0 0.5rem 0;
    color: #b91c1c;
    font-size: 1.35rem;
}

.alert-content p {
    margin: 0;
    color: #334155;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.program-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid #dbeafe;
    border-top: 5px solid #0066FF;
    /* Default Blue */
    box-shadow: 0 15px 35px rgba(0, 38, 153, 0.08);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 38, 153, 0.15);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 6px rgba(0, 102, 255, 0.2));
}

.program-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.program-name {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    width: 100%;
}

.benefit-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    font-size: 1rem;
}

.benefit-list li:last-child {
    border-bottom: none;
}

/* Status Indicators */
.status-active {
    background: #dcfce7;
    color: #166534;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.status-paused {
    background: #fee2e2;
    color: #991b1b;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Rows & Layouts */
.row-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.text-column,
.visual-column {
    flex: 1;
}

/* Check List */
.check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.check-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.5;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066FF;
    font-weight: 800;
}

/* News Highlight Card */
.highlight-news {
    background: #fff;
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 1px solid #ffedd5;
    box-shadow: 0 20px 50px rgba(251, 140, 0, 0.08);
    /* Orange tint shadow */
    border-top: 5px solid #f97316;
}

.news-header span {
    background: #ffedd5;
    color: #c2410c;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.highlight-news h3 {
    margin-top: 1.5rem;
    font-size: 1.35rem;
    color: #1e293b;
}

.highlight-news p {
    color: #64748b;
    line-height: 1.6;
}

/* Buttons */
.btn-primary-small {
    background: var(--color-primary-blue);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
    box-shadow: 0 4px 6px rgba(0, 102, 255, 0.2);
    display: inline-block;
}

.btn-primary-small:hover {
    background: var(--color-primary-dark);
}

.btn-secondary-small {
    background: transparent;
    color: var(--color-primary-blue);
    border: 2px solid var(--color-primary-blue);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
}

.btn-secondary-small:hover {
    background: #f0f7ff;
}

/* Animations */
.fade-in-up,
.slide-in-left,
.slide-in-right {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-up {
    transform: translateY(30px);
}

.slide-in-left {
    transform: translateX(-50px);
}

.slide-in-right {
    transform: translateX(50px);
}

.visible.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.visible.slide-in-left {
    opacity: 1;
    transform: translateX(0);
}

.visible.slide-in-right {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.25rem;
    }

    .row-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .slide-in-left,
    .slide-in-right {
        transform: translateY(30px);
    }

    .visible.slide-in-left,
    .visible.slide-in-right {
        transform: translateY(0);
    }
}