/* ========================================
   Sections CSS - All Main Page Sections
   ======================================== */

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text { z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 12px;
  background: var(--white);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage-700);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  border: 1px solid var(--sage-100);
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--frog-400);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title { margin-bottom: 24px; }

.title-line {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--forest-800);
}

.title-accent {
  background: linear-gradient(135deg, var(--frog-600), var(--sage-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 540px;
}

.evidence-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-main {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image-badge {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.badge-emoji { font-size: 1.8rem; }

.hero-image-badge strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--forest-800);
}

.hero-image-stack {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image-small {
  width: 100px; height: 100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* About Section */
.about-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--sage-50) 50%, var(--cream) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.about-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sage-100);
  transition: all var(--duration) var(--ease-spring);
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.about-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--frog-100), var(--sage-100));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.about-icon svg { 
  width: 28px; 
  height: 28px; 
  color: var(--sage-600); 
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest-800);
  margin-bottom: 12px;
}

.about-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Ideal Travelers */
.ideal-travelers { margin-top: 60px; }

.travelers-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest-800);
  text-align: center;
  margin-bottom: 32px;
}

.travelers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.traveler-card {
  background: var(--white);
  padding: 28px 20px;
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sage-100);
  transition: all var(--duration) var(--ease-spring);
}

.traveler-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.traveler-icon { font-size: 2.5rem; margin-bottom: 16px; }

.traveler-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest-800);
  margin-bottom: 8px;
}

.traveler-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* Services Section */
.services-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 24px;
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--sage-100);
  transition: all var(--duration) var(--ease-spring);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-header { margin-bottom: 16px; }

.service-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--frog-50);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--frog-700);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest-800);
  margin-bottom: 12px;
  line-height: 1.4;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-locations span {
  padding: 6px 12px;
  background: var(--sage-50);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sage-700);
}

/* Journeys Section */
.journeys-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--sage-50) 100%);
}

.journeys-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.journey-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--sage-100);
  transition: all var(--duration) var(--ease-spring);
  display: flex;
  flex-direction: column;
}

.journey-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.journey-image {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, var(--sage-100), var(--frog-100));
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-image svg { 
  width: 48px; 
  height: 48px; 
  color: var(--sage-400); 
}

.journey-badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 6px 14px;
  background: var(--frog-500);
  color: var(--white);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
}

.journey-number {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--sage-700);
}

.journey-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.journey-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.meta-item svg { width: 14px; height: 14px; }

.journey-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest-800);
  margin-bottom: 10px;
  line-height: 1.4;
}

.journey-content > p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.journey-for {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.journey-for strong { color: var(--forest-800); }

.journey-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.journey-tags span {
  padding: 5px 12px;
  background: var(--sage-50);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sage-700);
}

.method-tag {
  background: var(--frog-50) !important;
  color: var(--frog-700) !important;
}

.journey-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--sage-100);
}

.journey-price {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--sage-700);
}

/* Process Section */
.process-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 24px;
  background: var(--cream);
}

.process-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 60px;
}

.process-card {
  flex: 0 0 280px;
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--sage-100);
  transition: all var(--duration) var(--ease-spring);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.process-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--sage-200), var(--frog-300));
  margin-top: 80px;
  position: relative;
}

.process-connector::after {
  content: '';
  position: absolute;
  right: -4px; top: -3px;
  width: 8px; height: 8px;
  background: var(--frog-400);
  border-radius: 50%;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--frog-500), var(--sage-500));
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.process-icon {
  width: 64px; height: 64px;
  background: var(--sage-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-icon svg { 
  width: 32px; 
  height: 32px; 
  color: var(--sage-600); 
}

.process-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest-800);
  margin-bottom: 12px;
}

.process-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* Local Intelligence */
.local-intel {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.local-intel h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest-800);
  margin-bottom: 28px;
}

.intel-grid {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
}

/* Why Section */
.why-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--sage-50) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--sage-100);
  transition: all var(--duration) var(--ease-spring);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--frog-100), var(--sage-100));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-icon svg { 
  width: 30px; 
  height: 30px; 
  color: var(--sage-600); 
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest-800);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.why-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.why-credentials span {
  padding: 8px 14px;
  background: var(--sage-50);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sage-700);
}

/* Contact Section */
.contact-section {
  min-height: auto; /* Allow scrolling to footer */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 24px;
  background: var(--cream);
}

.contact-cta {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-2xl);
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--sage-100);
  margin-bottom: 32px;
}

.cta-mascot { 
  font-size: 4rem; 
  margin-bottom: 20px; 
  display: block; 
}

.contact-cta p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-info-grid { 
  display: flex; 
  justify-content: center; 
}

.contact-card {
  background: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius-xl);
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sage-100);
}

.contact-icon {
  width: 48px; height: 48px;
  background: var(--frog-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg { 
  width: 22px; 
  height: 22px; 
  color: var(--sage-600); 
}

.contact-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.contact-value { 
  font-size: 0.95rem; 
  color: var(--gray-700); 
}
