/* =============================================
   DESTINATIONS PAGE STYLES
   ============================================= */

/* ---------- Hero Section ---------- */
.dest-hero {
    position: relative;
    height: 320px;
    background: url('../gallery/Dalaman-Transfer-Service-Destinations-Locations.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dest-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(70,163,163,0.45) 100%);
}

.dest-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.dest-hero-content h1 {
    font-size: 2.6rem;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    margin-bottom: 0.5rem;
}

.dest-hero-content p {
    font-size: 1.1rem;
    opacity: 0.92;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ---------- Region Section ---------- */
.dest-region-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a3a4a;
    border-left: 5px solid #46a3a3;
    padding-left: 14px;
    margin-bottom: 1.2rem;
}

.dest-divider {
    border-color: #e0eaed;
    margin-top: 2.5rem;
}

/* ---------- Destination Card ---------- */
.dest-card-link {
    text-decoration: none;
    display: block;
}

.dest-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    background: #fff;
    height: 100%;
}

.dest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(70,163,163,0.22);
}

.dest-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 170px;
}

.dest-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.dest-card:hover .dest-card-img {
    transform: scale(1.07);
}

.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(70,163,163,0.78);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.dest-card:hover .dest-card-overlay {
    opacity: 1;
}

.dest-card-body {
    padding: 14px 16px 16px;
}

.dest-card-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a3a4a;
    margin-bottom: 6px;
}

.dest-card-desc {
    font-size: 0.83rem;
    color: #5a7a8a;
    line-height: 1.45;
    margin-bottom: 8px;
}

.dest-card-count {
    font-size: 0.8rem;
    color: #46a3a3;
    font-weight: 600;
}

/* ---------- Hotel Items ---------- */
.hotel-item {
    display: block;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 0.84rem;
    color: #2a4a5a;
    background: #f0f7f7;
    border: 1px solid #d4ecec;
    text-decoration: none;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hotel-item:hover {
    background: #46a3a3;
    color: #fff;
    border-color: #46a3a3;
}

.hotel-item i {
    color: #46a3a3;
    font-size: 0.75rem;
    transition: color 0.18s;
}

.hotel-item:hover i {
    color: rgba(255,255,255,0.85);
}

/* ---------- CTA / Reservation Section ---------- */
.dest-cta-section {
    background: linear-gradient(135deg, #1a3a4a 0%, #46a3a3 100%);
    padding: 60px 0;
}

.dest-search-box {
    background: rgba(255,255,255,0.97);
    border-radius: 16px;
    padding: 28px 28px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.dest-search-box .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a3a4a;
    margin-bottom: 4px;
}

.text-white-75 {
    color: rgba(255,255,255,0.82);
    font-size: 1rem;
    line-height: 1.6;
}

/* =============================================
   DESTINATION DETAIL PAGE
   ============================================= */

.detail-hero {
    position: relative;
    height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 60%, transparent 100%);
}

.detail-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-bottom: 36px;
}

.detail-hero-content h1 {
    font-size: 2.4rem;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    margin-bottom: 12px;
}

.detail-breadcrumb .breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 10px;
}

.detail-breadcrumb .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.88rem;
}

.detail-breadcrumb .breadcrumb-item.active {
    color: #fff;
    font-size: 0.88rem;
}

.detail-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
}

.detail-hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(70,163,163,0.9);
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.detail-main-img {
    max-height: 380px;
    object-fit: cover;
}

.detail-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a3a4a;
    border-bottom: 2px solid #46a3a3;
    padding-bottom: 8px;
    margin-bottom: 14px;
}

.detail-desc {
    color: #3a5a6a;
    line-height: 1.75;
    font-size: 0.97rem;
    margin-bottom: 1rem;
}

/* ---------- Feature Pills ---------- */
.feature-pill {
    background: linear-gradient(135deg, #e8f6f6, #d0eeee);
    color: #1a3a4a;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #b0dede;
    display: flex;
    align-items: center;
}

.feature-pill i {
    color: #46a3a3;
}

/* ---------- Hotel Pills (detail) ---------- */
.hotel-pill {
    background: #f8fafa;
    border: 1px solid #daeaea;
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 0.85rem;
    color: #2a4a5a;
    display: flex;
    align-items: center;
}

.hotel-pill i {
    color: #46a3a3;
    font-size: 0.78rem;
}

/* ---------- Booking Sidebar ---------- */
.booking-sidebar {
    background: #fff;
    border-radius: 16px;
    padding: 26px 22px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.12);
    border: 1px solid #e0eeee;
    position: sticky;
    top: 80px;
}

.booking-sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a3a4a;
    margin-bottom: 4px;
}

.booking-sidebar-sub {
    font-size: 0.82rem;
    color: #5a7a8a;
    margin-bottom: 18px;
}

.booking-sidebar .form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a3a4a;
    margin-bottom: 4px;
}

.booking-sidebar .form-select,
.booking-sidebar .form-control {
    font-size: 0.88rem;
    border-color: #d0e4e8;
}

/* ---------- Transfer Info ---------- */
.transfer-info {
    background: #f0f8f8;
    border-radius: 10px;
    padding: 14px 16px;
    border: 1px solid #d0e8e8;
}

.transfer-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #2a4a5a;
    padding: 4px 0;
}

.transfer-info-item i {
    color: #46a3a3;
    width: 18px;
    text-align: center;
}

/* ---------- Btn ---------- */
.btn-hoppa {
    background: linear-gradient(135deg, #46a3a3, #2a7a7a);
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-weight: 700;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(70,163,163,0.35);
}

.btn-hoppa:hover {
    background: linear-gradient(135deg, #3a9090, #1a6a6a);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(70,163,163,0.45);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .dest-hero-content h1 {
        font-size: 1.8rem;
    }

    .detail-hero {
        height: 300px;
    }

    .detail-hero-content h1 {
        font-size: 1.6rem;
    }

    .booking-sidebar {
        position: static;
        margin-top: 2rem;
    }

    .dest-search-box {
        padding: 18px 16px;
    }
}

@media (max-width: 480px) {
    .dest-hero {
        height: 240px;
    }

    .dest-hero-content h1 {
        font-size: 1.5rem;
    }

    .dest-region-title {
        font-size: 1.3rem;
    }
}

/* ---- Group Labels (Bölgeler / Oteller başlığı) ---- */
.dest-group-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #46a3a3;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 6px;
    padding: 4px 0;
    border-bottom: 1px dashed #c8e8e8;
}

/* ---- Area items (Merkez, Sahil vs.) farklı renk ---- */
.hotel-item--area {
    background: #e8f6f6;
    border-color: #b0dede;
    color: #1a5a5a;
    font-weight: 600;
}

.hotel-item--area i {
    color: #2a7a7a;
}

.hotel-item--area:hover {
    background: #2a7a7a;
    color: #fff;
    border-color: #2a7a7a;
}

.hotel-item--area:hover i {
    color: rgba(255,255,255,0.85);
}
