/* ==========================================================================
   MARO ADVENTURES — COMPLETE REDESIGN
   Based on modern adventure tourism design system
   ========================================================================== */

/* Fonts loaded in base_new.html <link> to avoid double-load */

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

:root {
  --orange: #D4621A;
  --orange-light: #E8752A;
  --orange-pale: #FFF0E6;
  --black: #0A0A0A;
  --charcoal: #1C1C1C;
  --text: #2A2A2A;
  --muted: #666;
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --cream: #F9F6F2;
  --border: #f0ece8;
  --bs-primary: #D4621A;
  --bs-primary-rgb: 212, 98, 26;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--orange);
  color: #fff;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; transition: color 0.2s; }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

.font-display { font-family: 'Playfair Display', Georgia, serif; }
.font-body { font-family: 'Inter', sans-serif; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--black);
  line-height: 1.2;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.ma-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  transition: box-shadow 0.3s;
}

.ma-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.ma-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.ma-nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-only { display: inline-flex; }
@media (max-width: 991px) { .desktop-only { display: none !important; } }

.ma-nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.ma-nav-links a:hover { color: var(--orange); }

.ma-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.ma-nav-links a:hover::after { width: 100%; }

.ma-nav-links .active::after { width: 100%; }

.ma-nav-dropdown {
  position: relative;
}

.ma-nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--orange);
  padding: 10px 0;
  min-width: 200px;
  z-index: 1001;
}

.ma-nav-dropdown:hover .ma-nav-dropdown-menu {
  display: block;
}

.ma-nav-dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
}

.ma-nav-dropdown-menu a::after { display: none; }

.ma-nav-dropdown-menu a:hover {
  background: var(--orange-pale);
  color: var(--orange);
}

.ma-nav-cta {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 10px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.ma-nav-cta:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.ma-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.ma-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
  transition: all 0.3s;
}

@media (max-width: 991px) {
  .ma-nav-toggle { display: block; }
  .ma-nav-links { display: none; }
  .ma-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 2px solid var(--orange);
  }
  .ma-nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    padding-left: 20px;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.ma-hero {
  min-height: 90vh;
  background: var(--black);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ma-hero-sun {
  position: absolute;
  bottom: 38%;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 80px;
  background: var(--orange);
  border-radius: 160px 160px 0 0;
  z-index: 2;
}

.ma-hero-rays {
  position: absolute;
  bottom: 38%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 2;
}

.ma-hero-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 45%;
  z-index: 2;
}

.ma-hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 0 5%;
}

.ma-hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  border: 1px solid rgba(212, 98, 26, 0.4);
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.ma-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.ma-hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.ma-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.ma-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ma-hero-stats {
  position: absolute;
  right: 5%;
  bottom: 8%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ma-hero-stat { text-align: right; }

.ma-hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange);
}

.ma-hero-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .ma-hero { min-height: 70vh; }
  .ma-hero-stats { display: none; }
}

/* ==========================================================================
   PAGE HERO (for inner pages)
   ========================================================================== */

.ma-page-hero {
  min-height: 50vh;
  background: var(--black);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ma-page-hero .ma-hero-content {
  max-width: 800px;
}

.ma-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.ma-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}

.ma-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.6));
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.ma-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.ma-btn-primary {
  background: var(--orange);
  color: #fff;
}

.ma-btn-primary:hover {
  background: var(--orange-light);
  color: #fff;
  transform: translateY(-1px);
}

.ma-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ma-btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.ma-btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.ma-btn-outline-dark:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.ma-btn-sm {
  padding: 10px 22px;
  font-size: 12px;
}

/* ==========================================================================
   TAGLINE STRIP
   ========================================================================== */

.ma-tagline-strip {
  background: var(--orange);
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.ma-tagline-strip p {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}

.ma-strip-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   ADVENTURES GRID
   ========================================================================== */

.ma-adventures {
  background: #fff;
  padding: 6rem 5%;
}

.ma-adventures-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.ma-adventures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
}

.ma-adv-card {
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: transform 0.3s;
}

.ma-adv-card:hover {
  transform: scale(1.02);
  z-index: 2;
}

.ma-adv-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.4s, transform 0.6s;
}

.ma-adv-card:hover .ma-adv-card-img {
  opacity: 0.7;
  transform: scale(1.05);
}

.ma-adv-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.ma-adv-card:hover .ma-adv-card-accent {
  transform: scaleX(1);
}

.ma-adv-card-body {
  position: relative;
  z-index: 1;
  padding: 2rem;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
  width: 100%;
}

.ma-adv-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--orange);
  border: 1px solid rgba(212, 98, 26, 0.4);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.ma-adv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.ma-adv-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.ma-adv-link {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.ma-adv-link:hover { gap: 10px; }

/* ==========================================================================
   WHY US SECTION
   ========================================================================== */

.ma-why {
  background: var(--cream);
  padding: 6rem 5%;
}

.ma-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ma-why-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.ma-why-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  min-width: 40px;
}

.ma-why-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.ma-why-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.ma-why-visual {
  background: var(--charcoal);
  border-radius: 8px;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}

.ma-why-visual-label {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(212, 98, 26, 0.15);
  border: 1px solid rgba(212, 98, 26, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  z-index: 2;
}

@media (max-width: 991px) {
  .ma-why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ma-why-visual { min-height: 300px; }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.ma-testimonials {
  background: #fff;
  padding: 6rem 5%;
}

.ma-testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.ma-testi-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  border-top: 3px solid var(--orange);
  transition: transform 0.3s, box-shadow 0.3s;
}

.ma-testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ma-testi-stars {
  color: var(--orange);
  font-size: 13px;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.ma-testi-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.ma-testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ma-testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.ma-testi-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.ma-testi-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
}

.ma-testi-country {
  font-size: 11px;
  color: var(--muted);
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */

.ma-cta-banner {
  background: var(--charcoal);
  padding: 6rem 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ma-cta-banner::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 150px;
  background: rgba(212, 98, 26, 0.12);
  border-radius: 300px 300px 0 0;
}

.ma-cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.ma-cta-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   PARTNERS
   ========================================================================== */

.ma-partners {
  background: var(--cream);
  padding: 4rem 5%;
}

.ma-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

.ma-partner-card {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.ma-partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ma-partner-card img {
  max-height: 60px;
  width: auto;
  margin-bottom: 1rem;
  filter: grayscale(30%);
  transition: filter 0.3s;
}

.ma-partner-card:hover img {
  filter: grayscale(0);
}

/* ==========================================================================
   PACKAGE CARDS (for listing pages)
   ========================================================================== */

.ma-package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 4rem 5%;
}

.ma-package-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.ma-package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.ma-package-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.ma-package-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.ma-package-card:hover .ma-package-card-img img {
  transform: scale(1.05);
}

.ma-package-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
}

.ma-package-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ma-package-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.ma-package-card-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.ma-package-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
}

.ma-package-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
}

.ma-package-price small {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
}

.ma-package-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   DETAIL PAGE
   ========================================================================== */

.ma-detail-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}

.ma-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ma-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 3rem 5%;
}

.ma-detail-content {
  padding: 4rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.ma-detail-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
  color: var(--black);
}

.ma-detail-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Itinerary */
.ma-itinerary {
  padding: 4rem 5%;
  background: var(--cream);
}

.ma-itinerary-day {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.ma-itinerary-day:last-child { border-bottom: none; }

.ma-itinerary-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  min-width: 50px;
}

.ma-itinerary-day h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.ma-itinerary-day p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Inclusions/Exclusions */
.ma-inclusions {
  padding: 4rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.ma-inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.ma-inclusions h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ma-inclusions ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ma-inclusions li {
  font-size: 14px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}

.ma-inclusions li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.ma-exclusions li::before {
  content: '✕';
  color: #dc3545;
}

/* Pricing Table */
.ma-pricing-table {
  margin-top: 2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.ma-pricing-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.ma-pricing-row:last-child { border-bottom: none; }

.ma-pricing-row:nth-child(odd) { background: var(--cream); }

.ma-pricing-label {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.ma-pricing-value {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */

.ma-contact {
  padding: 4rem 5%;
}

.ma-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.ma-form-group {
  margin-bottom: 1.25rem;
}

.ma-form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.ma-form-input,
.ma-form-select,
.ma-form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ma-form-input:focus,
.ma-form-select:focus,
.ma-form-textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(212, 98, 26, 0.1);
}

.ma-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.ma-contact-info {
  padding: 2rem;
  background: var(--cream);
  border-radius: 8px;
}

.ma-contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.ma-contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.ma-contact-item i {
  color: var(--orange);
  font-size: 18px;
  margin-top: 2px;
}

.ma-contact-item p {
  font-size: 14px;
  color: var(--text);
  margin: 0;
}

.ma-contact-item small {
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 768px) {
  .ma-contact-grid { grid-template-columns: 1fr; }
  .ma-inclusions-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

.ma-about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 5%;
}

.ma-about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.ma-about-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.ma-about-image {
  border-radius: 8px;
  overflow: hidden;
}

.ma-about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.ma-about-values {
  padding: 4rem 5%;
  background: var(--cream);
}

.ma-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.ma-value-card {
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  border-top: 3px solid var(--orange);
}

.ma-value-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.ma-value-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .ma-about-hero { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.ma-footer {
  background: var(--black);
  padding: 4rem 5% 2rem;
}

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

.ma-footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.ma-footer-brand span { color: var(--orange); }

.ma-footer-tagline {
  display: inline-block;
  background: rgba(212, 98, 26, 0.15);
  border: 1px solid rgba(212, 98, 26, 0.3);
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ma-footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.8;
}

.ma-footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.25rem;
}

.ma-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ma-footer-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.ma-footer-col a:hover { color: var(--orange); }

.ma-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.ma-footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}

.ma-footer-social {
  display: flex;
  gap: 0.75rem;
}

.ma-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  transition: all 0.2s;
}

.ma-footer-social a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

@media (max-width: 991px) {
  .ma-footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
  .ma-footer-top { grid-template-columns: 1fr; }
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */

.ma-breadcrumb {
  padding: 1rem 5%;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.ma-breadcrumb ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.ma-breadcrumb li {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ma-breadcrumb li a {
  color: var(--muted);
}

.ma-breadcrumb li a:hover { color: var(--orange); }

.ma-breadcrumb li:last-child {
  color: var(--text);
  font-weight: 500;
}

.ma-breadcrumb li::after {
  content: '/';
  color: var(--border);
}

.ma-breadcrumb li:last-child::after { content: ''; }

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.ma-faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
}

.ma-faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.ma-faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: none;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.ma-faq-question:hover { background: var(--cream); }

.ma-faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--orange);
  transition: transform 0.3s;
}

.ma-faq-item.active .ma-faq-question::after {
  transform: rotate(45deg);
}

.ma-faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.ma-faq-item.active .ma-faq-answer {
  padding: 0 1.5rem 1.25rem;
  max-height: 500px;
}

.ma-faq-answer p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.ma-section { padding: 6rem 5%; }
.ma-section-cream { background: var(--cream); }
.ma-section-dark { background: var(--black); }

.ma-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ma-text-center { text-align: center; }

.ma-mb-0 { margin-bottom: 0; }
.ma-mb-1 { margin-bottom: 0.5rem; }
.ma-mb-2 { margin-bottom: 1rem; }
.ma-mb-3 { margin-bottom: 1.5rem; }
.ma-mb-4 { margin-bottom: 2rem; }

.ma-mt-4 { margin-top: 2rem; }

.ma-text-orange { color: var(--orange); }
.ma-text-white { color: #fff; }
.ma-text-muted { color: var(--muted); }

/* ==========================================================================
   RESPONSIVE HELPERS
   ========================================================================== */

/* ==========================================================================
   WHATSAPP CHAT FAB
   ========================================================================== */

.ma-whatsapp-fab {
  position: fixed;
  bottom: 40px;
  left: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  animation: waPulse 2s infinite;
}

.ma-whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.ma-whatsapp-fab-tooltip {
  position: absolute;
  bottom: 70px;
  left: 0;
  background: #fff;
  color: var(--text);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
  pointer-events: none;
}

.ma-whatsapp-fab-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.ma-whatsapp-fab:hover .ma-whatsapp-fab-tooltip {
  opacity: 1;
  transform: translateY(0);
}

@keyframes waPulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ==========================================================================
   HERO IMAGE SLIDER
   ========================================================================== */

.ma-hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ma-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.ma-hero-slide.active {
  opacity: 1;
}

.ma-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ma-hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.4) 50%, rgba(10, 10, 10, 0.7) 100%);
}

.ma-hero-dots {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
}

.ma-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.ma-hero-dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

.ma-hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.ma-hero-nav-arrow:hover {
  background: rgba(212, 98, 26, 0.8);
  border-color: var(--orange);
}

.ma-hero-nav-prev { left: 2rem; }
.ma-hero-nav-next { right: 2rem; }

/* ==========================================================================
   RESPONSIVE HELPERS
   ========================================================================== */

@media (max-width: 768px) {
  .ma-section { padding: 3rem 5%; }
  .ma-adventures { padding: 3rem 5%; }
  .ma-testimonials { padding: 3rem 5%; }
  .ma-hero { min-height: 85vh; }
  .ma-adventures-grid { grid-template-columns: 1fr; }
  .ma-testi-grid { grid-template-columns: 1fr; }
  .ma-detail-hero { height: 50vh; }
  .ma-package-grid { grid-template-columns: 1fr; padding: 2rem 5%; gap: 1rem; }
  .ma-hero-nav-arrow { display: none; }
  .ma-hero-dots { bottom: 5%; }
  .ma-hero h1 { font-size: clamp(2rem, 7vw, 3rem); }
  .ma-hero-sub { font-size: 14px; }
  .ma-hero-content { padding: 0 4%; }
  .ma-hero-stats { display: none; }
  .ma-tagline-strip { padding: 0.75rem 1rem; gap: 0.75rem; }
  .ma-tagline-strip p { font-size: 10px; letter-spacing: 0.1em; }
  .ma-strip-dot { display: none; }
  .ma-cta-banner { padding: 3rem 5%; }
  .ma-adventures-header { flex-direction: column; align-items: flex-start; }
  .ma-adv-card { min-height: 300px; }
  .ma-adv-card h3 { font-size: 1.2rem; }
  .ma-whatsapp-fab { width: 52px; height: 52px; font-size: 24px; bottom: 30px; left: 16px; }
  .ma-contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ma-inclusions-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ma-about-hero { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 5%; }
  .ma-values-grid { grid-template-columns: 1fr; }
  .ma-footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .ma-footer-bottom { flex-direction: column; text-align: center; }
  .ma-footer-social { justify-content: center; }
  .ma-page-hero { min-height: 45vh; }
  .ma-detail-content { padding: 2rem 5%; }
  .ma-itinerary { padding: 2rem 5%; }
  .ma-itinerary-day { flex-direction: column; gap: 0.5rem; }
  .ma-pricing-row { flex-direction: column; gap: 0.25rem; text-align: center; }
}

@media (max-width: 480px) {
  .ma-nav { padding: 0 1rem; height: 60px; }
  .ma-nav-logo img { height: 32px !important; }
  .ma-nav-cta { padding: 8px 16px; font-size: 11px; }
  .ma-nav-links.open { padding: 1rem; }
  .ma-hero { min-height: 80vh; }
  .ma-hero h1 { font-size: 1.8rem; }
  .ma-hero-actions { flex-direction: column; }
  .ma-hero-actions .ma-btn { width: 100%; justify-content: center; }
  .ma-section { padding: 2.5rem 5%; }
  .ma-adv-card { min-height: 260px; }
  .ma-adv-card-body { padding: 1.25rem; }
  .ma-adv-card p { display: none; }
  .ma-testi-card { padding: 1.25rem; }
  .ma-contact { padding: 2rem 5%; }
  .ma-form-input, .ma-form-select, .ma-form-textarea { font-size: 16px; }
  .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }
}

/* Improved mobile nav */
@media (max-width: 991px) {
  .ma-nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px;
  }
  .ma-nav-toggle span {
    margin: 3px 0;
    width: 24px;
    transition: all 0.3s;
  }
  .ma-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .ma-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .ma-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
  .ma-nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    display: flex;
    pointer-events: none;
  }
  .ma-nav-links.open {
    transform: translateX(0);
    pointer-events: auto;
  }
  .ma-nav-links > li {
    border-bottom: 1px solid var(--border);
  }
  .ma-nav-links > li > a {
    padding: 14px 0;
    font-size: 15px;
    display: block;
  }
  .ma-nav-links > li > a::after { display: none; }
  .ma-nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    padding: 0 0 0 16px;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
  }
  .ma-nav-dropdown.open .ma-nav-dropdown-menu {
    max-height: 500px;
    padding: 4px 0 8px 16px;
  }
  .ma-nav-dropdown-menu a {
    padding: 8px 0;
    font-size: 13px;
  }
  .ma-nav-dropdown > a::after { display: none; }
  .mobile-book-now { display: block !important; }
  .ma-nav-dropdown-arrow {
    display: inline-block;
    margin-left: 4px;
    font-size: 10px;
    transition: transform 0.3s;
  }
  .ma-nav-dropdown.open .ma-nav-dropdown-arrow {
    transform: rotate(180deg);
  }
  .ma-nav-cta {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
  }
}
