/* Modal Fix */
.modal{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.65);
  padding: 18px;
  z-index: 9999;
}
.modal.show{ display: flex; }

.modal-box{
  width: min(920px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: 18px;
  padding: 18px 18px 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  position: relative;
}

.modal-close{
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: #111;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  cursor: pointer;
}

.modal-title{
  font-size: 22px;
  font-weight: 800;
  color: #111;
  margin-bottom: 6px;
}
.modal-subtitle{
  color: #333;
  font-size: 14px;
  margin-bottom: 14px;
}

.modal-section{
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.10);
}
.modal-section h4{
  margin: 0 0 8px;
  color: #111;
  font-size: 16px;
}
.modal-list{
  margin: 0;
  padding-left: 18px;
  color: #111;
  line-height: 1.7;
}
/* ==============================
   SHRI JI TOUR AND TRAVELS
   Premium + Readable UI (FINAL)
   ============================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root{
  --bg:#f6f7fb;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line:rgba(15,23,42,0.12);

  --brand1:#ff6a00;
  --brand2:#00b09b;
  --brand3:#2563eb;

  --shadow: 0 14px 40px rgba(15,23,42,0.12);
  --shadow2: 0 10px 26px rgba(15,23,42,0.10);

  --radius:22px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Poppins',sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

/* Container */
.container{
  width:min(1180px,92%);
  margin:auto;
}

/* ========== NAVBAR ========== */
.navbar{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.home-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  font-weight:700;
  padding:10px 14px;
  border-radius:999px;
  background:#0b1220;
  color:#fff;
  box-shadow:0 10px 20px rgba(0,0,0,0.18);
  transition:0.25s ease;
}
.home-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 26px rgba(0,0,0,0.22);
}

.brand-text h1{
  font-size:18px;
  font-weight:800;
  letter-spacing:0.2px;
  color:#0f172a;
}
.brand-text p{
  font-size:12px;
  font-weight:600;
  color:var(--muted);
}

.nav-links{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav-links a{
  text-decoration:none;
  color:#0f172a;
  font-weight:700;
  font-size:14px;
  padding:10px 12px;
  border-radius:999px;
  transition:0.25s ease;
}
.nav-links a:hover{
  background:rgba(37,99,235,0.08);
  color:var(--brand3);
}

/* Mobile */
.menu-btn{
  display:none;
  border:none;
  background:#0b1220;
  color:#fff;
  font-size:18px;
  padding:10px 14px;
  border-radius:12px;
  cursor:pointer;
  box-shadow:0 10px 18px rgba(0,0,0,0.16);
}

.mobile-menu{
  display:none;
  padding:10px 0 16px 0;
  border-top:1px solid var(--line);
}
.mobile-menu a{
  display:block;
  text-decoration:none;
  color:#0f172a;
  font-weight:700;
  padding:12px 10px;
  border-radius:12px;
}
.mobile-menu a:hover{
  background:rgba(0,0,0,0.04);
}

/* ========== HERO ========== */
.hero{
  position:relative;
  padding:60px 0 60px 0;
  overflow:hidden;
}

/* Clean premium background */
.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,106,0,0.18), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(0,176,155,0.18), transparent 45%),
    radial-gradient(circle at 60% 90%, rgba(37,99,235,0.15), transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
  z-index:-2;
}

/* remove any old image overlay effect if exists */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(255,255,255,0.55);
  z-index:-1;
}

/* Hero layout */
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap:28px;
  align-items:start;
}

.hero-left{
  padding:22px 0;
}

.tag{
  display:inline-flex;
  align-items:center;
  font-size:12px;
  font-weight:800;
  color:#0f172a;
  background:rgba(15,23,42,0.06);
  border:1px solid rgba(15,23,42,0.10);
  padding:8px 14px;
  border-radius:999px;
}

.hero-left h2{
  margin-top:16px;
  font-size:46px;
  line-height:1.1;
  font-weight:900;
  color:#0b1220;
  letter-spacing:0.2px;
}

.subtitle{
  margin-top:10px;
  font-size:15px;
  color:var(--muted);
  font-weight:600;
}

/* Buttons */
.hero-actions{
  margin-top:18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  font-weight:800;
  border-radius:16px;
  padding:12px 18px;
  transition:0.25s ease;
  border:1px solid transparent;
  cursor:pointer;
}

.btn.primary{
  background:linear-gradient(135deg, var(--brand1), #ff3d00);
  color:#fff;
  box-shadow:0 14px 30px rgba(255,106,0,0.25);
}
.btn.primary:hover{
  transform:translateY(-2px);
}

.btn.whatsapp{
  background:linear-gradient(135deg, #16a34a, #0ea5a4);
  color:#fff;
  box-shadow:0 14px 30px rgba(14,165,164,0.20);
}
.btn.whatsapp:hover{
  transform:translateY(-2px);
}

.btn.outline{
  background:#fff;
  color:#0f172a;
  border:1px solid rgba(15,23,42,0.14);
  box-shadow:0 10px 20px rgba(15,23,42,0.08);
}
.btn.outline:hover{
  transform:translateY(-2px);
  border-color:rgba(37,99,235,0.25);
}

/* Small button */
.btn.small{
  padding:10px 14px;
  border-radius:14px;
  font-size:13px;
}

/* ========== Enquiry Card (Premium) ========== */
.hero-right{
  display:flex;
  justify-content:flex-end;
}

.contact-card{
  width:100%;
  max-width:420px;
  background:rgba(255,255,255,0.90);
  border:1px solid rgba(15,23,42,0.12);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}

.contact-card h3{
  font-size:18px;
  font-weight:900;
  color:#0b1220;
  margin-bottom:12px;
}

.contact-btn{
  display:flex;
  flex-direction:column;
  gap:2px;
  padding:12px 14px;
  border-radius:16px;
  text-decoration:none;
  border:1px solid rgba(15,23,42,0.10);
  background:#fff;
  margin-bottom:10px;
  transition:0.25s ease;
  box-shadow:0 10px 18px rgba(15,23,42,0.06);
}
.contact-btn span{
  font-size:12px;
  font-weight:800;
  color:var(--muted);
}
.contact-btn b{
  font-size:14px;
  font-weight:900;
  color:#0b1220;
}
.contact-btn:hover{
  transform:translateY(-2px);
  border-color:rgba(37,99,235,0.25);
}

.address-box{
  margin-top:10px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(15,23,42,0.04);
  border:1px solid rgba(15,23,42,0.10);
}
.address-box span{
  font-weight:900;
  font-size:12px;
  color:#0b1220;
}
.address-box p{
  margin-top:6px;
  color:var(--muted);
  font-weight:600;
  font-size:13px;
}

/* ========== SECTIONS ========== */
.section{
  padding:60px 0;
}

.section.soft{
  background:linear-gradient(180deg, rgba(37,99,235,0.04), rgba(255,255,255,0));
}

.section-head{
  margin-bottom:20px;
}
.section-head h2{
  font-size:28px;
  font-weight:900;
  color:#0b1220;
}
.section-head p{
  margin-top:6px;
  color:var(--muted);
  font-weight:600;
}

/* ========== PACKAGES (Premium Cards) ========== */
.grid-packages{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}

.pkg-card{
  background:rgba(255,255,255,0.92);
  border:1px solid rgba(15,23,42,0.12);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow2);
  cursor:pointer;
  transition:0.25s ease;
  position:relative;
}

.pkg-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 55px rgba(15,23,42,0.16);
}

.pkg-card img{
  width:100%;
  height:190px;
  object-fit:cover;   /* no zoom cut issue */
  object-position:center;
  display:block;
}

.pkg-body{
  padding:14px 14px 16px 14px;
}

.pkg-body h3{
  font-size:16px;
  font-weight:900;
  color:#0b1220;
}

.pkg-days{
  margin-top:4px;
  font-size:13px;
  font-weight:700;
  color:var(--muted);
}

.pkg-price{
  margin-top:8px;
  font-size:13px;
  font-weight:800;
  color:#0f172a;
  background:rgba(255,106,0,0.10);
  border:1px solid rgba(255,106,0,0.18);
  padding:8px 10px;
  border-radius:14px;
}

/* ========== DHAM INFO ========== */
.grid-dham{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
}

.dham-card{
  background:#fff;
  border:1px solid rgba(15,23,42,0.12);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 10px 22px rgba(15,23,42,0.08);
  cursor:pointer;
  transition:0.25s ease;
}
.dham-card:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 45px rgba(15,23,42,0.14);
}
.dham-card img{
  width:100%;
  height:170px;
  object-fit:cover;
  object-position:center;
  display:block;
}
.dham-body{
  padding:12px 14px 14px 14px;
}
.dham-body h3{
  font-size:15px;
  font-weight:900;
  color:#0b1220;
}
.dham-body p{
  margin-top:4px;
  font-size:13px;
  color:var(--muted);
  font-weight:600;
}

/* ========== LOCAL TOURS ========== */
.grid-local{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
}

.local-card{
  background:#fff;
  border:1px solid rgba(15,23,42,0.12);
  border-radius:22px;
  padding:16px;
  box-shadow:0 10px 22px rgba(15,23,42,0.08);
}
.local-card h3{
  font-weight:900;
  color:#0b1220;
  font-size:16px;
  margin-bottom:8px;
}
.local-card ul{
  padding-left:18px;
}
.local-card li{
  color:var(--muted);
  font-weight:600;
  font-size:13px;
  margin:6px 0;
}

/* ========== CONTACT SECTION ========== */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}

.contact-big{
  background:#fff;
  border:1px solid rgba(15,23,42,0.12);
  border-radius:22px;
  padding:18px;
  box-shadow:0 10px 22px rgba(15,23,42,0.08);
}
.contact-big h3{
  font-weight:900;
  color:#0b1220;
  margin-bottom:10px;
}
.contact-big p{
  color:var(--muted);
  font-weight:600;
  margin:8px 0;
}
.contact-big a{
  color:#2563eb;
  font-weight:800;
  text-decoration:none;
}
.contact-big a:hover{
  text-decoration:underline;
}

.contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

/* Footer note */
.footer-note{
  margin-top:18px;
  text-align:center;
  color:var(--muted);
  font-weight:700;
}

/* ========== MODAL ========== */
.modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.60);
  z-index:9999;
  padding:18px;
}
.modal-box{
  width:min(900px, 96%);
  margin:auto;
  background:#fff;
  border-radius:22px;
  padding:18px;
  box-shadow:0 24px 60px rgba(0,0,0,0.25);
  position:relative;
  max-height:88vh;
  overflow:auto;
}
.modal-close{
  position:absolute;
  top:10px;
  right:10px;
  border:none;
  background:#0b1220;
  color:#fff;
  padding:10px 12px;
  border-radius:14px;
  cursor:pointer;
  font-weight:900;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px){
  .grid-packages{ grid-template-columns: repeat(2, 1fr); }
  .grid-dham{ grid-template-columns: repeat(2, 1fr); }
  .grid-local{ grid-template-columns: repeat(2, 1fr); }
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 820px){
  .nav-links{ display:none; }
  .menu-btn{ display:block; }
  .mobile-menu{ display:block; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-left h2{ font-size:36px; }
  .hero-right{ justify-content:flex-start; }
}

@media (max-width: 520px){
  .grid-packages{ grid-template-columns: 1fr; }
  .grid-local{ grid-template-columns: 1fr; }
  .hero-left h2{ font-size:30px; }
  .btn{ width:100%; }
}
/* ===========================
   EMERGENCY FIX (FINAL PATCH)
   Text + Layout Visible
   Paste at END of style.css
   =========================== */

/* 1) Global text readable */
body{
  color:#111 !important;
  background:#f7f7fb !important;
}

/* 2) Navbar visible */
.navbar{
  background:#ffffff !important;
  border-bottom:1px solid rgba(0,0,0,0.12) !important;
}
.navbar .brand-text h1,
.navbar .brand-text p,
.nav-links a{
  color:#111 !important;
  text-shadow:none !important;
}

/* 3) Hero text visible */
.hero *{
  color:#111 !important;
  text-shadow:none !important;
}

/* 4) Buttons fix */
.btn.primary{ color:#fff !important; }
.btn.whatsapp{ color:#fff !important; }
.btn.outline{ color:#111 !important; background:#fff !important; }

/* 5) Enquiry box readable */
.contact-card{
  background:#fff !important;
  border:1px solid rgba(0,0,0,0.15) !important;
}
.contact-card h3{ color:#111 !important; }

/* 6) Inputs fix (white text issue solved) */
input, textarea, select{
  background:#fff !important;
  color:#111 !important;
  border:1px solid rgba(0,0,0,0.20) !important;
}
input::placeholder,
textarea::placeholder{
  color:rgba(0,0,0,0.55) !important;
}

/* 7) Cards text readable */
.pkg-card, .dham-card, .local-card, .contact-big{
  background:#fff !important;
  color:#111 !important;
}

/* 8) Remove any background merged images if still appearing */
.hero-bg{
  background:linear-gradient(180deg,#ffffff,#f1f5ff) !important;
}
/* ===== TOP MARQUEE STRIP ===== */
.top-marquee{
  width: 100%;
  background: #111;
  color: #fff;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.marquee-track{
  display: flex;
  width: max-content;
  gap: 60px;
  padding: 10px 0;
  animation: marqueeMove 18s linear infinite;
}

.marquee-track span{
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

@keyframes marqueeMove{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
/* Hide package card price line on home page */
#packages .pkg-card .pkg-price{
  display: none !important;
}
