/* YOVANSTRANS — Part 3: Gallery, Forms, Footer, Bottom Bar, Popup, Page Header, Posts, Misc */

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem
}

@media(min-width:768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(min-width:1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base)
}

.gallery-item:hover img {
    transform: scale(1.05)
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base)
}

.gallery-item:hover .gallery-item-overlay {
    background: rgba(0, 0, 0, .3)
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center
}

.lightbox.active {
    display: flex
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-lg)
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .1);
    border: none;
    color: var(--white);
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: var(--radius-md)
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, .2)
}

.lightbox-prev {
    left: 1rem
}

.lightbox-next {
    right: 1rem
}

/* Forms */
.form-group {
    margin-bottom: 1rem
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: .4rem;
    color: var(--gray-700)
}

.form-control {
    width: 100%;
    padding: .75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: border-color var(--transition-fast);
    min-height: 48px;
    background: var(--white)
}

.form-control:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1)
}

.form-control::placeholder {
    color: var(--gray-400)
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem
}

textarea.form-control {
    min-height: 100px;
    resize: vertical
}

/* Agent Selector */
.agent-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    margin-bottom: 1rem
}

@media(max-width:480px) {
    .agent-selector {
        grid-template-columns: 1fr
    }
}

.agent-option {
    text-align: center;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast)
}

.agent-option:hover,
.agent-option.selected {
    border-color: var(--blue-500);
    background: var(--blue-50)
}

.agent-option-name {
    font-weight: 700;
    font-size: .95rem
}

.agent-option-phone {
    font-size: .8rem;
    color: var(--gray-400);
    margin-top: .25rem
}

/* Footer */
.footer {
    background: var(--blue-900);
    color: var(--gray-300);
    padding: 3rem 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem
}

@media(min-width:768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr
    }
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem
}

.footer-brand span {
    color: var(--yellow-400)
}

.footer-desc {
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 1rem
}

.footer-social {
    display: flex;
    gap: .5rem
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .1);
    color: var(--white);
    transition: all var(--transition-fast)
}

.footer-social a:hover {
    background: var(--yellow-500);
    color: var(--gray-900)
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem
}

.footer-links a {
    display: block;
    color: var(--gray-400);
    font-size: .9rem;
    padding: .3rem 0;
    transition: color var(--transition-fast)
}

.footer-links a:hover {
    color: var(--yellow-400);
    padding-left: .3rem
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    margin-bottom: .5rem;
    font-size: .9rem
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 1rem 0;
    text-align: center;
    font-size: .8rem;
    color: var(--gray-500)
}

/* Bottom Bar */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--blue-900);
    border-top: 1px solid rgba(255, 255, 255, .1);
    z-index: 999;
    display: flex;
    padding: .5rem;
    gap: .25rem
}

.bottom-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .15rem;
    padding: .6rem 0;
    min-height: 52px;
    color: var(--gray-400);
    font-size: .7rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast)
}

.bottom-bar-item i {
    font-size: 1.3rem
}

.bottom-bar-item:hover,
.bottom-bar-item.active {
    color: var(--yellow-400);
    background: rgba(251, 191, 36, .1)
}

.bottom-bar-item.bottom-bar-wa {
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius-lg)
}

.bottom-bar-item.bottom-bar-wa:hover {
    background: #1EBE5A
}

@media(min-width:1024px) {
    .bottom-bar {
        display: none
    }
}

/* Popup */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem
}

.popup-overlay.active {
    display: flex
}

.popup-modal {
    background: var(--white);
    border-radius: var(--radius-2xl);
    max-width: 420px;
    width: 100%;
    overflow: hidden;
    position: relative;
    animation: popupIn .4s ease
}

.popup-close {
    position: absolute;
    top: .75rem;
    right: .75rem;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, .5);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1
}

.popup-image {
    width: 100%;
    height: auto;
    display: block
}

.popup-body {
    padding: 1.5rem;
    text-align: center
}

.popup-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: .5rem
}

.popup-text {
    color: var(--gray-500);
    font-size: .9rem;
    margin-bottom: 1rem
}

@media (max-width: 480px) {
    .popup-overlay {
        padding: 1.5rem;
        align-items: center
    }

    .popup-modal {
        max-width: 85%;
        max-height: 80vh;
        overflow-y: auto;
        border-radius: var(--radius-xl)
    }

    .popup-image {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain
    }

    .popup-body {
        padding: .75rem 1rem
    }

    .popup-title {
        font-size: .95rem;
        margin-bottom: .5rem
    }

    .popup-text {
        display: none
    }

    .popup-close {
        width: 28px;
        height: 28px;
        font-size: 1rem;
        top: .5rem;
        right: .5rem
    }
}

/* Page Header */
.page-header {
    background: var(--gradient-hero);
    padding: 100px 0 3rem;
    text-align: center;
    color: var(--white)
}

.page-header-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: .5rem
}

.page-header-subtitle {
    color: var(--gray-300);
    font-size: 1rem
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: var(--gray-400);
    justify-content: center;
    margin-top: 1rem
}

.breadcrumb a {
    color: var(--yellow-400)
}

/* Post Card */
.post-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base)
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl)
}

.post-card-image {
    height: 200px;
    object-fit: cover;
    width: 100%
}

.post-card-body {
    padding: 1.5rem
}

.post-card-category {
    display: inline-block;
    padding: .2rem .6rem;
    background: var(--yellow-100);
    color: var(--yellow-700);
    font-size: .7rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    margin-bottom: .5rem
}

.post-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .5rem
}

.post-card-title a {
    color: var(--gray-900)
}

.post-card-title a:hover {
    color: var(--blue-500)
}

.post-card-excerpt {
    color: var(--gray-500);
    font-size: .85rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.post-card-date {
    font-size: .8rem;
    color: var(--gray-400);
    margin-top: .5rem
}

/* Branch Card */
.branch-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base)
}

.branch-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl)
}

.branch-card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--blue-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--blue-500)
}

.branch-card-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .25rem
}

.branch-card-address {
    color: var(--gray-500);
    font-size: .85rem;
    margin-bottom: .5rem
}

.branch-card-hours {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    font-size: .8rem;
    color: var(--gray-400);
    margin-bottom: 1rem
}

.branch-card-actions {
    display: flex;
    gap: .5rem;
    justify-content: center
}

/* Counter */
.counter-section {
    background: var(--gradient-brand);
    padding: 3rem 0
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: center
}

@media(min-width:768px) {
    .counter-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

.counter-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--blue-900)
}

.counter-label {
    font-size: .9rem;
    font-weight: 600;
    color: var(--blue-800);
    margin-top: .25rem
}

/* Schedule Table */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem
}

.schedule-table th {
    background: var(--blue-700);
    color: var(--white);
    padding: .75rem 1rem;
    text-align: left;
    font-weight: 600
}

.schedule-table td {
    padding: .75rem 1rem;
    border-bottom: 1px solid var(--gray-100)
}

.schedule-table tr:hover td {
    background: var(--blue-50)
}

@media(max-width:768px) {

    .schedule-table,
    .schedule-table thead,
    .schedule-table tbody,
    .schedule-table th,
    .schedule-table td,
    .schedule-table tr {
        display: block
    }

    .schedule-table thead {
        display: none
    }

    .schedule-table tr {
        margin-bottom: .5rem;
        background: var(--white);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
        padding: .5rem
    }

    .schedule-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: .5rem 1rem;
        border-bottom: 1px solid var(--gray-100)
    }

    .schedule-table td:last-child {
        border-bottom: none
    }

    .schedule-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--gray-700);
        margin-right: 1rem
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: scale(.9) translateY(20px)
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all .6s ease
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0)
}

/* Alert */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    font-size: .9rem
}

.alert-success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0
}

.alert-danger {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA
}

.alert-warning {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FDE68A
}

/* Badge */
.badge-promo {
    display: inline-block;
    padding: .25rem .75rem;
    background: var(--danger);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    border-radius: var(--radius-full)
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 80px;
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--blue-500);
    color: var(--white);
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    z-index: 500
}

.scroll-top.visible {
    display: flex
}

.scroll-top:hover {
    background: var(--blue-700);
    transform: translateY(-2px)
}

@media(min-width:1024px) {
    .scroll-top {
        bottom: 2rem
    }
}

/* ==============================
   Mobile Compact (<= 480px)
   Goal: reduce vertical scroll, keep tap-targets, enable swipe carousels
   ============================== */

/* Utilities */
.mobile-only {
    display: none;
}

@media (max-width: 480px) {

    /* Swipe carousel helper: add class="mobile-carousel" to any grid wrapper */
    .mobile-carousel {
        display: flex !important;
        overflow-x: auto;
        gap: .75rem;
        padding: .25rem .1rem .5rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-carousel>* {
        flex: 0 0 86%;
        scroll-snap-align: start;
    }

    .mobile-carousel::-webkit-scrollbar {
        display: none;
    }

    /* Force 2-col grid on small icon/cards (add class="mobile-grid-2") */
    .mobile-grid-2 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: .75rem !important;
    }

    /* Global density */
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 .9rem;
    }

    .section {
        padding: 1.75rem 0;
    }

    .section-title {
        font-size: 1.35rem;
        margin-bottom: .25rem;
    }

    .section-subtitle {
        font-size: .95rem;
        margin-bottom: 1rem;
    }

    .divider {
        margin: 0 auto 1.25rem;
    }

    /* Buttons (keep tap targets) */
    .btn {
        padding: .7rem 1rem;
        min-height: 44px;
    }

    .btn-lg {
        padding: .8rem 1.05rem;
        font-size: .95rem;
    }

    .btn-sm {
        padding: .55rem .85rem;
        font-size: .85rem;
        min-height: 40px;
    }

    .btn-block {
        width: 100%;
        justify-content: center;
    }

    /* Page header */
    .page-header {
        padding: 78px 0 1.5rem;
    }

    .page-header-title {
        font-size: 1.6rem;
    }

    .page-header-subtitle {
        font-size: .95rem;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 96px 0 1.25rem;
    }

    .hero-badge {
        font-size: .78rem;
        padding: .55rem .85rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.08;
    }

    .hero-desc {
        font-size: .95rem;
        margin-bottom: 1.1rem;
    }

    .hero-actions {
        gap: .75rem;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: .65rem;
        margin-top: 1.1rem;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }

    .hero-stat {
        padding: .65rem .6rem;
        border-radius: var(--radius-lg);
    }

    .hero-stat-number {
        font-size: 1.6rem;
    }

    .hero-stat-label {
        font-size: .75rem;
    }

    /* Cards */
    .route-card {
        padding: 1rem;
        border-radius: var(--radius-lg);
    }

    .route-card-header {
        gap: .5rem;
        margin-bottom: .65rem;
        flex-wrap: wrap;
    }

    .route-cities {
        font-size: 1.05rem;
    }

    .route-arrow {
        font-size: 1.25rem;
    }

    .route-meta {
        gap: .75rem;
        flex-wrap: wrap;
        margin-bottom: .75rem;
    }

    .route-price-current {
        font-size: 1.25rem;
    }

    .fleet-card-image {
        height: 160px;
    }

    .fleet-card-body {
        padding: 1rem;
    }

    .features-list {
        gap: .35rem;
        margin-top: .75rem;
    }

    .feature-badge {
        padding: .25rem .6rem;
        font-size: .75rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-card::before {
        font-size: 3rem;
        top: 6px;
        left: 14px;
    }

    .testimonial-text {
        font-size: .9rem;
        line-height: 1.65;
        padding-top: 1rem;
    }

    /* Forms */
    .form-group {
        margin-bottom: .75rem;
    }

    .form-label {
        font-size: .85rem;
        margin-bottom: .35rem;
    }

    .form-control {
        padding: .65rem .9rem;
        min-height: 44px;
        font-size: .95rem;
        border-radius: var(--radius-md);
    }

    textarea.form-control {
        min-height: 92px;
    }

    /* Agent selector: keep 2 columns on mobile (less vertical) */
    .agent-selector {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .agent-option {
        padding: .75rem;
    }

    .agent-option-name {
        font-size: .9rem;
    }

    /* Bottom bar compact */
    .bottom-bar {
        padding: .4rem;
        gap: .25rem;
    }

    .bottom-bar-item {
        padding: .5rem 0;
        min-height: 48px;
        font-size: .68rem;
    }

    .bottom-bar-item i {
        font-size: 1.15rem;
    }

    /* Scroll-to-top position (avoid overlapping bottom bar) */
    .scroll-top {
        width: 42px;
        height: 42px;
        bottom: 72px;
        right: 12px;
        font-size: 1.05rem;
    }

    /* Blog cards become horizontal list */
    .post-card {
        display: flex;
        gap: .75rem;
    }

    .post-card-image {
        width: 120px;
        height: 96px;
        flex: 0 0 120px;
    }

    .post-card-body {
        padding: .85rem 1rem;
    }

    .post-card-title {
        font-size: .95rem;
        margin-bottom: .35rem;
    }

    .post-card-excerpt {
        -webkit-line-clamp: 2;
    }

    /* Mobile quick-jump chips (home) */
    .quick-chips {
        display: flex;
        gap: .5rem;
        overflow-x: auto;
        padding: .25rem 0 .5rem;
        margin-top: .75rem;
        -webkit-overflow-scrolling: touch;
    }

    .quick-chips::-webkit-scrollbar {
        display: none;
    }

    .quick-chip {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        gap: .4rem;
        padding: .55rem .8rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, .10);
        border: 1px solid rgba(255, 255, 255, .18);
        color: var(--white);
        font-size: .82rem;
        text-decoration: none;
        white-space: nowrap;
        font-weight: 700;
    }

    .quick-chip i {
        font-size: .95rem;
        color: var(--yellow-400);
    }

    /* Details accordions (schedule + price lists) */
    details.schedule-accordion,
    details.price-more {
        margin-top: .75rem;
        border: 1px solid var(--gray-200);
        border-radius: var(--radius-lg);
        background: var(--white);
        overflow: hidden;
    }

    details.schedule-accordion summary,
    details.price-more summary {
        list-style: none;
        cursor: pointer;
        padding: .75rem 1rem;
        font-weight: 700;
        color: var(--blue-700);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: .75rem;
    }

    details.schedule-accordion summary::-webkit-details-marker,
    details.price-more summary::-webkit-details-marker {
        display: none;
    }

    details.schedule-accordion[open] summary,
    details.price-more[open] summary {
        border-bottom: 1px solid var(--gray-100);
    }

    .schedule-body {
        padding: .5rem;
    }

    .schedule-body .schedule-table {
        margin-top: 0 !important;
    }

    .price-more-body {
        padding: .25rem 1rem .75rem;
    }

    /* Armada pages: reduce inline-heavy layout */
    .armada-page .animate-on-scroll {
        margin-bottom: 1.5rem !important;
        gap: 1rem !important;
    }

    .armada-page img {
        height: 170px !important;
    }

    .armada-page h2 {
        font-size: 1.25rem !important;
    }

    .armada-page .armada-desc {
        margin-top: .65rem !important;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .armada-page .features-list {
        margin-top: .75rem !important;
        gap: .5rem !important;
    }

    .armada-page .armada-cta {
        margin-top: 1rem !important;
        display: flex;
        flex-wrap: wrap;
        gap: .5rem;
    }

    .armada-page .armada-cta a {
        margin-left: 0 !important;
    }

    .armada-page hr {
        margin-bottom: 1rem !important;
    }

    /* Armada detail: shrink hero image + typography */
    .armada-detail-page .armada-detail-cover {
        height: 220px !important;
    }

    .armada-detail-page h2 {
        font-size: 1.4rem !important;
    }

    .armada-detail-page .armada-detail-desc {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Footer compact */
    .footer {
        padding: 1.5rem 0 0;
    }

    .footer-grid {
        gap: .75rem;
        margin-bottom: 1.25rem;
        grid-template-columns: 1fr 1fr !important;
    }

    .footer-grid>div:first-child {
        grid-column: 1 / -1;
    }

    /* brand spans full width */
    .footer-grid>div:last-child {
        grid-column: 1 / -1;
    }

    /* kontak spans full width */
    .footer-brand {
        font-size: 1.2rem;
        margin-bottom: .5rem;
    }

    .footer-desc {
        font-size: .8rem;
        line-height: 1.5;
        margin-bottom: .5rem;
    }

    .footer-social {
        gap: .35rem;
        margin-bottom: 0;
    }

    .footer-social a {
        width: 34px;
        height: 34px;
        font-size: .85rem;
    }

    .footer-title {
        font-size: .9rem;
        margin-bottom: .5rem;
    }

    .footer-links a {
        padding: .2rem 0;
        font-size: .82rem;
    }

    .footer-contact-item {
        font-size: .82rem;
        margin-bottom: .35rem;
        gap: .35rem;
    }

    .footer-bottom {
        padding: .6rem 0 68px;
        font-size: .7rem;
        border-top: none;
    }

    .mobile-only {
        display: block !important;
    }
}