﻿/* MODERN GOVERNMENT STYLING */

/* Hero Section */
.citizenship-hero {
    background: #001d5a; /* Matches your layout header */
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #ffc107; /* Traditional gold accent line */
}

.hero-sash {
    position: absolute;
    right: -50px;
    top: 50%;
    height: 120%;
    opacity: 0.1;
    transform: translateY(-50%) rotate(0deg);
    pointer-events: none;
}

/* Alert Box (Modern Warning) */
.gov-alert {
    background-color: #fff3cd;
    border-left: 6px solid #ffc107;
    padding: 20px;
    color: #856404;
}

/* Eligibility Sidebar */
.eligibility-card {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-top: 4px solid #001d5a;
}

/* Application Steps (Action Cards) */
.application-step-card {
    display: flex;
    background: #fff;
    border: 1px solid #dee2e6;
    padding: 25px;
    transition: transform 0.2s ease;
}

    .application-step-card:hover {
        border-color: #001d5a;
        background-color: #fafafa;
    }

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: #dee2e6;
    margin-right: 25px;
    line-height: 1;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #001d5a;
    margin-bottom: 8px;
}

/* Government Buttons */
.btn-gov-primary {
    background-color: #001d5a;
    color: white;
    border-radius: 0; /* Gov style often uses sharper corners */
    padding: 10px 25px;
    font-weight: 600;
}

    .btn-gov-primary:hover {
        background-color: #003774;
        color: white;
    }

/* Typography fix */
address {
    font-style: normal;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .application-step-card {
        flex-direction: column;
    }

    .step-number {
        margin-bottom: 10px;
    }
}
