/* ========================================================================== */
/* PAGE-SPECIFIC: ABOUT                                                       */
/* Webvana v3                                                                  */
/* Scope: hero + about layout + page-specific section treatments               */
/* ========================================================================== */

/* ========================================================================== */
/* HERO (same reusable pattern as home, scoped to about)                       */
/* ========================================================================== */
.page-about .hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;

  /* Mobile-first: avoid sticky header collision */
  padding: calc(var(--header-h-mobile) + 1.25rem) 0 3rem;
}

@media (min-width: 900px) {
  .page-about .hero {
    padding: 5rem 0 var(--spacing-lg);
  }
}

.page-about .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-about .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-about .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.page-about .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.page-about .hero-location {
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.92;
  margin-bottom: var(--spacing-sm);
}

.page-about .hero h1 {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  margin-bottom: var(--spacing-md);
}

.page-about .hero-description {
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 60ch;
  margin: 0 auto var(--spacing-md);
  opacity: 0.96;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

@media (min-width: 900px) {
  .page-about .hero-description {
    font-size: 1.2rem;
    line-height: 1.75;
    max-width: 70ch;
  }
}

.page-about .cta-label {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: var(--spacing-xs);
}

.page-about .phone-number {
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.14);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transition: background var(--transition-base), transform var(--transition-base);
}

.page-about .phone-number:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

@media (min-width: 900px) {
  .page-about .phone-number {
    font-size: 2.5rem;
    padding: var(--spacing-sm) var(--spacing-md);
  }
}

/* ========================================================================== */
/* WHO WE ARE (uses .about-grid component from components.css)                */
/* ========================================================================== */
.page-about .about-who {
  background: #fff;
}

.page-about .about-main p {
  max-width: 72ch;
}

/* ========================================================================== */
/* ABOUT-SPECIFIC SECTIONS (backgrounds only)                                 */
/* ========================================================================== */
.page-about .about-experience {
  background: var(--bg-light);
}

.page-about .about-credentials {
  background: #fff;
}

.page-about .about-faq {
  background: var(--bg-light);
}

/* ========================================================================== */
/* CERTIFIED CALLOUT (parallax background)                                    */
/* ========================================================================== */
.page-about .certified-callout {
  text-align: center;
  color: #fff;
  padding: var(--spacing-xl) var(--container-pad);

  background:
    linear-gradient(rgba(42, 42, 42, 0.88), rgba(42, 42, 42, 0.88)),
    url("/images/peace-of-mind.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

@media (min-width: 900px) {
  .page-about .certified-callout {
    background-attachment: fixed;
  }
}

/* Mobile / iOS: disable parallax */
@media (max-width: 899px) {
  .page-about .certified-callout {
    background-attachment: scroll;
  }
}

@supports (-webkit-touch-callout: none) {
  .page-about .certified-callout {
    background-attachment: scroll;
  }
}

.page-about .certified-callout h2 {
  color: #fff;
}

.page-about .certified-callout p {
  max-width: 70ch;
  margin: 0 auto var(--spacing-md);
  font-size: 1.1rem;
  line-height: 1.75;
}
