* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans Devanagari", "Segoe UI", Arial, sans-serif;
}

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.3;
}

p {
  line-height: 1.7;
  font-weight: 400;
}

button {
  font-family: "Noto Sans Devanagari", sans-serif;
  font-weight: 600;
}


body{
  background:#fff;
  color:#222;
}

/* CONTAINER */
.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* HEADER */
.site-header{
  border-bottom:1px solid #e5e5e5;
  background:#fff;
}

.header-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:15px 0;
}

.logo{
  font-size:24px;
  font-weight:700;
  padding-left: 20px;
}

.logo span{
  color:#ff5722;
}

.nav a{
  margin-left:20px;
  text-decoration:none;
  color:#333;
  font-weight:600;
}

/* HERO */
.hero{
  position:relative;
 background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65)),
    url("/assets/images/mt.png")
    center / cover no-repeat;
  padding:80px 0;
  color:#fff;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0);
}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:40px;
  align-items:baseline;
}

.hero-text h1{
  font-size:42px;
  margin-bottom:10px;
}

.hero-text p{
  font-size:18px;
  line-height:1.6;
}

/* FARE BOX */
.fare-box{
  background:#fff;
  color:#000;
  padding:25px;
  border-radius:12px;
}

.fare-box h3{
  text-align:center;
  margin-bottom:15px;
}

.fare-box label{
  display:block;
  font-weight:600;
  margin-top:10px;
}

.fare-box input,
.fare-box select{
  width:100%;
  padding:10px;
  margin-top:5px;
  border-radius:6px;
  border:1px solid #ccc;
}

.fare-box button{
  width:100%;
  margin-top:18px;
  padding:12px;
  background:#ff5722;
  border:none;
  color:#fff;
  font-size:16px;
  border-radius:6px;
}

.fare-result{
  margin-top:15px;
  text-align:center;
}

.fare-result strong{
  font-size:26px;
}

/* FEATURES */
.features{
  padding:70px 0;
}

.features-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.feature-card{
  text-align:center;
  border:1px solid #e5e5e5;
  padding:30px;
  border-radius:12px;
}

.feature-card img{
  width:60px;
  margin-bottom:15px;
}

/* FOOTER */
.site-footer{
  background:#111;
  color:#ddd;
  padding:40px 0 20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.site-footer a{
  color:#ddd;
  text-decoration:none;
}

.footer-bottom{
  text-align:center;
  border-top:1px solid #333;
  margin-top:30px;
  padding-top:15px;
  font-size:14px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .hero-grid,
  .features-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .hero-text h1{
    font-size:32px;
  }

  .nav{
    display:none;
  }
}



/*Pop Up*/
/* INFO ICON */
.info-icon {
  margin-left: 6px;
  font-size: 14px;
  cursor: pointer;
  color: #ff5722;
  font-weight: bold;
}

/* MODAL OVERLAY */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* MODAL BOX */
.modal-box {
  background: #fff;
  max-width: 600px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

/* HEADER */
.modal-header {
  background: #ff5722;
  color: #fff;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-btn {
  cursor: pointer;
  font-size: 18px;
}

/* CONTENT */
.modal-content {
  padding: 18px;
  max-height: 70vh;
  overflow-y: auto;
}

.trip-type {
  margin-bottom: 16px;
}

.trip-type h4 {
  margin-bottom: 5px;
  color: #333;
}

.trip-type p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* SHOW MODAL */
.modal-overlay.show {
  display: flex;
}
.trip-type ul {
  margin-top: 8px;
  padding-left: 18px;
}

.trip-type ul li {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 4px;
}

.trip-type h4 {
  font-size: 16px;
  font-weight: 600;
}

.trip-type {
  border-bottom: 1px solid #eee;
  padding-bottom: 14px;
}

.trip-type:last-child {
  border-bottom: none;
}

.fare-note {
  margin-top: 10px;
  padding: 8px 12px;
  background: #f6f8fa;
  border-left: 4px solid #ff9800;
  font-size: 13px;
  color: #333;
  border-radius: 4px;
}


/*Cars*/
.car-showcase {
  padding: 70px 0;
  background: #f6f7f9;
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

.slider-wrapper {
  position: relative;
}

.slider {
  display: flex;
  gap: 22px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.slide-card {
  min-width: 260px;
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.1)
  );
}

.overlay {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  color: #fff;
}

.overlay h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.overlay p {
  font-size: 14px;
  opacity: 0.9;
}

/* Navigation Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 10;
}

.nav-btn.left {
  left: -20px;
}

.nav-btn.right {
  right: -20px;
}

/* Mobile */
@media (max-width: 768px) {
  .slide-card {
    min-width: 220px;
    height: 300px;
  }

  .nav-btn {
    display: none;
  }
}


/*Vsiting Place*/

.places-showcase {
  padding: 70px 0;
  background: #fff;
}

/* Same base slider reused */
.place-card {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* DIFFERENT hover effect */
.place-card:hover {
  transform: scale(1.08) rotate(0.3deg);
  box-shadow: 0 25px 60px rgba(255, 152, 0, 0.45);
  z-index: 5;
}

.place-card .overlay h3 {
  font-size: 21px;
}

.place-card .overlay p {
  font-size: 14px;
  opacity: 0.95;
}
