* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  background: #fafaf8;
  color: #1a1a1a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

:root {
  --gold: #ca9b33;
  --black: #000000;
  --dark: #0a0a0a;
  --light-bg: #fafaf8;
  --gold-light: #f7efdf;
  --text-dark: #1a1a1a;
  --text-gray: #555;
  --border-light: #e8e8e8;
  --white: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--black);
  color: #ddd;
  font-size: 0.82rem;
  padding: 10px 0;
  border-bottom: 1px solid #222;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.top-bar a {
  color: #ddd;
  text-decoration: none;
  transition: 0.2s;
  font-weight: 500;
}

.top-bar a:hover {
  color: var(--gold);
}

.top-bar i {
  color: var(--gold);
  margin-right: 5px;
  font-size: 0.85rem;
}

.trust-badge {
  background: var(--gold);
  color: #000;
  padding: 4px 12px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.top-bar-divider {
  width: 1px;
  height: 16px;
  background: #444;
}

/* ========== MAIN NAVIGATION ========== */
.main-nav {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}

.logo {
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: -0.5px;
  color: var(--black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.logo span {
  color: var(--gold);
}

.logo-icon {
  font-size: 1.5rem;
  color: var(--gold);
}

.nav-menu {
  display: flex;
  gap: 4px;
  align-items: center;
  height: 100%;
  list-style: none;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-item.mega-trigger {
  position: static;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 4px;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  cursor: pointer;
  font-size: 0.93rem;
  letter-spacing: 0.01em;
  height: 100%;
}

.nav-link i {
  font-size: 0.65rem;
  transition: transform 0.3s;
  color: #999;
}

.nav-link:hover {
  color: var(--gold);
  background: rgba(202, 155, 51, 0.06);
}

.nav-item:hover .nav-link i {
  transform: rotate(180deg);
  color: var(--gold);
}

.nav-link.active {
  color: var(--gold);
  font-weight: 600;
}

.nav-cta {
  background: var(--gold);
  color: #000 !important;
  padding: 12px 24px !important;
  border-radius: 4px;
  font-weight: 700;
  margin-left: 8px;
  font-size: 0.93rem;
}

.nav-cta:hover {
  background: #d4a53c;
  color: #fff !important;
}

.simple-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  min-width: 240px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 8px 8px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--gold);
  z-index: 1001;
}

.nav-item.dropdown-trigger:hover .simple-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.simple-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 0.88rem;
}

.simple-dropdown li a:hover {
  background: #f9f6f0;
  color: var(--gold);
}

.mega-menu-fullwidth {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  background: var(--white);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid var(--border-light);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.nav-item.mega-trigger:hover .mega-menu-fullwidth {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.mega-col h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 700;
  border-bottom: 2px solid var(--gold-light);
  padding-bottom: 12px;
}

.mega-col ul {
  list-style: none;
}

.mega-col ul li {
  margin-bottom: 8px;
}

.mega-col ul li a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 4px;
  font-size: 0.88rem;
}

.mega-col ul li a:hover {
  background: #f9f6f0;
  color: var(--gold);
}

.mega-highlight-box {
  background: linear-gradient(135deg, var(--gold-light), #fdf8f0);
  padding: 20px;
  border-radius: 8px;
  margin-top: 16px;
  text-align: center;
}

.mega-highlight-box strong {
  color: var(--black);
  display: block;
  margin-bottom: 6px;
}

.mega-highlight-box a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--black);
  padding: 8px;
}

/* ========== PAGE HERO ========== */
.page-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
    url("https://images.pexels.com/photos/247376/pexels-photo-247376.jpeg");
  background-size: cover;
  background-position: center;
  padding: 70px 0;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.page-hero p {
  font-size: 1rem;
  opacity: 0.9;
}

.page-hero .badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

/* ========== CONTENT LAYOUT ========== */
.content-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  padding: 50px 0;
}

.sidebar h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
  color: #333;
}

.sidebar h4 {
  font-size: 0.8rem;
  color: #888;
  margin: 15px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sidebar ul {
  list-style: none;
}

.sidebar ul li {
  margin-bottom: 2px;
}

.sidebar ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  text-decoration: none;
  color: #555;
  border-radius: 4px;
  font-size: 0.88rem;
  transition: 0.2s;
}

.sidebar ul li a:hover,
.sidebar ul li a.active {
  background: #fdf6ea;
  color: var(--gold);
  font-weight: 600;
}

.sidebar ul li a i {
  color: var(--gold);
  width: 18px;
}

/* ========== MAIN CONTENT ========== */
.main-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.main-content h4 {
  font-size: 1.1rem;
  margin: 20px 0 10px;
  color: #444;
}

.main-content h5 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.main-content p {
  color: #555;
  margin-bottom: 12px;
  line-height: 1.7;
}

.main-content ul {
  margin: 10px 0 20px 20px;
  color: #555;
}

.main-content ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.main-content a {
  color: var(--gold);
  text-decoration: underline;
}

.main-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
}

.main-content table th,
.main-content table td {
  padding: 10px 12px;
  border: 1px solid #ddd;
  font-size: 0.88rem;
}

.main-content table th {
  background: #f9f9f9;
  font-weight: 600;
  text-align: left;
}

.feature-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.cta-box {
  background: #fdf6ea;
  border: 1px solid #f0e8d5;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  margin: 30px 0;
}

.cta-box .btn {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 10px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 5px;
  transition: 0.3s;
}

.cta-box .btn:hover {
  background: #b8872a;
}

/* ========== TOUR CARDS ========== */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.tour-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  border: 1px solid #f0f0f0;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.tour-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.tour-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #000;
  padding: 5px 12px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.tour-details {
  padding: 20px;
}

.tour-details h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.tour-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: #888;
}

.tour-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.tour-meta i {
  color: var(--gold);
}

.highlights {
  list-style: none;
  margin-bottom: 15px;
}

.highlights li {
  font-size: 0.82rem;
  color: #555;
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.highlights li i {
  color: var(--gold);
  font-size: 0.7rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.price {
  font-weight: 700;
  font-size: 1.3rem;
}

.price small {
  font-weight: 400;
  font-size: 0.8rem;
  color: #777;
}

.btn,
.btn-view {
  display: inline-block;
  background: var(--black);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: 0.3s;
}

.btn:hover,
.btn-view:hover {
  background: var(--gold);
  color: #000;
}

/* ========== NOTIFICATIONS ========== */
.notification-banner {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.notification-card {
  max-width: 550px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.notification-card .icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
}

.notification-card.info .icon-circle {
  background: #d1ecf1;
  color: #0c5460;
}

.notification-card.warning .icon-circle {
  background: #fff3cd;
  color: #856404;
}

.notification-card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.notification-card p {
  color: #666;
  margin-bottom: 25px;
}

.notification-card .btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #000;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
}

.notification-card .btn-back:hover {
  background: #b8872a;
}

.empty-state {
  text-align: center;
  padding: 40px 20px;
  animation: fadeInUp 0.5s ease;
}

.empty-state .icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.5rem;
  background: #fdf6ea;
  color: var(--gold);
}

.empty-state h2 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.empty-state p {
  color: #888;
  max-width: 400px;
  margin: 0 auto;
}

/* ========== FOOTER ========== */
footer {
  background: #0a0a0a;
  color: #bbb;
  padding: 50px 0 20px;
  font-size: 0.88rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-col h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-col p {
  margin-bottom: 14px;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #bbb;
  text-decoration: none;
  transition: 0.2s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-item i {
  color: var(--gold);
}

.footer-newsletter input {
  width: 100%;
  padding: 11px;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #ddd;
  border-radius: 4px;
  margin-bottom: 8px;
}

.footer-newsletter button {
  background: var(--gold);
  color: #000;
  border: none;
  padding: 11px 20px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: #777;
  font-size: 0.85rem;
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  color: #999;
  font-size: 1.2rem;
  background: #1a1a1a;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.2s;
}

.social-icons a:hover {
  color: #000;
  background: var(--gold);
}

.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: 0.3s;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 968px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eee;
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .nav-item.mega-trigger {
    position: relative;
  }

  .simple-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    display: none;
    transform: none;
  }

  .nav-item.dropdown-trigger:hover .simple-dropdown {
    display: block;
  }

  .mega-menu-fullwidth {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    display: none;
  }

  .nav-item.mega-trigger:hover .mega-menu-fullwidth {
    display: block;
  }

  .mega-menu-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    text-align: center;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.4rem;
  }

  .tours-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 1.5rem;
  }

  .notification-card {
    padding: 30px 20px;
  }
}
