/*DESTINATIONS LIST*/
/* ==== Countries Section ==== */
.ctcnt-section {
  padding: 3rem 1rem;
  background-color: #fdfdfd;
}

.ctcnt-container {
  max-width: 1200px;
  margin: auto;
}

.ctcnt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .ctcnt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


.ctcnt-card {
  background: white;
  border: 1px solid #ddd;
  padding: 1.5rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.ctcnt-card:hover {
  transform: translateY(-5px);
}

.ctcnt-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #3E2723;
  font-weight: 600;
  text-decoration: none;
}

/* ==== Locations Section ==== */
.ctloc-section {
  padding: 4rem 1rem;
  background-color: #fff;
}

.ctloc-container {
  max-width: 1200px;
  margin: auto;
}

.ctloc-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ctloc-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 992px) {
  .ctloc-layout {
    flex-direction: row;
  }
}

.ctloc-main {
  flex: 3;
}

.ctloc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .ctloc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ctloc-card {
  background: #f7f7f7;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.ctloc-card-img {
  background-size: cover;
  background-position: center;
  padding: 1.5rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ctloc-card-content {
  background-color: rgba(255,255,255,0.85);
  padding: 1rem;
  backdrop-filter: blur(3px);
}

.ctloc-link {
  margin-top: 0.5rem;
  display: inline-block;
  color: #3E2723;
  font-weight: bold;
  text-decoration: none;
}

.ctloc-more {
  margin-top: 2rem;
  text-align: right;
}

.ctloc-sidebar {
  flex: 1;
  position: sticky;
  top: 2rem;
  align-self: flex-start;
}

.ctloc-sidebar h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.ctloc-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ctloc-sidebar-links a {
  color: #444;
  text-decoration: none;
  font-size: 0.95rem;
}

.ctloc-sidebar-links a:hover {
  color: #000;
}




/* Base Section */
.ctrdtl-section {
  padding: 3rem 1rem;
  max-width: 960px;
  margin: auto;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  background-color: #fff;
}

/* Hero */
.ctrdtl-hero {
  text-align: center;
  margin-bottom: 2rem;
}

.ctrdtl-title {
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.ctrdtl-brief {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.ctrdtl-image-wrapper {
  margin: 1.5rem auto;
  max-width: 100%;
}

.ctrdtl-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border: 1px solid #ccc;
}

/* About & Description */
.ctrdtl-about,
.ctrdtl-facts,
.ctrdtl-video,
.ctrdtl-seo,
.ctrdtl-experiences {
  margin-bottom: 3rem;
}

.ctrdtl-description {
  line-height: 1.6;
  font-size: 1rem;
  color: #444;
}

/* Links */
.ctrdtl-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #3E2723;
  color: white;
  text-decoration: none;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.ctrdtl-link:hover {
  background-color: #5D4037;
}

/* Quick Facts */
.ctrdtl-facts ul {
  list-style: none;
  padding: 0;
}

.ctrdtl-facts li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* SEO */
.ctrdtl-seo ul {
  list-style: none;
  padding: 0;
}

.ctrdtl-seo li {
  margin-bottom: 0.5rem;
}

/* Footer */
.ctrdtl-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #666;
}

