@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

:root {
  --color-brown: #9a030a;
  --color-black: #000000;
  --color-yellow: #fa6608;
  --color-gray: #f8f8f8;
  --color-border: #dddddd;
  --bs-carousel-indicator-active-bg: var(--color-yellow);
}

/* universal styles */

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  padding-left: 0;
}

.text-brown {
  color: var(--color-brown);
}

.heading__link {
  color: var(--color-brown);
  cursor: pointer;
  &:hover {
    color: var(--color-black);
  }
}

.bottom__line {
  position: relative;
  margin-bottom: 1.5rem;
}
.bottom__line::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 20%;
  height: 2px;
  background-color: var(--color-brown);
}

.breadcrumb {
  font-size: 0.8rem;
}

.blog-content {
  font-size: 1.1rem;
  color: rgb(86, 86, 86);
}

.breadcrumb-section nav ol li {
  font-size: 0.9rem;
}

/* Trip Details */
.countdown-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
  padding: 2rem;
  color: white;
}

.countdown-item {
  text-align: center;
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: bold;
}

.countdown-label {
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.discount-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem;
  backdrop-filter: blur(10px);
}

.section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
}

.content-section {
  background: white;
}

.fact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.fact-item i {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.fact-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text-color);
}

.fact-item p {
  margin: 0;
  color: #666;
}

.highlights-list {
  list-style: none;
  padding-left: 0;
}

.highlights-list li {
  padding: 0.25rem 0;
  padding-left: 2rem;
  position: relative;
}

.highlights-list li:before {
  content: "\f101";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--bs-success);
}

.included-list,
.excluded-list,
.simple-list {
  list-style: none;
  padding-left: 0;
}

.included-list li,
.excluded-list li,
.simple-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
}

/* Map Placeholder */
.map-placeholder {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Review Card */
.review-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
}

/* Tour Cards */
.tour-card {
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.tour-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.stars-overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
}

/* Sidebar */
.sidebar-sticky {
  top: 4rem;
}

/* Pricing Card */
.pricing-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.discount-ribbon {
  position: absolute;
  top: 15px;
  right: -35px;
  background: var(--bs-success);
  color: white;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-weight: bold;
  font-size: 0.875rem;
}

.group-discount {
  background: var(--light-bg);
  padding: 1rem 0;
  border-radius: 8px;
  border: 1px dashed var(--border-color);
}

.group-discount table {
  th {
    border: none !important;
  }
  td,
  th {
    border: none !important;
  }
}

.review-badge .stars {
  font-size: 1.25rem;
}

.features-list .feature-item {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  font: 0.8rem;
}

.contact-form-card {
  padding: 2rem;
  background-color: #f5f5f5;
  border: 1px solid #eee;
  margin-top: 1.5rem;
}

.contact-form-card .form-control {
  background-color: #fff;
  border: 2px solid #eee;
  border-radius: 0;
  color: #565656;
  font-size: 14px;
  height: 48px;
  padding: 12px 17px;
  width: 100%;
}

.contact-form-card .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
}

.sidebar-links h5 {
  font-weight: 600;
  color: var(--text-color);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-color);
}

.sidebar-links ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.sidebar-links ul li:last-child {
  border-bottom: none;
}

.sidebar-links ul li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sidebar-links ul li a:hover {
  color: var(--primary-color);
}

.stars i {
  color: var(--warning-color);
}

/* Responsive */
@media (max-width: 992px) {
  .countdown-card {
    padding: 1.5rem;
  }

  .countdown-number {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }

  .countdown-item {
    margin-bottom: 1rem;
  }

  .pricing-card,
  .contact-form-card {
    padding: 1.5rem;
  }

  .tour-card .card-img-top {
    height: 180px;
  }
}

/* accordion itinerary */

#itineraryAccordion .accordion-item {
  color: #666;
}
#itineraryAccordion .accordion-button,#faqAccordion .accordion-button {
  padding: 1rem 0 !important;
}

#itineraryAccordion .accordion-button:not(.collapsed) {
  background-color: var(--light-bg);
  color: var(--text-color);
  font-weight: 600;
}

#itineraryAccordion .accordion-button::after {
  content: "\2b";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  background-image: none;
  --bs-accordion-btn-icon-transform: rotate(0deg);
}

/* Style for the content navigation bar */
#content-nav-bar {
  position: sticky;
  top: 3rem;
  z-index: 1000;
  transition: all 0.3s ease;
}

.head-icon-color {
  color: #008c46;
}
#content-nav-bar .nav-link {
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  color: #6c757d;
  border: none;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
}

#content-nav-bar .nav-link:hover,
#content-nav-bar .nav-link.active {
  color: #0d6efd;
  border-bottom-color: #0d6efd;
}

#content-nav-bar .nav-link.active {
  font-weight: 500;
}

.section-nav-item a {
  font-size: 0.9rem !important;
  font-weight: bold;
  color: var(--text-color) !important;
}

.section-nav-item.active {
  background-color: #0f76db;
}
.section-nav-item.active a {
  color: #fff !important;
}

/* buttons */

.btn-book {
  border: 1px solid #bbb;
  color: var(--color-brown);
  font-weight: 600;
  border-radius: 8px;
}

.btn-book:hover {
  background-color: var(--bs-green);
  border: 1px solid var(--bs-green);
  color: #fff;
}

.btn-customize {
  border: 1px solid var(--color-brown);
  color: var(--color-brown);
  font-weight: 600;
  border-radius: 8px;
}

.btn-customize:hover {
  background-color: var(--bs-green);
  border: 1px solid var(--bs-green);
  color: #fff;
}

.btn-bottom {
  color: #fff;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  border: none;
}

.btn-inquiry {
  background-color: #4caf50;
  border-radius: 8px;
}

.btn-inquiry:hover {
  background-color: #4caf50;
  color: black;
}

.btn-book-now {
  background-color: #008cba;
}

.btn-book-now:hover {
  background-color: #008cba;
}

.countdown {
  display: flex;
  gap: 35px;
}

.count-item {
  text-align: center;
}

.count-item .num {
  font-size: 24px;
  font-weight: semibold;
  color: #333;
}

.count-item .label {
  margin-top: 5px;
  font-size: 13px;
  letter-spacing: 1px;
  color: #666;
}

/* RIGHT OFFER BOX */
.offer-box {
  background: #e9f8fc;
  padding: 12px 24px;
  border-radius: 4px;
  max-width: 700px;
}

.offer-title {
  font-size: 22px;
  color: #ffc400;
  font-weight: bold;
  margin-bottom: 8px;
}

.offer-text {
  font-size: 16px;
  color: #555;
}

.offer-text span.code {
  color: green;
  font-weight: bold;
  margin: 0 4px;
}
