:root {
  --color-primary: #2a7475;
  --color-primary-dark: #1f5859;
  --color-secondary: #c45c3e;
  --color-secondary-dark: #a3492f;
  --color-dark: #1a1a1a;
  --color-text: #333;
  --color-muted: #666;
  --color-light: #f7f7f5;
  --color-white: #fff;
  --font-base: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  line-height: 1.6;
  background: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-dark);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-secondary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-secondary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(196, 92, 62, 0.3);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-dark);
}

.btn-secondary:hover {
  background: #f0f0f0;
  color: var(--color-dark);
  transform: translateY(-2px);
}

/* Header */
.site-header-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  transition: background 0.3s, box-shadow 0.3s;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}

.site-header-new.scrolled {
  position: fixed;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0.5rem 0;
}

.site-header-new.scrolled .main-nav-new a,
.site-header-new.scrolled .menu-toggle-new span {
  color: var(--color-dark);
}

.site-header-new.scrolled .logo-new {
  background: transparent;
  box-shadow: none;
}

.header-inner-new {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.logo-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: background 0.3s, box-shadow 0.3s;
}

.logo-new img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav-new ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav-new a {
  color: var(--color-white);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.main-nav-new a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width 0.3s;
}

.main-nav-new a:hover::after,
.main-nav-new a.active::after {
  width: 100%;
}

.main-nav-new .cta-nav {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
}

.main-nav-new .cta-nav::after {
  display: none;
}

.main-nav-new .cta-nav:hover {
  background: var(--color-secondary-dark);
  color: var(--color-white);
}

.has-submenu {
  position: relative;
}

.has-submenu > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.submenu-arrow {
  font-size: 0.7rem;
  opacity: 0.8;
}

.submenu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  min-width: 210px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.6rem 0;
  margin-top: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  z-index: 1001;
}

.submenu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 2rem;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--color-white);
}

.has-submenu:hover .submenu,
.has-submenu.open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li {
  display: block;
  width: 100%;
}

.submenu a {
  color: var(--color-dark);
  display: block;
  padding: 0.55rem 1.25rem;
  white-space: nowrap;
}

.submenu a:hover {
  background: var(--color-light);
  color: var(--color-primary);
}

/* Mega menu for Destinations - two columns */
.has-mega-menu {
  position: relative;
}

.mega-menu {
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 520px;
  max-width: calc(100vw - 2rem);
  padding: 0.75rem 0 0;
  background: transparent;
  box-shadow: none;
  transition: none;
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mega-menu ul,
.main-nav-new .mega-menu ul {
  display: block;
  flex-direction: unset;
}

.mega-menu li,
.main-nav-new .mega-menu li {
  display: block;
}

.mega-col-left {
  background: var(--color-light);
  padding: 1rem 0;
}

.destinations-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.destinations-list li {
  margin: 0;
}

.destinations-list a {
  display: block;
  padding: 0.7rem 1.25rem;
  color: var(--color-dark);
  font-weight: 500;
  border-left: 3px solid transparent;
}

.destinations-list a:hover,
.destinations-list a.active {
  background: var(--color-white);
  border-left-color: var(--color-secondary);
  color: var(--color-primary);
}

.mega-col-right {
  padding: 1.25rem 1.5rem;
  background: var(--color-white);
}

.destination-panel {
  display: none;
}

.destination-panel.active {
  display: block;
}

.destination-panel h4 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: var(--color-dark);
}

.destination-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.destination-panel li {
  margin-bottom: 0.5rem;
}

.destination-panel a {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.destination-panel a:hover {
  color: var(--color-primary);
}

.menu-toggle-new {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle-new span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  transition: 0.3s;
}

@media (max-width: 900px) {
  .menu-toggle-new {
    display: flex;
  }
  .main-nav-new {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-white);
    padding: 5rem 2rem 2rem;
    transition: right 0.3s;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
  }
  .main-nav-new.open {
    right: 0;
  }
  .main-nav-new ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .main-nav-new a {
    color: var(--color-dark);
  }
  .site-header-new.scrolled .menu-toggle-new span,
  .site-header-new .menu-toggle-new span {
    background: var(--color-dark);
  }
  .submenu {
    position: static;
    display: none;
    box-shadow: none;
    padding-left: 1rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 0.5rem;
  }
  .has-submenu.open .submenu {
    display: block;
  }
  .mega-menu {
    width: 100%;
    padding-top: 0.5rem;
  }
  .mega-menu-inner {
    grid-template-columns: 1fr;
  }
  .mega-col-left {
    padding: 0.5rem 0;
  }
  .mega-col-right {
    padding: 1rem;
  }
  .destination-panel {
    display: block;
    margin-bottom: 1rem;
  }
  .destination-panel:not(.active) {
    display: none;
  }
}

/* Hero */
.hero,
.page-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  padding: 8rem 1rem 4rem;
  overflow: hidden;
}

.page-hero {
  min-height: 55vh;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.page-content-section {
  padding-top: 4rem;
}

.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.hero {

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p.lead {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Search bar */
.hero-search {
  margin-top: 2.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 50px;
  display: inline-flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.25);
}

.hero-search a {
  color: var(--color-white);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 500;
  background: rgba(255,255,255,0.15);
  transition: background 0.2s;
}

.hero-search a:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

/* Section generic */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--color-dark);
  margin: 0 0 0.75rem;
}

.section-header p {
  color: var(--color-muted);
  font-size: 1.05rem;
}

/* Destinations */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.destination-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.destination-card:hover img {
  transform: scale(1.08);
}

.destination-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--color-white);
}

.destination-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.4rem;
}

.destination-card span {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Tours */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.tour-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.tour-card:hover {
  transform: translateY(-6px);
}

.tour-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.tour-card .info {
  padding: 1.25rem;
}

.tour-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: var(--color-dark);
}

.tour-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.tour-card .price {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.1rem;
}

.tour-card .btn-sm {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
}

.tour-card .btn-sm:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

/* Why us / features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1000px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature {
  text-align: center;
  padding: 2rem;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-primary);
}

.feature-icon i {
  line-height: 1;
}

.feature h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.feature p {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* CTA section */
.cta-section {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 1rem;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  opacity: 0.95;
}

.cta-section .btn-secondary:hover {
  background: var(--color-light);
}

/* Footer */
.site-footer-new {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand p {
  max-width: 300px;
  font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--color-white);
  margin: 0 0 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-contact a {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
  }
}
