.guide-hero {
    height: 70vh;
    min-height: 350px;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee') center/cover no-repeat;
    color: #fff;
    position: relative;
}

/* Main Heading */
.hero-title {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Subtitle */
.hero-subtitle {
    font-size: 13px;
    letter-spacing: 3px;
    color: #ffb400;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .guide-hero {
        height: 50vh;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }
}



.destination-section {
    background: #f7f6f4;
    margin-top: 5%;
}

.destination-image img {
    border-radius: 20px;
    max-width: 420px;
}

.travel-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: #fff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.travel-badge i {
    color: #ff7a00;
    margin-right: 5px;
}

.info-box {
    margin-top: 20px;
    padding: 15px 18px;
    background: #fff8e6;
    border-radius: 12px;
    font-size: 14px;
    display: flex;
    gap: 10px;
    border: 1px solid #ffe3b3;
}

.info-box i {
    color: #ff9900;
}

@media (max-width: 991px) {
    .destination-image img {
        max-width: 100%;
    }

    .travel-badge {
        right: 50%;
        transform: translateX(50%);
    }
}