/* ==========================================================================
   OC CONCRETING SERVICES - DEDICATED ABOUT US PAGE STYLES
   ========================================================================== */

/* ----------------- Root & Custom Variables ----------------- */
:root {
  --primary-orange: #ff5e14;
  --primary-orange-hover: #e04e0b;
  --primary-orange-light: #fff2eb;
  --primary-orange-glow: rgba(255, 94, 20, 0.4);

  --dark-navy-deep: #060910;
  --dark-navy: #0b111e;
  --dark-card-bg: #111827;
  --light-slate-bg: #f4f6fa;
  --pure-white: #ffffff;

  --text-dark-headings: #0f172a;
  --text-dark-body: #475569;
  --text-dark-muted: #64748b;
  --text-light-headings: #ffffff;
  --text-light-body: #94a3b8;
  --text-light-muted: #cbd5e1;

  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-handwriting: 'Caveat', cursive;

  --container-max-width: 1400px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 12px 30px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 20px 45px rgba(0, 0, 0, 0.16);
}

/* Ensure About Page Body is clean white and resets default margin */
body.about-page {
  background-color: var(--pure-white);
  color: var(--text-dark-body);
  font-family: var(--font-body);
}

.about-container {
  max-width: var(--container-max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* ----------------- Hero Section ----------------- */
.about-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background-color: var(--dark-navy);
  background-image: url('hero.png');
  background-size: cover;
  background-position: center right;
  overflow: hidden;
  padding: 95px 0;
}

.about-hero .about-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 10, 18, 0.96) 0%,
    rgba(8, 14, 25, 0.90) 38%,
    rgba(8, 14, 25, 0.55) 62%,
    rgba(8, 14, 25, 0.15) 85%,
    transparent 100%
  );
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  color: var(--pure-white);
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.about-hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #cbd5e1;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-hero-title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-hero-title .white-text {
  color: var(--pure-white);
}

.about-hero-title .orange-text {
  color: var(--primary-orange);
}

.about-hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #e2e8f0;
  margin-bottom: 28px;
  font-weight: 400;
}

.about-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
}

.about-breadcrumb-link {
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.about-breadcrumb-link:hover {
  color: var(--pure-white);
}

.about-breadcrumb-arrow {
  color: #94a3b8;
  font-size: 14px;
}

.about-breadcrumb-current {
  color: var(--primary-orange);
}

/* ----------------- Section 1: Our Story ----------------- */
.story-section {
  padding: 110px 0 100px;
  background-color: var(--pure-white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.story-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 14px;
}

.story-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 3px;
  background-color: var(--primary-orange);
  border-radius: 2px;
}

.story-title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.story-title .dark-part {
  color: var(--text-dark-headings);
  display: block;
}

.story-title .orange-part {
  color: var(--primary-orange);
  display: block;
}

.story-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark-body);
  margin-bottom: 34px;
}

.story-signature-wrap {
  margin-top: 10px;
  position: relative;
  display: inline-block;
}

.story-signature-text {
  font-family: var(--font-handwriting);
  font-size: 38px;
  font-weight: 700;
  color: var(--primary-orange);
  line-height: 1.1;
  display: block;
  transform: rotate(-1.5deg);
}

.story-signature-swoosh {
  width: 260px;
  height: 14px;
  margin-top: 2px;
  stroke: var(--primary-orange);
  fill: none;
  stroke-width: 3.5;
  stroke-linecap: round;
  display: block;
}

/* Visual Collage Right Column */
.story-visual-wrap {
  position: relative;
  padding-bottom: 70px;
  padding-right: 30px;
}

.story-main-img-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  background-color: #e2e8f0;
}

.story-main-img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-visual-wrap:hover .story-main-img {
  transform: scale(1.03);
}

/* Floating Experience Badge */
.story-exp-badge {
  position: absolute;
  top: -24px;
  right: 8px;
  background-color: #0b111e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 28px;
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  text-align: center;
  z-index: 10;
  transition: transform 0.3s ease;
}

.story-exp-badge:hover {
  transform: translateY(-4px);
}

.story-exp-number {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 900;
  color: var(--pure-white);
  line-height: 1;
  display: block;
}

.story-exp-text {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--pure-white);
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

.story-exp-line {
  width: 36px;
  height: 3px;
  background-color: var(--primary-orange);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Polaroids Group */
.story-polaroids-group {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  z-index: 8;
}

.polaroid-card {
  background-color: #ffffff;
  padding: 8px 8px 24px 8px;
  border-radius: 4px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18), 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.polaroid-card img {
  width: 190px;
  height: 140px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.polaroid-1 {
  transform: rotate(-4deg) translateY(10px);
}

.polaroid-2 {
  transform: rotate(3deg) translateY(0px);
}

.polaroid-card:hover {
  transform: rotate(0deg) translateY(-14px) scale(1.06);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.25);
  z-index: 12;
}

/* ----------------- Section 2: Our Core Values ----------------- */
.values-section {
  padding: 100px 0;
  background-color: var(--light-slate-bg);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 70px;
  align-items: center;
}

.values-left {
  max-width: 480px;
}

.values-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 14px;
}

.values-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 3px;
  background-color: var(--primary-orange);
  border-radius: 2px;
}

.values-title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.values-title .dark-part {
  color: var(--text-dark-headings);
}

.values-title .orange-part {
  color: var(--primary-orange);
}

.values-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dark-body);
}

.values-desc strong {
  color: var(--text-dark-headings);
  font-weight: 700;
}

/* Values 2x2 Cards Grid */
.values-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 30px;
}

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-icon-circle {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  background-color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  box-shadow: 0 6px 18px rgba(255, 94, 20, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.value-card:hover .value-icon-circle {
  transform: scale(1.08) rotate(4deg);
  background-color: var(--primary-orange-hover);
}

.value-icon-circle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.value-card-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.value-card-title {
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark-headings);
}

.value-card-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-dark-muted);
}

/* ----------------- Section 3: Our Team ----------------- */
.team-section {
  padding: 110px 0;
  background-color: var(--dark-navy);
  color: var(--pure-white);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.team-left {
  max-width: 500px;
}

.team-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 14px;
}

.team-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 3px;
  background-color: var(--primary-orange);
  border-radius: 2px;
}

.team-title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.team-title .white-part {
  color: var(--pure-white);
  display: block;
}

.team-title .orange-part {
  color: var(--primary-orange);
  display: block;
}

.team-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #94a3b8;
  margin-bottom: 38px;
}

.team-features-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.team-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 94, 20, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-feature-item:hover .team-feature-icon {
  transform: translateY(-2px);
  border-color: var(--primary-orange);
  background-color: rgba(255, 94, 20, 0.1);
}

.team-feature-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.team-feature-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--pure-white);
  line-height: 1.3;
}

/* Team Photo Right Column */
.team-right {
  position: relative;
}

.team-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.team-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-img-wrap:hover .team-img {
  transform: scale(1.03);
}

/* ----------------- Section 4: CTA (Get A Free Quote) ----------------- */
.about-cta-section {
  position: relative;
  background-color: #060910;
  padding: 64px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Textured diagonal corner */
.about-cta-bg-slice {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 100%;
  background-image: url('why-choose-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  mask-image: linear-gradient(to right, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 50%, transparent 100%);
  pointer-events: none;
}

.about-cta-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  gap: 40px;
}

.about-cta-left {
  max-width: 600px;
}

.about-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 8px;
}

.about-cta-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 3px;
  background-color: var(--primary-orange);
  border-radius: 2px;
}

.about-cta-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 10px;
}

.about-cta-title .white-part {
  color: var(--pure-white);
}

.about-cta-title .orange-part {
  color: var(--primary-orange);
}

.about-cta-desc {
  font-size: 15.5px;
  color: #94a3b8;
  line-height: 1.6;
}

.about-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 320px;
}

.cta-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--primary-orange);
  color: var(--pure-white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px var(--primary-orange-glow);
  transition: var(--transition-smooth);
}

.cta-btn-primary:hover {
  background-color: var(--primary-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 94, 20, 0.5);
}

.cta-btn-primary svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.cta-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: rgba(17, 24, 39, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.cta-btn-secondary:hover {
  background-color: rgba(30, 41, 59, 0.95);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--pure-white);
  transform: translateY(-2px);
}

.cta-btn-secondary svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-orange);
}

/* ----------------- Free Quote Modal ----------------- */
.about-quote-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(6, 10, 18, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.about-quote-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.about-quote-modal {
  background-color: #ffffff;
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  padding: 36px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.about-quote-backdrop.active .about-quote-modal {
  transform: translateY(0) scale(1);
}

.modal-close-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #475569;
  transition: 0.2s ease;
}

.modal-close-icon:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.modal-heading-badge {
  display: inline-block;
  background-color: var(--primary-orange-light);
  color: var(--primary-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.modal-heading-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.modal-heading-sub {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 24px;
}

.modal-form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group-item label {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
}

.form-group-item input,
.form-group-item select,
.form-group-item textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  color: #0f172a;
}

.form-group-item input:focus,
.form-group-item select:focus,
.form-group-item textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 94, 20, 0.15);
}

.modal-submit-btn {
  background-color: var(--primary-orange);
  color: #ffffff;
  padding: 14px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px var(--primary-orange-glow);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.25s ease;
}

.modal-submit-btn:hover {
  background-color: var(--primary-orange-hover);
  transform: translateY(-1px);
}

.modal-success-msg {
  display: none;
  text-align: center;
  padding: 30px 10px;
}

.modal-success-msg.show {
  display: block;
}

/* ----------------- Scroll Reveal Animations ----------------- */
.fade-up-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up-element.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ----------------- Responsive Breakpoints ----------------- */
@media (max-width: 1080px) {
  .story-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-visual-wrap {
    padding-bottom: 50px;
    padding-right: 0;
  }

  .story-main-img {
    height: 400px;
  }

  .story-polaroids-group {
    position: relative;
    margin-top: -30px;
    justify-content: center;
  }

  .team-right {
    order: -1;
  }

  .team-img {
    height: 380px;
  }
}

@media (max-width: 900px) {
  .about-container {
    padding: 0 24px;
  }

  .about-hero-title {
    font-size: 48px;
  }

  .about-cta-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-cta-actions {
    width: 100%;
  }

  .values-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .about-container {
    padding: 0 18px;
  }

  .about-hero {
    padding: 60px 0;
    min-height: 400px;
  }

  .about-hero-title {
    font-size: 38px;
  }

  .story-title,
  .values-title,
  .team-title {
    font-size: 32px;
  }

  .story-exp-badge {
    position: static;
    margin: 16px 0;
    display: inline-block;
  }

  .story-polaroids-group {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
  }

  .polaroid-card img {
    width: 220px;
    height: 160px;
  }

  .polaroid-1,
  .polaroid-2 {
    transform: none;
  }

  .team-features-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .form-two-cols {
    grid-template-columns: 1fr;
  }
}
