/* ═══════════════════════════════════════════════
   WAJHA AGENCY — SUBPAGES.CSS
   Rule: Extracted styles from inline style attributes.
   ═══════════════════════════════════════════════ */

/* Subpage Hero Title/Subtitle margins */
.about-hero .hero-title,
.news-hero .hero-title {
  margin-top: var(--space-4);
}

.about-hero .hero-subtitle,
.news-hero .hero-subtitle {
  margin-inline: auto;
}

/* Contact Page specific alignments & spacings */
.contact-page-wrap .hero-title {
  margin-top: var(--space-4);
  text-align: start;
}

.contact-page-wrap .hero-subtitle {
  text-align: start;
  margin-bottom: var(--space-6);
}

.contact-info .btn-whatsapp {
  text-align: center;
  max-width: 320px;
}

.contact-form-wrap .card-title {
  margin-bottom: var(--space-4);
}

/* About Page Card styling */
.about-content .card-title {
  font-size: var(--text-2xl);
  border-bottom: 1px solid var(--color-border-subtle);
  padding-bottom: var(--space-2);
  margin-bottom: var(--space-4);
}

.about-content .card-body {
  line-height: var(--leading-relaxed);
  font-size: var(--text-base);
}

.about-content .card-body + .card-body {
  margin-top: var(--space-4);
}

/* News Page Card styling */
.news-content .card-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

/* Index Testimonials initial hidden state */
#testimonials-section {
  display: none;
}

/* Case Studies Page styles */
.cases-hero {
  padding-top: calc(72px + var(--section-padding));
  padding-bottom: var(--space-12);
  text-align: center;
  position: relative;
}
.cases-content {
  padding-bottom: var(--section-padding);
}
.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-top: var(--space-8);
}
@media (min-width: 768px) {
  .cases-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.case-metric {
  font-size: var(--text-3xl);
  font-weight: var(--weight-black);
  color: var(--color-brand-accent);
  margin-bottom: var(--space-2);
}

/* Cumulative Layout Shift (CLS) prevention for dynamic content areas */
#testimonials-content-area {
  min-height: 380px;
}

#results-content-area {
  min-height: 250px;
}

