/* ================================================================
   ABOUT PAGE — Exclusive Styles (about.css)
   Imports from style.css for shared components (navbar, footer, etc.)
   ================================================================ */

/* ============================================================
   ABOUT HERO
   ============================================================ */
.ab-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?w=1800&q=85')
    center / cover no-repeat;
  margin-top: 72px;
  overflow: hidden;
}

.ab-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 22, 40, 0.88) 0%,
    rgba(10, 22, 40, 0.72) 50%,
    rgba(13, 109, 95, 0.55) 100%
  );
}

/* Animated subtle pattern on overlay */
.ab-hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 0);
  background-size: 40px 40px;
}

.ab-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 2rem;
  text-align: center;
  animation: fadeUp .9s cubic-bezier(.4,0,.2,1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

.ab-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .35rem 1rem;
  background: rgba(26,158,140,.2);
  border: 1px solid rgba(26,158,140,.5);
  border-radius: 50px;
  color: var(--teal-light);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 1.5rem;
}

.ab-hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 1.25rem;
}

.ab-hero-accent {
  color: var(--teal-light);
  font-style: italic;
}

.ab-hero-desc {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.8);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.ab-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.ab-hero-call {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.8rem;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
  transition: all .25s;
}
.ab-hero-call:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.ab-hero-call i { color: var(--teal-light); }

/* Scroll indicator */
.ab-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.ab-scroll-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-light);
  animation: scrollBounce 1.8s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(14px); opacity: .3; }
}

/* Bottom wave shape */
.ab-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--gray-100);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* ============================================================
   VALUES SECTION
   ============================================================ */
.ab-values-section {
  padding: 6rem 2rem;
  background: #f7f9fb;
}
.ab-values-container {
  max-width: 1100px;
  margin: 0 auto;
}
.ab-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}
.ab-value-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  transition: all .3s;
}
.ab-value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(26,158,140,.12);
  border-color: rgba(26,158,140,.3);
}
.ab-value-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(26,158,140,.15);
  line-height: 1;
  flex-shrink: 0;
  transition: color .3s;
}
.ab-value-item:hover .ab-value-number { color: rgba(26,158,140,.3); }
.ab-value-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .5rem;
}
.ab-value-content p {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.8;
}

/* ============================================================
   CTA BANNER (About Page)
   ============================================================ */
.ab-cta-banner {
  position: relative;
  padding: 7rem 2rem;
  background: url('https://images.unsplash.com/photo-1481026469463-66327c86e544?w=1600&q=85')
    center / cover no-repeat;
  text-align: center;
  overflow: hidden;
}
.ab-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,.92) 0%, rgba(13,109,95,.82) 100%);
}
.ab-cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.ab-cta-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.ab-cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ============================================================
   STORY SECTION — 2-col image layout tweak for About page
   ============================================================ */
.ab-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  align-items: stretch;
}
.ab-img-col {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.ab-img-col .ab-img-cell img { height: 215px; }
.ab-img-tall .ab-img-cell img,
.ab-img-tall img {
  height: 450px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  display: block;
  transition: transform .5s;
}
.ab-img-tall:hover img { transform: scale(1.03); }

/* Stats bar needs white bg for about page */
.ab-stats-bar { background: var(--white); border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; }

/* Story section light gray on about page */
.ab-story-section { background: var(--gray-100, #f3f4f6); }

/* Why section white */
.ab-why-section { background: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .ab-hero-title { letter-spacing: -1px; }
  .ab-hero-actions { flex-direction: column; align-items: center; }
  .ab-hero-call { width: 100%; justify-content: center; }
  .ab-values-grid { grid-template-columns: 1fr; }
  .ab-img-grid { grid-template-columns: 1fr; }
  .ab-img-col { flex-direction: row; }
  .ab-img-tall img { height: 260px; }
}
@media (max-width: 480px) {
  .ab-hero-title { font-size: 2.4rem; }
  .ab-img-col { flex-direction: column; }
}
