/* =============================================
   YASHODHAN TRAVELS - Custom CSS
   (Keep original theme CSS in main.css,
    these are extra styles for custom PHP)
============================================= */

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #25d366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,.3);
    z-index: 9999;
    text-decoration: none;
    transition: all .3s;
}
.whatsapp-float:hover { background: #20b858; color: #fff; transform: scale(1.1); }

/* Scroll Top Button */
#scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #3498db;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
#scroll-top.visible { display: flex; }

/* Tour Tabs */
.tour-tabs { list-style: none; padding: 0; margin: 0 0 20px; border-bottom: 2px solid #ddd; }
.tour-tabs li {
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all .2s;
}
.tour-tabs li.active { color: #3498db; border-bottom-color: #3498db; }
.tour-tabs li:hover { color: #3498db; }

/* Tab Content */
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Tour Quick Info Bar */
.tour-quick-info {
    background: #f5f7fa;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.tour-quick-info .info-item { display: flex; align-items: center; gap: 8px; color: #555; }
.tour-quick-info .info-item i { color: #3498db; font-size: 18px; }

/* Tour Price Big */
.tour-price-big { font-size: 32px; color: #e74c3c; font-weight: bold; display: block; }
.tour-price-wrap { background: #fff8f0; border-left: 4px solid #e67e22; padding: 15px; margin-bottom: 20px; border-radius: 0 8px 8px 0; }
.per-person { font-size: 12px; color: #888; }

/* Booking Widget */
.booking-widget { background: #fff; padding: 25px; border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,.12); }

/* Itinerary */
.itinerary-list { position: relative; }
.itinerary-item { display: flex; gap: 20px; margin-bottom: 25px; }
.day-badge {
    background: #3498db;
    color: #fff;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    flex-shrink: 0;
}
.day-content { flex: 1; background: #f9f9f9; padding: 15px; border-radius: 8px; border-left: 3px solid #3498db; }
.day-content h4 { color: #2c3e50; margin-top: 0; }

/* Includes / Excludes */
.inc-exc-list { list-style: none; padding: 0; }
.inc-exc-list li { padding: 5px 0; }

/* Gallery Grid */
.gallery-grid .gallery-item { display: block; overflow: hidden; border-radius: 6px; margin-bottom: 15px; }
.gallery-grid img { transition: transform .3s; }
.gallery-grid .gallery-item:hover img { transform: scale(1.05); }

/* Reviews */
.review-item { background: #f9f9f9; border-radius: 8px; padding: 15px; margin-bottom: 15px; border-left: 3px solid #f5a623; }

/* Similar Tours */
.similar-tours-section { margin-top: 40px; padding-top: 30px; border-top: 1px solid #eee; }

/* Destinations Grid */
.destination-item { position: relative; overflow: hidden; border-radius: 8px; margin-bottom: 20px; }
.destination-item img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s; }
.destination-item:hover img { transform: scale(1.1); }
.destination-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.7));
    padding: 20px 15px 15px;
    color: #fff;
}
.destination-overlay h3 { margin: 0; font-size: 16px; }
.destination-overlay span { font-size: 12px; opacity: 0.8; }

/* Testimonial */
.testimonial-item {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    margin-bottom: 20px;
}
.testimonial-photo { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; margin-bottom: 15px; }
.testimonial-avatar {
    width: 70px; height: 70px; border-radius: 50%;
    background: #e8f4fd; margin: 0 auto 15px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: #3498db;
}

/* Stars */
.stars .fa { font-size: 14px; }

/* Offer Badge */
.offer-badge {
    position: absolute;
    top: 10px; right: 10px;
    background: #e74c3c;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

/* Section Headings */
.section-heading { text-align: center; margin-bottom: 40px; }
.section-heading h2 { color: #2c3e50; position: relative; display: inline-block; }
.section-heading h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #3498db;
    margin: 10px auto 0;
}
.section-heading p { color: #777; margin-top: 10px; }

/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)), #2c3e50;
    background-size: cover;
    background-position: center;
    padding: 80px 0 40px;
    color: #fff;
}
.page-banner h1 { color: #fff; margin-bottom: 15px; }
.page-banner .breadcrumb { background: transparent; padding: 0; }
.page-banner .breadcrumb > li + li:before { color: rgba(255,255,255,.6); }
.page-banner .breadcrumb li a { color: rgba(255,255,255,.8); }
.page-banner .breadcrumb li.active { color: #fff; }

/* View All Button */
.view-all-btn { margin-top: 20px; }

/* WhatsApp Button */
.btn-whatsapp { background: #25d366; color: #fff; margin-top: 10px; }
.btn-whatsapp:hover { background: #20b858; color: #fff; }

/* Offices List */
.offices-list { list-style: none; padding: 0; }
.offices-list li { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 20px; }
.offices-list li .fa { color: #3498db; margin-top: 5px; }
.offices-list li strong { display: block; margin-bottom: 3px; color: #2c3e50; }

/* No posts */
.no-posts { text-align: center; padding: 60px 20px; color: #999; }
.no-posts h3 { color: #666; }

/* Top Bar */
.top-bar { background: #2c3e50; padding: 8px 0; font-size: 13px; }
.top-bar .top-bar-info { color: rgba(255,255,255,.8); margin-right: 15px; }
.top-bar .top-bar-info a { color: rgba(255,255,255,.8); text-decoration: none; }
.top-bar .top-bar-social a { color: rgba(255,255,255,.7); margin-left: 8px; font-size: 15px; }
.top-bar .top-bar-social a:hover { color: #fff; }

/* Mobile Menu */
.menu-toggle { display: none; background: none; border: 1px solid #ddd; padding: 8px 12px; border-radius: 4px; cursor: pointer; float: right; margin-top: 5px; }
@media (max-width: 991px) {
    .menu-toggle { display: block; }
    .main-menu-nav { display: none; }
    .main-menu-nav.open { display: block; }
    .main-menu { flex-direction: column; }
    .sub-menu { position: static !important; display: block !important; box-shadow: none !important; }
}

/* Search Form */
.tour-search-form .form-group { margin-bottom: 0; }
.tour-search-form label { color: #666; font-size: 12px; margin-bottom: 4px; }
