/* --- Free 5G Government Phones 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;
}

.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;
}

/* Rows & Layouts */
.row-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.row-layout.reverse {
    flex-direction: row-reverse;
}

.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;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066FF;
    font-weight: 800;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-box {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.info-box h3 {
    margin-bottom: 1rem;
    color: #1e293b;
    font-size: 1.5rem;
}

.info-box p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Mini Lists */
.provider-mini-list {
    list-style: none;
    padding: 0;
}

.provider-mini-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    font-weight: 500;
}

.provider-mini-list li:last-child {
    border-bottom: none;
}

.step-list {
    padding-left: 1.5rem;
    color: #334155;
    line-height: 1.8;
}

/* Cards & Icons */
/* Cards & Icons */
.tech-card {
    background: #fff;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 15px 35px rgba(0, 38, 153, 0.1);
    text-align: center;
    border: 1px solid #dbeafe;
    border-top: 5px solid #0066FF;
}

.tech-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 6px rgba(0, 102, 255, 0.25));
}

/* Enhanced Network Coverage Section */
.coverage-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.coverage-visual-card {
    background: #fff;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px rgba(0, 38, 153, 0.1);
    text-align: center;
    border: 1px solid #dbeafe;
    position: relative;
    z-index: 1;
}

.coverage-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--color-primary-blue);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.signal-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.signal-icon {
    font-size: 4rem;
    position: relative;
    z-index: 2;
    filter: none;
    /* Reset grayscale */
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.signal-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 255, 0.2);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.4);
    }

    70% {
        transform: translate(-50%, -50%) scale(1.3);
        box-shadow: 0 0 0 20px rgba(0, 102, 255, 0);
    }

    100% {
        transform: translate(-50%, -50%) scale(0.8);
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0);
    }
}

/* Models Section */
.models-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.model-category {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
}

.model-category h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.model-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.tag {
    background: #f1f5f9;
    color: #334155;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

.opacity-70 {
    opacity: 0.75;
}

/* Buttons */
.btn-primary-small {
    background: var(--color-primary-blue);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.2s;
    box-shadow: 0 4px 6px rgba(0, 102, 255, 0.2);
}

.btn-primary-small:hover {
    background: var(--color-primary-dark);
}

.btn-secondary-large {
    background: transparent;
    color: var(--color-primary-blue);
    border: 2px solid var(--color-primary-blue);
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    font-size: 1.1rem;
    transition: all 0.2s;
}

.btn-secondary-large:hover {
    background: #f0f7ff;
}

.btn-text {
    color: var(--color-primary-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.btn-text:hover {
    text-decoration: underline;
}

.cta-mini {
    margin-top: 2rem;
}

.center-cta {
    text-align: center;
}

/* 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;
    }

    .row-layout.reverse {
        flex-direction: column;
    }

    .slide-in-left,
    .slide-in-right {
        transform: translateY(30px);
    }

    .visible.slide-in-left,
    .visible.slide-in-right {
        transform: translateY(0);
    }
}