    /* Section spacing */
.popular-location {
    padding: 30px 0;
}

/* Card container */
.location-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eaeaea;
    transition: all 0.2s ease;
    height: 100%;
}

/* Hover effect (subtle, not heavy) */
.location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Image wrapper */
.location-card__img-wrapper {
    display: block;
    height: 110px; /* ↓ reduced height */
    overflow: hidden;
    background: #f5f7fa;
}

.location-card__img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info section */
.location-card__info {
    padding: 10px 12px; /* ↓ compact */
    text-align: center;
}

/* Title */
.location-card__loc-title {
    font-size: 14px; /* ↓ smaller */
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 6px;
    line-height: 1.3;
}

/* Bottom section */
.location-card__view {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
}

/* Count */
.view-number {
    font-size: 13px;
    font-weight: 500;
    color: #718096;
}

/* Button */
.view-btn {
    font-size: 12px;
    font-weight: 500;
    color: #00AAFF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: 0.2s;
}

.view-btn:hover {
    color: #0077cc;
}

/* Icon */
.view-btn .icon i {
    font-size: 11px;
}

/* Responsive tightening */
@media (max-width: 768px) {
    .location-card__img-wrapper {
        height: 90px;
    }

    .location-card__loc-title {
        font-size: 13px;
    }
}

.banner--two {
    position: relative;
    overflow: hidden;
}



/* Dark overlay for readability */
 
/* Content */
.banner__title {
    font-size: 52px;
    font-weight: 700;
    color: #1f2a37;
}

.banner__meta {
    font-size: 18px;
    font-weight: 600;
    color: #ff6b00;
}

.banner__desc {
    font-size: 18px;
    color: #6b7280;
    max-width: 500px;
}

/* Buttons */
.btn-primary {
    background: #199bd1;
    border: none;
}

.btn-secondary {
    background: #2d9cdb;
    border: none;
}

 
.banner__title {
    color: #1f2a37;
}

.banner__desc {
    color: #4b5563;
}

.btn-primary {
    background: #199bd1;
    color: #fff;
}

.btn-secondary {
    background: #e5f3fb;
    color: #199bd1;
}