/* Locations hub + directory (Suat Fuels) */
.loc-map-panel {
    position: relative;
    margin: -4rem auto 0;
    max-width: 1100px;
    z-index: 5;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(74, 204, 154, 0.35);
    background: #0f172a;
}

.loc-map-panel iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: none;
}

.loc-search-section {
    padding: 5rem 0 3rem;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.loc-search-wrap {
    position: relative;
    max-width: 560px;
    margin: 0 auto 2rem;
}

.loc-search-input {
    width: 100%;
    padding: 1rem 1.25rem 1rem 3rem;
    font-size: 1.05rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Ccircle cx='9' cy='9' r='6'/%3E%3Cpath d='M14 14l4 4'/%3E%3C/svg%3E") 1rem center no-repeat;
}

.loc-search-input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(74, 204, 154, 0.15);
}

.loc-search-results {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    max-height: 320px;
    overflow-y: auto;
    z-index: 20;
    display: none;
}

.loc-search-results.is-open {
    display: block;
}

.loc-search-hit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1.1rem;
    text-decoration: none;
    color: var(--text-dark);
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s;
}

.loc-search-hit:hover,
.loc-search-hit:focus {
    background: #f0fdf9;
}

.loc-search-hit strong {
    font-weight: 700;
}

.loc-search-hit span {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

.loc-regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.loc-region-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    text-align: left;
}

.loc-region-card:hover,
.loc-region-card.is-active {
    border-color: var(--primary-green);
    box-shadow: 0 8px 24px rgba(74, 204, 154, 0.15);
    transform: translateY(-2px);
}

.loc-region-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
    color: var(--text-dark);
}

.loc-region-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.loc-region-card .loc-region-count {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-green);
}

.loc-featured-section {
    padding: 4rem 0;
    background: #fff;
}

.loc-airport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
    gap: 1rem;
}

.loc-airport-card {
    display: block;
    padding: 1.1rem 1.25rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.loc-airport-card:hover {
    border-color: var(--primary-green);
    background: #f0fdf9;
    transform: translateY(-2px);
}

.loc-airport-card .loc-iata {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-green);
    text-transform: uppercase;
}

.loc-airport-card .loc-name {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 0.35rem;
    line-height: 1.35;
}

.loc-az-section {
    padding: 3rem 0 5rem;
    background: #f8fafc;
}

.loc-az-toggle {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.loc-az-btn {
    min-width: 2.25rem;
    padding: 0.45rem 0.55rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.15s;
}

.loc-az-btn:hover,
.loc-az-btn.is-active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #fff;
}

.loc-az-panel {
    display: none;
    margin-top: 1.5rem;
}

.loc-az-panel.is-visible {
    display: block;
}

.loc-cta-bar {
    text-align: center;
    padding: 2rem 0 0;
}

.loc-cta-bar a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.loc-dir-hero {
    padding: 7rem 0 2rem;
    background: #0f172a;
    color: #fff;
    text-align: center;
}

.loc-dir-hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 0 0.75rem;
}

.loc-dir-hero p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin: 0 auto;
}

.loc-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 2.5rem 0 1rem;
}

.loc-pagination a,
.loc-pagination span {
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    color: var(--text-dark);
    background: #fff;
}

.loc-pagination a:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.loc-pagination .is-current {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #fff;
}

.loc-pagination .is-disabled {
    opacity: 0.4;
    pointer-events: none;
}

@media (max-width: 968px) {
    .loc-regions-grid {
        grid-template-columns: 1fr;
    }

    .loc-map-panel iframe {
        height: 300px;
    }
}
