/* ===================================================
   SILKROAD TOUR INDIA — Website Stylesheet
   Colors: Navy #0B1F4B | Crimson #C0392B | Gold #D4AF37
   =================================================== */

:root {
  --navy:    #0B1F4B;
  --crimson: #C0392B;
  --gold:    #D4AF37;
  --light-gold: #F5E6A3;
  --dark:    #0d0d1a;
  --text:    #2d2d2d;
  --muted:   #6c757d;
  --light-bg:#f8f9ff;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text); overflow-x: hidden; }

/* ---- COPY PROTECTION ---- */
body, body * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
/* Allow selection inside form inputs only */
input, textarea, select { -webkit-user-select: text; -moz-user-select: text; -ms-user-select: text; user-select: text; }

@media print {
  body::before {
    content: "© Silkroad Tour India Pvt Ltd — All rights reserved. Unauthorised reproduction prohibited.";
    display: block;
    text-align: center;
    font-size: 1rem;
    padding: 2rem;
    border: 2px solid #C0392B;
    color: #C0392B;
  }
  body > *:not(::before) { display: none !important; }
}
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; }
.text-accent { color: var(--gold); }
.text-crimson { color: var(--crimson); }

/* ---- NAVBAR ---- */
#mainNav {
  background: rgba(11,31,75,0.97);
  backdrop-filter: blur(10px);
  padding: .7rem 0;
  transition: box-shadow .3s;
  border-bottom: 2px solid rgba(212,175,55,.25);
}
#mainNav.scrolled { box-shadow: 0 4px 25px rgba(0,0,0,.35); }
#mainNav .nav-link { color: rgba(255,255,255,.85) !important; font-weight: 500; font-size: .9rem; letter-spacing: .3px; padding: .5rem .9rem !important; border-radius: 6px; transition: all .2s; }
#mainNav .nav-link:hover, #mainNav .nav-link.active { color: var(--gold) !important; background: rgba(212,175,55,.1); }
.btn-enquiry { background: linear-gradient(135deg, var(--crimson), #e74c3c); color: #fff !important; padding: .5rem 1.4rem !important; border-radius: 30px; font-weight: 600; font-size: .88rem; transition: all .25s; box-shadow: 0 4px 15px rgba(192,57,43,.4); }
.btn-enquiry:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(192,57,43,.5); }
.brand-logo-text { line-height: 1; }
.brand-silk  { font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 1.5rem; color: #fff; letter-spacing: 2px; }
.brand-road  { font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 1.5rem; color: var(--gold); letter-spacing: 2px; }
.brand-sub-text { font-size: .55rem; color: rgba(255,255,255,.6); letter-spacing: 1.5px; font-weight: 400; margin-top: 1px; }
/* Navbar logo — fills roughly half the header height */
#mainNav { padding: .25rem 0; }

.navbar-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 5px 14px;
  box-shadow: 0 3px 16px rgba(0,0,0,.25);
  transition: transform .25s, box-shadow .25s;
  display: block;
}
.navbar-brand:hover .navbar-logo {
  transform: scale(1.02);
  box-shadow: 0 6px 22px rgba(0,0,0,.35);
}
/* Inline SVG logo — no background, no padding */
.navbar-logo-svg {
  height: 90px;
  width: auto;
  display: block;
  transition: transform .25s;
}
.navbar-brand:hover .navbar-logo-svg { transform: scale(1.02); }
/* Main illustrated logo — transparent PNG, drop-shadow for visibility on dark navbar */
.navbar-logo-main {
  height: 80px;
  width: auto;
  display: block;
  transition: transform .25s, filter .25s;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}
.navbar-brand:hover .navbar-logo-main {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.7));
}
@media (max-width: 991px) {
  #mainNav { padding: .2rem 0; }
  .navbar-logo { height: 72px; }
  .navbar-logo-svg { height: 72px; }
  .navbar-logo-main { height: 64px; }
}
@media (max-width: 575px) {
  .navbar-logo { height: 56px; padding: 4px 10px; }
  .navbar-logo-svg { height: 56px; }
  .navbar-logo-main { height: 50px; }
}

/* ---- HERO SLIDER ---- */
.hero-section { position: relative; overflow: hidden; }
.hero-slide {
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,31,75,.85) 0%, rgba(11,31,75,.5) 50%, rgba(0,0,0,.3) 100%);
}
/* Video banner */
.hero-slide--video { background: #000; }
.hero-slide--video::before { display: none; } /* overlay handled by .hero-slide-overlay */
.hero-video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,31,75,.78) 0%, rgba(11,31,75,.45) 55%, rgba(0,0,0,.25) 100%);
  z-index: 1;
}
.hero-slide--video .container { position: relative; z-index: 2; }
.hero-content { position: relative; z-index: 2; }
.hero-tagline { font-size: .85rem; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; font-weight: 600; margin-bottom: .75rem; }
.hero-title { font-size: clamp(2.2rem, 5vw, 4rem); color: #fff; font-weight: 700; line-height: 1.15; margin-bottom: 1rem; }
.hero-title span { color: var(--gold); }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 2rem; font-family: 'Poppins', sans-serif; font-weight: 300; }
.hero-badge { display: inline-flex; align-items: center; gap: .6rem; background: rgba(212,175,55,.15); border: 1px solid rgba(212,175,55,.4); border-radius: 30px; padding: .6rem 1.6rem; color: var(--gold); font-size: 2.4rem; font-weight: 600; margin-bottom: 1rem; }
.btn-hero-primary { background: var(--crimson); color: #fff; padding: .85rem 2.2rem; border-radius: 30px; font-weight: 700; border: none; font-size: 1rem; transition: all .25s; box-shadow: 0 8px 25px rgba(192,57,43,.5); text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; }
.btn-hero-primary:hover { background: #a93226; transform: translateY(-2px); color: #fff; }
.btn-hero-outline { background: transparent; color: #fff; padding: .85rem 2.2rem; border-radius: 30px; border: 2px solid rgba(255,255,255,.6); font-weight: 600; font-size: 1rem; transition: all .25s; text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; }
.btn-hero-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ---- SECTION STYLES ---- */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.section-tag { display: inline-block; background: rgba(212,175,55,.15); border: 1px solid rgba(212,175,55,.4); border-radius: 20px; padding: .3rem 1rem; font-size: .78rem; font-weight: 700; color: #b8860b; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: .75rem; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--navy); font-weight: 700; line-height: 1.2; }
.section-title span { color: var(--crimson); }
.section-divider { width: 60px; height: 4px; background: linear-gradient(90deg, var(--crimson), var(--gold)); border-radius: 2px; margin: 1rem auto; }
.section-divider.left { margin-left: 0; }
.section-subtitle { color: var(--muted); font-size: 1rem; max-width: 600px; }

/* ---- TOUR CARDS ---- */
.tour-card { border: 0; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.08); transition: all .3s; background: #fff; height: 100%; }
.tour-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,.14); }
.tour-card-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.tour-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.tour-card:hover .tour-card-img img { transform: scale(1.07); }
.tour-card-badge { position: absolute; top: 12px; left: 12px; background: var(--crimson); color: #fff; padding: .25rem .75rem; border-radius: 20px; font-size: .75rem; font-weight: 700; }
.tour-card-featured { position: absolute; top: 12px; right: 12px; background: var(--gold); color: var(--navy); padding: .25rem .75rem; border-radius: 20px; font-size: .73rem; font-weight: 700; }
.tour-card-body { padding: 1.25rem; }
.tour-card-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; line-height: 1.3; }
.tour-card-subtitle { font-size: .82rem; color: var(--muted); margin-bottom: .75rem; }
.tour-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: .75rem; }
.tour-meta-item { font-size: .8rem; color: var(--muted); display: flex; align-items: center; gap: .3rem; }
.tour-meta-item i { color: var(--crimson); }
.tour-price { font-size: 1.25rem; font-weight: 800; color: var(--crimson); }
.tour-price small { font-size: .7rem; font-weight: 400; color: var(--muted); display: block; line-height: 1; }
.btn-tour { background: var(--navy); color: #fff; padding: .55rem 1.4rem; border-radius: 8px; font-weight: 600; font-size: .85rem; border: none; transition: all .2s; text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; }
.btn-tour:hover { background: var(--crimson); color: #fff; }

/* ---- WHY CHOOSE US ---- */
.why-section { background: linear-gradient(135deg, var(--navy) 0%, #1a3a7c 100%); }
.why-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 2rem 1.5rem; text-align: center; transition: all .3s; height: 100%; }
.why-card:hover { background: rgba(255,255,255,.12); transform: translateY(-5px); }
.why-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--crimson), #e74c3c); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 1.8rem; color: #fff; margin-bottom: 1.25rem; box-shadow: 0 8px 25px rgba(192,57,43,.4); }
.why-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.why-text { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ---- TESTIMONIALS ---- */
.testimonial-section { background: var(--light-bg); }
.testimonial-card { background: #fff; border-radius: 16px; padding: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,.07); border: 0; height: 100%; position: relative; }
.testimonial-card::before { content: '\201C'; font-size: 5rem; line-height: 0; position: absolute; top: 2rem; right: 1.5rem; color: var(--gold); opacity: .2; font-family: Georgia, serif; }
.testimonial-stars { color: var(--gold); margin-bottom: .75rem; }
.testimonial-text { color: var(--text); font-size: .95rem; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testimonial-avatar-placeholder { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), #1a3a7c); display: inline-flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1.1rem; border: 2px solid var(--gold); }
.testimonial-name { font-weight: 700; color: var(--navy); font-size: .95rem; margin-bottom: .1rem; }
.testimonial-location { font-size: .78rem; color: var(--muted); }
.testimonial-tour { font-size: .75rem; color: var(--crimson); font-weight: 600; }

/* ---- STATS BANNER ---- */
.stats-section { background: linear-gradient(135deg, var(--crimson) 0%, #962d22 100%); }
.stat-item { text-align: center; padding: 1.5rem; }
.stat-number { font-size: 3rem; font-weight: 900; color: #fff; line-height: 1; display: block; }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-top: .3rem; }

/* ---- GALLERY ---- */
.gallery-item { overflow: hidden; border-radius: 12px; aspect-ratio: 1; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.08); }

/* ---- BLOG CARDS ---- */
.blog-card { border: 0; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.08); transition: all .3s; background: #fff; height: 100%; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 1.25rem; }
.blog-date { font-size: .78rem; color: var(--muted); margin-bottom: .5rem; }
.blog-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; line-height: 1.35; }
.blog-excerpt { font-size: .85rem; color: var(--muted); line-height: 1.6; }
.btn-read { color: var(--crimson); font-size: .85rem; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: .3rem; margin-top: .75rem; transition: gap .2s; }
.btn-read:hover { gap: .6rem; color: var(--navy); }

/* ---- TOUR DETAIL ---- */
.tour-detail-hero { min-height: 60vh; background-size: cover; background-position: center; display: flex; align-items: flex-end; position: relative; }
.tour-detail-hero::before { content:''; position:absolute; inset:0; background: linear-gradient(0deg, rgba(11,31,75,.95) 0%, rgba(11,31,75,.4) 60%, transparent 100%); }
.tour-detail-header { position: relative; z-index: 2; padding: 3rem 0 2rem; }
.itinerary-day-card { border: 0; border-radius: 12px; box-shadow: 0 2px 15px rgba(0,0,0,.07); margin-bottom: 1rem; overflow: hidden; transition: box-shadow .2s; }
.itinerary-day-card:hover { box-shadow: 0 5px 25px rgba(0,0,0,.12); }
.itinerary-day-header { background: var(--navy); color: #fff; padding: 1rem 1.5rem; cursor: pointer; display: flex; align-items: center; gap: 1rem; user-select: none; }
.day-badge { background: var(--gold); color: var(--navy); padding: .25rem .75rem; border-radius: 20px; font-size: .8rem; font-weight: 800; white-space: nowrap; }
.itinerary-day-title { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 600; margin: 0; flex: 1; }
.itinerary-day-body { padding: 1.25rem 1.5rem; background: #fff; }
.meal-badge { display: inline-flex; align-items: center; gap: .3rem; background: rgba(212,175,55,.12); border: 1px solid rgba(212,175,55,.3); border-radius: 6px; padding: .25rem .6rem; font-size: .78rem; font-weight: 600; color: #8B6914; margin-right: .4rem; }
.hotel-info { display: inline-flex; align-items: center; gap: .3rem; color: var(--navy); font-size: .85rem; font-weight: 600; }
.incl-list li, .excl-list li { padding: .35rem 0; font-size: .9rem; color: var(--text); border-bottom: 1px dashed rgba(0,0,0,.07); }
.incl-list li::before { content: '✓ '; color: #198754; font-weight: 700; }
.excl-list li::before { content: '✗ '; color: var(--crimson); font-weight: 700; }

/* ---- ENQUIRY FORM ---- */
.enquiry-sidebar { background: #fff; border: 1.5px solid #e0e7ff; border-radius: 12px; padding: 1.15rem 1.25rem; position: sticky; top: 80px; box-shadow: 0 4px 18px rgba(11,31,75,.09); }
.enquiry-sidebar .form-control, .enquiry-sidebar .form-select { background: #f8f9ff; border: 1px solid #dde3f3; color: #1f2937; border-radius: 6px; font-size: .84rem; padding: .4rem .7rem; }
.enquiry-sidebar .form-control::placeholder { color: #9ca3af; }
.enquiry-sidebar .form-control:focus, .enquiry-sidebar .form-select:focus { background: #fff; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11,31,75,.08); color: #1f2937; }
.enquiry-sidebar .form-select option { color: #1f2937; background: #fff; }
.btn-enquiry-submit { background: linear-gradient(135deg, var(--crimson), #e74c3c); color: #fff; padding: .72rem; border: none; border-radius: 8px; font-weight: 700; font-size: .9rem; width: 100%; transition: all .25s; box-shadow: 0 4px 14px rgba(192,57,43,.3); }
.btn-enquiry-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(192,57,43,.45); }

/* ---- CONTACT ---- */
.contact-info-card { background: var(--navy); border-radius: 16px; padding: 2rem; color: #fff; }
.contact-icon { width: 50px; height: 50px; background: rgba(212,175,55,.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--gold); }

/* ---- PAGE HERO ---- */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, #1a3a7c 100%); padding: 80px 0 50px; }
.page-hero-title { font-size: clamp(2rem, 4vw, 3rem); color: #fff; font-weight: 700; }
.breadcrumb-item a { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb-item.active { color: var(--gold); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ---- FOOTER ---- */
.site-footer { background: #060e1e; color: rgba(255,255,255,.7); }
.footer-top { padding: 60px 0 40px; }
.footer-heading { font-size: .85rem; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.2rem; font-family: 'Poppins', sans-serif; }
.footer-about { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { padding: .3rem 0; font-size: .85rem; }
.footer-links li a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-links li a:hover { color: var(--gold); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: .75rem; align-items: flex-start; padding: .4rem 0; font-size: .85rem; color: rgba(255,255,255,.6); }
.footer-contact li i { color: var(--gold); margin-top: .15rem; flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,.6); text-decoration: none; }
.footer-contact li a:hover { color: var(--gold); }
.social-links { display: flex; gap: .75rem; }
.social-links a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); font-size: 1rem; transition: all .2s; text-decoration: none; }
.social-links a:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 0; font-size: .82rem; color: rgba(255,255,255,.4); }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float { position: fixed; bottom: 1.5rem; right: 1.5rem; 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: 9999; text-decoration: none; transition: all .25s; animation: pulse-wa 2.5s infinite; }
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 6px 30px rgba(37,211,102,.8), 0 0 0 8px rgba(37,211,102,.15); }
}

/* ---- UTILITY ---- */
.bg-light-blue { background: #f0f4ff; }
.rounded-xl { border-radius: 16px !important; }
.highlight-text { background: linear-gradient(135deg, var(--crimson), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

@media (max-width: 768px) {
  .section-pad { padding: 50px 0; }
  .hero-slide { min-height: 70vh; }
  .stats-section .stat-number { font-size: 2.2rem; }
}
