

.dl-hero-thumbs img{
    border: 3px solid white;
}
.dl-hero {
    background: #f4f8fb;
    border-bottom: 4px solid #0466c8;
    padding: 120px 0 32px 0;
}
.dl-hero-gallery {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.dl-hero-main-img {
    border-radius: 1.25rem;
    max-height: 260px;
    object-fit: cover;
    width: 100%;
    margin-bottom: 0.5rem;
    background: #fff;
    border: 4px solid white;
}
.dl-hero-thumbs {
    display: flex;
    gap: 0.5rem;
}
.dl-hero-thumb {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 4px solid white;
    cursor: pointer;
    transition: border 0.18s;
}
.dl-hero-thumb.active {
    border: 3px solid #0466c8;
}
.dl-title {
    color: white;
    font-weight: 800;
    font-size: 2.2rem;
}
.dl-scroll-tabs {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 2px 12px rgba(4,102,200,0.06);
    margin-top: -32px;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.dl-scroll-tabs a {
    color: #0466c8;
    font-weight: 600;
    background: #f4f8fb;
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
    margin: 0.5rem 0;
    display: inline-block;
}
.dl-scroll-tabs a.active, .dl-scroll-tabs a:focus, .dl-scroll-tabs a:hover {
    background: #0466c8;
    color: #fff;
}
.dl-section-title {
    color: #0466c8;
    font-weight: 700;
    font-size: 1.3rem;
}
.dl-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(4,102,200,0.06);
    border: 1px solid #e6eaf0;
    margin-bottom: 1.5rem;
}
.dl-card .card-img-top {
    border-radius: 1rem 1rem 0 0;
    height: 140px;
    object-fit: cover;
}
.dl-booking {
    background: linear-gradient(90deg, #0466c8 0%, #2196f3 100%);
    color: #fff;
    border-radius: 1.25rem;
    padding: 1rem;
    margin-top: 2rem;
    text-align: center;
}
.dl-booking .btn {
    background: #fff;
    color: #0466c8;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 2px 12px rgba(4,102,200,0.10);
    border: none;
    transition: background 0.18s, color 0.18s;
}
.dl-booking .btn:hover {
    background: #0466c8;
    color: #fff;
}
html {
  scroll-behavior: smooth;
}
@media (max-width: 575.98px) {
  .dl-scroll-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    padding-bottom: 0.5rem;
    gap: 0.5rem;
  }
  .dl-scroll-tabs a {
    flex: 0 0 auto;
    font-size: 0.98rem;
    padding-left: 1rem;
    padding-right: 1rem;
    white-space: nowrap;
  }
}