*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --df-primary: #ff7a1a;
  --df-primary-dark: #e96505;
  --df-bg: #f6f7fb;
  --df-bg-alt: #ffffff;
  --df-text: #1f2933;
  --df-muted: #6b7280;
  --df-border: #e5e7eb;
  --df-radius-lg: 18px;
  --df-radius-md: 12px;
  --df-shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.06);
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--df-text);
  background: var(--df-bg);
}

/* HEADER */

.df-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
}

.df-header .navbar {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.df-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffb347, #ff7a1a);
  color: #fff;
  font-size: 18px;
}

.df-logo-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.df-logo-main {
  font-weight: 700;
  font-size: 1rem;
}

.df-logo-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--df-muted);
}

.navbar-nav .nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #111827;
  padding: 0.35rem 0.8rem;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover {
  color: var(--df-primary);
}

.df-btn-primary {
  background: var(--df-primary);
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.45rem 1.2rem;
  font-size: 0.9rem;
  border: none;
}

.df-btn-primary:hover {
  background: var(--df-primary-dark);
  color: #fff;
}

.df-btn-ghost {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #f9fafb;
  background: transparent;
  padding: 0.45rem 1.2rem;
  font-weight: 500;
}

.df-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Dropdown open on hover for desktop */

@media (min-width: 992px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* HERO */

.df-hero {
  position: relative;
  overflow: hidden;
  background: #000;
}

.df-hero-slider {
  position: relative;
  width: 100%;
  height: min(75vh, 620px);
}

.df-hero-slide {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease, transform 0.7s ease;
  transform: scale(1.02);
}

.df-hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.df-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.15));
}

.df-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #f9fafb;
}

.df-hero-tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 0.6rem;
}

.df-hero h1 {
  font-size: clamp(1.9rem, 3vw + 1rem, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.9rem;
}

.df-hero-text {
  max-width: 520px;
  font-size: 0.98rem;
  color: #e5e7eb;
  margin-bottom: 1.1rem;
}

.df-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.df-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
}

.df-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.6);
}

.df-hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 3;
}

.df-hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  padding: 0;
}

.df-hero-dots button.active {
  width: 22px;
  background: #fff;
}

/* Sections */

.df-section {
  padding: 3.5rem 0;
  background: var(--df-bg);
}

.df-section-alt {
  background: #ffffff;
}

.df-section-light {
  background: #ffffff;
}

.df-section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--df-primary);
  margin-bottom: 0.35rem;
}

.df-section-title {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.df-section-subtitle {
  font-size: 0.95rem;
  color: var(--df-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.df-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.df-link-all {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--df-primary);
  text-decoration: none;
}

.df-link-all i {
  margin-left: 0.35rem;
}

.df-link-all:hover {
  color: var(--df-primary-dark);
}

/* Category Cards */

.df-category-card {
  display: block;
  padding: 1.2rem 1.2rem 1.3rem;
  border-radius: var(--df-radius-lg);
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border: 1px solid rgba(15, 23, 42, 0.02);
  box-shadow: var(--df-shadow-soft);
  text-decoration: none;
  color: var(--df-text);
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.df-category-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--df-primary);
  margin-bottom: 0.6rem;
}

.df-category-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.df-category-card p {
  font-size: 0.86rem;
  color: var(--df-muted);
  margin-bottom: 0.6rem;
}

.df-category-link {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--df-primary);
}

.df-category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.09);
  border-color: rgba(255, 122, 26, 0.4);
}

/* Tour Cards */
.df-logo-img {
  height: 44px;          /* adjust if needed */
  width: auto;
  display: block;
}

.df-tour-card {
  display: block;
  background: #ffffff;
  border-radius: var(--df-radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--df-border);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.05);
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.df-tour-img-wrap {
  position: relative;
  overflow: hidden;
}

.df-tour-img-wrap img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.df-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(15, 23, 42, 0.88);
  color: #fff;
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.df-badge-alt {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.df-tour-body {
  padding: 1rem 1.1rem 1.05rem;
}

.df-tour-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.df-tour-body p {
  font-size: 0.86rem;
  color: var(--df-muted);
  margin-bottom: 0.7rem;
}

.df-tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 0.7rem;
}

.df-tour-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.df-tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.df-tour-price {
  display: flex;
  flex-direction: column;
}

.df-price-current {
  font-weight: 700;
  color: var(--df-primary);
  margin-left: 4px;
}

.df-price-note {
  color: var(--df-muted);
  font-size: 0.75rem;
}

.df-tour-cta {
  font-weight: 500;
  color: var(--df-primary);
}

.df-tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 55px rgba(15, 23, 42, 0.12);
  border-color: rgba(255, 122, 26, 0.4);
}

.df-tour-card:hover .df-tour-img-wrap img {
  transform: scale(1.06);
}

/* Gallery */

.df-gallery-section {
  background: #ffffff;
}

.df-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 140px;
  gap: 0.75rem;
}

.df-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--df-radius-md);
  background: #000;
}

.df-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.df-gallery-item-large {
  grid-row: span 2;
  grid-column: span 2;
}

.df-gallery-item:hover img {
  transform: scale(1.06);
  opacity: 0.94;
}

/* Why Us */

.df-why-us {
  background: var(--df-bg);
}

.df-why-card {
  background: #ffffff;
  border-radius: var(--df-radius-lg);
  padding: 1.2rem 1.15rem 1.3rem;
  border: 1px solid var(--df-border);
  box-shadow: var(--df-shadow-soft);
  height: 100%;
}

.df-why-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--df-primary);
  margin-bottom: 0.6rem;
}

.df-why-card h3 {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.df-why-card p {
  font-size: 0.86rem;
  color: var(--df-muted);
}

/* Contact / CTA */

.df-cta-section {
  background: linear-gradient(135deg, #fff7ed, #e0f2fe);
}

.df-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.df-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.df-contact-list i {
  color: var(--df-primary);
}

.df-contact-list a {
  color: var(--df-text);
  text-decoration: none;
}

.df-contact-card {
  background: #ffffff;
  border-radius: var(--df-radius-lg);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--df-shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.df-contact-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

/* Footer */

.df-footer {
  background: #0f172a;
  color: #e5e7eb;
  padding-top: 2.5rem;
  padding-bottom: 1.8rem;
}

.df-footer h4,
.df-footer h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.df-footer p {
  font-size: 0.86rem;
  color: #cbd5f5;
}

.df-footer-links,
.df-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
}

.df-footer-links li,
.df-footer-contact li {
  margin-bottom: 0.35rem;
}

.df-footer a {
  color: #e5e7eb;
  text-decoration: none;
}

.df-footer a:hover {
  color: #fff;
}

.df-footer-contact i {
  margin-right: 0.4rem;
}

.df-footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  margin-top: 1.5rem;
  padding-top: 0.9rem;
  text-align: center;
  font-size: 0.78rem;
  color: #9ca3af;
}

/* Responsive tweaks */

@media (max-width: 991.98px) {
  .df-hero-slider {
    height: 70vh;
  }
  .df-hero-content {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .df-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .df-hero-slider {
    height: 68vh;
  }
  .df-hero h1 {
    font-size: 1.9rem;
  }
  .df-hero-badges {
    flex-direction: column;
  }
  .df-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 130px;
  }
  .df-gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 575.98px) {
  .df-section {
    padding: 3rem 0;
  }
  .df-contact-card {
    padding: 1.2rem 1.1rem;
  }
}
