/* ===== DETLEF SAFARIS ARTICLE / ITINERARY LAYOUT ===== */
body.single-post, body.single-itinerary { background: #ffffff !important; }
.ds-article-page {
  font-family: 'Figtree', 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  color: #191815;
  line-height: 1.6;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  background: #ffffff;
}

/* Hero */
.ds-hero { position: relative; margin: 30px 0 40px; }
.ds-hero-image { width: 100%; height: 500px; object-fit: cover; border-radius: 16px; display: block; }
.ds-hero-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,17,114,0.95) 0%, rgba(10,17,114,0.7) 50%, transparent 100%);
  padding: 60px 40px 40px; border-radius: 0 0 16px 16px; color: #fff;
}
.ds-hero-noimage { background: #0A1172; border-radius: 16px; padding: 60px 40px; color: #fff; }
.ds-badge {
  display: inline-block; background: #FECB00; color: #0A1172; padding: 6px 16px; border-radius: 20px;
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; text-decoration: none;
}
.ds-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin: 0 0 15px; line-height: 1.2; color: #fff; }
.ds-meta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 0.95rem; color: #e0e0e0; }
.ds-meta-row i { color: #FECB00; margin-right: 6px; }

/* Sub-header */
.ds-subheader { margin-bottom: 40px; }
.ds-subheader-image { width: 100%; height: 400px; object-fit: cover; border-radius: 16px; margin-bottom: 20px; display: block; }
.ds-subheader-headings { padding: 0 20px; }
.ds-subheader-headings h2 { font-size: 1.8rem; color: #0A1172; margin: 0 0 10px; }
.ds-subheader-headings h3 { font-size: 1.3rem; color: #555; font-weight: 500; margin: 0; }

/* Main grid */
.ds-layout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 50px; padding: 0 20px; margin-bottom: 60px; }
.ds-main { min-width: 0; }
.ds-body { font-size: 1.05rem; line-height: 1.8; color: #333; }
.ds-body p { margin-bottom: 20px; }
.ds-body h2 { font-size: 1.6rem; color: #0A1172; margin: 40px 0 20px; }
.ds-body h3 { font-size: 1.3rem; color: #0A1172; margin: 30px 0 15px; }
.ds-body ul, .ds-body ol { margin: 20px 0; padding-left: 30px; }
.ds-body li { margin-bottom: 10px; }
.ds-body img { max-width: 100%; height: auto; border-radius: 12px; }
.ds-body blockquote { border-left: 4px solid #FECB00; padding: 20px 30px; margin: 30px 0; background: #f8f9fa; font-style: italic; color: #555; }

/* Sidebar + quote form */
.ds-sidebar { position: sticky; top: 100px; align-self: start; display: flex; flex-direction: column; gap: 24px; }
.ds-quote-form-box { background: #fff; padding: 30px; border-radius: 16px; box-shadow: 0 8px 30px rgba(10,17,114,0.1); border: 1px solid rgba(10,17,114,0.1); }
.ds-quote-form-box h3 { font-size: 1.4rem; color: #0A1172; margin: 0 0 10px; }
.ds-quote-form-box > p { color: #666; font-size: 0.9rem; margin-bottom: 25px; }
.ds-form-group { margin-bottom: 18px; }
.ds-form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: #191815; margin-bottom: 6px; }
.ds-form-group label .required { color: #ef233c; }
.ds-form-group input, .ds-form-group select, .ds-form-group textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #d1d5db; border-radius: 8px; font-size: 0.95rem;
  font-family: inherit; transition: border-color .3s, box-shadow .3s; background: #fafafa; box-sizing: border-box;
}
.ds-form-group input:focus, .ds-form-group select:focus, .ds-form-group textarea:focus {
  outline: none; border-color: #0A1172; box-shadow: 0 0 0 3px rgba(10,17,114,0.1); background: #fff;
}
.ds-form-group textarea { resize: vertical; min-height: 100px; }
.ds-submit-btn {
  background: #FECB00; color: #0A1172; border: none; padding: 14px 24px; font-size: 1rem; font-weight: 700;
  border-radius: 50px; cursor: pointer; transition: all .3s ease; width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.ds-submit-btn:hover { background: #e5b700; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(254,203,0,0.3); }
.ds-form-success { background: #e8f7ee; color: #1e7a44; border: 1px solid #bfe8cf; padding: 16px; border-radius: 10px; font-weight: 600; }
.ds-form-error { background: #fdecec; color: #a3212b; border: 1px solid #f3c2c2; padding: 12px 16px; border-radius: 10px; font-weight: 600; margin-bottom: 16px; }
.ds-sidebar-widget { background: #fff; padding: 24px; border-radius: 16px; border: 1px solid rgba(10,17,114,0.1); }
.ds-sidebar-title { font-size: 1.2rem; color: #0A1172; margin: 0 0 12px; }

/* Footer meta + sharing */
.ds-footer { padding: 0 20px; border-top: 1px solid rgba(10,17,114,0.1); margin-top: 40px; }
.ds-meta-section { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 30px; padding: 40px 0; border-bottom: 1px solid rgba(10,17,114,0.1); }
.ds-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.ds-tag { background: rgba(10,17,114,0.1); color: #0A1172; padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 500; text-decoration: none; transition: all .3s; }
.ds-tag:hover { background: #0A1172; color: #fff; }
.ds-share { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.ds-share-label { font-weight: 600; color: #0A1172; }
.ds-share-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.ds-share-btn {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all .3s; border: 1px solid rgba(10,17,114,0.2); background: #fff; color: #0A1172;
}
.ds-share-btn:hover { transform: translateY(-3px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.ds-share-btn.facebook:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.ds-share-btn.twitter:hover { background: #1da1f2; color: #fff; border-color: #1da1f2; }
.ds-share-btn.linkedin:hover { background: #0077b5; color: #fff; border-color: #0077b5; }
.ds-share-btn.whatsapp:hover { background: #25d366; color: #fff; border-color: #25d366; }
.ds-share-btn.copy-url { width: auto; padding: 0 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; gap: 6px; cursor: pointer; }

/* Related */
.ds-related { padding: 60px 0; border-bottom: 1px solid rgba(10,17,114,0.1); }
.ds-related h3 { font-size: 1.8rem; color: #0A1172; margin: 0 0 30px; }
.ds-related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.ds-related-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 15px rgba(10,17,114,0.08); transition: transform .3s, box-shadow .3s; }
.ds-related-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(10,17,114,0.15); }
.ds-related-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.ds-related-card-content { padding: 20px; }
.ds-related-card h4 { font-size: 1.1rem; color: #0A1172; margin: 0 0 10px; line-height: 1.4; }
.ds-related-card h4 a { color: inherit; text-decoration: none; transition: color .3s; }
.ds-related-card h4 a:hover { color: #FECB00; }
.ds-related-card time { font-size: 0.85rem; color: #888; }

/* Native WP comments, restyled to match */
.ds-comments { padding: 60px 0; }
.ds-comments h2.comments-title, .ds-comments h3.comment-reply-title { font-size: 1.8rem; color: #0A1172; margin: 0 0 30px; }
.ds-comments .comment-form { background: #f8f9fa; padding: 30px; border-radius: 16px; margin-bottom: 40px; }
.ds-comments .comment-form p { margin-bottom: 18px; }
.ds-comments .comment-form label { display: block; font-size: 0.9rem; font-weight: 600; color: #191815; margin-bottom: 6px; }
.ds-comments .comment-form input[type=text], .ds-comments .comment-form input[type=email], .ds-comments .comment-form input[type=url], .ds-comments .comment-form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #d1d5db; border-radius: 8px; font-family: inherit; box-sizing: border-box; background: #fff;
}
.ds-comments .comment-form textarea { min-height: 120px; }
.ds-comments .form-submit input {
  background: #FECB00; color: #0A1172; border: none; padding: 14px 24px; font-size: 1rem; font-weight: 700; border-radius: 50px; cursor: pointer;
}
.ds-comments ol.comment-list { list-style: none; margin: 0; padding: 0; }
.ds-comments .comment-body { background: #fff; padding: 25px; border-radius: 12px; margin-bottom: 20px; box-shadow: 0 2px 10px rgba(10,17,114,0.05); }
.ds-comments .comment-author { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.ds-comments .comment-author .avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.ds-comments .comment-author .fn { font-weight: 700; color: #0A1172; display: block; font-style: normal; }
.ds-comments .comment-metadata { font-size: 0.85rem; color: #888; }
.ds-comments .comment-metadata a { color: inherit; }
.ds-comments .comment-content p { margin: 0; color: #555; line-height: 1.6; }
.ds-comments ol.children { list-style: none; margin: 0 0 0 40px; padding: 0; }

/* ===== ITINERARY TRIP LAYOUT (duration/price bar, day-by-day, inclusions) ===== */
.ds-trip-meta { display: flex; flex-wrap: wrap; gap: 20px; background: #fff; padding: 20px; border-radius: 12px; box-shadow: 0 4px 20px rgba(10,17,114,0.08); margin: -30px 20px 0; position: relative; z-index: 2; border: 1px solid rgba(10,17,114,0.05); }
.ds-meta-item { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 140px; }
.ds-meta-item i { width: 40px; height: 40px; background: rgba(254,203,0,0.15); color: #0A1172; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.ds-meta-item div strong { display: block; font-size: 0.85rem; color: #666; font-weight: 500; }
.ds-meta-item div span { font-size: 1.1rem; font-weight: 700; color: #0A1172; }

.ds-trip-highlights { background: #F8F2EC; padding: 30px; border-radius: 12px; margin: 30px 0; }
.ds-trip-highlights h3 { margin: 0 0 20px; color: #0A1172; font-size: 1.4rem; }
.ds-trip-highlights ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 15px; }
.ds-trip-highlights li { display: flex; align-items: flex-start; gap: 10px; font-size: 1rem; }
.ds-trip-highlights li i { color: #FECB00; margin-top: 4px; }

.ds-day-by-day { margin: 30px 0; }
.ds-day-item { border: 1px solid #e0e0e0; border-radius: 8px; margin-bottom: 15px; overflow: hidden; background: #fff; }
.ds-day-item summary { padding: 20px; cursor: pointer; font-weight: 700; font-size: 1.1rem; color: #0A1172; display: flex; justify-content: space-between; align-items: center; list-style: none; transition: background .3s; }
.ds-day-item summary:hover { background: #f9f9f9; }
.ds-day-item summary::-webkit-details-marker { display: none; }
.ds-day-item summary::after { content: '\f078'; font-family: "Font Awesome 6 Free"; font-weight: 900; transition: transform .3s; flex-shrink: 0; margin-left: 12px; }
.ds-day-item[open] summary::after { transform: rotate(180deg); }
.ds-day-content { padding: 0 20px 20px; color: #555; border-top: 1px solid #f0f0f0; }
.ds-day-content p { margin-top: 15px; margin-bottom: 0; }

.ds-inclusions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 30px 0; }
.ds-include-box h3, .ds-exclude-box h3 { font-size: 1.3rem; margin: 0 0 15px; }
.ds-include-box h3 { color: #2e7d32; }
.ds-exclude-box h3 { color: #c62828; }
.ds-include-box ul, .ds-exclude-box ul { list-style: none; padding: 0; margin: 0; }
.ds-include-box li, .ds-exclude-box li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.95rem; }
.ds-include-box li i { color: #2e7d32; margin-top: 4px; }
.ds-exclude-box li i { color: #c62828; margin-top: 4px; }

.ds-quote-card .price-tag { font-size: 1.8rem; font-weight: 800; color: #FECB00; margin: 4px 0 20px; display: block; }
.ds-quote-card .price-tag small { font-size: 1rem; font-weight: 500; color: #666; }
.ds-sidebar-contact { margin-top: 20px; padding-top: 20px; border-top: 1px solid #eee; text-align: center; }
.ds-sidebar-contact a { display: inline-flex; align-items: center; gap: 8px; color: #0A1172; text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.ds-sidebar-contact a:hover { color: #FECB00; }

@media (max-width: 900px) {
  .ds-inclusions-grid { grid-template-columns: 1fr; }
  .ds-trip-meta { margin: -20px 0 0; }
}

/* ===== BLOG LISTING PAGE ===== */
.ds-blog-page { max-width: 1400px; margin: 0 auto; padding: 0 20px 60px; font-family: 'Figtree', 'Poppins', 'Helvetica Neue', Arial, sans-serif; }
.ds-blog-hero { background: #0A1172; border-radius: 16px; padding: 70px 40px; text-align: center; margin: 30px 0 50px; }
.ds-blog-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin: 0 0 12px; }
.ds-blog-hero p { color: #e0e0e0; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.ds-blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.ds-blog-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 15px rgba(10,17,114,0.08); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.ds-blog-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(10,17,114,0.15); }
.ds-blog-card-image { position: relative; display: block; height: 220px; overflow: hidden; }
.ds-blog-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.ds-blog-card:hover .ds-blog-card-image img { transform: scale(1.05); }
.ds-blog-card-badge { position: absolute; top: 14px; left: 14px; background: #FECB00; color: #0A1172; padding: 5px 14px; border-radius: 20px; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; text-decoration: none; }
.ds-blog-card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.ds-blog-card-body h2 { font-size: 1.25rem; margin: 0 0 10px; line-height: 1.35; }
.ds-blog-card-body h2 a { color: #0A1172; text-decoration: none; }
.ds-blog-card-body h2 a:hover { color: #FECB00; }
.ds-blog-card-excerpt { color: #555; font-size: 0.95rem; line-height: 1.6; margin: 0 0 18px; flex: 1; }
.ds-blog-card-meta { display: flex; align-items: center; gap: 16px; font-size: 0.85rem; color: #888; margin-bottom: 14px; }
.ds-blog-card-meta i { color: #FECB00; margin-right: 5px; }
.ds-blog-card-link { align-self: flex-start; color: #0A1172; font-weight: 700; font-size: 0.9rem; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.ds-blog-card-link:hover { color: #FECB00; }
.ds-blog-empty { text-align: center; padding: 60px 20px; color: #666; }
.ds-blog-pagination { display: flex; justify-content: center; gap: 10px; margin-top: 50px; flex-wrap: wrap; }
.ds-blog-pagination a, .ds-blog-pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 10px; border-radius: 10px; text-decoration: none; font-weight: 600; color: #0A1172; background: #fff; border: 1px solid rgba(10,17,114,0.15); }
.ds-blog-pagination a:hover { background: #0A1172; color: #fff; }
.ds-blog-pagination span.current { background: #FECB00; color: #0A1172; border-color: #FECB00; }
@media (max-width: 600px) {
  .ds-blog-hero { padding: 45px 24px; }
}

/* Responsive */
@media (max-width: 1024px) {
  .ds-layout-grid { grid-template-columns: 1fr; }
  .ds-sidebar { position: static; }
}
@media (max-width: 768px) {
  .ds-hero-image, .ds-subheader-image { height: 280px; }
  .ds-hero-overlay { padding: 40px 20px 30px; }
  .ds-meta-section { flex-direction: column; }
  .ds-related-grid { grid-template-columns: 1fr; }
}
