﻿:root {
  --bg: #f8f9f6;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --text: #243823;
  --muted: #687166;
  --line: rgba(36, 56, 35, 0.11);
  --accent: #e89a24;
  --accent-dark: #d8891b;
  --sage: #9aaa83;
  --sage-soft: rgba(135, 152, 106, 0.12);
  --forest: #243823;
  --forest-soft: #3b5736;
  --shadow: 0 24px 60px rgba(36, 56, 35, 0.12);
  --radius-lg: 28px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Roboto, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 12% 5%, rgba(232, 154, 36, 0.1), transparent 25%),
    radial-gradient(circle at 84% 0%, rgba(154, 170, 131, 0.16), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 46%, #f1f4ee 100%);
}

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

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.topbar,
.hero,
.card,
.quote-card,
.step,
.contact-card {
  backdrop-filter: blur(10px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(36, 56, 35, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Raleway, Roboto, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(3, 22, 2, 0.12);
}

.topbar-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.98rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover,
.topbar-cta:hover {
  transform: translateY(-1px);
}

.topbar-cta,
.button-primary {
  color: #ffffff;
  background: var(--accent-dark);
  border: 1px solid var(--accent-dark);
  box-shadow: 0 14px 30px rgba(216, 137, 27, 0.16);
}

.button-secondary {
  color: var(--forest);
  border: 1px solid var(--forest);
  background: rgba(255, 255, 255, 0.76);
}

.hero,
.contact-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  padding: 72px 48px 64px;
  color: #ffffff;
  border-radius: 0 0 34px 34px;
  background:
    linear-gradient(180deg, rgba(59, 87, 54, 0.16) 0%, rgba(36, 56, 35, 0.74) 100%),
    radial-gradient(circle at 80% 26%, rgba(232, 154, 36, 0.1), transparent 24%),
    url("https://amzjungleguide.com/wp-content/uploads/2026/03/video-poster.jpg") center / cover;
  box-shadow: 0 26px 70px rgba(36, 56, 35, 0.11);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 96px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(248, 249, 246, 0), rgba(248, 249, 246, 0.82));
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Raleway, Roboto, "Segoe UI", Arial, sans-serif;
  font-weight: 800;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.hero-subtitle,
.hero-highlight {
  font-size: 1.15rem;
  font-weight: 800;
}

.hero-copy p:not(.eyebrow):not(.hero-subtitle):not(.hero-highlight) {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-highlight {
  color: #ffffff;
}

.cta-row,
.contact-actions,
.footer-links,
.trust-inline,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-row {
  margin: 26px 0 18px;
}

.cta-row .button,
.contact-actions .button {
  flex: 1 1 240px;
}

.hero .button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(59, 87, 54, 0.22);
}

.trust-inline span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(59, 87, 54, 0.18);
  font-size: 0.92rem;
}

.hero-visual {
  display: grid;
  gap: 18px;
  align-self: center;
  justify-items: center;
}

.portrait-card,
.as-seen-card,
.quote-card,
.card,
.step,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.portrait-card {
  width: min(100%, 340px);
  padding: 22px 22px 0;
  background:
    radial-gradient(circle at top center, rgba(232, 154, 36, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(135, 152, 106, 0.14), rgba(255, 255, 255, 0.05));
}

.portrait-card img {
  width: 100%;
  height: auto;
}

.as-seen-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 18px;
  color: var(--forest);
}

.as-seen-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.as-seen-card img {
  width: 132px;
  height: auto;
}

.section {
  margin-top: 34px;
}

.compact-section {
  padding: 42px 36px;
  border: 1px solid rgba(3, 22, 2, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(36, 56, 35, 0.05);
}

.section-heading {
  margin-bottom: 20px;
}

.service-grid,
.steps,
.testimonials-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.step {
  padding: 22px;
  border-top: 3px solid var(--sage);
  box-shadow: 0 14px 36px rgba(36, 56, 35, 0.045);
}

.card ul {
  margin-bottom: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.quote-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
}

.quote-card {
  padding: 34px;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(59, 87, 54, 0.7), rgba(36, 56, 35, 0.82)),
    radial-gradient(circle at top right, rgba(232, 154, 36, 0.1), transparent 34%);
  box-shadow: 0 18px 48px rgba(36, 56, 35, 0.08);
  justify-self: end;
  width: min(100%, 640px);
}

.quote {
  margin-bottom: 18px;
  max-width: 24ch;
  font-size: clamp(1.34rem, 2vw, 1.85rem);
  line-height: 1.42;
}

.quote-author {
  color: var(--accent);
}

.badge-row {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  align-self: center;
  position: relative;
  padding: 26px 18px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.48)),
    url("https://amzjungleguide.com/wp-content/uploads/2024/04/yoal-desurmont-jqgsM3B9Fpo-unsplash-scaled.jpg") center / cover;
}

.badge-row::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.22;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.6)),
    radial-gradient(circle at 15% 70%, rgba(154, 170, 131, 0.22), transparent 22%),
    radial-gradient(circle at 76% 24%, rgba(154, 170, 131, 0.2), transparent 20%);
  backdrop-filter: blur(1px);
  animation: jungleFloat 12s ease-in-out infinite alternate;
}

.badge-row::after {
  position: absolute;
  inset: -8% -4%;
  content: "";
  opacity: 0.16;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 86%, rgba(154, 170, 131, 0.34) 0 12%, transparent 13%),
    radial-gradient(ellipse at 50% 14%, rgba(154, 170, 131, 0.28) 0 10%, transparent 11%),
    radial-gradient(ellipse at 88% 84%, rgba(154, 170, 131, 0.3) 0 12%, transparent 13%);
  filter: blur(20px);
  transform-origin: 50% 50%;
  animation: jungleSway 9s ease-in-out infinite;
}

.badge-row img {
  position: relative;
  z-index: 1;
  width: min(100%, 280px);
  justify-self: center;
  max-height: 220px;
  padding: 18px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  box-shadow: 0 14px 36px rgba(36, 56, 35, 0.045);
}

.testimonials-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 249, 246, 0.92)),
    radial-gradient(circle at top right, rgba(154, 170, 131, 0.12), transparent 26%);
}

.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 36px rgba(36, 56, 35, 0.045);
}

.testimonial-stars {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}

.testimonial-text {
  margin-bottom: 14px;
  color: var(--forest);
  line-height: 1.65;
}

.testimonial-meta {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@keyframes jungleFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(0, -8px, 0) scale(1.02);
  }
}

@keyframes jungleSway {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(1.2deg) translate3d(4px, -6px, 0);
  }
  100% {
    transform: rotate(-1deg) translate3d(-3px, 4px, 0);
  }
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 10px;
  color: var(--forest);
  background: var(--accent);
  font-weight: 800;
}

.step p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.contact-section {
  padding: 36px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(59, 87, 54, 0.7), rgba(36, 56, 35, 0.84)),
    radial-gradient(circle at bottom right, rgba(232, 154, 36, 0.13), transparent 34%);
}

.contact-section .eyebrow,
.contact-section h2,
.contact-section .contact-copy p {
  color: #ffffff;
}

.contact-section .button-secondary {
  color: #ffffff;
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.contact-card {
  padding: 24px;
  color: var(--forest);
}

.contact-card a {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: none;
}

.contact-note {
  margin-top: 18px;
  font-size: 0.95rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 4px 0;
  color: var(--muted);
}

.footer p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.footer img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.footer a {
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero,
  .contact-section,
  .quote-section,
  .service-grid,
  .steps,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 36px 30px;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 10px;
  }

  .topbar,
  .footer {
    flex-direction: column;
    align-items: stretch;
  }

  .brand {
    justify-content: center;
  }

  .compact-section,
  .contact-section,
  .hero {
    padding: 22px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .button,
  .topbar-cta {
    width: 100%;
  }

  .trust-inline span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .as-seen-card {
    flex-direction: column;
    align-items: flex-start;
  }

}


