
/* ============================================
   GLOBAL HEADER — ALL PAGES
   ============================================ */

/* Force nav to single line on all pages */
section.header .nav ul,
section.header ul.nav-ul {
    flex-wrap: nowrap !important;
    gap: 0 !important;
    align-items: center;
}

section.header .nav ul li a,
section.header ul.nav-ul li a {
    font-size: 11px !important;
    padding: 4px 4px !important;
    white-space: nowrap !important;
    line-height: 1.2;
    font-weight: 500 !important;
}

/* Ensure header always has white bg and correct height */
section.header {
    background: #fff !important;
    min-height: 80px;
}

/* ============================================
   Parking Search and Detail Custom Styles */

.parking-detail-sec {
    padding: 60px 0;
}

.parking-images .main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.thumbnail-images img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.thumbnail-images img:hover {
    opacity: 0.8;
}

.parking-meta {
    margin: 15px 0;
}

.parking-meta .badge {
    margin-right: 10px;
    padding: 5px 12px;
    font-size: 12px;
}

.pricing-info .price-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 15px;
}

.pricing-info .price-card h4 {
    color: #007bff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.amenity-tag {
    background: #e9ecef;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    color: #495057;
}

.booking-sidebar {
    position: sticky;
    top: 20px;
}

.booking-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.booking-card h3 {
    margin-bottom: 20px;
    color: #333;
}

.host-info, .space-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.similar-spaces {
    background: #f8f9fa;
    padding: 60px 0;
}

.pkg-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.pkg-card:hover {
    transform: translateY(-5px);
}

.pkg-card .pkg-img {
    height: 200px;
    overflow: hidden;
}

.pkg-card .pkg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pkg-card .pkg-txt {
    padding: 15px;
}

.pkg-card .pkg-txt h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 3px;
    color: #333;
}

.pkg-card .pkg-txt p {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.3;
}

.pkg-card .pkg-txt div {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.pkg-card .pkg-txt div img,
.pkg-card .pkg-txt div i {
    margin-right: 8px;
    width: 16px;
}

.space-type {
    margin: 10px 0;
}

.space-type .badge {
    margin-right: 5px;
    font-size: 11px;
}

.card-actions {
    display: flex;
    gap: 10px;
}

.card-actions .theme_btn {
    flex: 1;
    text-align: center;
    padding: 8px 12px;
    font-size: 12px;
}

.no-results {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 40px;
}

.search-park-main-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.filter-datetime {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
}

.filter-datetime label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.pagination-wrapper {
    margin-top: 40px;
}

.pagination-wrapper .pagination {
    justify-content: center;
}

@media (max-width: 768px) {
    .parking-detail-sec {
        padding: 30px 0;
    }

    .booking-sidebar {
        position: static;
        margin-top: 30px;
    }

    .card-actions {
        flex-direction: column;
    }

    .search-park-main-box {
        padding: 20px;
    }
}

/* Additional styles for parking detail page */
.space-badges .badge {
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 11px;
    padding: 4px 8px;
}

.additional-photos h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.thumbnail-photo {
    height: 60px;
    object-fit: cover;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail-photo:hover {
    border-color: #007bff;
}

.host-info-section h5 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.amenities-section .amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.amenity-tag {
    background: #e9ecef;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    color: #495057;
}

.instructions-section .instructions-list {
    padding-left: 20px;
    font-size: 14px;
}

.instructions-section .instructions-list li {
    margin-bottom: 5px;
}

.quick-booking {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

#map {
    border: 1px solid #dee2e6;
}

/* Mobile responsive updates */
@media (max-width: 768px) {
    .additional-photos .col-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .quick-booking .row .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }
}
/* Location button styles */
.location-btn {
    background: #007bff;
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
    transition: background-color 0.3s ease;
}

.location-btn:hover {
    background: #0056b3;
}

.location-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

.search-btn {
    position: relative;
    display: flex;
    align-items: center;
}

.search-btn .location-btn {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    padding: 6px 10px;
    font-size: 12px;
}

/* Additional filters styling */
.additional-filters {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.additional-filters label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
    font-size: 14px;
}

.additional-filters .form-control {
    font-size: 14px;
    padding: 8px 12px;
}

/* Distance display in search results */
.distance-info {
    color: #6c757d;
    font-size: 12px;
    margin-top: 5px;
}

.distance-info i {
    margin-right: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .search-btn .location-btn {
        position: static;
        margin-left: 10px;
        margin-top: 10px;
        transform: none;
    }

    .additional-filters .col-md-3 {
        margin-bottom: 15px;
    }
}
/* Reduce spacing in parking detail page */
.finding_space_card .pkg-txt {
    padding: 15px !important;
}

.finding_space_card .pkg-txt p {
    margin-bottom: 5px !important;
    line-height: 1.3 !important;
}

.finding_space_card .pkg-txt div {
    margin-bottom: 4px !important;
}

.finding_space_card .pkg-txt .finding_space_p {
    margin-bottom: 10px !important;
    line-height: 1.4 !important;
}

/* Reduce spacing in host info and amenities sections */
.host-info-section h5 {
    margin-bottom: 3px !important;
}

.host-info-section p {
    margin-bottom: 5px !important;
}

.amenities-section h5 {
    margin-bottom: 5px !important;
}

.instructions-section h5 {
    margin-bottom: 5px !important;
}

.instructions-section .instructions-list li {
    margin-bottom: 2px !important;
}

/* Reduce spacing in space badges */
.space-badges {
    margin-top: 5px !important;
    margin-bottom: 8px !important;
}

.space-badges .badge {
    margin-bottom: 3px !important;
}

/* Reduce spacing in quick booking form */
.quick-booking {
    padding: 12px !important;
    margin-top: 10px !important;
}

.quick-booking .row {
    margin-bottom: 8px !important;
}

/* Compact distance info */
.distance-info {
    margin-top: 2px !important;
    margin-bottom: 5px !important;
}

/* Reduce button spacing */
.pkg-card .pkg-txt .theme_btn {
    margin-top: 8px !important;
    margin-right: 5px !important;
    margin-bottom: 3px !important;
}

.pkg-card .pkg-txt .more_btn {
    margin-top: 8px !important;
    margin-bottom: 3px !important;
}
/* Compact additional photos section */
.additional-photos {
    margin-top: 15px !important;
}

.additional-photos h4 {
    font-size: 14px !important;
    margin-bottom: 8px !important;
}

.additional-photos .row {
    margin-bottom: 0 !important;
}

.additional-photos .col-3 {
    padding: 2px !important;
}

/* Compact main parking space details */
.finding_space_left .pkg-card .pkg-txt p:first-child {
    font-weight: bold !important;
    margin-bottom: 8px !important;
}

/* Reduce overall card padding on detail page */
.finding_space .pkg-card {
    margin-bottom: 15px !important;
}

/* Compact form elements in detail page */
.quick-booking .form-control-sm {
    padding: 6px 10px !important;
    font-size: 13px !important;
}

.quick-booking .theme_btn {
    padding: 8px 15px !important;
    font-size: 13px !important;
}

/* ============================================
   TRUST LAYER SECTION
   ============================================ */

section.trust-layer {
    background: #f2f4f5;
}

section.trust-layer .heading-row {
    margin-bottom: 40px;
}

section.trust-layer .heading-row h2 {
    color: #53aa59;
}

section.trust-layer .heading-row p {
    width: 55%;
    color: #444;
    font-size: 15px;
    line-height: 1.7;
}

/* Badge Card — white on gray background, equal fixed height */
.trust-badge {
    background: #fff;
    border: 1.5px solid #001e46;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 30, 70, 0.08);
    padding: 30px 20px 24px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(70, 169, 86, 0.18);
    border-color: #46a956;
}

.trust-badge:hover .trust-icon-wrap {
    background: #46a956;
}

.trust-icon-wrap {
    width: 64px;
    height: 64px;
    background: #001e46;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: #fff;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.trust-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    font-family: "Mont", sans-serif;
    margin-bottom: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

.trust-tag-verified { background: #46a956; color: #fff; }
.trust-tag-navy     { background: #001e46; color: #fff; }
.trust-tag-live     { background: #c0392b; color: #fff; }

.trust-blink {
    font-size: 7px;
    animation: trust-blink-dot 1.4s ease-in-out infinite;
}

@keyframes trust-blink-dot {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
}

.trust-badge p {
    color: #666;
    font-size: 13px;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

@media (max-width: 991px) {
    section.trust-layer .heading-row p { width: 75%; }
}

@media (max-width: 767px) {
    section.trust-layer .heading-row p { width: 95%; }
    .trust-badge { padding: 24px 14px 20px; }
    .trust-icon-wrap { width: 54px; height: 54px; font-size: 19px; }
    .trust-tag { font-size: 10px; padding: 4px 11px; }
}

/* ============================================
   UK SPACE SHARING NETWORK SECTION
   ============================================ */

section.uk-network-sec {
    background: #fff;
}

section.uk-network-sec .heading-row h2 {
    color: #53aa59;
}

section.uk-network-sec .heading-row p {
    width: 55%;
}

/* Ecosystem grid — fixed height items so all rows equal */
.uk-ecosystem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.uk-eco-item {
    background: #f2f4f5;
    border: 1.5px solid #001e46;
    border-radius: 10px;
    padding: 0;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
    flex: 0 0 140px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.uk-eco-item:hover {
    transform: translateY(-4px);
    border-color: #46a956;
    box-shadow: 0 8px 20px rgba(70, 169, 86, 0.15);
    background: #fff;
}

.uk-eco-icon {
    width: 48px;
    height: 48px;
    background: #001e46;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: background 0.25s ease;
    flex-shrink: 0;
}

.uk-eco-item:hover .uk-eco-icon {
    background: #46a956;
}

.uk-eco-item span {
    font-family: "Mont", sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #001e46;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1.35;
    display: block;
    padding: 0 8px;
}

/* Platform link buttons — side by side row */
.uk-network-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.uk-network-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 28px;
    border-radius: 10px;
    border: 1.5px solid #001e46;
    text-decoration: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
    min-width: 280px;
}

.uk-network-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 30, 70, 0.15);
}

.uk-btn-parking {
    background: #001e46;
    color: #fff !important;
}

.uk-btn-parking:hover {
    background: #002a63;
    color: #fff !important;
}

.uk-btn-storage {
    background: #f2f4f5;
    color: #001e46 !important;
}

.uk-btn-storage:hover {
    background: #001e46;
    color: #fff !important;
}

.uk-network-btn > .fas:first-child {
    font-size: 22px;
    width: 26px;
    text-align: center;
    flex-shrink: 0;
}

.uk-network-btn span {
    display: flex;
    flex-direction: column;
    flex: 1;
    line-height: 1.3;
    font-family: "Mont", sans-serif;
    font-weight: 700;
    font-size: 15px;
}

.uk-network-btn span small {
    font-weight: 400;
    font-size: 11px;
    opacity: 0.7;
    text-transform: none;
    letter-spacing: 0;
    font-family: inherit;
}

.uk-btn-arrow {
    font-size: 12px;
    opacity: 0.5;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .uk-eco-item { flex: 0 0 calc(50% - 10px); }
    .uk-network-btn { min-width: 100%; }
    .uk-network-links { flex-direction: column; }
}
