/*
Theme Name: Andaman Miles
Theme URI: https://andamanmiles.com
Author: Andaman Miles
Author URI: https://andamanmiles.com
Description: Custom WordPress theme for Andaman Miles - Private car tours, airport transfers, and island trips in Port Blair
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: andaman-miles
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

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

:root {
  --accent: #f46d2a;
  --accent-light: #f7925f;
  --accent-gradient: linear-gradient(165deg, #f7925f 30%, #f46d2a 100%);
  --dark: #011218;
  --white: #ffffff;
  --gray: #737373;
  --gray-light: #e3e3e3;
  --gray-bg: #f8f8f8;
  --font-heading: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius: 7px;
  --radius-lg: 16px;
  --shadow: 0 4px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 60px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body); color: var(--dark); line-height: 1.6; overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(255,140,66,0.05), transparent 28%),
    radial-gradient(circle at top right, rgba(0,180,216,0.04), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 55%, #fffaf6 100%);
  background-attachment: fixed;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== TOPBAR ===== */
.am-topbar {
  background: linear-gradient(135deg, #0e2a3a, #0a1e2e);
  padding: 8px 0;
  text-align: center;
}
.am-topbar-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
}
.am-topbar-inner a {
  color: var(--accent);
  font-weight: 500;
}
.am-topbar-inner a:hover {
  text-decoration: underline;
}

/* ===== NAVBAR ===== */
.am-topbar {
  position: relative;
  z-index: 1100;
}
.am-navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  min-height: 78px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.am-navbar--inner {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.98);
}
.am-navbar--hero {
  background: rgba(1,18,24,0.38);
  box-shadow: none;
}
.am-navbar-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  min-height: 78px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.am-logo a {
  font-family: var(--font-heading); font-weight: 600; font-size: 22px;
  color: var(--dark); letter-spacing: -0.5px; text-decoration: none;
}
.am-logo-link {
  display: flex; align-items: center; gap: 12px;
}
.am-logo-text {
  white-space: nowrap;
}
.am-logo-link svg {
  display: block; flex-shrink: 0;
}
.am-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}
.am-nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.am-nav-menu a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  opacity: 1;
  transition: color 0.3s;
  position: relative;
  padding: 6px 0;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.am-nav-menu a:hover,
.am-nav-menu a:focus-visible {
  color: var(--accent);
}
.am-nav-menu a.current-menu-item::after,
.am-nav-menu a[aria-current="page"]::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--accent); border-radius: 1px;
}
.am-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent-gradient);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s;
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.am-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(244,109,42,0.28); }
.am-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.am-hamburger {
  display: block; width: 24px; height: 2px; background: var(--dark);
  position: relative;
}
.am-hamburger::before, .am-hamburger::after {
  content: ''; position: absolute; left: 0; width: 24px; height: 2px;
  background: var(--dark);
}
.am-hamburger::before { top: -7px; }
.am-hamburger::after { top: 7px; }
.am-mobile-panel {
  display: none !important;
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 100vw);
  height: 100vh;
  background: rgba(1,18,24,0.98);
  z-index: 1200;
  padding: 96px 24px 24px;
  box-shadow: -12px 0 30px rgba(0,0,0,0.2);
}
.am-mobile-panel.is-open { display: block !important; }
.am-mobile-nav {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.am-mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.am-mobile-menu li {
  margin: 0;
}
.am-mobile-menu a,
.am-mobile-cta {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
}
.am-mobile-menu a {
  display: block;
  padding: 8px 0;
}
.am-mobile-cta {
  display: inline-flex;
  margin-top: 24px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--accent-gradient);
}
@media (min-width: 769px) {
  .am-mobile-panel,
  .am-mobile-panel.is-open {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  .am-mobile-toggle {
    display: none !important;
  }
  .am-nav {
    display: flex !important;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: url('https://tebewebe.online/triptrave/wp-content/uploads/sites/325/2025/03/beautiful-landscape-panorama-view-at-padar-island-2025-03-08-22-26-56-utc2.webp') center/cover no-repeat;
  padding: 72px 0 80px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(1,18,24,0.72) 0%, rgba(1,18,24,0.35) 50%, rgba(1,18,24,0.15) 100%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: 48px;
}
.hero-content { position: relative; z-index: 2; min-width: 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,109,42,0.15); border: 1px solid rgba(244,109,42,0.3);
  padding: 8px 18px; border-radius: 50px; margin-bottom: 24px;
}
.hero-badge span { font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--accent); text-transform: uppercase; letter-spacing: 1.5px; }
.hero h1 {
  font-family: var(--font-heading); font-size: clamp(36px, 5vw, 64px);
  font-weight: 700; color: var(--white); line-height: 1.1;
  letter-spacing: -1.5px; max-width: 12ch; margin-bottom: 20px;
}
.hero p {
  font-family: var(--font-body); font-size: 17px; color: rgba(255,255,255,0.75);
  max-width: 520px; margin-bottom: 36px; line-height: 1.7;
}
.btn-primary {
  display: inline-block; padding: 15px 30px; border-radius: var(--radius);
  background: var(--accent-gradient); color: var(--white);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  transition: all 0.3s; border: none; cursor: pointer; text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(244,109,42,0.35); }
.hero-trustline {
  font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.65);
  margin-top: 24px;
}

/* ===== HERO SIDE PANEL ===== */
.hero-side-panel {
  position: relative; z-index: 3;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 360px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  justify-self: end;
}
.hero-side-panel h3 {
  font-family: var(--font-heading); font-size: 18px; font-weight: 600;
  color: var(--dark); margin-bottom: 10px;
}
.hero-side-panel p {
  font-family: var(--font-body); font-size: 14px; color: var(--gray);
  line-height: 1.7; margin-bottom: 16px;
}
.hero-side-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.hero-side-chips span {
  display: inline-block; padding: 6px 14px;
  background: rgba(244,109,42,0.1); border-radius: 50px;
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  color: var(--accent);
}

/* ===== SERVICES GRID ===== */
.services { padding: 100px 0; background: var(--white); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  color: var(--accent); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.section-label::before, .section-label::after {
  content: ''; width: 24px; height: 1px; background: var(--accent);
}
.section-title {
  font-family: var(--font-heading); font-size: clamp(28px, 3vw, 42px);
  font-weight: 700; color: var(--dark); letter-spacing: -1px; line-height: 1.2;
}
.section-subtitle {
  font-family: var(--font-body); font-size: 16px; color: var(--gray);
  max-width: 550px; margin: 16px auto 0; line-height: 1.7;
}

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center;
  box-shadow: var(--shadow); transition: all 0.3s;
  border: 1px solid var(--gray-light);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-emoji {
  font-size: 42px; margin-bottom: 16px;
}
.service-card h3 {
  font-family: var(--font-heading); font-size: 20px; font-weight: 600;
  color: var(--dark); letter-spacing: -0.5px; margin-bottom: 10px;
}
.service-card p {
  font-family: var(--font-body); font-size: 14px; color: var(--gray);
  line-height: 1.7; margin-bottom: 16px;
}
.service-card a {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  color: var(--accent); transition: color 0.3s;
}
.service-card a:hover { color: var(--accent-light); }

/* ===== PRICING GRID ===== */
.pricing { padding: 100px 0; background: var(--gray-bg); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pricing-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.3s;
  text-align: center; padding: 40px 30px;
  position: relative;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border: 2px solid var(--accent);
}
.pricing-badge {
  display: inline-block; padding: 4px 14px; border-radius: 50px;
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.pricing-badge.basic { background: rgba(1,18,24,0.08); color: var(--dark); }
.pricing-badge.popular { background: var(--accent-gradient); color: var(--white); }
.pricing-badge.custom { background: rgba(244,109,42,0.1); color: var(--accent); }
.pricing-card h3 {
  font-family: var(--font-heading); font-size: 22px; font-weight: 600;
  color: var(--dark); letter-spacing: -0.5px; margin-bottom: 12px;
}
.pricing-amount {
  font-family: var(--font-heading); font-size: 36px; font-weight: 700;
  color: var(--accent); letter-spacing: -1px; margin-bottom: 8px;
}
.pricing-card p {
  font-family: var(--font-body); font-size: 14px; color: var(--gray);
  line-height: 1.7; margin-bottom: 24px;
}
.pricing-card .btn-primary { width: 100%; text-align: center; }

/* ===== STATS BAR ===== */
.stats { padding: 60px 0; background: var(--dark); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-num {
  font-family: var(--font-heading); font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700; color: var(--accent); letter-spacing: -1px;
}
.stat-label {
  font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.6);
  font-weight: 500; margin-top: 4px;
}

/* ===== DESTINATIONS GRID ===== */
.am-destinations { padding: 100px 0; background: var(--white); }
.am-dest-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.am-dest-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  cursor: pointer;
}
.dest-card:first-child { grid-column: span 2; }
.am-dest-card img {
  width: 100%; height: 320px; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.am-dest-card:hover img { transform: scale(1.05); }
.am-dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(1,18,24,0.85) 0%, rgba(1,18,24,0.15) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
}
.am-dest-name {
  font-family: var(--font-heading); font-size: 25px; font-weight: 600;
  color: var(--white); letter-spacing: -0.5px;
}
.am-dest-loc {
  font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.65);
  margin-top: 4px;
}
.am-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 50px; height: 50px; background: var(--accent-gradient); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s; z-index: 3;
}
.am-dest-card:hover .am-play-btn { opacity: 1; }
.am-play-btn::after {
  content: ''; width: 0; height: 0;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent; border-bottom: 9px solid transparent;
  margin-left: 3px;
}

/* ===== PACKAGES ===== */
.am-packages { padding: 100px 0; background: var(--white); }
.am-packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.am-package-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.3s;
}
.am-package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.am-package-img { position: relative; overflow: hidden; }
.am-package-img img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.5s; }
.am-package-card:hover .am-package-img img { transform: scale(1.05); }
.am-package-price-tag {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  text-align: center; z-index: 2; opacity: 0; transition: opacity 0.3s;
}
.am-package-card:hover .am-package-price-tag { opacity: 1; }
.am-package-price-tag .price {
  font-family: var(--font-heading); font-size: 36px; font-weight: 700;
  color: var(--white); letter-spacing: -1px; text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.am-package-price-tag .per {
  font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.8);
}
.am-package-img::after {
  content: ''; position: absolute; inset: 0; background: rgba(1,18,24,0.45);
  opacity: 0; transition: opacity 0.3s;
}
.am-package-card:hover .am-package-img::after { opacity: 1; }
.am-package-body { padding: 24px; }
.am-package-body h3 {
  font-family: var(--font-heading); font-size: 20px; font-weight: 600;
  color: var(--dark); letter-spacing: -0.5px; margin-bottom: 8px;
}
.am-package-meta {
  display: flex; align-items: center; gap: 16px; margin-bottom: 12px;
  font-family: var(--font-body); font-size: 13px; color: var(--gray);
}
.am-package-meta span { display: flex; align-items: center; gap: 4px; }
.am-package-meta i { font-size: 14px; color: var(--accent); }
.am-package-rating { display: flex; align-items: center; gap: 4px; }
.am-package-rating .score {
  font-family: var(--font-body); font-size: 13px; color: var(--dark); font-weight: 500;
}
.am-stars { color: var(--accent); font-size: 12px; letter-spacing: 1px; }

/* ===== WHY US ===== */
.am-why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, #011218 0%, #0d2137 100%);
  position: relative; overflow: hidden;
}
.am-why-us::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(244,109,42,0.06);
}
.am-why-us .section-label { color: var(--accent); }
.am-why-us .section-title { color: var(--white); }
.am-why-us .section-subtitle { color: rgba(255,255,255,0.55); }
.am-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.am-why-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 40px 30px; text-align: center;
  transition: all 0.3s;
}
.am-why-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.am-why-icon {
  width: 64px; height: 64px; background: rgba(244,109,42,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 28px;
}
.am-why-card h3 {
  font-family: var(--font-heading); font-size: 20px; font-weight: 600;
  color: var(--white); letter-spacing: -0.5px; margin-bottom: 10px;
}
.am-why-card p {
  font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: var(--gray-bg); }
.test-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
.test-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow); transition: all 0.3s;
}
.test-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.test-stars { color: var(--accent); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.test-text {
  font-family: var(--font-body); font-size: 14px; color: var(--gray);
  line-height: 1.8; margin-bottom: 20px;
}
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  background: var(--accent-gradient);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-heading); font-weight: 700; font-size: 18px;
}
.test-name {
  font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--dark);
}
.test-role { font-family: var(--font-body); font-size: 12px; color: var(--gray); }

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: var(--white); }
.faq-grid {
  max-width: 800px; margin: 60px auto 0;
  display: flex; flex-direction: column; gap: 16px;
}
.faq-item {
  background: var(--gray-bg); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--gray-light);
}
.faq-question {
  width: 100%; padding: 20px 24px;
  font-family: var(--font-body); font-size: 16px; font-weight: 600;
  color: var(--dark); background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; text-align: left; transition: color 0.3s;
}
.faq-question:hover { color: var(--accent); }
.faq-question::after {
  content: '+'; font-size: 22px; font-weight: 300;
  color: var(--accent); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px;
}
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer {
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.active .faq-answer {
  padding: 0 24px 20px; max-height: 300px;
}
.faq-answer p {
  font-family: var(--font-body); font-size: 14px; color: var(--gray);
  line-height: 1.8;
}

/* ===== BRAND CAROUSEL ===== */
.am-brands { padding: 60px 0; background: var(--white); border-top: 1px solid var(--gray-light); }
.am-brands-inner { display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap; }
.am-brand-item { opacity: 0.35; transition: opacity 0.3s; filter: grayscale(100%); }
.am-brand-item:hover { opacity: 0.7; filter: grayscale(0%); }
.am-brand-item img { height: 40px; width: auto; }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 100px 0;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920&q=80') center/cover no-repeat;
  position: relative; text-align: center;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(1,18,24,0.75);
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 {
  font-family: var(--font-heading); font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; color: var(--white); letter-spacing: -1px;
  margin-bottom: 16px;
}
.cta-banner p {
  font-family: var(--font-body); font-size: 16px; color: rgba(255,255,255,0.65);
  max-width: 500px; margin: 0 auto 32px;
}

/* ===== NEWSLETTER ===== */
.am-newsletter { padding: 80px 0; background: var(--dark); }
.am-newsletter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.am-newsletter h2 {
  font-family: var(--font-heading); font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 600; color: var(--white); letter-spacing: -0.8px; margin-bottom: 12px;
}
.am-newsletter p { font-family: var(--font-body); font-size: 15px; color: rgba(255,255,255,0.5); }
.am-newsletter-form { display: flex; gap: 12px; }
.am-newsletter-form input {
  flex: 1; padding: 14px 20px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06);
  color: var(--white); font-family: var(--font-body); font-size: 15px; outline: none;
  transition: border-color 0.3s;
}
.am-newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.am-newsletter-form input:focus { border-color: var(--accent); }
.am-newsletter-form button {
  padding: 14px 28px; border-radius: var(--radius); border: none;
  background: var(--accent-gradient); color: var(--white);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.3s; white-space: nowrap;
}
.am-newsletter-form button:hover { box-shadow: 0 4px 20px rgba(244,109,42,0.35); }

/* ===== FOOTER (refactored) ===== */
.am-footer {
  background: #0d0d0d;
  padding: 48px 0 0;
  color: rgba(255,255,255,0.75);
}
.am-footer-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
}

/* ---- Grid ---- */
.am-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 32px;
}
.am-footer-col {
  display: flex; flex-direction: column; gap: 0;
}

/* ---- Brand column ---- */
.am-footer-brand-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.am-footer-brand-icon {
  width: 34px; height: 34px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700;
  color: #fff; font-size: 16px; flex-shrink: 0;
}
.am-footer-brand-name {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 20px; color: var(--white); letter-spacing: -0.3px;
}
.am-footer-brand-text {
  font-family: var(--font-body); font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6; margin: 0 0 12px; max-width: 36ch;
}
.am-footer-rating {
  display: flex; align-items: center; gap: 8px;
}
.am-footer-stars {
  color: #f59e0b; font-size: 13px; letter-spacing: 2px;
}
.am-footer-rating-text {
  font-family: var(--font-body); font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ---- Column headings ---- */
.am-footer-heading {
  font-family: var(--font-heading); font-size: 15px; font-weight: 600;
  color: var(--white); margin: 0 0 14px; letter-spacing: -0.2px;
}

/* ---- Link lists ---- */
.am-footer-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.am-footer-list a {
  font-family: var(--font-body); font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none; transition: color 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 2px 0;
}
.am-footer-list a:hover { color: var(--accent); }
.am-footer-list a:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px;
  border-radius: 2px;
}

/* ---- Address block ---- */
.am-footer-address {
  font-style: normal; margin: 0 0 14px;
}
.am-footer-address p {
  font-family: var(--font-body); font-size: 13px;
  color: rgba(255,255,255,0.45); margin: 0;
}

/* ---- CTA buttons (phone / WhatsApp) ---- */
.am-footer-ctas {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 14px;
}
.am-footer-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all 0.25s;
  min-height: 44px; /* mobile tap target */
}
.am-footer-cta--call {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
}
.am-footer-cta--call:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}
.am-footer-cta--wa {
  background: rgba(37,211,102,0.12);
  color: #25d366;
  border: 1px solid rgba(37,211,102,0.2);
}
.am-footer-cta--wa:hover {
  background: rgba(37,211,102,0.2);
  border-color: rgba(37,211,102,0.35);
}
.am-footer-cta:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px;
}

/* ---- Social icons ---- */
.am-footer-social {
  display: flex; gap: 8px;
}
.am-footer-social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: all 0.25s; text-decoration: none;
}
.am-footer-social-link:hover {
  background: var(--accent); color: var(--white); transform: translateY(-2px);
}
.am-footer-social-link:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px;
}

/* ---- Bottom bar ---- */
.am-footer-bar {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
}
.am-footer-bar-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.am-footer-copy {
  font-family: var(--font-body); font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.am-footer-tagline {
  font-family: var(--font-body); font-size: 12px;
  color: rgba(255,255,255,0.25);
  text-align: right;
  max-width: 32ch;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .am-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .am-footer-col:first-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .am-footer { padding: 36px 0 0; }
  .am-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .am-footer-bar-inner {
    flex-direction: column; text-align: center;
  }
  .am-footer-tagline { text-align: center; }
}

/* ===== FLOATING WHATSAPP ===== */
.am-whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s; text-decoration: none;
}
.am-whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
.am-whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ===== TOURS PAGE ===== */
.tours-page { padding: 60px 0 100px; }
.tours-note {
  background: var(--gray-bg); border-radius: var(--radius);
  padding: 16px 24px; margin-bottom: 40px;
  font-family: var(--font-body); font-size: 14px; color: var(--gray);
  text-align: center;
}
.tours-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: stretch;
}
.tour-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.3s;
  border: 1px solid var(--gray-light);
  display: flex; flex-direction: column; height: 100%;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tour-card-img {
  position: relative; height: 180px; flex-shrink: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(244,109,42,0.18), transparent 42%),
    linear-gradient(135deg, #0b2740 0%, #12395a 100%);
  display: flex; align-items: center; justify-content: center;
}
.tour-card-img .tour-placeholder {
  font-size: clamp(56px, 6vw, 88px);
  opacity: 1;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.35));
  transform: translateY(2px);
  line-height: 1;
}
.tour-tier-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; border-radius: 50px;
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  background: var(--accent-gradient); color: var(--white);
}
.tour-price-badge {
  position: absolute; top: 12px; right: 12px;
  padding: 6px 14px; border-radius: 50px;
  font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  background: rgba(1,18,24,0.8); color: var(--white);
}
.tour-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.tour-card-body h3 {
  font-family: var(--font-heading); font-size: 20px; font-weight: 600;
  color: var(--dark); letter-spacing: -0.5px; margin-bottom: 6px;
}
.tour-duration {
  font-family: var(--font-body); font-size: 13px; color: var(--accent);
  font-weight: 500; margin-bottom: 10px;
}
.tour-card-body p {
  font-family: var(--font-body); font-size: 14px; color: var(--gray);
  line-height: 1.7; margin-bottom: 14px; flex: 1 1 auto;
}
.tour-highlights {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px;
}
.tour-highlights span {
  display: inline-block; padding: 4px 10px;
  background: rgba(244,109,42,0.08); border-radius: 50px;
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  color: var(--accent);
}
.tour-card-body .btn-primary { width: 100%; text-align: center; margin-top: auto; }

/* ===== SINGLE TOUR ===== */
.single-tour { padding: 60px 0 100px; }
.tour-header { margin-bottom: 40px; }
.tour-header .tier-badge {
  display: inline-block; padding: 4px 14px; border-radius: 50px;
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  background: var(--accent-gradient); color: var(--white);
  margin-bottom: 12px;
}
.tour-header h1 {
  font-family: var(--font-heading); font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700; color: var(--dark); letter-spacing: -1px;
  line-height: 1.2; margin-bottom: 12px;
}
.tour-header p {
  font-family: var(--font-body); font-size: 16px; color: var(--gray);
  line-height: 1.7; max-width: 700px;
}
.tour-filter-bar {
  display: flex; align-items: center; gap: 24px;
  background: var(--gray-bg); border-radius: var(--radius);
  padding: 16px 24px; margin-bottom: 40px;
}
.tour-filter-bar .filter-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 14px; color: var(--dark);
}
.tour-filter-bar .filter-item i {
  color: var(--accent); font-size: 18px;
}
.tour-filter-bar .filter-item strong {
  font-weight: 600;
}
.tour-content-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.tour-content-block {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow);
  border: 1px solid var(--gray-light); margin-bottom: 24px;
}
.tour-content-block h3 {
  font-family: var(--font-heading); font-size: 18px; font-weight: 600;
  color: var(--dark); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.tour-content-block h3 i {
  color: var(--accent);
}
.tour-list {
  list-style: none;
}
.tour-list li {
  font-family: var(--font-body); font-size: 14px; color: var(--gray);
  padding: 8px 0; border-bottom: 1px solid var(--gray-light);
  display: flex; align-items: center; gap: 10px;
}
.tour-list li:last-child { border-bottom: none; }
.tour-list li::before {
  content: ''; width: 6px; height: 6px; background: var(--accent);
  border-radius: 50%; flex-shrink: 0;
}
.tour-inclusions li::before { background: #22c55e; }
.tour-exclusions li::before { background: #ef4444; }
.tour-cta {
  background: var(--dark); border-radius: var(--radius-lg);
  padding: 30px; text-align: center; color: var(--white);
}
.tour-cta h3 {
  font-family: var(--font-heading); font-size: 20px; font-weight: 600;
  color: var(--white); margin-bottom: 12px;
}
.tour-cta p {
  font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

/* ===== CONTACT PAGE ===== */
.contact-page { padding: 60px 0 100px; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.contact-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
}
.contact-card h2 {
  font-family: var(--font-heading); font-size: 24px; font-weight: 600;
  color: var(--dark); margin-bottom: 24px;
}
.contact-line {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--gray-light);
}
.contact-line:last-of-type { border-bottom: none; }
.contact-line i {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(244,109,42,0.1); display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 18px; flex-shrink: 0;
}
.contact-line .contact-label {
  font-family: var(--font-body); font-size: 12px; color: var(--gray);
  text-transform: uppercase; letter-spacing: 1px;
}
.contact-line .contact-value {
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  color: var(--dark);
}
.contact-line .contact-value a { color: var(--accent); }
.contact-line .contact-value a:hover { text-decoration: underline; }
.contact-chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px;
}
.contact-chips span {
  display: inline-block; padding: 6px 14px;
  background: rgba(244,109,42,0.1); border-radius: 50px;
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  color: var(--accent);
}
.contact-map {
  border-radius: var(--radius-lg); overflow: hidden; margin-top: 20px;
  border: 1px solid var(--gray-light);
}
.contact-map iframe {
  width: 100%; height: 320px; border: none; display: block;
}
.contact-form-wrap {
  background: var(--white); border-radius: 20px;
  padding: 32px; box-shadow: 0 8px 40px rgba(10,102,163,0.08);
  border: 1px solid var(--gray-light);
}
.contact-form-head { margin-bottom: 20px; }
.contact-form-head h2 {
  font-family: var(--font-heading); font-size: 20px; font-weight: 600;
  color: var(--dark); margin: 0 0 6px;
}
.contact-form-micro {
  font-family: var(--font-body); font-size: 12px; color: var(--gray);
  line-height: 1.4; margin: 0;
}

/* CF7 form field styling */
.wpcf7-form { display: flex; flex-direction: column; gap: 14px; }
.wpcf7-form p { margin: 0; }
.wpcf7-form label {
  display: block;
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  color: var(--dark); margin-bottom: 4px; text-transform: uppercase;
  letter-spacing: 0.3px;
}
input.wpcf7-form-control.wpcf7-text,
input.wpcf7-form-control.wpcf7-email,
input.wpcf7-form-control.wpcf7-tel,
select.wpcf7-form-control.wpcf7-select,
.am-input {
  width: 100%; height: 50px;
  padding: 0 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: 12px;
  font-family: var(--font-body); font-size: 14px; color: var(--dark);
  background: #fafbfc;
  transition: all 0.2s;
  outline: none;
  box-sizing: border-box;
}
input.wpcf7-form-control:focus,
.am-input:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(244,109,42,0.1);
}
input.wpcf7-form-control::placeholder,
.am-input::placeholder {
  color: #a0abb8; font-weight: 400;
}
textarea.wpcf7-form-control.wpcf7-textarea,
.am-textarea {
  width: 100%; min-height: 110px;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: 12px;
  font-family: var(--font-body); font-size: 14px; color: var(--dark);
  background: #fafbfc;
  transition: all 0.2s;
  outline: none;
  resize: vertical;
  box-sizing: border-box;
}
textarea.wpcf7-form-control:focus,
.am-textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(244,109,42,0.1);
}
textarea.wpcf7-form-control::placeholder,
.am-textarea::placeholder {
  color: #a0abb8; font-weight: 400;
}

/* Submit button */
input.wpcf7-form-control.wpcf7-submit,
.am-submit {
  width: 100%; height: 50px;
  border: none; border-radius: 12px;
  background: var(--accent-gradient);
  color: var(--white);
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.3px;
}
input.wpcf7-form-control.wpcf7-submit:hover,
.am-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(244,109,42,0.3);
}
input.wpcf7-form-control.wpcf7-submit:active,
.am-submit:active {
  transform: translateY(0);
}

/* Trust badges below form */
.contact-form-trust {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--gray-light);
}
.contact-form-trust span {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 12px; border-radius: 50px;
  background: rgba(244,109,42,0.06);
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  color: var(--accent); border: 1px solid rgba(244,109,42,0.12);
}

/* CF7 response styling */
.wpcf7-response-output {
  margin: 12px 0 0 !important;
  padding: 12px 16px !important;
  border-radius: 10px !important;
  font-family: var(--font-body); font-size: 13px;
  border: 1px solid !important;
}
.wpcf7-form.sent .wpcf7-response-output {
  border-color: #22c55e !important;
  background: rgba(34,197,94,0.06);
  color: #166534;
}
.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.aborted .wpcf7-response-output {
  border-color: #ef4444 !important;
  background: rgba(239,68,68,0.06);
  color: #991b1b;
}
.wpcf7-not-valid-tip {
  font-family: var(--font-body); font-size: 11px;
  color: #ef4444; margin-top: 4px;
}
.wpcf7-form-control-wrap { display: block; }
.wpcf7-form .wpcf7-not-valid { border-color: #ef4444 !important; background: #fef2f2; }

/* Hide the default CF7 fieldset */
.hidden-fields-container { display: none; }
.softbox-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 40px;
}
.softbox {
  background: var(--gray-bg); border-radius: var(--radius-lg);
  padding: 30px; border: 1px solid var(--gray-light);
}
.softbox h3 {
  font-family: var(--font-heading); font-size: 18px; font-weight: 600;
  color: var(--dark); margin-bottom: 10px;
}
.softbox p {
  font-family: var(--font-body); font-size: 14px; color: var(--gray);
  line-height: 1.7; margin-bottom: 16px;
}
.softbox-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.softbox-chips span {
  display: inline-block; padding: 5px 12px;
  background: rgba(244,109,42,0.1); border-radius: 50px;
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  color: var(--accent);
}

/* ===== 404 PAGE ===== */
.error-404 {
  padding: 120px 0; text-align: center;
}
.error-404 h1 {
  font-family: var(--font-heading); font-size: clamp(60px, 10vw, 120px);
  font-weight: 700; color: var(--accent); letter-spacing: -3px;
  line-height: 1; margin-bottom: 20px;
}
.error-404 h2 {
  font-family: var(--font-heading); font-size: 28px; font-weight: 600;
  color: var(--dark); margin-bottom: 16px;
}
.error-404 p {
  font-family: var(--font-body); font-size: 16px; color: var(--gray);
  margin-bottom: 32px;
}

/* ===== PAGE SHELL ===== */
.am-shell { padding: 60px 0 100px; }
.am-kicker {
  font-family: var(--font-body); font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent);
  margin-bottom: 8px;
}
.am-page-title {
  font-family: var(--font-heading); font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700; color: var(--dark); letter-spacing: -1px;
  line-height: 1.2; margin-bottom: 12px;
}
.am-page-lead {
  font-family: var(--font-body); font-size: 16px; color: var(--gray);
  line-height: 1.7; max-width: 700px; margin-bottom: 40px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card:first-child { grid-column: span 2; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: repeat(2, 1fr); }
  .am-footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-content-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero h1 { max-width: 14ch; }
  .hero-side-panel { justify-self: start; max-width: 420px; }
}
@media (max-width: 768px) {
  .am-topbar {
    padding: 6px 0;
  }
  .am-topbar-text {
    font-size: 12px;
  }
  .am-navbar {
    min-height: 72px;
  }
  .am-navbar-inner {
    min-height: 72px;
    gap: 12px;
  }
  .am-nav { display: none; }
  .am-mobile-toggle { display: block; }
  .am-cta-btn { display: none; }
  .am-logo a {
    font-size: 18px;
  }
  .hero { min-height: auto; padding: 72px 0 64px; }
  .hero h1 { font-size: 36px; max-width: none; }
  .hero p { max-width: none; }
  .hero-grid { gap: 20px; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card:first-child { grid-column: span 1; }
  .am-about-grid { grid-template-columns: 1fr; }
  .am-about-img-float { display: none; }
  .packages-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .newsletter-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .tours-grid { grid-template-columns: 1fr; }
  .softbox-grid { grid-template-columns: 1fr; }
  .hero-side-panel { display: none; }
  .tour-filter-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ===== MISSING CLASSES ===== */
.am-topbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.am-logo { display: flex; align-items: center; }
.am-main { width: 100%; }

/* Font Awesome icon fallbacks */
.fa-solid, .fa-regular, .fa-brands { display: inline-block; font-style: normal; font-family: var(--font-body); }
.fa-phone::before { content: "📞"; }
.fa-location-dot::before { content: "📍"; }
.fa-clock::before { content: "⏱"; }
.fa-tag::before { content: "🏷"; }
.fa-check::before { content: "✓"; }
.fa-xmark::before { content: "✕"; }
.fa-star::before { content: "★"; }
.fa-whatsapp::before { content: "💬"; }

/* Single tour page */
.single-tour { padding: 60px 0 80px; }
.tour-header { margin-bottom: 30px; }
.tour-header .tier-badge {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  background: var(--accent-gradient); color: var(--white); margin-bottom: 10px;
}
.tour-header h1 {
  font-family: var(--font-heading); font-size: clamp(24px, 3vw, 36px);
  font-weight: 700; color: var(--dark); letter-spacing: -1px; line-height: 1.2; margin-bottom: 8px;
}
.tour-header p {
  font-family: var(--font-body); font-size: 15px; color: var(--gray); line-height: 1.7;
}
.tour-filter-bar {
  display: flex; align-items: center; gap: 24px;
  background: var(--gray-bg); border-radius: var(--radius);
  padding: 14px 20px; margin-bottom: 30px;
}
.tour-filter-bar .filter-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 14px; color: var(--dark);
}
.tour-filter-bar .filter-item i { color: var(--accent); font-size: 16px; }
.tour-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.tour-left, .tour-right { display: flex; flex-direction: column; gap: 20px; }
.tour-content-block {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow); border: 1px solid var(--gray-light);
}
.tour-content-block h3 {
  font-family: var(--font-heading); font-size: 16px; font-weight: 600;
  color: var(--dark); margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.tour-content-block h3 i { color: var(--accent); }
.tour-list { list-style: none; padding: 0; margin: 0; }
.tour-list li {
  font-family: var(--font-body); font-size: 14px; color: var(--gray);
  padding: 6px 0; border-bottom: 1px solid var(--gray-light);
  display: flex; align-items: center; gap: 8px;
}
.tour-list li:last-child { border-bottom: none; }
.tour-list li::before {
  content: ''; width: 5px; height: 5px; background: var(--accent);
  border-radius: 50%; flex-shrink: 0;
}
.tour-inclusions li::before { background: #22c55e; }
.tour-exclusions li::before { background: #ef4444; }
.tour-cta {
  background: var(--dark); border-radius: var(--radius-lg);
  padding: 24px; text-align: center; color: var(--white);
}
.tour-cta h3 {
  font-family: var(--font-heading); font-size: 18px; font-weight: 600;
  color: var(--white); margin-bottom: 8px;
}
.tour-cta p {
  font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 16px;
}

/* Contact page */
.contact-page { padding: 60px 0 80px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.contact-left, .contact-right { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--gray-light);
}
.contact-card h2 {
  font-family: var(--font-heading); font-size: 20px; font-weight: 600;
  color: var(--dark); margin-bottom: 16px;
}
.contact-line {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--gray-light);
}
.contact-line:last-of-type { border-bottom: none; }
.contact-line i {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(244,109,42,0.1); display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 14px; flex-shrink: 0;
}
.contact-line .am-contact-label {
  font-family: var(--font-body); font-size: 11px; color: var(--gray);
  text-transform: uppercase; letter-spacing: 0.5px; display: block;
}
.contact-line .am-contact-value {
  font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--dark);
}
.contact-line .am-contact-value a { color: var(--accent); text-decoration: none; }
.contact-line .am-contact-value a:hover { text-decoration: underline; }
.contact-chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px;
}
.contact-chips span {
  display: inline-block; padding: 5px 12px;
  background: rgba(244,109,42,0.1); border-radius: 50px;
  font-family: var(--font-body); font-size: 12px; font-weight: 500; color: var(--accent);
}
.contact-map {
  border-radius: var(--radius-lg); overflow: hidden; margin-top: 14px;
  border: 1px solid var(--gray-light);
}
.contact-map iframe { width: 100%; height: 280px; border: none; display: block; }
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--gray-light);
}
.contact-form-wrap h2 {
  font-family: var(--font-heading); font-size: 20px; font-weight: 600;
  color: var(--dark); margin-bottom: 16px;
}
.softbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.softbox {
  background: var(--gray-bg); border-radius: var(--radius-lg);
  padding: 24px; border: 1px solid var(--gray-light);
}
.softbox h3 {
  font-family: var(--font-heading); font-size: 16px; font-weight: 600;
  color: var(--dark); margin-bottom: 8px;
}
.softbox p {
  font-family: var(--font-body); font-size: 13px; color: var(--gray);
  line-height: 1.6; margin-bottom: 12px;
}
.softbox-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.softbox-chips span {
  display: inline-block; padding: 4px 10px;
  background: rgba(244,109,42,0.1); border-radius: 50px;
  font-family: var(--font-body); font-size: 11px; font-weight: 500; color: var(--accent);
}

/* Page shell */
.am-shell { padding: 60px 0 80px; }
.am-kicker {
  font-family: var(--font-body); font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent);
  margin-bottom: 6px;
}
.am-page-title {
  font-family: var(--font-heading); font-size: clamp(24px, 3vw, 36px);
  font-weight: 700; color: var(--dark); letter-spacing: -1px;
  line-height: 1.2; margin-bottom: 8px;
}
.am-page-lead {
  font-family: var(--font-body); font-size: 15px; color: var(--gray);
  line-height: 1.7; max-width: 600px;
}

/* Fix tour card image area */
.tour-card-img {
  position: relative; height: 180px; overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(244,109,42,0.18), transparent 42%),
    linear-gradient(135deg, #0b2740 0%, #12395a 100%);
  display: flex; align-items: center; justify-content: center;
}
.tour-card-img .tour-placeholder {
  font-size: clamp(56px, 6vw, 88px);
  opacity: 1;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.35));
  transform: translateY(2px);
  line-height: 1;
}
.tour-tier-badge {
  position: absolute; top: 10px; left: 10px;
  padding: 3px 10px; border-radius: 50px;
  font-family: var(--font-body); font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  background: var(--accent-gradient); color: var(--white);
}
.tour-price-badge {
  position: absolute; top: 10px; right: 10px;
  padding: 5px 12px; border-radius: 50px;
  font-family: var(--font-heading); font-size: 13px; font-weight: 700;
  background: rgba(1,18,24,0.8); color: var(--white);
}
.tour-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.tour-card-body h3 {
  font-family: var(--font-heading); font-size: 18px; font-weight: 600;
  color: var(--dark); letter-spacing: -0.5px; margin-bottom: 4px;
}
.tour-duration {
  font-family: var(--font-body); font-size: 12px; color: var(--accent);
  font-weight: 500; margin-bottom: 8px;
}
.tour-card-body p {
  font-family: var(--font-body); font-size: 13px; color: var(--gray);
  line-height: 1.6; margin-bottom: 12px; flex: 1 1 auto;
}
.tour-highlights { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.tour-highlights span {
  display: inline-block; padding: 3px 9px;
  background: rgba(244,109,42,0.08); border-radius: 50px;
  font-family: var(--font-body); font-size: 10px; font-weight: 500; color: var(--accent);
}
.tour-card-body .btn-primary { width: 100%; text-align: center; margin-top: auto; }

/* Fix services grid spacing */
.services { padding: 80px 0; }
.services-grid { gap: 20px; }
.service-card { padding: 28px 22px; }
.service-emoji { font-size: 36px; margin-bottom: 12px; }
.service-card h3 { font-size: 18px; margin-bottom: 8px; }
.service-card p { font-size: 13px; margin-bottom: 12px; }
.section-header { margin-bottom: 40px; }

/* Fix pricing */
.pricing { padding: 80px 0; }
.pricing-grid { gap: 20px; }
.pricing-card { padding: 32px 24px; }
.pricing-badge { margin-bottom: 14px; }
.pricing-card h3 { font-size: 20px; margin-bottom: 8px; }
.pricing-amount { font-size: 32px; margin-bottom: 6px; }
.pricing-card p { font-size: 13px; margin-bottom: 18px; }

/* Fix stats */
.stats { padding: 40px 0; }
.stats-grid { gap: 30px; }
.stat-num { font-size: clamp(28px, 3vw, 40px); }
.stat-label { font-size: 13px; }

/* Fix testimonials */
.testimonials { padding: 80px 0; }
.test-grid { gap: 20px; margin-top: 40px; }
.test-card { padding: 24px; }
.test-stars { font-size: 12px; margin-bottom: 10px; }
.test-text { font-size: 13px; line-height: 1.7; margin-bottom: 14px; }
.test-avatar { width: 38px; height: 38px; font-size: 15px; }
.test-name { font-size: 13px; }
.test-role { font-size: 11px; }

/* Fix FAQ */
.faq { padding: 80px 0; }
.faq-grid { margin-top: 40px; gap: 12px; }
.faq-question { padding: 16px 20px; font-size: 14px; }
.faq-question::after { font-size: 18px; }
.faq-item.active .faq-answer { padding: 0 20px 16px; }
.faq-answer p { font-size: 13px; }

/* Fix CTA banner */
.cta-banner { padding: 80px 0; }
.cta-banner h2 { margin-bottom: 12px; }
.cta-banner p { font-size: 14px; margin: 0 auto 24px; }

/* Fix brands */
.am-brands { padding: 40px 0; }
.am-brands-inner { gap: 40px; }

/* Fix about section */
.am-about { padding: 80px 0; }
.am-about-grid { gap: 40px; }
.am-about-img-main img { height: 380px; }
.am-about-img-float { width: 180px; bottom: -20px; right: -20px; }
.am-about-img-float img { height: 120px; }
.am-about-content h2 { font-size: clamp(24px, 2.5vw, 34px); margin-bottom: 14px; }
.am-about-content p { font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.am-about-features { gap: 10px; margin: 20px 0; }
.am-about-feature span { font-size: 14px; }

/* Fix why us */
.am-why-us { padding: 80px 0; }
.am-why-grid { gap: 20px; margin-top: 40px; }
.am-why-card { padding: 30px 24px; }
.am-why-icon { width: 52px; height: 52px; font-size: 22px; margin: 0 auto 14px; }
.am-why-card h3 { font-size: 18px; margin-bottom: 8px; }
.am-why-card p { font-size: 13px; }

/* Fix destinations */
.am-destinations { padding: 80px 0; }
.am-dest-grid { gap: 20px; }
.am-dest-card img { height: 260px; }
.am-dest-name { font-size: 22px; }
.am-dest-loc { font-size: 13px; }

/* Fix packages */
.am-packages { padding: 80px 0; }
.am-packages-grid { gap: 20px; }
.am-package-img img { height: 220px; }
.am-package-body { padding: 20px; }
.am-package-body h3 { font-size: 18px; margin-bottom: 6px; }
.am-package-meta { font-size: 12px; margin-bottom: 10px; }
.am-package-rating .score { font-size: 12px; }
.am-stars { font-size: 11px; }

/* Fix tours page */
.tours-page { padding: 50px 0 80px; }
.tours-note { padding: 12px 20px; margin-bottom: 30px; font-size: 13px; }
.tours-grid { gap: 20px; }

/* Fix single tour */
.single-tour { padding: 50px 0 80px; }
.tour-header { margin-bottom: 24px; }
.tour-header h1 { font-size: clamp(22px, 2.8vw, 32px); }
.tour-header p { font-size: 14px; }
.tour-filter-bar { padding: 12px 18px; margin-bottom: 24px; gap: 18px; }
.tour-filter-bar .filter-item { font-size: 13px; }
.tour-content-grid { gap: 24px; }
.tour-content-block { padding: 20px; }
.tour-content-block h3 { font-size: 15px; margin-bottom: 10px; }
.tour-list li { font-size: 13px; padding: 5px 0; }
.tour-cta { padding: 20px; }
.tour-cta h3 { font-size: 16px; }
.tour-cta p { font-size: 12px; margin-bottom: 14px; }

/* Fix contact page */
.contact-page { padding: 50px 0 80px; }
.contact-grid { gap: 24px; margin-bottom: 24px; }
.contact-card { padding: 22px; }
.contact-card h2 { font-size: 18px; margin-bottom: 12px; }
.contact-line { padding: 8px 0; }
.contact-line i { width: 32px; height: 32px; font-size: 12px; }
.contact-line .am-contact-value { font-size: 13px; }
.contact-map iframe { height: 240px; }
.contact-form-wrap { padding: 22px; }
.contact-form-wrap h2 { font-size: 18px; margin-bottom: 12px; }
.softbox-grid { gap: 16px; margin-top: 24px; }
.softbox { padding: 20px; }
.softbox h3 { font-size: 15px; margin-bottom: 6px; }
.softbox p { font-size: 12px; margin-bottom: 10px; }
.softbox-chips span { font-size: 10px; padding: 3px 8px; }

/* ===== SINGLE TOUR PAGE (page-tour.php) ===== */
.tour-single { padding: 50px 0 80px; }
.tour-single h1 {
  font-family: var(--font-heading); font-size: clamp(24px, 3vw, 36px);
  font-weight: 700; color: var(--dark); letter-spacing: -1px; line-height: 1.2;
  margin: 0 0 6px;
}
.tour-single-header { margin-bottom: 24px; }
.tour-single-tier {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  background: var(--accent-gradient); color: var(--white); margin-bottom: 10px;
}
.tour-single-summary {
  font-family: var(--font-body); font-size: 15px; color: var(--gray); line-height: 1.7;
}
.tour-single-filter {
  display: flex; align-items: center; gap: 24px;
  background: var(--gray-bg); border-radius: var(--radius);
  padding: 14px 20px; margin-bottom: 30px;
}
.tour-single-filter-item {
  display: flex; align-items: center; gap: 10px;
}
.tour-single-filter-label {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray);
}
.tour-single-filter-value {
  font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--dark);
}
.tour-single-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.tour-single-col { display: flex; flex-direction: column; gap: 20px; }
.tour-single-block {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow); border: 1px solid var(--gray-light);
}
.tour-single-block h3 {
  font-family: var(--font-heading); font-size: 16px; font-weight: 600;
  color: var(--dark); margin: 0 0 14px;
}
.tour-single-list { list-style: none; padding: 0; margin: 0; }
.tour-single-list li {
  font-family: var(--font-body); font-size: 14px; color: var(--gray);
  padding: 8px 0; border-bottom: 1px solid var(--gray-light);
  display: flex; align-items: center; gap: 10px;
}
.tour-single-list li:last-child { border-bottom: none; }
.tour-single-list li::before {
  content: ''; width: 6px; height: 6px; background: var(--accent);
  border-radius: 50%; flex-shrink: 0;
}
.tour-single-inclusions li::before { background: #22c55e; width: 8px; height: 8px; }
.tour-single-exclusions li::before { background: #ef4444; width: 8px; height: 8px; }
.tour-single-cta {
  background: var(--dark); border-radius: var(--radius-lg);
  padding: 24px; text-align: center;
}
.tour-single-cta h3 {
  font-family: var(--font-heading); font-size: 18px; font-weight: 600;
  color: var(--white); margin: 0 0 8px;
}
.tour-single-cta p {
  font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,0.65);
  margin: 0 0 16px;
}
.tour-single-cta .btn-primary { min-width: 200px; }
