/* ==========================================================================
   RITHISH TOURS & TRAVELS — FAMOUS DESTINATIONS STYLES
   Homepage Destination Grid + Dedicated Destination Guide Pages
   ========================================================================== */

/* ===== 1. HOMEPAGE FAMOUS DESTINATIONS SECTION ===== */
.destinations-section {
  padding: 70px 0 80px;
  background: #F8FAFC;
  position: relative;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.destination-card {
  background: #FFFFFF;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 16px rgba(11, 31, 51, 0.05);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  height: 100%;
  position: relative;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(11, 31, 51, 0.12);
  border-color: #1A56DB;
}

.destination-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #0B1F33;
}

.destination-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.destination-card:hover .destination-card-img {
  transform: scale(1.08);
}

.destination-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 51, 0.1) 0%, rgba(11, 31, 51, 0.45) 100%);
  pointer-events: none;
}

.destination-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(11, 31, 51, 0.85);
  color: #FFFFFF;
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}

.destination-card-body {
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.destination-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0B1F33;
  margin: 0 0 8px;
  line-height: 1.25;
  transition: color 0.2s ease;
}

.destination-card:hover .destination-card-title {
  color: #1A56DB;
}

.destination-card-desc {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
  margin: 0 0 16px;
  flex-grow: 1;
}

.destination-card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.dest-highlight-pill {
  font-size: 12px;
  font-weight: 500;
  background: #EEF2F6;
  color: #0B1F33;
  padding: 4px 10px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: 1.3;
}

.dest-highlight-pill i {
  color: #0284C7;
  font-size: 11px;
}

.destination-card-footer {
  padding-top: 14px;
  border-top: 1px solid #E2E8F0;
  margin-top: auto;
}

.dest-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  background: #1A56DB;
  color: #FFFFFF;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.destination-card:hover .dest-cta-btn {
  background: #E65100;
  box-shadow: 0 4px 12px rgba(230, 81, 0, 0.25);
}

/* ===== 2. DEDICATED DESTINATION DETAILS PAGES ===== */
.dest-page-hero {
  position: relative;
  background: #0B1F33;
  color: #FFFFFF;
  padding: 85px 0 60px;
  overflow: hidden;
}

.dest-page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: brightness(0.85);
}

.dest-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 51, 0.72) 0%, rgba(11, 31, 51, 0.94) 100%);
}

.dest-page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.dest-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.dest-breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.dest-breadcrumbs a:hover {
  color: #FFA726;
}

.dest-breadcrumbs i {
  font-size: 10px;
  opacity: 0.6;
}

.dest-breadcrumbs span {
  color: #FFFFFF;
  font-weight: 600;
}

.dest-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 140, 0, 0.2);
  color: #FFA726;
  border: 1px solid rgba(255, 140, 0, 0.35);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 14px;
}

.dest-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.18;
  color: #FFFFFF;
  margin: 0 0 16px;
}

.dest-hero-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 820px;
}

.dest-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.dest-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E65100;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(230, 81, 0, 0.35);
}

.dest-btn-primary:hover {
  background: #F57C00;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(230, 81, 0, 0.45);
}

.dest-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.dest-btn-wa:hover {
  background: #20BA5A;
  transform: translateY(-2px);
}

/* Quick Facts Strip */
.dest-facts-bar {
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.dest-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 20px 0;
}

.dest-fact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dest-fact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #EEF2F6;
  color: #1A56DB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.dest-fact-content {
  display: flex;
  flex-direction: column;
}

.dest-fact-label {
  font-size: 12px;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.dest-fact-val {
  font-size: 14.5px;
  color: #0B1F33;
  font-weight: 700;
}

/* Common Section Layouts */
.dest-section {
  padding: 65px 0;
}

.dest-section-alt {
  background: #F8FAFC;
}

.dest-section-head {
  margin-bottom: 36px;
}

.dest-section-head h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 3.5vw, 32px);
  color: #0B1F33;
  font-weight: 700;
  margin: 0 0 10px;
}

.dest-section-head p {
  font-size: 15px;
  color: #64748B;
  line-height: 1.6;
  max-width: 780px;
  margin: 0;
}

/* Overview Layout */
.dest-overview-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: start;
}

.dest-overview-text {
  font-size: 15.5px;
  line-height: 1.75;
  color: #334155;
}

.dest-overview-text p {
  margin-bottom: 16px;
}

.dest-overview-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 4px 14px rgba(11, 31, 51, 0.04);
}

.dest-overview-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #0B1F33;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dest-overview-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dest-overview-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #334155;
  line-height: 1.5;
}

.dest-overview-list li i {
  color: #10B981;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Attraction Cards Grid */
.dest-attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.attraction-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(11, 31, 51, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.attraction-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(11, 31, 51, 0.09);
  border-color: #1A56DB;
}

.attraction-card-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #0B1F33;
}

.attraction-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.attraction-card:hover .attraction-card-img {
  transform: scale(1.06);
}

.attraction-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(11, 31, 51, 0.85);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

.attraction-card-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(11, 31, 51, 0.85);
  color: #FFA726;
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 5px;
}

.attraction-card-body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.attraction-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0B1F33;
  margin: 0 0 8px;
  line-height: 1.3;
}

.attraction-card-desc {
  font-size: 13.5px;
  color: #64748B;
  line-height: 1.55;
  margin: 0 0 12px;
  flex-grow: 1;
}

.attraction-why-visit {
  background: #F1F5F9;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12.5px;
  color: #334155;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.attraction-why-visit i {
  color: #1A56DB;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Best Time / Seasons Grid */
.dest-seasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.dest-season-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.dest-season-card.recommended {
  border-color: #10B981;
  background: linear-gradient(180deg, #FAFCFA 0%, #FFFFFF 100%);
}

.dest-season-card.recommended::before {
  content: "Best Time";
  position: absolute;
  top: 12px;
  right: 12px;
  background: #10B981;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 50px;
  text-transform: uppercase;
}

.dest-season-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0B1F33;
  margin: 0 0 6px;
}

.dest-season-months {
  font-size: 13px;
  color: #1A56DB;
  font-weight: 600;
  margin-bottom: 12px;
}

.dest-season-desc {
  font-size: 13.5px;
  color: #64748B;
  line-height: 1.55;
  margin: 0;
}

/* Sample Itineraries Cards */
.dest-itinerary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.dest-itinerary-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(11, 31, 51, 0.05);
  display: flex;
  flex-direction: column;
}

.dest-itinerary-header {
  background: #0B1F33;
  color: #FFFFFF;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dest-itinerary-title {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.dest-itinerary-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 50px;
}

.dest-itinerary-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.itinerary-slot {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.itinerary-slot-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #EEF2F6;
  color: #1A56DB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.itinerary-slot-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0B1F33;
  margin: 0 0 3px;
}

.itinerary-slot-content p {
  font-size: 13px;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
}

/* Ideal For Grid */
.dest-ideal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.dest-ideal-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.dest-ideal-item:hover {
  transform: translateY(-3px);
  border-color: #0284C7;
}

.dest-ideal-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #FFF7ED;
  color: #E65100;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.dest-ideal-name {
  font-size: 14px;
  font-weight: 600;
  color: #0B1F33;
  line-height: 1.3;
}

/* Nearby Destinations Interlink Grid */
.dest-nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.dest-nearby-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 18px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.dest-nearby-card:hover {
  border-color: #1A56DB;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(11, 31, 51, 0.08);
}

.dest-nearby-name {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0B1F33;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dest-nearby-dist {
  font-size: 12.5px;
  color: #64748B;
}

.dest-nearby-cta {
  font-size: 12.5px;
  font-weight: 600;
  color: #1A56DB;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

/* Destination Booking Form Section */
.dest-booking-wrapper {
  background: linear-gradient(135deg, #0B1F33 0%, #0F2E4F 100%);
  border-radius: 20px;
  padding: 44px 36px;
  color: #FFFFFF;
  box-shadow: 0 16px 40px rgba(11, 31, 51, 0.2);
}

.dest-booking-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.dest-booking-info h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 14px;
  line-height: 1.2;
}

.dest-booking-info p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin: 0 0 24px;
}

.dest-booking-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dest-trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.9);
}

.dest-trust-row i {
  color: #10B981;
  font-size: 14px;
}

.dest-booking-form-box {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 28px;
  color: #0B1F33;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.dest-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.dest-form-grid .full-width {
  grid-column: span 2;
}

.dest-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dest-form-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: #0B1F33;
}

.dest-form-group input,
.dest-form-group select,
.dest-form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #E2E8F0;
  border-radius: 8px;
  font-size: 13.5px;
  font-family: inherit;
  color: #0B1F33;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.dest-form-group input:focus,
.dest-form-group select:focus,
.dest-form-group textarea:focus {
  border-color: #1A56DB;
}

.dest-form-actions {
  grid-column: span 2;
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.dest-submit-btn {
  flex: 1;
  padding: 12px 20px;
  background: #E65100;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14.5px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.dest-submit-btn:hover {
  background: #F57C00;
}

.dest-wa-btn-inline {
  padding: 12px 18px;
  background: #25D366;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.2s ease;
}

.dest-wa-btn-inline:hover {
  background: #20BA5A;
}

.dest-call-btn-inline {
  padding: 12px 18px;
  background: #1A56DB;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.2s ease;
}

.dest-call-btn-inline:hover {
  background: #154580;
}

/* ===== 3. RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 992px) {
  .destinations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .dest-facts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .dest-overview-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .dest-attractions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dest-seasons-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dest-booking-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dest-attractions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dest-facts-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .dest-booking-wrapper {
    padding: 28px 18px;
  }

  .dest-booking-form-box {
    padding: 20px 16px;
  }

  .dest-form-grid {
    grid-template-columns: 1fr;
  }

  .dest-form-grid .full-width {
    grid-column: span 1;
  }

  .dest-form-actions {
    grid-column: span 1;
    flex-direction: column;
  }

  .dest-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .dest-btn-primary,
  .dest-btn-wa {
    width: 100%;
    justify-content: center;
  }
}
