/* ============================================================
   MODERN PACKAGE DETAIL STYLES - Jordan Passion
   ============================================================ */

/* --- Package Page Header → Card-based (matching destinations) --- */
.pd-breadcrumb-bar {
   background: #fff;
   padding: 100px 0 14px;
   border-bottom: 1px solid #eee;
}
.pd-breadcrumb-bar .breadcrumb-trail {
   display: flex;
   align-items: center;
   gap: 6px;
   font-size: 13px;
   color: #999;
   margin-bottom: 0;
}
.pd-breadcrumb-bar .breadcrumb-trail a {
   color: #777;
   text-decoration: none;
   transition: color 0.2s;
}
.pd-breadcrumb-bar .breadcrumb-trail a:hover { color: #ba931f; }
.pd-breadcrumb-bar .breadcrumb-trail span { margin: 0; color: #ccc; }
.pd-breadcrumb-bar h1 {
   font-size: 2rem;
   font-weight: 800;
   color: #1a1a2e;
   margin: 16px 0 0;
   font-family: 'Montserrat', sans-serif;
   line-height: 1.25;
}
.pd-breadcrumb-bar .pd-subtitle {
   font-size: 15px;
   color: #999;
   margin: 4px 0 0;
   font-weight: 400;
   font-style: italic;
}
.pd-tags {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   margin-top: 14px;
   padding-bottom: 8px;
}
@media (max-width: 731px) {
   .pd-breadcrumb-bar { padding: 80px 0 14px; }
   .pd-breadcrumb-bar h1 { font-size: 1.65rem; }
}
@media (max-width: 731px) {
   .pd-breadcrumb-bar { padding: 12px 0 12px; }
   .pd-breadcrumb-bar h1 { font-size: 1.35rem; }
}

/* ====================================================
   DESTINATION DETAIL PAGE — v4 Card-based Modern
   ==================================================== */

/* --- Breadcrumb --- */
.dp-breadcrumb {
   background: #fff;
   padding: 100px 0 14px;
   border-bottom: 1px solid #eee;
}
.dp-breadcrumb .dest-crumb {
   display: flex;
   align-items: center;
   gap: 6px;
   font-size: 13px;
   color: #999;
}
.dp-breadcrumb .dest-crumb a {
   color: #777;
   text-decoration: none;
   transition: color 0.2s;
}
.dp-breadcrumb .dest-crumb a:hover { color: #ba931f; }
.dp-breadcrumb .dest-crumb .sep { color: #ccc; }
@media (max-width: 731px) { .dp-breadcrumb { padding-top: 12px; } }

/* --- Title Section --- */
.dp-title-section {
   background: #fff;
   padding: 28px 0 24px;
   border-bottom: 1px solid #f0f0f0;
}
.dp-title-section h1 {
   font-size: 2rem;
   font-weight: 800;
   color: #1a1a2e;
   font-family: 'Montserrat', sans-serif;
   margin: 0 0 6px;
   line-height: 1.25;
}
.dp-title-section .dest-subtitle {
   font-size: 15px;
   color: #999;
   margin: 0 0 16px;
   font-weight: 400;
   font-style: italic;
}
.dp-tags {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
}
.dp-tag {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   background: #f4f4f6;
   border: 1px solid #eaeaea;
   padding: 6px 14px;
   border-radius: 20px;
   font-size: 12px;
   font-weight: 600;
   color: #555;
   transition: all 0.25s ease;
}
.dp-tag:hover {
   border-color: rgba(186,147,31,0.4);
   background: #fefdf8;
   box-shadow: 0 2px 8px rgba(186,147,31,0.08);
}
.dp-tag i { color: #ba931f; font-size: 11px; }
@media (max-width: 731px) {
   .dp-title-section h1 { font-size: 1.45rem; }
   .dp-title-section { padding: 18px 0 16px; }
   .dp-tag { padding: 5px 10px; font-size: 11px; }
}

/* --- Content Area --- */
.dp-content {
   background: #f8f9fb;
   padding: 36px 0 60px;
}

/* --- Cards --- */
.dp-card {
   background: #fff;
   border-radius: 14px;
   padding: 28px;
   margin-bottom: 20px;
   border: 1px solid #eee;
   box-shadow: 0 2px 8px rgba(0,0,0,0.04);
   transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.dp-card:hover {
   box-shadow: 0 6px 20px rgba(0,0,0,0.07);
   transform: translateY(-1px);
}
.dp-card-title {
   font-size: 17px;
   font-weight: 700;
   color: #1a1a2e;
   font-family: 'Montserrat', sans-serif;
   margin: 0 0 20px;
   display: flex;
   align-items: center;
   gap: 10px;
}
.dp-card-title i {
   color: #ba931f;
   font-size: 15px;
   width: 32px;
   height: 32px;
   background: rgba(186,147,31,0.1);
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

/* --- Overview Card with Side Image --- */
.dp-overview-grid {
   display: grid;
   grid-template-columns: 220px 1fr;
   gap: 24px;
   align-items: start;
}
.dp-overview-img {
   width: 220px;
   height: 170px;
   border-radius: 10px;
   background-size: cover;
   background-position: center;
   flex-shrink: 0;
   box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.dp-overview-grid .dest-overview-text {
   font-size: 14.5px;
   color: #555;
   line-height: 1.85;
   margin: 0;
}
@media (max-width: 731px) {
   .dp-overview-grid {
      grid-template-columns: 1fr;
   }
   .dp-overview-img {
      width: 100%;
      height: 200px;
   }
}

/* --- Tour Type Callout (Itinerary-style) --- */
.dp-callout {
   display: block;
   margin-top: 22px;
   padding: 0;
   background: transparent;
   border: none;
   border-radius: 0;
   box-shadow: none;
   position: relative;
   overflow: visible;
}
.dp-callout > i {
   width: 38px;
   height: 38px;
   background: linear-gradient(135deg, #ba931f 0%, #d4a820 100%);
   color: #fff;
   font-size: 15px;
   border-radius: 10px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   box-shadow: 0 3px 10px rgba(186,147,31,0.25);
   vertical-align: middle;
   margin-right: 12px;
   margin-bottom: 14px;
}
.dp-callout .dest-tourtype-name {
   font-size: 17px;
   font-weight: 700;
   color: #1a1a2e;
   margin: 0 0 10px;
   display: inline;
   letter-spacing: -0.2px;
   font-family: 'Montserrat', sans-serif;
   vertical-align: middle;
}
.dp-callout .dest-tourtype-desc {
   font-size: 13.5px;
   color: #666;
   line-height: 1.75;
   margin: 0;
   padding-left: 0;
}
.dp-callout .dest-tourtype-desc > div,
.dp-callout .dest-tourtype-desc > p:first-child {
   margin-bottom: 10px;
}
.dp-callout .dest-tourtype-desc b,
.dp-callout .dest-tourtype-desc strong {
   font-weight: 700;
   color: #1a1a2e;
   font-size: 14px;
}
.dp-callout .dest-tourtype-desc h4 {
   font-size: 14px;
   font-weight: 700;
   color: #1a1a2e;
   margin: 10px 0 4px;
}
.dp-callout .dest-tourtype-desc ol,
.dp-callout .dest-tourtype-desc ul {
   padding-left: 20px;
   margin: 6px 0;
}
.dp-callout .dest-tourtype-desc ol li,
.dp-callout .dest-tourtype-desc ul li {
   margin-bottom: 3px;
}
.dp-callout .dest-tourtype-desc hr {
   border: none;
   border-top: 1px solid #e8e4d8;
   margin: 12px 0;
}
.dp-callout .dest-tourtype-desc .dest-tour-intro {
   margin: 0 0 18px;
}
.dp-callout .dest-tourtype-desc .pd-itinerary-item {
   margin-left: 13px;
}
.dp-callout .dest-tourtype-desc .pd-itinerary-item:last-child {
   padding-bottom: 0;
}

/* Itinerary step styling — each <p> with .rte-icon-num becomes a timeline item */
.dp-callout .dest-tourtype-desc p {
   position: relative;
   margin-bottom: 0;
   padding: 0;
}
.dp-callout .dest-tourtype-desc p:has(.rte-icon-num) {
   padding-left: 38px;
   padding-bottom: 18px;
   margin-bottom: 0;
   border-left: 2px solid #eee;
   margin-left: 13px;
}
.dp-callout .dest-tourtype-desc p:has(.rte-icon-num):last-of-type {
   border-left-color: transparent;
   padding-bottom: 0;
}
/* Empty <p> between steps — collapse them */
.dp-callout .dest-tourtype-desc p:has(br:only-child),
.dp-callout .dest-tourtype-desc p > strong:empty,
.dp-callout .dest-tourtype-desc p > strong > br:only-child {
   display: none;
}
.dp-callout .dest-tourtype-desc p + p:has(.rte-icon-num) {
   margin-top: 0;
}
/* Step number badges */
.dp-callout .dest-tourtype-desc .rte-icon-num {
   position: absolute;
   left: -16px;
   top: 0;
   width: 30px;
   height: 30px;
   border-radius: 50%;
   background: linear-gradient(135deg, #ba931f 0%, #d4a820 100%);
   color: #fff;
   font-size: 12px;
   font-weight: 700;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   box-shadow: 0 2px 8px rgba(186,147,31,0.3);
   font-family: 'Montserrat', sans-serif;
   margin: 0;
}
/* Step title — the <strong> inside a step paragraph */
.dp-callout .dest-tourtype-desc p:has(.rte-icon-num) > strong,
.dp-callout .dest-tourtype-desc p.dp-itin-step > strong {
   display: block;
   font-size: 15px;
   font-weight: 700;
   color: #1a1a2e;
   margin-bottom: 5px;
   line-height: 1.4;
}
/* Class-based fallback for browsers without :has() support */
.dp-callout .dest-tourtype-desc p.dp-itin-step {
   padding-left: 38px;
   padding-bottom: 18px;
   margin-bottom: 0;
   border-left: 2px solid #eee;
   margin-left: 13px;
}
.dp-callout .dest-tourtype-desc p.dp-itin-step-last {
   border-left-color: transparent;
   padding-bottom: 0;
}

/* --- Highlights Grid --- */
.dp-highlights {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 10px;
   list-style: none;
   padding: 0;
   margin: 0;
}
.dp-highlights li {
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: 13.5px;
   color: #444;
   padding: 11px 14px;
   background: #f8f9fb;
   border-radius: 8px;
   border: 1px solid #eee;
   transition: all 0.25s ease;
}
.dp-highlights li:hover {
   border-color: rgba(186,147,31,0.35);
   background: #fefdf8;
   transform: translateX(3px);
}
.dp-highlights li .hl-dot {
   width: 8px;
   height: 8px;
   background: linear-gradient(135deg, #ba931f 0%, #d4a820 100%);
   border-radius: 50%;
   flex-shrink: 0;
   box-shadow: 0 1px 4px rgba(186,147,31,0.3);
}
@media (max-width: 731px) { .dp-highlights { grid-template-columns: 1fr; } }

/* --- Includes / Excludes --- */
.dp-inc-exc {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
}
.dp-inc-col, .dp-exc-col {
   padding: 18px;
   border-radius: 10px;
   background: #f9faf9;
   border: 1px solid #eef2ee;
}
.dp-exc-col {
   background: #fdf9f9;
   border-color: #f2eeed;
}
.dp-inc-col h4, .dp-exc-col h4 {
   font-size: 13px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   margin: 0 0 14px;
   display: flex;
   align-items: center;
   gap: 8px;
   padding-bottom: 10px;
   border-bottom: 2px solid;
}
.dp-inc-col h4 { color: #059669; border-color: rgba(5,150,105,0.15); }
.dp-exc-col h4 { color: #dc2626; border-color: rgba(220,38,38,0.12); }
.dp-inc-col h4 i, .dp-exc-col h4 i {
   font-size: 14px;
}
.dp-inc-list, .dp-exc-list {
   list-style: none;
   padding: 0;
   margin: 0;
}
.dp-inc-list li, .dp-exc-list li {
   display: flex;
   align-items: flex-start;
   gap: 10px;
   padding: 9px 0;
   border-bottom: 1px solid rgba(0,0,0,0.04);
   font-size: 13px;
   color: #555;
   line-height: 1.55;
   transition: padding-left 0.2s;
}
.dp-inc-list li:hover, .dp-exc-list li:hover {
   padding-left: 4px;
}
.dp-inc-list li:last-child, .dp-exc-list li:last-child { border-bottom: none; }
.dp-inc-list li i {
   color: #059669;
   font-size: 12px;
   margin-top: 3px;
   flex-shrink: 0;
}
.dp-exc-list li i {
   color: #dc2626;
   font-size: 12px;
   margin-top: 3px;
   flex-shrink: 0;
}
@media (max-width: 731px) {
   .dp-inc-exc { grid-template-columns: 1fr; gap: 20px; }
}
/* Legacy Good to Know support */
.dp-essentials {
   list-style: none;
   padding: 0;
   margin: 0;
}
.dp-essentials li {
   display: flex;
   align-items: flex-start;
   gap: 12px;
   padding: 12px 0;
   border-bottom: 1px solid #f0f0f0;
   font-size: 13.5px;
   color: #555;
   line-height: 1.6;
}
.dp-essentials li:last-child { border-bottom: none; }
.dp-essentials li i {
   color: #ba931f;
   font-size: 14px;
   margin-top: 3px;
   flex-shrink: 0;
}

/* --- Day Tour Items --- */
.dp-day-tour {
   display: flex;
   align-items: center;
   gap: 16px;
   padding: 14px;
   background: #f8f9fb;
   border-radius: 10px;
   border: 1px solid #eee;
   margin-bottom: 10px;
   transition: border-color 0.2s, box-shadow 0.2s;
   flex-wrap: wrap;
}
.dp-day-tour:hover {
   border-color: rgba(186,147,31,0.3);
   box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.dp-day-tour .ddt-thumb {
   width: 72px;
   height: 54px;
   border-radius: 8px;
   background-size: cover;
   background-position: center;
   flex-shrink: 0;
}
.dp-day-tour .ddt-info { flex: 1; min-width: 140px; }
.dp-day-tour .ddt-title {
   font-size: 14px;
   font-weight: 700;
   color: #1a1a2e;
   margin: 0 0 3px;
}
.dp-day-tour .ddt-meta {
   font-size: 11px;
   color: #999;
   display: flex;
   gap: 10px;
}
.dp-day-tour .ddt-meta i { color: #ba931f; margin-right: 3px; }
.dp-day-tour .ddt-price {
   font-size: 1.15rem;
   font-weight: 800;
   color: #ba931f;
   white-space: nowrap;
}
.dp-day-tour .ddt-price small {
   font-size: 10px;
   color: #aaa;
   display: block;
   font-weight: 400;
}
.dp-day-tour .ddt-btn {
   background: linear-gradient(135deg, #ba931f 0%, #d4a820 100%);
   color: #fff;
   padding: 8px 18px;
   border-radius: 50px;
   font-size: 11px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   text-decoration: none;
   box-shadow: 0 2px 6px rgba(186,147,31,0.18);
   transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, background 0.3s ease;
   white-space: nowrap;
}
.dp-day-tour .ddt-btn:hover { background: linear-gradient(135deg, #a8840e, #ba931f); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(186,147,31,0.30); }

/* --- Sticky Sidebar --- */
.dp-sidebar {
   position: sticky;
   top: 100px;
}

/* --- Booking Card (light) --- */
.dp-book-card {
   background: #fff;
   border-radius: 14px;
   padding: 28px 24px;
   border: 1px solid #eee;
   box-shadow: 0 4px 20px rgba(0,0,0,0.07);
   margin-bottom: 16px;
   position: relative;
   overflow: hidden;
}
.dp-book-card::before {
   content: '';
   position: absolute;
   top: -30px;
   right: -30px;
   width: 100px;
   height: 100px;
   background: rgba(186,147,31,0.06);
   border-radius: 50%;
   pointer-events: none;
}
.dp-book-label {
   font-size: 11px;
   color: #aaa;
   text-transform: uppercase;
   letter-spacing: 1.2px;
   font-weight: 600;
   margin-bottom: 4px;
}
.dp-book-name {
   font-size: 15px;
   font-weight: 600;
   color: #555;
   margin-bottom: 16px;
}
.dp-book-price-row {
   display: flex;
   align-items: baseline;
   gap: 8px;
   margin-bottom: 22px;
}
.dp-book-price-row .dp-price-big {
   font-size: 2.2rem;
   font-weight: 800;
   color: #ba931f;
   font-family: 'Montserrat', sans-serif;
   line-height: 1;
}
.dp-book-price-row .dp-price-per {
   font-size: 12px;
   color: #999;
}
.dp-book-details {
   list-style: none;
   padding: 0;
   margin: 0 0 22px;
}
.dp-book-details li {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 9px 0;
   border-bottom: 1px solid #f0f0f0;
   font-size: 13px;
}
.dp-book-details li:last-child { border-bottom: none; }
.dp-book-details li .dbl-label {
   color: #999;
   font-weight: 500;
}
.dp-book-details li .dbl-value {
   color: #1a1a2e;
   font-weight: 600;
   text-align: right;
   max-width: 60%;
}
.dp-btn-book {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   width: 100%;
   padding: 14px;
   background: linear-gradient(135deg, #ba931f 0%, #d4a820 100%);
   color: #fff;
   border: none;
   border-radius: 50px;
   font-size: 14px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.8px;
   text-decoration: none;
   cursor: pointer;
   position: relative;
   overflow: hidden;
   box-shadow: 0 2px 10px rgba(186,147,31,0.20);
   transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, background 0.3s ease;
}
.dp-btn-book::before {
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
   transition: left 0.5s ease;
}
.dp-btn-book:hover::before {
   left: 100%;
}
.dp-btn-book:hover {
   background: linear-gradient(135deg, #a8840e 0%, #ba931f 100%);
   color: #fff;
   transform: translateY(-3px);
   box-shadow: 0 10px 30px rgba(186,147,31,0.35);
}
.dp-btn-wa {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   width: 100%;
   padding: 12px;
   background: rgba(37,211,102,0.06);
   border: 2px solid rgba(37,211,102,0.25);
   color: #25D366;
   border-radius: 50px;
   font-size: 13px;
   font-weight: 600;
   text-decoration: none;
   position: relative;
   overflow: hidden;
   margin-top: 10px;
   transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.dp-btn-wa:hover {
   background: #25D366;
   border-color: #25D366;
   color: #fff;
   transform: translateY(-3px);
   box-shadow: 0 8px 24px rgba(37,211,102,0.30);
}

/* --- Optional Add-ons Section --- */
.dest-addons-section {
   margin-bottom: 18px;
}
.dp-addons-wrap {
   background: #fafaf8;
   border: 1px solid #f0efe8;
   border-radius: 10px;
   padding: 16px;
}
.dp-addons-title {
   font-size: 13px;
   font-weight: 700;
   color: #1a1a2e;
   margin: 0 0 12px;
   display: flex;
   align-items: center;
   gap: 7px;
}
.dp-addons-title i {
   color: #ba931f;
   font-size: 14px;
}
.dest-addon-item {
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 10px 12px;
   background: #fff;
   border: 1.5px solid #eee;
   border-radius: 8px;
   cursor: pointer;
   transition: all 0.2s ease;
   margin-bottom: 6px;
   position: relative;
   user-select: none;
}
.dest-addon-item:last-child {
   margin-bottom: 0;
}
.dest-addon-item:hover {
   border-color: #ba931f;
   box-shadow: 0 2px 8px rgba(186,147,31,0.08);
}
.dest-addon-item input[type="checkbox"] {
   display: none;
}
.dest-addon-checkmark {
   width: 20px;
   height: 20px;
   border-radius: 5px;
   border: 2px solid #ddd;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   transition: all 0.2s ease;
   font-size: 11px;
   color: transparent;
}
.dest-addon-checkmark::after {
   content: "\f00c";
   font-family: 'Font Awesome 6 Free';
   font-weight: 900;
}
.dest-addon-item input:checked ~ .dest-addon-checkmark {
   background: #ba931f;
   border-color: #ba931f;
   color: #fff;
}
.dest-addon-item input:checked ~ .dest-addon-name {
   color: #1a1a2e;
   font-weight: 600;
}
.dest-addon-item input:checked {
   border-color: #ba931f;
}
.dest-addon-name {
   flex: 1;
   font-size: 13px;
   font-weight: 500;
   color: #555;
   transition: all 0.2s ease;
}
.dest-addon-price {
   font-size: 13px;
   font-weight: 700;
   color: #ba931f;
   flex-shrink: 0;
   white-space: nowrap;
}
.dest-addon-price small {
   font-size: 10px;
   font-weight: 500;
   color: #999;
   margin-left: 1px;
}
/* Price update animation */
.dp-price-big {
   transition: transform 0.2s ease;
}
.dp-price-big.price-bump {
   transform: scale(1.08);
}

/* --- Visitor Selector --- */
.dest-travelers-section {
   margin-bottom: 18px;
}
.dp-travelers-wrap {
   background: #fafaf8;
   border: 1px solid #f0efe8;
   border-radius: 12px;
   padding: 16px;
}
.dp-travelers-title {
   font-size: 12px;
   font-weight: 700;
   color: #555;
   margin-bottom: 14px;
   display: flex;
   align-items: center;
   gap: 7px;
   text-transform: uppercase;
   letter-spacing: 0.3px;
}
.dp-travelers-title i {
   color: #ba931f;
   font-size: 13px;
}
.dp-traveler-row {
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 10px 0;
   border-bottom: 1px solid #f0efe8;
}
.dp-traveler-row:last-of-type {
   border-bottom: none;
}
.dp-trav-info {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 1px;
}
.dp-trav-type {
   font-size: 13px;
   font-weight: 600;
   color: #1a1a2e;
}
.dp-trav-age {
   font-size: 10px;
   color: #999;
   letter-spacing: 0.2px;
}
.dp-trav-rate {
   font-size: 12px;
   font-weight: 700;
   color: #ba931f;
   min-width: 40px;
   text-align: right;
   flex-shrink: 0;
}
.dp-trav-control {
   display: flex;
   align-items: center;
   gap: 0;
   background: #fff;
   border: 1.5px solid #eee;
   border-radius: 8px;
   overflow: hidden;
   flex-shrink: 0;
}
.dp-trav-btn {
   width: 34px;
   height: 34px;
   border: none;
   background: transparent;
   color: #ba931f;
   font-size: 12px;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   transition: background 0.2s ease, transform 0.2s ease;
}
.dp-trav-btn:hover {
   background: rgba(186,147,31,0.10);
   transform: scale(1.1);
}
.dp-trav-btn:active {
   background: rgba(186,147,31,0.18);
   transform: scale(0.92);
}
.dp-trav-count {
   font-size: 16px;
   font-weight: 800;
   color: #1a1a2e;
   min-width: 32px;
   text-align: center;
   font-family: 'Montserrat', sans-serif;
   user-select: none;
   border-left: 1px solid #f0f0f0;
   border-right: 1px solid #f0f0f0;
   padding: 4px 0;
}
.dp-price-breakdown {
   margin-top: 14px;
   padding-top: 12px;
   border-top: 1.5px solid #f0efe8;
   font-size: 12px;
   color: #666;
}
.dp-breakdown-row {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 3px 0;
}
.dp-breakdown-row.breakdown-total {
   padding-top: 8px;
   margin-top: 6px;
   border-top: 1.5px solid #ba931f;
   font-weight: 800;
   font-size: 14px;
   color: #1a1a2e;
}
.dp-breakdown-row.breakdown-total .dp-bd-amount {
   color: #ba931f;
   font-size: 16px;
}
.dp-bd-label {
   color: #777;
}
.dp-bd-amount {
   font-weight: 700;
   color: #333;
}
@keyframes price-bump {
   0% { transform: scale(1); }
   50% { transform: scale(1.06); }
   100% { transform: scale(1); }
}
.price-bump {
   animation: price-bump 0.2s ease;
}

/* --- Price total area --- */
.dp-total-row {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 12px 0 4px;
   border-top: 2px solid #f0efe8;
   margin-top: 14px;
}
.dp-total-label {
   font-size: 12px;
   font-weight: 600;
   color: #888;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}
.dp-total-amount {
   font-size: 20px;
   font-weight: 800;
   color: #ba931f;
   font-family: 'Montserrat', sans-serif;
}

/* --- Need Help Card (sidebar) --- */
.dp-help-card {
   background: #fff;
   border-radius: 14px;
   padding: 24px;
   
   border: 1px solid #eee;
   box-shadow: 0 2px 8px rgba(0,0,0,0.04);
   text-align: center;
}
.dp-help-card h4 {
   font-size: 15px;
   font-weight: 700;
   color: #1a1a2e;
   margin: 0 0 14px;
   font-family: 'Montserrat', sans-serif;
}
.dp-help-card .dp-help-row {
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 8px 0;
   font-size: 13px;
   color: #555;
}
.dp-help-card .dp-help-row i {
   color: #ba931f;
   width: 28px;
   font-size: 14px;
   text-align: center;
   flex-shrink: 0;
}
.dp-help-card .dp-help-row a {
   color: #1a1a2e;
   text-decoration: none;
   font-weight: 600;
   transition: color 0.2s;
}
.dp-help-card .dp-help-row a:hover { color: #ba931f; }

/* --- Related Tours Section --- */
.dp-related {
   background: #ffffff;
   padding: 48px 0 60px;
   border-top: 1px solid #eee;
}
.dp-related-head {
   display: flex;
   align-items: center;
   gap: 16px;
   margin-bottom: 32px;
}
.dp-related-head::after {
   content: '';
   flex: 1;
   height: 1px;
   background: #e0e0e0;
}
.dp-related-head .dp-rel-eyebrow {
   font-size: 11px;
   font-weight: 700;
   color: #ba931f;
   text-transform: uppercase;
   letter-spacing: 1.5px;
   display: block;
   margin-bottom: 2px;
}
.dp-related-head h2 {
   font-size: 1.4rem;
   font-weight: 800;
   color: #1a1a2e;
   font-family: 'Montserrat', sans-serif;
   margin: 0;
}
.dp-tour-card {
   background: #fff;
   border-radius: 12px;
   overflow: hidden;
   box-shadow: 0 2px 10px rgba(0,0,0,0.06);
   border: 1px solid #f0f0f0;
   transition: all 0.25s;
   display: block;
   color: inherit;
   text-decoration: none;
   margin-bottom: 20px;
}
.dp-tour-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 8px 24px rgba(0,0,0,0.1);
   color: inherit;
   text-decoration: none;
}
.dp-tour-card .dtgc-img {
   height: 180px;
   background-size: cover;
   background-position: center;
   position: relative;
}
.dp-tour-card .dtgc-badge-day {
   position: absolute;
   top: 10px;
   left: 10px;
   background: #ba931f;
   color: #fff;
   font-size: 11px;
   font-weight: 700;
   padding: 3px 10px;
   border-radius: 16px;
}
.dp-tour-card .dtgc-badge-price {
   position: absolute;
   bottom: 10px;
   right: 10px;
   background: rgba(0,0,0,0.6);
   color: #fff;
   font-size: 12px;
   font-weight: 700;
   padding: 3px 10px;
   border-radius: 16px;
}
.dp-tour-card .dtgc-body {
   padding: 16px 18px;
}
.dp-tour-card .dtgc-title {
   font-size: 14px;
   font-weight: 700;
   color: #1a1a2e;
   margin: 0 0 6px;
}
.dp-tour-card .dtgc-meta {
   display: flex;
   gap: 12px;
   font-size: 11px;
   color: #aaa;
}
.dp-tour-card .dtgc-meta i { color: #ba931f; margin-right: 3px; }

/* --- Responsive Adjustments --- */
@media (max-width: 731px) {
   .dp-sidebar { position: static; }
   .dp-book-card { margin-top: 20px; }
   .dp-content { padding: 24px 0 36px; }

   /* Reorder: booking card above day-tours on mobile */
   .dp-content .row.g-4 > .col-lg-8,
   .dp-content .row.g-4 > .col-lg-4 { display: contents; }
   .dp-content .row.g-4 { display: flex; flex-direction: column; }
   .dp-content .row.g-4 .dp-card        { order: 1; width: 100%; }
   .dp-content .row.g-4 .dp-callout     { order: 1; }
   .dp-content .row.g-4 .dp-sidebar     { order: 2; width: 100%; }
   .dp-content .row.g-4 .admin-day-tours{ order: 3; width: 100%; }
   .dp-book-card { margin-top: 0; }
}
@media (max-width: 731px) {
   .dp-card { padding: 20px; border-radius: 12px; }
   .dp-card-title { font-size: 15px; }
   .dp-card-title i { width: 28px; height: 28px; font-size: 13px; }
   .dp-book-price-row .dp-price-big { font-size: 1.8rem; }
   .dp-help-card { padding: 18px; margin-bottom: 20px; }

   /* Day tours card – smaller on phones */
   .admin-day-tours > a {
      padding: 12px !important;
      gap: 10px !important;
   }
   .admin-day-tours > a > div:first-child {
      width: 55px !important;
      height: 42px !important;
   }
   .admin-day-tours h5 {
      font-size: 13px !important;
   }
   .admin-day-tours span {
      font-size: 11px !important;
   }
   .admin-day-tours > a > div:nth-child(3) span:first-child {
      font-size: 17px !important;
   }
}

/* Day tours clickable card hover */
.admin-day-tours > a:hover {
   box-shadow: 0 4px 18px rgba(0,0,0,0.10) !important;
   transform: translateY(-2px);
}

/* --- Legacy classes (keep for backward-compat) --- */
.pd-page-header { display: none; }
.pd-feat-img { display: none; }
.pd-quick-info.dest-compat-hide { display: none; }
.pd-quick-info { display: none; }

/* ====================================================
   PACKAGE DETAIL PAGE — Card-based (matching dest)
   ==================================================== */

/* --- Package Content Area --- */
.pd-content-area {
   background: #f8f9fb;
   padding: 36px 0 60px;
}

/* --- Package uses dp-card from destination --- */
/* Overview inside dp-card */
.pd-overview h3 {
   font-size: 17px;
   font-weight: 700;
   color: #1a1a2e;
   margin: 0 0 16px;
   font-family: 'Montserrat', sans-serif;
   padding: 0;
   border: none;
   display: flex;
   align-items: center;
   gap: 10px;
}
.pd-overview h3 i {
   color: #ba931f;
   font-size: 15px;
   width: 32px;
   height: 32px;
   background: rgba(186,147,31,0.1);
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}
.pd-overview p {
   color: #555;
   line-height: 1.85;
   margin-bottom: 16px;
   font-size: 14.5px;
}
.pd-highlights {
   background: linear-gradient(135deg, #fdfaf0 0%, #fff8e6 100%);
   border-radius: 10px;
   padding: 16px 20px;
   margin-top: 16px;
   border-left: 3px solid #ba931f;
}
.pd-highlights h4 {
   font-size: 14px;
   font-weight: 700;
   margin-bottom: 6px;
   color: #1a1a2e;
   font-family: 'Montserrat', sans-serif;
}
.pd-highlights p {
   font-size: 13.5px;
   color: #555;
   margin: 0;
}
.pd-highlights ul {
   list-style: none;
   padding: 0;
   margin: 0;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 10px;
}
.pd-highlights ul li {
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: 13.5px;
   color: #444;
}
.pd-highlights ul li i {
   color: #ba931f;
   font-size: 11px;
   width: 20px;
   height: 20px;
   background: rgba(186,147,31,0.1);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

/* --- Itinerary inside dp-card (legacy, kept for destinations) --- */
.pd-itinerary-item {
   position: relative;
   padding-left: 35px;
   margin-bottom: 24px;
   border-left: 2px solid #eee;
   padding-bottom: 8px;
}
.pd-itinerary-item:last-child {
   border-left-color: transparent;
   margin-bottom: 0;
}
.pd-itinerary-item .day-marker {
   position: absolute;
   left: -16px;
   top: 0;
   width: 30px;
   height: 30px;
   background: #ba931f;
   color: #fff;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 12px;
   font-weight: 700;
}
.pd-itinerary-item .day-label {
   display: block;
   font-size: 11px;
   color: #ba931f;
   text-transform: uppercase;
   letter-spacing: 1px;
   font-weight: 600;
   margin-bottom: 4px;
}
.pd-itinerary-item h5 {
   font-size: 15px;
   font-weight: 700;
   margin-bottom: 5px;
   color: #1a1a2e;
}
.pd-itinerary-item p {
   color: #555;
   font-size: 13.5px;
   line-height: 1.7;
   margin-bottom: 0;
}
.meal-info {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
   margin-top: 8px;
}
.meal-info span {
   background: #f0f7f0;
   color: #28a745;
   padding: 3px 10px;
   border-radius: 16px;
   font-size: 11px;
   font-weight: 600;
}
.meal-info span i {
   margin-right: 4px;
   font-size: 10px;
}

/* ============================================================
   ITINERARY ACCORDION — Package Detail Pages
   ============================================================ */
.itin-accordion {
   display: flex;
   flex-direction: column;
   gap: 0;
}
.itin-day {
   border: 1px solid #eee;
   border-radius: 12px;
   margin-bottom: 10px;
   overflow: hidden;
   transition: all 0.3s ease;
   background: #fff;
}
.itin-day:last-child { margin-bottom: 0; }
.itin-day.active {
   border-color: rgba(186,147,31,0.3);
   box-shadow: 0 4px 16px rgba(186,147,31,0.08);
}
.itin-day-header {
   display: flex;
   align-items: center;
   gap: 14px;
   padding: 16px 20px;
   cursor: pointer;
   transition: background 0.2s;
   user-select: none;
}
.itin-day-header:hover { background: #fefdf8; }
.itin-day-number {
   width: 36px;
   height: 36px;
   min-width: 36px;
   background: #f0ede3;
   color: #ba931f;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 13px;
   font-weight: 700;
   transition: all 0.3s;
}
.itin-day.active .itin-day-number {
   background: linear-gradient(135deg, #ba931f 0%, #d4a820 100%);
   color: #fff;
   box-shadow: 0 2px 8px rgba(186,147,31,0.3);
}
.itin-day-info { flex: 1; min-width: 0; }
.itin-day-info .itin-day-label {
   display: block;
   font-size: 10px;
   color: #ba931f;
   text-transform: uppercase;
   letter-spacing: 1.5px;
   font-weight: 700;
   margin-bottom: 2px;
}
.itin-day-info h5 {
   font-size: 15px;
   font-weight: 700;
   color: #1a1a2e;
   margin: 0;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}
.itin-day-meals {
   display: flex;
   gap: 5px;
   flex-wrap: wrap;
   flex-shrink: 0;
}
.itin-day-meals span {
   background: #f0f7f0;
   color: #28a745;
   padding: 3px 8px;
   border-radius: 12px;
   font-size: 10px;
   font-weight: 600;
   white-space: nowrap;
}
.itin-day-meals span i { margin-right: 3px; font-size: 9px; }
.itin-day-toggle {
   width: 28px;
   height: 28px;
   min-width: 28px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #bbb;
   transition: all 0.3s;
   font-size: 13px;
}
.itin-day.active .itin-day-toggle {
   color: #ba931f;
   transform: rotate(180deg);
}

/* Accordion body — collapsed by default */
.itin-day-body {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.45s cubic-bezier(.4,.0,.2,1), padding 0.35s ease;
   padding: 0 20px 0 70px;
}
.itin-day.active .itin-day-body {
   max-height: 2000px;
   padding: 0 20px 20px 70px;
}
.itin-day-body > .itin-day-desc {
   color: #555;
   font-size: 13.5px;
   line-height: 1.7;
   margin: 0 0 16px;
}

/* --- Stops Timeline --- */
.itin-stops {
   position: relative;
   padding-left: 26px;
   margin: 4px 0 0;
}
.itin-stops::before {
   content: '';
   position: absolute;
   left: 7px;
   top: 10px;
   bottom: 10px;
   width: 2px;
   background: linear-gradient(to bottom, rgba(186,147,31,0.35), rgba(186,147,31,0.08));
   border-radius: 2px;
}
.itin-stop {
   position: relative;
   padding: 6px 0;
}
.itin-stop:first-child { padding-top: 0; }
.itin-stop:last-child { padding-bottom: 0; }
.itin-stop-dot {
   position: absolute;
   left: -22px;
   top: 14px;
   width: 16px;
   height: 16px;
   border-radius: 50%;
   background: #fff;
   border: 2.5px solid #ba931f;
   z-index: 1;
   transition: all 0.2s;
}
.itin-stop:first-child .itin-stop-dot { top: 8px; }
.itin-stop-content {
   background: #f8f9fb;
   border: 1px solid #eee;
   border-radius: 10px;
   padding: 12px 16px;
   transition: all 0.25s;
}
.itin-stop-content:hover {
   border-color: rgba(186,147,31,0.25);
   background: #fefdf8;
   transform: translateX(3px);
}
.itin-stop-content h6 {
   font-size: 13.5px;
   font-weight: 600;
   color: #1a1a2e;
   margin: 0 0 3px;
   display: flex;
   align-items: center;
   gap: 8px;
}
.itin-stop-content h6 .stop-icon {
   color: #ba931f;
   font-size: 12px;
   width: 22px;
   height: 22px;
   min-width: 22px;
   background: rgba(186,147,31,0.1);
   border-radius: 6px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
}
.itin-stop-content p {
   font-size: 12.5px;
   color: #777;
   margin: 0;
   line-height: 1.5;
}
.itin-stop-meta {
   display: flex;
   align-items: center;
   gap: 12px;
   margin-top: 6px;
}
.itin-stop-time {
   display: inline-flex;
   align-items: center;
   gap: 4px;
   font-size: 11px;
   color: #ba931f;
   font-weight: 600;
}
.itin-stop-time i { font-size: 10px; }
.itin-stop-duration {
   display: inline-flex;
   align-items: center;
   gap: 4px;
   font-size: 11px;
   color: #999;
   font-weight: 500;
}
.itin-stop-duration i { font-size: 10px; }

/* Meals row inside body */
.itin-day-body .itin-meals-row {
   display: flex;
   gap: 8px;
   flex-wrap: wrap;
   margin-top: 14px;
   padding-top: 14px;
   border-top: 1px solid #f0f0f0;
}
.itin-meals-row span {
   background: #f0f7f0;
   color: #28a745;
   padding: 4px 12px;
   border-radius: 16px;
   font-size: 11.5px;
   font-weight: 600;
}
.itin-meals-row span i { margin-right: 4px; font-size: 10px; }

/* --- Itinerary Accordion Responsive --- */
@media (max-width: 991px) {
   .itin-day-meals { display: none; }
}
@media (max-width: 731px) {
   .itin-day-header { padding: 12px 14px; gap: 10px; }
   .itin-day-number { width: 32px; height: 32px; min-width: 32px; font-size: 12px; }
   .itin-day-info h5 { font-size: 14px; }
   .itin-day-body { padding: 0 14px 0 56px; }
   .itin-day.active .itin-day-body { padding: 0 14px 16px 56px; }
   .itin-stop-content { padding: 10px 12px; }
   .itin-stop-content h6 { font-size: 13px; }
   .itin-stop-content p { font-size: 12px; }
}

/* --- Include / Exclude inside dp-card --- */
.pd-include-list,
.pkg-includes-list,
.pkg-excludes-list {
   list-style: none;
   padding: 0;
   margin: 0;
}
.pd-include-list li,
.pkg-includes-list li,
.pkg-excludes-list li {
   padding: 9px 0;
   border-bottom: 1px solid #f0f0f0;
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: 13.5px;
   color: #444;
}
.pd-include-list li:last-child,
.pkg-includes-list li:last-child,
.pkg-excludes-list li:last-child {
   border-bottom: none;
}
.pd-include-list li i.fa-check,
.pd-include-list li i.fa-check-circle,
.pkg-includes-list li i,
.pkg-excludes-list li i.fa-times {
   font-size: 14px;
}
.pd-include-list li i.fa-check-circle,
.pkg-includes-list li i.fa-check {
   color: #28a745;
}
.pd-include-list li i.fa-times-circle,
.pkg-excludes-list li i.fa-times {
   color: #dc3545;
}

/* --- Package Sidebar — reuses dp-book-card styles --- */
.pd-sidebar-card {
   background: #fff;
   border-radius: 14px;
   box-shadow: 0 4px 20px rgba(0,0,0,0.07);
   overflow: hidden;
   position: sticky;
   top: 100px;
   border: 1px solid #eee;
}
.pd-sidebar-card .card-header-custom {
   padding: 24px 24px 20px;
   text-align: left;
   position: relative;
   overflow: hidden;
   background: #fff;
   border-bottom: 1px solid #f0f0f0;
}
.pd-sidebar-card .card-header-custom::before {
   content: '';
   position: absolute;
   top: -30px;
   right: -30px;
   width: 100px;
   height: 100px;
   background: rgba(186,147,31,0.06);
   border-radius: 50%;
}
.pd-sidebar-card .card-header-custom::after { display: none; }
.pd-sidebar-card .card-header-custom .price-label {
   font-size: 11px;
   color: #aaa;
   text-transform: uppercase;
   letter-spacing: 1.2px;
   font-weight: 600;
   display: block;
   margin-bottom: 6px;
}
.pd-sidebar-card .card-header-custom .price-display {
   font-size: 2.2rem;
   font-weight: 800;
   color: #ba931f;
   font-family: 'Montserrat', sans-serif;
   line-height: 1;
}
.pd-sidebar-card .card-header-custom .price-display small {
   font-size: 13px;
   font-weight: 400;
   color: #999;
}
.pd-sidebar-card .card-body-custom {
   padding: 24px;
}
.pd-sidebar-card .card-body-custom .detail-list {
   list-style: none;
   padding: 0;
   margin: 0 0 20px;
}
.pd-sidebar-card .card-body-custom .detail-list li {
   display: flex;
   justify-content: space-between;
   padding: 9px 0;
   border-bottom: 1px solid #f0f0f0;
   font-size: 13px;
}
.pd-sidebar-card .card-body-custom .detail-list li:last-child {
   border-bottom: none;
}
.pd-sidebar-card .card-body-custom .detail-list li span:first-child {
   color: #999;
   font-weight: 500;
}
.pd-sidebar-card .card-body-custom .detail-list li span:last-child {
   font-weight: 600;
   color: #1a1a2e;
}
.pd-sidebar-card .btn-book-now {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   width: 100%;
   padding: 14px;
   background: linear-gradient(135deg, #ba931f 0%, #d4a820 100%);
   color: #fff;
   border: none;
   border-radius: 50px;
   font-size: 14px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.8px;
   text-align: center;
   cursor: pointer;
   text-decoration: none;
   position: relative;
   overflow: hidden;
   box-shadow: 0 2px 10px rgba(186,147,31,0.20);
   transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, background 0.3s ease;
}
.pd-sidebar-card .btn-book-now::before {
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
   transition: left 0.5s ease;
}
.pd-sidebar-card .btn-book-now:hover::before {
   left: 100%;
}
.pd-sidebar-card .btn-book-now:hover {
   background: linear-gradient(135deg, #a8840e 0%, #ba931f 100%);
   color: #fff;
   transform: translateY(-3px);
   box-shadow: 0 10px 30px rgba(186,147,31,0.35);
}
.pd-sidebar-card .btn-whatsapp {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   width: 100%;
   padding: 12px;
   background: rgba(37,211,102,0.06);
   border: 2px solid rgba(37,211,102,0.25);
   color: #25D366;
   border-radius: 50px;
   font-size: 13px;
   font-weight: 600;
   text-align: center;
   margin-top: 10px;
   text-decoration: none;
   transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.pd-sidebar-card .btn-whatsapp:hover {
   background: #25D366;
   border-color: #25D366;
   color: #fff;
   transform: translateY(-3px);
   box-shadow: 0 8px 24px rgba(37,211,102,0.30);
}
.pd-sidebar-card .btn-whatsapp i {
   margin-right: 4px;
}

/* --- Related Tours --- */
.pd-related-tours {
   background: #ffffff;
   padding: 48px 0 60px;
   border-top: 1px solid #eee;
}
.pd-related-tours .section-heading {
   display: flex;
   align-items: center;
   gap: 16px;
   margin-bottom: 32px;
   text-align: left;
   padding-bottom: 0;
   position: static;
}
.pd-related-tours .section-heading::after {
   content: '';
   flex: 1;
   height: 1px;
   background: #e0e0e0;
   position: static;
   transform: none;
   width: auto;
}
.pd-related-tours .section-heading h5 {
   color: #ba931f;
   font-size: 11px;
   text-transform: uppercase;
   letter-spacing: 1.5px;
   font-weight: 700;
   margin-bottom: 2px;
}
.pd-related-tours .section-heading h2 {
   font-size: 1.4rem;
   font-weight: 800;
   color: #1a1a2e;
   font-family: 'Montserrat', sans-serif;
   margin: 0;
}
.pd-tour-card {
   background: #fff;
   border-radius: 12px;
   overflow: hidden;
   box-shadow: 0 2px 10px rgba(0,0,0,0.06);
   border: 1px solid #f0f0f0;
   transition: all 0.25s;
   margin-bottom: 20px;
}
.pd-tour-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.pd-tour-card .card-img {
   height: 180px;
   background-size: cover;
   background-position: center;
   position: relative;
}
.pd-tour-card .card-img .duration-badge {
   position: absolute;
   top: 10px;
   left: 10px;
   background: #ba931f;
   color: #fff;
   padding: 3px 10px;
   border-radius: 16px;
   font-size: 11px;
   font-weight: 700;
}
.pd-tour-card .card-img .price-badge {
   position: absolute;
   bottom: 10px;
   right: 10px;
   background: rgba(0,0,0,0.6);
   color: #fff;
   padding: 3px 10px;
   border-radius: 16px;
   font-size: 12px;
   font-weight: 700;
}
.pd-tour-card .card-body-tour {
   padding: 16px 18px;
}
.pd-tour-card .card-body-tour h4 {
   font-size: 14px;
   font-weight: 700;
   margin-bottom: 6px;
   line-height: 1.4;
}
.pd-tour-card .card-body-tour h4 a {
   color: #1a1a2e;
   text-decoration: none;
   transition: color 0.2s;
}
.pd-tour-card .card-body-tour h4 a:hover {
   color: #ba931f;
}
.pd-tour-card .card-body-tour .tour-meta {
   display: flex;
   gap: 12px;
   font-size: 11px;
   color: #aaa;
}
.pd-tour-card .card-body-tour .tour-meta i {
   color: #ba931f;
   margin-right: 3px;
}

/* --- Package-specific tabs removed → cards style --- */
.pd-tabs .nav-tabs { display: none; }
.pd-tabs .tab-content { padding-top: 0; }
.pd-tabs .tab-pane { display: block !important; opacity: 1 !important; }

/* --- Quick Info hidden → info moved to tags --- */
.pd-quick-info .pd-price-tag { display: none; }

/* --- Need Help Card (shared with dest) --- */

/* --- Responsive --- */
@media (max-width: 731px) {
   .pd-sidebar-card { position: static; margin-top: 20px; }
   .pd-highlights ul { grid-template-columns: 1fr; }
}
@media (max-width: 731px) {
   .pd-tour-card .card-img { height: 150px; }
}

/* --- Inline Header (inside card, desktop only) --- */
.dp-inline-header { display: none; }
.dp-inline-header .dp-ih-crumb {
   display: flex;
   align-items: center;
   gap: 6px;
   font-size: 12px;
   color: #999;
   margin-bottom: 14px;
}
.dp-inline-header .dp-ih-crumb a {
   color: #777;
   text-decoration: none;
   transition: color 0.2s;
}
.dp-inline-header .dp-ih-crumb a:hover { color: #ba931f; }
.dp-inline-header .dp-ih-crumb .sep { color: #ccc; }
.dp-inline-header .dp-ih-title {
   font-size: 2rem;
   font-weight: 800;
   color: #1a1a2e;
   font-family: 'Montserrat', sans-serif;
   margin: 0 0 6px;
   line-height: 1.25;
}
.dp-inline-header .dp-ih-subtitle {
   font-size: 15px;
   color: #999;
   margin: 0 0 14px;
   font-weight: 400;
   font-style: italic;
}
.dp-inline-header .dp-ih-tags {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   margin-bottom: 22px;
   padding-bottom: 22px;
   border-bottom: 1px solid #f0f0f0;
}

/* --- Desktop: inline header visible, top sections hidden, float image --- */
@media (min-width: 732px) {
   .dp-inline-header { display: block; }

   /* Hide standalone breadcrumb + title sections */
   .dp-breadcrumb,
   .dp-title-section { display: none; }
   .pd-breadcrumb-bar { display: none; }

   /* Offset for hidden top sections */
   .dp-content { padding-top: 130px; }
   .pd-content-area { padding-top: 130px; }

   /* Float image → text wraps around it */
   .dp-overview-grid {
      display: block !important;
   }
   .dp-overview-grid .dp-overview-img {
      float: right;
      margin: 0 0 16px 24px;
      width: 240px;
      height: 180px;
   }
   .dp-overview-grid::after {
      content: '';
      display: table;
      clear: both;
   }
}

/* --- Desktop font-size bump (dest + pkg detail pages) --- */
@media (min-width: 732px) {
   /* Destination content */
   .dp-overview-grid .dest-overview-text { font-size: 16px; }
   .dp-callout .dest-tourtype-name { font-size: 15.5px; }
   .dp-callout .dest-tourtype-desc { font-size: 14.5px; }
   .dp-highlights li { font-size: 15px; }
   .dp-essentials li { font-size: 15px; }\n   .dp-inc-list li, .dp-exc-list li { font-size: 14.5px; }
   .dp-card-title { font-size: 18px; }
   .dp-tag { font-size: 13.5px; }
   .dp-title-section .dest-subtitle { font-size: 16.5px; }
   .dp-inline-header .dp-ih-subtitle { font-size: 16.5px; }
   .dp-book-details li { font-size: 14.5px; }
   .dp-book-name { font-size: 16px; }
   .dp-help-card .dp-help-row { font-size: 14.5px; }
   .dp-day-tour .ddt-title { font-size: 15.5px; }
   .dp-day-tour .ddt-meta { font-size: 12.5px; }
   .dp-tour-card .dtgc-title { font-size: 15.5px; }
   .dp-tour-card .dtgc-meta { font-size: 12.5px; }
   .dp-related-head h2 { font-size: 1.55rem; }
   /* Package content */
   .pd-overview p { font-size: 16px; }
   .pd-overview h3 { font-size: 18px; }
   .pd-highlights h4 { font-size: 15.5px; }
   .pd-highlights p { font-size: 15px; }
   .pd-itinerary-item h5 { font-size: 16.5px; }
   .pd-itinerary-item p { font-size: 15px; }
   .pd-itinerary-item .day-label { font-size: 12.5px; }
   .itin-day-info h5 { font-size: 16.5px; }
   .itin-day-body > .itin-day-desc { font-size: 15px; }
   .itin-stop-content h6 { font-size: 14.5px; }
   .itin-stop-content p { font-size: 13.5px; }
   .pd-include-list li { font-size: 15px; }
   .pd-sidebar-card .card-body-custom .detail-list li { font-size: 14.5px; }
   .pd-sidebar-card .btn-book-now { font-size: 15.5px; }
   .pd-sidebar-card .btn-whatsapp { font-size: 14.5px; }
   .pd-related-tours .section-heading h2 { font-size: 1.55rem; }
   .pd-tour-card .card-body-tour h4 { font-size: 15.5px; }
   .pd-tour-card .card-body-tour .tour-meta { font-size: 12.5px; }
   .meal-info span { font-size: 13px; }
}

/* ============================================================
   MOBILE STICKY PRICE BAR + DRAWER
   (Destination & Package pages)
   ============================================================ */

/* Hidden on desktop */
.dp-mobile-sticky-bar,
.dp-mobile-drawer-overlay,
.dp-mobile-drawer { display: none; }

@media screen and (max-width: 731px) {

   /* Hide desktop sidebar on phone */
   .dp-sidebar { display: none !important; }
   .col-lg-4 > .dp-book-card { display: none !important; }
   .col-lg-4 > .dp-help-card { display: none !important; }

   /* ===== Sticky bottom price bar ===== */
   .dp-mobile-sticky-bar {
      display: flex !important;
      align-items: center;
      justify-content: space-between;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 9999;
      background: #fff;
      padding: 10px 14px;
      box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
      border-top: 2px solid #ba931f;
      gap: 8px;
   }
   .dp-msb-info { flex: 1; min-width: 0; }
   .dp-msb-name {
      font-family: 'Montserrat', sans-serif;
      font-size: 11.5px; font-weight: 700;
      color: #1a1a2e;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
      line-height: 1.3;
   }
   .dp-msb-price {
      font-family: 'Montserrat', sans-serif;
      font-size: 18px; font-weight: 800;
      color: #ba931f; line-height: 1.2;
   }
   .dp-msb-price small {
      font-size: 10px; font-weight: 500; color: #999; margin-left: 2px;
   }
   .dp-msb-actions {
      display: flex; flex-shrink: 0;
   }
   .dp-msb-btn-book {
      padding: 11px 22px; border-radius: 50px;
      background: linear-gradient(135deg, #ba931f, #d4a820);
      color: #fff; border: none; cursor: pointer;
      font-family: 'Montserrat', sans-serif;
      font-size: 11px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.5px;
      text-decoration: none;
      display: flex; align-items: center; gap: 6px;
      box-shadow: 0 3px 12px rgba(186,147,31,0.25);
   }

   /* ===== Slide-up drawer ===== */
   .dp-mobile-drawer-overlay {
      display: none;
      position: fixed; inset: 0; z-index: 9998;
      background: rgba(0,0,0,0.45);
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
   }
   .dp-mobile-drawer-overlay.open { display: block; }
   .dp-mobile-drawer {
      display: block !important;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 9999;
      background: #fff;
      border-radius: 18px 18px 0 0;
      box-shadow: 0 -8px 40px rgba(0,0,0,0.15);
      transform: translateY(100%);
      transition: transform 0.35s cubic-bezier(.4,.0,.2,1);
      max-height: 90vh;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
   }
   .dp-mobile-drawer.open { transform: translateY(0); }
   .dp-drawer-handle {
      display: flex; justify-content: center; align-items: center;
      padding: 10px 0 4px; cursor: pointer;
      position: sticky; top: 0; background: #fff;
      border-radius: 18px 18px 0 0; z-index: 1;
   }
   .dp-drawer-handle span {
      width: 36px; height: 4px; border-radius: 2px; background: #d0cec5;
   }
   .dp-drawer-close {
      position: absolute; top: 10px; right: 14px;
      width: 28px; height: 28px; border-radius: 50%;
      background: #f0efea; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; color: #666; transition: all 0.2s;
   }
   .dp-drawer-close:hover { background: #e4e2db; color: #333; }
   .dp-drawer-body {
      padding: 4px 18px 24px;
   }
   /* Drawer re-displays the booking card */
   .dp-drawer-body .dp-book-card {
      display: block !important;
      box-shadow: none !important;
      border: none !important;
      border-radius: 0 !important;
      margin: 0 0 8px !important;
   }
   .dp-drawer-body .dp-help-card {
      display: block !important;
      box-shadow: none !important;
      margin: 0 !important;
      border-top: 1px solid #eee;
      border-radius: 0 !important;
      padding-top: 16px;
   }

   /* Page bottom padding for sticky bar */
   .dp-content,
   .pd-content-area { padding-bottom: 76px !important; }
}
