/* ========================================
   MAHARAJAH TOURS - ABOUT PAGE
   Stats, Features, Values, Trust Badges
   ======================================== */

/* ========== ABOUT IMAGE ========== */
.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.02);
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--brand-gold) 0%, #c09b2d 100%);
  color: #fff;
  padding: 1.25rem 1.75rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 3px solid #fff;
}

.about-image-badge i {
  font-size: 2.5rem;
  opacity: 0.9;
}

.about-image-badge strong {
  display: block;
  font-size: 0.85rem;
  opacity: 0.9;
  font-weight: 600;
}

.about-image-badge span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.about-highlight-box {
  background: linear-gradient(135deg, var(--brand-light-gold) 0%, #fff9e6 100%);
  border-left: 4px solid var(--brand-gold);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
  margin-top: 2rem;
}

.about-highlight-box i {
  font-size: 2rem;
  color: var(--brand-burgundy);
  flex-shrink: 0;
}

.about-highlight-box p {
  font-size: 1.05rem;
  color: var(--brand-burgundy);
  line-height: 1.7;
  font-style: italic;
}

/* ========== STATS SECTION ========== */
.stats-section {
  background: linear-gradient(135deg, var(--bg-cream) 0%, #f5f5f5 100%);
}

.stat-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(78, 14, 16, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(78, 14, 16, 0.15);
  border-color: var(--brand-light-gold);
}

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-light-gold) 0%, #fff9e6 100%);
  border-radius: 50%;
  border: 3px solid var(--brand-gold);
  transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--brand-gold) 0%, #c09b2d 100%);
}

.stat-icon i {
  font-size: 2rem;
  color: var(--brand-burgundy);
  transition: color 0.4s ease;
}

.stat-card:hover .stat-icon i {
  color: #fff;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand-burgundy);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========== FEATURE CARDS ========== */
.feature-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(78, 14, 16, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  height: 100%;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(78, 14, 16, 0.15);
  border-color: var(--brand-light-gold);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-burgundy) 0%, var(--brand-dark) 100%);
  border-radius: 50%;
  border: 3px solid var(--brand-gold);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(-5deg);
  background: linear-gradient(135deg, var(--brand-gold) 0%, #c09b2d 100%);
}

.feature-icon i {
  font-size: 2.25rem;
  color: var(--brand-gold);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon i {
  color: #fff;
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--brand-burgundy);
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* ========== VALUES SECTION ========== */
.values-section {
  background: linear-gradient(135deg, var(--bg-cream) 0%, #fafafa 100%);
}

.values-image-wrapper img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.values-image-wrapper:hover img {
  transform: scale(1.02);
}

.value-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(78, 14, 16, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.value-item:last-child {
  margin-bottom: 0;
}

.value-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(78, 14, 16, 0.12);
  border-color: var(--brand-light-gold);
}

.value-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-light-gold) 0%, #fff9e6 100%);
  border-radius: 12px;
  border: 2px solid var(--brand-gold);
  transition: all 0.3s ease;
}

.value-item:hover .value-icon {
  background: linear-gradient(135deg, var(--brand-gold) 0%, #c09b2d 100%);
  transform: rotate(5deg);
}

.value-icon i {
  font-size: 1.75rem;
  color: var(--brand-burgundy);
  transition: color 0.3s ease;
}

.value-item:hover .value-icon i {
  color: #fff;
}

.value-content {
  flex: 1;
}

.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--brand-burgundy);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.value-description {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* ========== TRUST BADGE CARDS ========== */
.trust-badge-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(78, 14, 16, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  height: 100%;
}

.trust-badge-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(78, 14, 16, 0.15);
  border-color: var(--brand-light-gold);
}

.trust-badge-card i {
  font-size: 3.5rem;
  color: var(--brand-gold);
  margin-bottom: 1rem;
  display: block;
  transition: all 0.4s ease;
}

.trust-badge-card:hover i {
  transform: scale(1.15);
  color: var(--brand-burgundy);
}

.trust-badge-card h6 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--brand-burgundy);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.trust-badge-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ========== CTA ABOUT CARD ========== */
.cta-about-card {
  background: linear-gradient(135deg, var(--brand-burgundy) 0%, var(--brand-dark) 100%);
  padding: 3.5rem 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(78, 14, 16, 0.3);
  border: 3px solid var(--brand-gold);
  position: relative;
  overflow: hidden;
}

.cta-about-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}