/* =============================================
   GoEpicIndia - Main Stylesheet
   Colors: Orange #FF5722, Blue #1565C0, Dark #1C2B4A
   ============================================= */

:root {
    --orange: #FF5722;
    --orange-dark: #E64A19;
    --blue: #1565C0;
    --blue-dark: #0D47A1;
    --dark: #1C2B4A;
    --text: #444;
    --light-bg: #F8F9FA;
    --border: #E0E0E0;
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--text); background: #fff; font-size: 15px; line-height: 1.7; }

/* ---- Typography ---- */
h1, h2, h3 { font-family: var(--font-heading); color: var(--dark); font-weight: 700; }
h4, h5, h6 { font-family: var(--font-main); color: var(--dark); font-weight: 600; }
a { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange); }

/* ---- Section Labels ---- */
.section-label { font-size: 13px; font-weight: 600; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 8px; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1.2; }
.section-title span { color: var(--orange); }
.section-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--orange), var(--blue)); border-radius: 4px; margin: 12px 0 20px; }

/* ---- Topbar ---- */
.topbar { background: var(--dark); color: #ccc; font-size: 13px; }
.topbar a { color: #ccc; } .topbar a:hover { color: var(--orange); }

/* ---- Navbar ---- */
.main-nav { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,.08); padding: 0; }
.main-nav .navbar-brand { padding: 8px 0; }
.main-nav .nav-link { font-weight: 500; color: var(--dark) !important; padding: 22px 12px !important; font-size: 14px; transition: color .2s; }
.main-nav .nav-link:hover, .main-nav .nav-link.active { color: var(--orange) !important; }
.main-nav .dropdown-menu { border: none; box-shadow: 0 8px 30px rgba(0,0,0,.12); border-top: 3px solid var(--orange); border-radius: 0 0 8px 8px; }
.main-nav .dropdown-item { font-size: 14px; padding: 10px 20px; color: var(--dark); }
.main-nav .dropdown-item:hover { background: #fff8f5; color: var(--orange); }

/* ---- Buttons ---- */
.btn-orange { background: var(--orange); color: #fff; border: none; border-radius: 6px; font-weight: 600; padding: 12px 28px; transition: all .2s; }
.btn-orange:hover { background: var(--orange-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,87,34,.3); }
.btn-blue { background: var(--blue); color: #fff; border: none; border-radius: 6px; font-weight: 600; padding: 12px 28px; transition: all .2s; }
.btn-blue:hover { background: var(--blue-dark); color: #fff; transform: translateY(-1px); }
.btn-whatsapp { background: #25D366; color: #fff; border: none; border-radius: 6px; font-weight: 600; transition: all .2s; }
.btn-whatsapp:hover { background: #128C7E; color: #fff; }
.btn-outline-orange { border: 2px solid var(--orange); color: var(--orange); background: transparent; border-radius: 6px; font-weight: 600; padding: 10px 26px; transition: all .2s; }
.btn-outline-orange:hover { background: var(--orange); color: #fff; }

/* ---- Hero ---- */
.hero-section { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(28,43,74,.8) 0%, rgba(21,101,192,.4) 100%); }
.hero-content { position: relative; z-index: 2; }
.hero-badge { background: rgba(255,87,34,.15); border: 1px solid rgba(255,87,34,.4); color: #FFB399; padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 500; display: inline-block; margin-bottom: 16px; }
.hero-title { font-size: clamp(2rem, 5vw, 3.8rem); color: #fff; line-height: 1.15; margin-bottom: 18px; }
.hero-title span { color: var(--orange); }
.hero-subtitle { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 32px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 36px; }
.hero-stat { text-align: center; color: #fff; }
.hero-stat .num { font-size: 2rem; font-weight: 800; color: var(--orange); display: block; line-height: 1; }
.hero-stat .lbl { font-size: 12px; opacity: .8; margin-top: 4px; }

/* Hero Search Box */
.hero-search { background: #fff; border-radius: 12px; padding: 24px 28px; box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.hero-search h4 { color: var(--dark); font-size: 1.1rem; margin-bottom: 18px; }
.hero-search .form-label { font-size: 12px; font-weight: 600; color: var(--dark); text-transform: uppercase; letter-spacing: .5px; }
.hero-search .form-control, .hero-search .form-select { font-size: 14px; border-color: var(--border); border-radius: 8px; padding: 10px 14px; }

/* ---- Cards ---- */
.tour-card { border-radius: 14px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.08); transition: all .3s; border: none; background: #fff; }
.tour-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.14); }
.tour-card .card-img-wrap { position: relative; overflow: hidden; height: 220px; }
.tour-card .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.tour-card:hover .card-img-wrap img { transform: scale(1.06); }
.tour-card .badge-cat { position: absolute; top: 12px; left: 12px; background: var(--orange); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 50px; }
.tour-card .badge-featured { position: absolute; top: 12px; right: 12px; background: #FFD600; color: #333; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 50px; }
.tour-card .card-body { padding: 20px; }
.tour-card .card-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.3; }
.tour-card .tour-meta { display: flex; gap: 14px; font-size: 12px; color: #888; margin-bottom: 12px; flex-wrap: wrap; }
.tour-card .tour-meta span { display: flex; align-items: center; gap: 4px; }
.tour-card .tour-meta i { color: var(--orange); }
.tour-card .price-block { display: flex; align-items: baseline; gap: 8px; margin-top: 12px; }
.tour-card .price { font-size: 1.3rem; font-weight: 800; color: var(--orange); }
.tour-card .price-original { font-size: .85rem; color: #aaa; text-decoration: line-through; }
.tour-card .price-label { font-size: 11px; color: #888; }

/* ---- Why Choose Us ---- */
.feature-box { text-align: center; padding: 32px 24px; border-radius: 14px; background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,.06); transition: all .3s; }
.feature-box:hover { box-shadow: 0 12px 40px rgba(0,0,0,.12); transform: translateY(-4px); }
.feature-icon { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, #FFF3F0, #FFE8E3); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.8rem; color: var(--orange); }

/* ---- Testimonials ---- */
.review-card { background: #fff; border-radius: 14px; padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,.07); position: relative; }
.review-card::before { content: '\201C'; font-family: Georgia, serif; font-size: 80px; color: var(--orange); opacity: .15; position: absolute; top: 0; left: 16px; line-height: 1; }
.reviewer-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 3px solid var(--orange); }

/* ---- Destination Cards ---- */
.dest-card { position: relative; border-radius: 14px; overflow: hidden; height: 260px; cursor: pointer; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.dest-card:hover img { transform: scale(1.08); }
.dest-card .dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%); }
.dest-card .dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; color: #fff; }
.dest-card .dest-name { font-size: 1.2rem; font-weight: 700; font-family: var(--font-heading); }
.dest-card .dest-count { font-size: 12px; opacity: .85; }

/* ---- Blog ---- */
.blog-card { border-radius: 14px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.07); transition: all .3s; background: #fff; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.blog-card .blog-img { height: 200px; object-fit: cover; width: 100%; }
.blog-card .blog-cat { font-size: 11px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; }
.blog-card .blog-title { font-size: .95rem; font-weight: 700; color: var(--dark); line-height: 1.4; }
.blog-card .blog-meta { font-size: 12px; color: #999; }

/* ---- Rental Cards ---- */
.rental-card { border-radius: 14px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.08); transition: all .3s; }
.rental-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.14); }
.rental-card .rental-img { height: 200px; object-fit: cover; width: 100%; }
.rental-features { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; }
.rental-features span { font-size: 12px; background: #f5f5f5; padding: 3px 10px; border-radius: 50px; color: #666; }

/* ---- CTA Section ---- */
.cta-section { background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 100%); padding: 80px 0; }
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,.8); }

/* ---- Forms ---- */
.form-control, .form-select { border-radius: 8px; border-color: #ddd; font-size: 14px; padding: 12px 16px; }
.form-control:focus, .form-select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,87,34,.15); outline: none; }
.form-label { font-weight: 500; font-size: 14px; color: var(--dark); margin-bottom: 6px; }

/* ---- Footer ---- */
.site-footer { background: var(--dark); }
.footer-top { padding: 60px 0 40px; }
.footer-heading { color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--orange); }
.footer-text { color: #9aafc4; font-size: 13px; line-height: 1.8; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #9aafc4; font-size: 13px; transition: all .2s; }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { color: #9aafc4; font-size: 13px; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; }
.footer-contact i { color: var(--orange); margin-top: 3px; min-width: 14px; }
.footer-contact a { color: #9aafc4; } .footer-contact a:hover { color: var(--orange); }
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); color: #9aafc4; margin-right: 6px; font-size: 14px; transition: all .2s; }
.social-links a:hover { background: var(--orange); color: #fff; }
.footer-bottom { background: rgba(0,0,0,.2); padding: 16px 0; font-size: 13px; color: #6d8aad; }
.footer-bottom a { color: #6d8aad; } .footer-bottom a:hover { color: var(--orange); }

/* ---- WhatsApp Float ---- */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: #fff; box-shadow: 0 6px 20px rgba(37,211,102,.5); z-index: 999; transition: all .3s; }
.whatsapp-float:hover { background: #128C7E; color: #fff; transform: scale(1.1); }
.wa-tooltip { position: absolute; right: 70px; background: var(--dark); color: #fff; padding: 6px 12px; border-radius: 6px; font-size: 12px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .3s; }
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ---- Back to Top ---- */
.back-to-top { position: fixed; bottom: 90px; right: 28px; width: 40px; height: 40px; background: var(--blue); color: #fff; border: none; border-radius: 8px; font-size: 14px; cursor: pointer; opacity: 0; transition: all .3s; z-index: 998; }
.back-to-top.show { opacity: 1; }
.back-to-top:hover { background: var(--orange); }

/* ---- Page Hero ---- */
.page-hero { background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 100%); padding: 60px 0; }
.page-hero h1 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a { color: rgba(255,255,255,.7); font-size: 13px; }
.page-hero .breadcrumb-item.active { color: var(--orange); }
.page-hero .breadcrumb-divider { color: rgba(255,255,255,.4); }

/* ---- Sticky Mobile CTA ---- */
@media (max-width: 767px) {
    .mobile-sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 997; display: flex; }
    .mobile-sticky-cta a { flex: 1; text-align: center; padding: 14px 8px; font-size: 13px; font-weight: 700; color: #fff; display: flex; align-items: center; justify-content: center; gap: 6px; }
    .mobile-sticky-cta .call-btn { background: var(--blue); }
    .mobile-sticky-cta .wa-btn { background: #25D366; }
    body { padding-bottom: 56px; }
}
@media (min-width: 768px) { .mobile-sticky-cta { display: none; } }

/* ---- Rating Stars ---- */
.stars .fas.fa-star { color: #FFB400; }
.stars .far.fa-star { color: #ddd; }
.rating-badge { background: #FFB400; color: #fff; font-weight: 700; border-radius: 6px; padding: 2px 8px; font-size: 13px; }

/* ---- Tour Detail ---- */
.tour-gallery-main { height: 420px; object-fit: cover; border-radius: 12px; width: 100%; }
.tour-gallery-thumb { height: 90px; object-fit: cover; border-radius: 8px; cursor: pointer; width: 100%; opacity: .8; transition: opacity .2s; border: 2px solid transparent; }
.tour-gallery-thumb.active, .tour-gallery-thumb:hover { opacity: 1; border-color: var(--orange); }
.info-box { background: var(--light-bg); border-radius: 12px; padding: 24px; }
.highlight-item { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.highlight-item:last-child { border: none; }
.highlight-item i { color: var(--orange); margin-top: 3px; }
.itinerary-day { border-left: 3px solid var(--orange); padding-left: 20px; margin-bottom: 24px; position: relative; }
.itinerary-day::before { content: attr(data-day); position: absolute; left: -14px; top: 0; background: var(--orange); color: #fff; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }
.sticky-book-card { position: sticky; top: 80px; }

/* ---- Admin ---- */
.admin-sidebar { width: 260px; min-height: 100vh; background: var(--dark); position: fixed; left: 0; top: 0; z-index: 100; overflow-y: auto; transition: transform .3s; }
.admin-content { margin-left: 260px; min-height: 100vh; background: #F4F6FB; }
.admin-nav-link { display: flex; align-items: center; gap: 10px; padding: 12px 20px; color: #9aafc4; font-size: 13.5px; transition: all .2s; border-radius: 0; }
.admin-nav-link:hover, .admin-nav-link.active { background: rgba(255,87,34,.12); color: var(--orange); border-right: 3px solid var(--orange); }
.admin-nav-link i { width: 18px; }
.stat-card { border-radius: 12px; padding: 24px; color: #fff; position: relative; overflow: hidden; }
.stat-card .stat-icon { font-size: 3rem; opacity: .2; position: absolute; right: 16px; top: 12px; }
.stat-card .stat-num { font-size: 2rem; font-weight: 800; }
.stat-card .stat-label { font-size: 13px; opacity: .85; }

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .admin-sidebar { transform: translateX(-100%); }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-content { margin-left: 0; }
    .main-nav .nav-link { padding: 12px 0 !important; }
    .hero-section { min-height: 60vh; }
}
@media (max-width: 576px) {
    .tour-card .card-img-wrap { height: 180px; }
    .hero-stats { gap: 20px; }
    .hero-stat .num { font-size: 1.5rem; }
}
