.guide-hero {
    height: 60vh;
    min-height: 350px;
    background: linear-gradient(rgba(241, 219, 144, 0.55), rgba(248, 190, 190, 0.55));
    color: #000;
    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: #3a2901;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero{
        margin-top: 20% !important;
    }
    .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;
    }
}


.contact-section {
    background: #f6f5f3;
}

/* Contact Box */
.info-box {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: #fff3e0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff8800;
}

/* Travel Advisory */
.travel-advisory {
    background: #111;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    font-size: 14px;
}

/* Reservation Card */
.reservation-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* Button */
.btn-custom {
    background: #e67e00;
    text-decoration: none;
    color: #fff;
    border-radius: 10px;
    padding: 10px;
    font-weight: 500;
}

.btn-custom:hover {
    background: #cf6f00;
    color: #fff;
}

/* Map Section */
.map-section {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.map-section iframe {
    width: 100%;
    height: 350px;
    object-fit: cover;
}



/* Responsive */
@media (max-width: 991px) {
    .reservation-card {
        margin-top: 40px;
    }
}