.armada-page {
    background: var(--soft);
}

.armada-hero {
    position: relative;
    padding: 135px 0 70px;
    color: white;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(6, 17, 31, 0.96), rgba(6, 78, 59, 0.84)),
        url('https://images.unsplash.com/photo-1493558103817-58b2924bce98?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}

.armada-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(245, 158, 11, 0.24), transparent 28%),
        radial-gradient(circle at 82% 72%, rgba(20, 184, 166, 0.22), transparent 34%);
}

.page-label {
    display: inline-flex;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.14);
    border: 1px solid rgba(245, 158, 11, 0.32);
    color: #fde68a;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.armada-hero h1 {
    max-width: 720px;
    font-size: clamp(2.25rem, 4.8vw, 4.4rem);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -0.06em;
    margin-bottom: 20px;
}

.armada-hero p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.75;
    font-size: 1rem;
}

.hero-filter-card {
    padding: 28px;
    border-radius: 32px;
    background: rgba(6, 17, 31, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.hero-filter-card h5 {
    font-weight: 800;
    color: white;
}

.hero-filter-card-compact {
    max-width: 100%;
    padding: 16px 18px;
    border-radius: 24px;
}

.hero-filter-card p {
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 20px;
}

.filter-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.10);
    color: white;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 800;
    font-size: 0.86rem;
    transition: 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.armada-summary {
    position: relative;
    z-index: 2;
    margin-top: 46px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.armada-summary div {
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
}

.armada-summary strong {
    display: block;
    font-size: 1.3rem;
    color: white;
    font-weight: 800;
}

.armada-summary span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.86rem;
}

.armada-list-section {
    padding: 90px 0;
}

.section-heading-compact {
    margin-bottom: 18px;
}

.section-heading-compact h2 {
    margin-bottom: 4px;
}

.armada-card {
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 14px 45px rgba(15, 23, 42, 0.08);
    transition: 0.3s ease;
}

.armada-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.armada-img {
    position: relative;
    height: 235px;
    background-size: cover;
    background-position: center;
}

.armada-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 17, 31, 0.55), transparent 60%);
}

.status-badge {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 2;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.95);
    color: white;
    font-size: 0.78rem;
    font-weight: 800;
}

.armada-body {
    padding: 24px;
}

.armada-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.armada-title span {
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.armada-title h5 {
    margin: 6px 0 0;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.armada-title strong {
    white-space: nowrap;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
    font-size: 0.86rem;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.spec-grid div {
    padding: 13px;
    border-radius: 17px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.spec-grid small {
    display: block;
    color: var(--muted);
    font-size: 0.72rem;
    margin-bottom: 4px;
}

.spec-grid b {
    color: var(--text);
    font-size: 0.86rem;
}

.armada-desc {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.92rem;
    margin: 18px 0;
}

.armada-driver-package {
    display: grid;
    gap: 4px;
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(15, 118, 110, 0.08), rgba(245, 158, 11, 0.08));
    border: 1px solid rgba(15, 118, 110, 0.12);
}

.armada-driver-package strong {
    color: var(--primary-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.armada-driver-package small {
    color: #0f172a;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.45;
}

.facility-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.facility-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 600;
}

.facility-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 900;
}

.armada-actions {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 10px;
}

.armada-actions .btn {
    min-height: 46px;
    display: grid;
    place-items: center;
}

.btn-outline-detail {
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 999px;
    font-weight: 800;
}

.btn-outline-detail:hover {
    background: var(--primary);
    color: white;
}

.empty-state {
    margin-top: 30px;
    padding: 24px;
    border-radius: 24px;
    background: white;
    border: 1px dashed #cbd5e1;
    color: var(--muted);
    text-align: center;
    font-weight: 700;
}

.armada-modal {
    border: none;
    border-radius: 28px;
    overflow: hidden;
}

.armada-modal .modal-header {
    background: var(--dark);
    color: white;
    border: none;
    padding: 22px 26px;
}

.armada-modal .modal-title {
    font-weight: 800;
}

.armada-modal .modal-body {
    padding: 26px;
    color: var(--muted);
    line-height: 1.8;
}

@media (max-width: 991px) {
    .armada-hero {
        padding: 120px 0 60px;
    }

    .armada-summary {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .armada-hero h1 {
        font-size: 2.25rem;
    }

    .armada-summary {
        grid-template-columns: 1fr;
    }

    .armada-actions {
        grid-template-columns: 1fr;
    }

    .armada-list-section {
        padding: 70px 0;
    }
}

/* Compact public sizing */
.armada-hero {
    padding: 128px 0 62px;
}

.page-label {
    padding: 8px 14px;
    font-size: 0.74rem;
    margin-bottom: 18px;
}

.armada-hero h1 {
    max-width: 660px;
    font-size: clamp(2rem, 4.2vw, 3.9rem);
    margin-bottom: 16px;
}

.armada-hero p {
    max-width: 600px;
    font-size: 0.94rem;
    line-height: 1.68;
}

.hero-filter-card {
    padding: 24px;
    border-radius: 28px;
}

.hero-filter-card h5 {
    font-size: 1rem;
}

.hero-filter-card p {
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.filter-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
}

.armada-summary {
    margin-top: 38px;
    gap: 12px;
}

.armada-summary div {
    padding: 15px;
    border-radius: 20px;
}

.armada-summary strong {
    font-size: 1.12rem;
}

.armada-summary span {
    font-size: 0.8rem;
}

.armada-list-section {
    padding: 78px 0;
}

.armada-card {
    border-radius: 26px;
}

.armada-img {
    height: 215px;
}

.status-badge {
    left: 14px;
    top: 14px;
    padding: 7px 12px;
    font-size: 0.74rem;
}

.armada-body {
    padding: 20px;
}

.armada-title {
    margin-bottom: 16px;
}

.armada-title span {
    font-size: 0.72rem;
}

.armada-title h5 {
    font-size: 1.02rem;
}

.armada-driver-package {
    margin-bottom: 16px;
    padding: 11px 13px;
    border-radius: 16px;
}

.armada-driver-package strong {
    font-size: 0.68rem;
}

.armada-driver-package small {
    font-size: 0.8rem;
}

.armada-title strong {
    padding: 7px 11px;
    font-size: 0.8rem;
}

.spec-grid div {
    padding: 11px;
    border-radius: 15px;
}

.spec-grid small {
    font-size: 0.68rem;
}

.spec-grid b {
    font-size: 0.8rem;
}

.armada-desc {
    margin: 16px 0;
    font-size: 0.88rem;
    line-height: 1.65;
}

.facility-list {
    margin-bottom: 18px;
}

.facility-list li {
    padding-left: 20px;
    font-size: 0.86rem;
}

.armada-actions .btn {
    min-height: 42px;
    font-size: 0.84rem;
}

.empty-state {
    padding: 20px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.armada-modal {
    border-radius: 24px;
}

.armada-modal .modal-header {
    padding: 18px 22px;
}

.armada-modal .modal-title {
    font-size: 1rem;
}

.armada-modal .modal-body {
    padding: 22px;
    font-size: 0.9rem;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .armada-hero {
        padding: 118px 0 56px;
    }

    .armada-list-section {
        padding: 66px 0;
    }
}

@media (max-width: 767px) {
    .armada-hero h1 {
        font-size: 1.95rem;
    }

    .hero-filter-card,
    .armada-body {
        padding: 18px;
    }
}

/* Compact public sizing */
.armada-hero {
    padding: 112px 0 26px;
}

.armada-hero h1 {
    max-width: 680px;
    font-size: clamp(1.95rem, 4.1vw, 3.7rem);
}

.armada-hero p {
    font-size: 0.88rem;
    line-height: 1.68;
}

.hero-filter-card {
    padding: 22px;
    border-radius: 26px;
}

.hero-filter-card-compact {
    padding: 14px 16px;
    border-radius: 22px;
}

.filter-btn {
    padding: 9px 14px;
    font-size: 0.76rem;
}

.armada-summary {
    margin-top: 34px;
    gap: 12px;
}

.armada-summary div {
    padding: 15px;
    border-radius: 20px;
}

.armada-summary strong {
    font-size: 1.12rem;
}

.armada-summary span {
    font-size: 0.78rem;
}

.armada-list-section {
    padding: 38px 0 72px;
}

.armada-card {
    border-radius: 24px;
}

.armada-img {
    height: 220px;
}

.status-badge {
    padding: 7px 12px;
    font-size: 0.72rem;
}

.armada-body {
    padding: 20px;
}

.armada-title {
    margin-bottom: 14px;
}

.armada-title h5 {
    font-size: 1rem;
}

.armada-title strong {
    padding: 7px 10px;
    font-size: 0.78rem;
}

.spec-grid div {
    padding: 11px;
    border-radius: 14px;
}

.armada-actions .btn,
.btn-outline-detail {
    min-height: 42px;
    font-size: 0.76rem;
}
