/* About — kamanatravels.com/about */
.about-page {
  font-family: var(--sans), "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  margin: 0 -1.25rem;
  padding: 0 0 3rem;
}

@media (min-width: 1200px) {
  .about-page {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: max(0px, calc(50vw - 50%));
    padding-right: max(0px, calc(50vw - 50%));
  }
}

.about-page .ap-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero */
.about-page .ap-hero {
  padding: 5rem 1.25rem 2.5rem;
  text-align: center;
  color: #fff;
}

.about-page .ap-hero h1 {
  font-family: var(--sans);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin: 0 0 1.25rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.15;
}

.about-page .ap-hero h1 .ap-highlight {
  color: #ffd700;
}

.about-page .ap-hero__lead {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin: 0 auto;
  max-width: 600px;
  opacity: 0.95;
  line-height: 1.65;
}

/* Main card */
.about-page .ap-main {
  background: #fff;
  margin: -3rem 20px 0;
  border-radius: 20px;
  padding: 3.75rem 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

.about-page .ap-section {
  margin-bottom: 3.75rem;
}

.about-page .ap-section:last-of-type {
  margin-bottom: 0;
}

.about-page .ap-section h2 {
  font-family: var(--sans);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #333;
  text-align: center;
  margin: 0 0 2.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 1rem;
}

.about-page .ap-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 2px;
}

.about-page .ap-about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-page .ap-about-text p {
  margin: 0 0 1.25rem;
}

.about-page .ap-about-text p:last-child {
  margin-bottom: 0;
}

/* Why choose features */
.about-page .ap-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.85rem;
  margin-top: 2rem;
}

.about-page .ap-feature-card {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
  padding: 2.5rem 1.85rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.about-page .ap-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.about-page .ap-feature-card__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.about-page .ap-feature-card h3 {
  font-family: var(--sans);
  font-size: 1.2rem;
  color: #333;
  margin: 0 0 0.85rem;
  font-weight: 600;
}

.about-page .ap-feature-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 0.98rem;
}

/* Services */
.about-page .ap-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.85rem;
  margin-top: 2rem;
}

.about-page .ap-service-card {
  background: #fff;
  padding: 1.85rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #667eea;
}

.about-page .ap-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-page .ap-service-card h3 {
  font-family: var(--sans);
  color: #333;
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.about-page .ap-service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-page .ap-service-card li {
  color: #666;
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.55;
}

.about-page .ap-service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: 700;
}

/* Booking steps */
.about-page .ap-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1.85rem;
  margin-top: 2rem;
}

.about-page .ap-step {
  text-align: center;
}

.about-page .ap-step__num {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  font-family: var(--sans);
}

.about-page .ap-step h3 {
  font-family: var(--sans);
  color: #333;
  margin: 0 0 0.85rem;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.35;
}

.about-page .ap-step p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* CTA */
.about-page .ap-cta {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  padding: 3.75rem 2.5rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 3.75rem;
}

.about-page .ap-cta h2 {
  font-family: var(--sans);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0 0 1rem;
  font-weight: 800;
  color: #fff;
}

.about-page .ap-cta h2::after {
  display: none;
}

.about-page .ap-cta p {
  font-size: 1.15rem;
  margin: 0 auto 1.75rem;
  opacity: 0.95;
  max-width: 560px;
}

.about-page .ap-cta__btn {
  display: inline-block;
  background: #fff;
  color: #667eea;
  padding: 0.9rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--sans);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-page .ap-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
  color: #667eea;
}

@media (max-width: 768px) {
  .about-page .ap-hero {
    padding: 3.5rem 1.25rem 2rem;
  }

  .about-page .ap-main {
    margin: -2rem 10px 0;
    padding: 2.5rem 1.25rem;
  }

  .about-page .ap-cta {
    padding: 2.5rem 1.25rem;
  }
}
