/* ================================
Visitor Sections
================================ */

.visitor-section {
    padding: 70px 20px;
}

.visitor-title {
    font-size: 1.9rem;
    margin-bottom: 10px;
    color: #005f99;
}

.visitor-intro {
    /* max-width: 700px; */
    margin-bottom: 40px;
    color: #555;
}

/* ================================
Tourism Cards
================================ */

.visitor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.visitor-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all .3s ease;
}

.visitor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.visitor-card h3 {
    margin-bottom: 10px;
    color: #02A6E0;
}

.visitor-card span {
    margin-top: 10px;
    display: inline-block;
    font-weight: 600;
    color: #bd0058;
}

/* ================================
Hotel Layout
================================ */

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 35px 0;
}

.hotel-card {
    background: white;
    border-left: 6px solid #02A6E0;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.hotel-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.hotel-highlight {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hotel-button {
    display: inline-block;
    background: #02A6E0;
    color: white;
    padding: 10px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

.hotel-button:hover {
    background: #0287b8;
}

.external-note {
  margin-top: 30px;
  font-size: 0.85rem;
  color: #777;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}