/* assets/css/pages.css */

/* Hero Section - Playful and Modern */
.hero {
  position: relative;
  padding: var(--space-24) 0 calc(var(--space-24) + 60px);
  background: linear-gradient(135deg, var(--color-bg-subtle) 0%, #FFFFFF 100%);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background-color: rgba(141, 198, 63, 0.1);
  border-radius: var(--radius-full);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 650px;
}

.hero-subtitle {
  color: var(--color-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-4);
  display: inline-block;
  background-color: rgba(141, 198, 63, 0.15);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-8);
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border-bottom-left-radius: 80px;
  border-top-right-radius: 80px;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  opacity: 0.1;
  z-index: 1;
}

/* Page Header (Inner Pages) */
.page-header {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-16) 0 calc(var(--space-16) + 40px);
  text-align: center;
  position: relative;
}

.page-header h1 {
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* About Section */
.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border-bottom-right-radius: 80px;
  border-top-left-radius: 80px;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  opacity: 0.1;
}

/* Trust Indicators / Stats */
.stat-item {
  text-align: center;
  padding: var(--space-8);
  background-color: var(--color-bg-main);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-normal);
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-secondary);
}

.stat-number {
  font-family: var(--font-family);
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: var(--space-2);
}

.stat-label {
  font-weight: 600;
  color: var(--color-primary);
}

/* Contact Info Box */
.contact-info-box {
  background-color: var(--color-primary);
  padding: var(--space-12);
  border-radius: var(--radius-xl);
  height: 100%;
  color: var(--color-text-light);
  box-shadow: var(--shadow-lg);
}

.contact-info-box .text-primary {
  color: var(--color-text-light);
}

.contact-info-box .text-muted {
  color: rgba(255, 255, 255, 0.8);
}

.contact-info-item {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.contact-info-icon {
  color: var(--color-secondary);
  font-size: var(--font-size-2xl);
  margin-top: var(--space-1);
}

.contact-info-text h4 {
  margin-bottom: var(--space-1);
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
}

.contact-info-text p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* Map Placeholder */
.map-placeholder {
  width: 100%;
  height: 500px;
  background-color: #E5E7EB;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-weight: 500;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Utilities for decorative elements */
.blob-shape {
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
  0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
  67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}
