/* ===================== FONTS ===================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
}
html {
  scroll-behavior: smooth;
}
/* ===================== LAYOUT ===================== */
.rd-package-container {
  display: flex;
  gap: 40px;
  max-width: 1300px;
  margin: 40px auto;
  padding: 0 20px;
}

.rd-left-section {
  width: 70%;
}



/* ===================== GALLERY ===================== */

.rd-gallery {
    display: flow;
   
}
.rd-gallery-preview img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
}

.rd-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.rd-gallery-thumbs img {
  width: 100%;
  height: 65px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.8;
  transition: 0.2s;
}


.rd-gallery-thumbs img:hover,
.rd-gallery-thumbs img.active {
  opacity: 1;
  border: 2px solid #ff6b00;
}

/* ===================== SUMMARY ===================== */
/* TRIP SUMMARY */
.rd-trip-summary {
  margin-top: 18px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  font-size: 14px;
  color: #024542;
}
.rd-trip-summary strong {
  color: #ff6b00;
}

.rd-title {
  color: #024542;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
}

.rd-subtitle {
  font-size: 15px;
  color: #666;
}

/* ===================== STICKY TABS ===================== */
/*========================
.rd-tabs-nav {
  position: sticky !IMPORTANT;
  top: 95px; /* Adjusted for Astra sticky header 
  background: #fff;
  padding: 12px 0;
  margin: 25px 0 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 16px;
  z-index: 9999;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
===================*/

.rd-tabs-nav {
  position: sticky;
  top: var(--rd-sticky-offset, 0px); /* dynamic top based on header */
  background: #fff;
  padding: 12px 0;
  margin: 25px 0 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 16px;
  z-index: 10000; /* keep high */
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}



.rd-tabs-nav button {
  background: none;
  border: none;
  padding: 8px 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 6px;
  color: #024542;
  transition: 0.3s;
}

.rd-tabs-nav button:hover,
.rd-tabs-nav button.active {
  background: #ff6b00;
  color: #fff;
}

/* ===================== ACCORDION SECTIONS ===================== */
.rd-tab-section {
  border-bottom: 1px solid #eee;
  padding: 22px 0;
}

.rd-tab-section h3 {
  color: #024542;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
}

.rd-highlights-list li,
.rd-sight-list li {
  margin-bottom: 8px;
  font-size: 15px;
}

/* ===================== RIGHT SIDEBAR ===================== */



.rd-form-block label {
  font-weight: 600;
  color: #024542;
  display: block;
  margin-bottom: 6px;
}

.rd-form-block input {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  margin-bottom: 18px;
}

/* CAR SELECTION */

/* ========== CAR SELECT CARDS (Premium Style) ========== */
.rd-car-select {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}

.rd-car-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
  transition: 0.25s ease;
  min-height: 72px; /* Ensures equal height */
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.rd-car-card:hover {
  border-color: #ff6b00;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.rd-car-card.selected {
  border-color: #ff6b00;
  background: #fff7ef;
  box-shadow: 0 4px 12px rgba(255,107,0,0.25);
}

.rd-car-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rd-car-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.rd-car-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rd-car-name {
  font-weight: 600;
  color: #024542;
  font-size: 15px;
}

.rd-car-specs {
  font-size: 12px;
  color: #666;
}

.rd-car-price {
  font-size: 15px;
  font-weight: 600;
  color: #024542;
}

.rd-car-select label {
  display: block;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: 0.2s;
}

.rd-car-select input[type="radio"]:checked + span,
.rd-car-select label:hover {
  border-color: #ff6b00;
}

/* PRICE BOX */
.rd-price-box {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 14px;
  margin-top: 20px;
}

.rd-total {
  font-size: 18px;
  color: #024542;
  font-weight: 600;
}

.rd-breakdown-toggle {
  font-size: 14px;
  margin-top: 8px;
  cursor: pointer;
  color: #ff6b00;
}

/* COUPON */
.rd-coupon {
  margin-top: 18px;
  display: flex;
  gap: 8px;
}

.rd-coupon input {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.rd-coupon button {
  padding: 10px 16px;
  background: #ff6b00;
  border: none;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}

.rd-coupon button:hover {
  background: #024542;
}

/* BOOK NOW BUTTON */
.rd-book-button {
  width: 100%;
  margin-top: 20px;
  background: #ff6b00;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 6px; /* Uber Style */
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.rd-book-button:hover {
  background: #024542;
}
/* ========== HIGHLIGHTS GRID STYLE ========== */
.rd-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 15px;
}

.rd-highlight-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: 0.25s;
}

.rd-highlight-card:hover {
  border-color: #ff6b00;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.rd-h-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.9;
}

.rd-highlight-card h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #024542;
}

.rd-highlight-card p {
  margin: 3px 0 0;
  font-size: 13px;
  color: #555;
  line-height: 1.4;
}

/* ========== SIGHTSEEING GRID ========== */
.rd-sight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
  margin-top: 15px;
}

.rd-sight-item {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: 0.25s;
}

.rd-sight-item:hover {
  border-color: #ff6b00;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.rd-sight-icon {
  width: 22px;
  height: 22px;
  opacity: 0.85;
}

.rd-sight-item span {
  color: #024542;
  font-size: 14px;
  font-weight: 500;
}
/* ========== KNOW MORE SECTION ========== */
.rd-know-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 15px;
}

.rd-know-card {
  display: flex;
  gap: 14px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 12px;
  align-items: flex-start;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: 0.25s;
}

.rd-know-card:hover {
  border-color: #ff6b00;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.rd-know-img {
  width: 75px;
  height: 75px;
  border-radius: 6px;
  object-fit: cover;
}

.rd-know-card h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #024542;
}

.rd-know-card p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #555;
  line-height: 1.45;
}
/* ========== INCLUSIONS / EXCLUSIONS ========== */
.rd-inc-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 15px;
}

.rd-inc-box, .rd-exc-box {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 16px 18px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: 0.25s;
}

.rd-inc-box:hover, .rd-exc-box:hover {
  border-color: #ff6b00;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.rd-inc-box h4, .rd-exc-box h4 {
  margin: 0 0 10px;
  font-size: 16px;
  color: #024542;
  font-weight: 600;
}

.rd-inc-box ul, .rd-exc-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rd-inc-box li, .rd-exc-box li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #444;
}

.rd-inc-box li img, .rd-exc-box li img {
  width: 18px;
  height: 18px;
  opacity: 0.9;
}
/* ========== IMPORTANT INFORMATION ========== */
.rd-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 15px;
}

.rd-info-item {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: 0.25s;
}

.rd-info-item:hover {
  border-color: #ff6b00;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.rd-info-icon {
  width: 22px;
  height: 22px;
  opacity: 0.85;
  flex-shrink: 0;
}

.rd-info-item p {
  margin: 0;
  font-size: 14px;
  color: #444;
  line-height: 1.45;
}

/* ========== RIGHT SIDEBAR STYLED AS PREMIUM CARD ========== */
/*=======.rd-right-section {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  background: #fff;
}
=============*/
.rd-right-section {
  width: 30%;
  position: sticky;
  top: var(--rd-sticky-offset, 0px); /* dynamic */
  height: fit-content;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  background: #fff;
}


/* ========== CAR SELECT CARDS ========== */




.rd-car-card input[type="radio"] {
  display: none;
}




/* STICKY BOOK BAR */
.rd-sticky-book {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  z-index: 999999;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.05);
}

.rd-sticky-price {
  font-size: 16px;
  font-weight: 600;
  color: #024542;
}

.rd-sticky-btn {
  background: #ff6b00;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.rd-sticky-btn:hover {
  background: #024542;
}
.site-content,
#content,
.ast-container,
.rd-package-container,
.rd-left-section {
  overflow: visible !important;
}

/* Prevent double scroll issue */
body, html {
  overflow-x: hidden;
}

.rd-package-container,
.rd-left-section,
.rd-right-section {
  overflow: visible !important;
  height: auto !important;
}
