* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* HERO */
.outstation-hero {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  color: #ffffff;
  padding: 90px 20px;
  text-align: center;
}

.outstation-hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 14px;
}

.outstation-hero p {
  font-size: 18px;
  line-height: 1.7;
}

/* INTRO */
.outstation-intro {
  padding: 20px 20px;
  background: #f8fafc;
  text-align: center;
}

.outstation-intro p {
  max-width: 900px;
  margin: auto;
  font-size: 17px;
  line-height: 1.8;
  color: #475569;
}

/* DESTINATIONS */
.outstation-destinations {
  padding: 25px 20px;
}

.outstation-destinations h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.destination-card {
  background: #f1f5f9;
  padding: 18px;
  border-radius: 14px;
  text-align: center;
  font-weight: 600;
}

/* WHY */
.outstation-why {
  padding: 80px 20px;
  background: #f8fafc;
}

.outstation-why h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  text-align: center;
}

.why-card span {
  font-size: 34px;
}

.why-card h3 {
  font-size: 20px;
  margin: 12px 0 8px;
}

.why-card p {
  font-size: 15.5px;
  color: #475569;
  line-height: 1.7;
}

/* VEHICLES */
.outstation-vehicles {
  padding: 25px 20px;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.vehicle-card {
  background: #ecfeff;
  border-radius: 22px;
  padding: 30px;
  text-align: center;
}

.vehicle-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

/* GRID */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

/* CARD */
.destination-card {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 10px 25px rgba(0,0,0,0.08),
    0 1px 0 rgba(255,255,255,0.6) inset;
  transition: all 0.35s ease;
}

.destination-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(34,197,94,.15), rgba(37,211,102,.15));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.destination-card:hover::before {
  opacity: 1;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.18);
}

/* IMAGE */
.destination-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover img {
  transform: scale(1.08);
}

/* CONTENT */
.destination-content {
  padding: 24px;
  position: relative;
}

.destination-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}

/* ROUTE INFO */
.route-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin-bottom: 14px;
  font-size: 0.85rem;
}

.route-info li {
  background: #f1f5f9;
  padding: 6px 10px;
  border-radius: 999px;
  color: #1f2937;
  font-weight: 600;
}

/* TEXT */
.destination-content p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ACTION BUTTONS */
.destination-actions {
  display: flex;
  gap: 12px;
}

.btn {
  flex: 1;
  padding: 12px 0;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

/* READ MORE */
.btn.read-more {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #ffffff;
}

.btn.read-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15,23,42,0.35);
}

/* WHATSAPP */
.btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #16a34a);
  color: #ffffff;
}

.btn.whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(22,163,74,0.35);
}

/* MOBILE */
@media (max-width: 600px) {
  .destination-card img {
    height: 180px;
  }

  .destination-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
.outstation-experience {
  padding: 70px 0;
  background: linear-gradient(135deg, #f9fbff, #eef3f8);
}

.outstation-experience .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.experience-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
}

.experience-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.experience-header p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.experience-item {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.experience-item .icon {
  font-size: 40px;
  display: block;
  margin-bottom: 15px;
}

.experience-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.experience-item p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .experience-header h2 {
    font-size: 26px;
  }
}
.outstation-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.outstation-cta .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.cta-box {
  background: linear-gradient(135deg, #1f2937, #111827);
  border-radius: 18px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.cta-box h2 {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.cta-box p {
  font-size: 17px;
  color: #d1d5db;
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #facc15, #f59e0b);
  color: #111827;
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(250, 204, 21, 0.5);
}

.cta-btn.secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .cta-box h2 {
    font-size: 26px;
  }

  .cta-box {
    padding: 40px 25px;
  }
}

