
.page-hero-about {
   background-image:
      linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)),
      url("../images/bg/about-hero.jpg");

   background-position: center bottom;
}


/* =========================================
   ABOUT STORY
========================================= */

.about-story {
   background: var(--white);
}

.about-story-image {
   overflow: hidden;
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-lg);
}

.about-story-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: .5s ease;
}

.about-story-image:hover img {
   transform: scale(1.05);
}

.about-story p {
   margin-bottom: 1.25rem;
   color: var(--text-muted);
}

.about-story .btn {
   margin-top: 1rem;
}


/* =========================================
   MISSION & VISION
========================================= */

.mission-vision {
   background: var(--section-light);
}

.mission-card {
   height: 100%;
   padding: 3rem;
   background: var(--white);
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-card);
   transition: .35s ease;
}

.mission-card:hover {
   transform: translateY(-8px);
}

.mission-icon {
   width: 70px;
   height: 70px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 1.5rem;
   background: rgba(var(--primary-rgb), .12);
   color: var(--primary);
   font-size: 2rem;
   border-radius: 50%;
}

.mission-card h3 {
   margin-bottom: 1rem;
}

.mission-card p {
   margin: 0;
   color: var(--text-muted);
}

/* =========================================
   WHY CHOOSE MARTIN
========================================= */

.why-martin {
   background: var(--white);
}

.feature-card {
   height: 100%;
   padding: 2.5rem 2rem;
   text-align: center;
   background: var(--white);
   border: 1px solid var(--border);
   border-radius: var(--radius-lg);
   transition: .35s ease;
}

.feature-card:hover {
   transform: translateY(-10px);
   box-shadow: var(--shadow-card);
}

.feature-icon {
   width: 80px;
   height: 80px;
   margin: 0 auto 1.5rem;
   display: flex;
   align-items: center;
   justify-content: center;
   background: rgba(var(--primary-rgb), .12);
   color: var(--primary);
   border-radius: 50%;
   font-size: 2rem;
}

.feature-card h3 {
   margin-bottom: 1rem;
}

.feature-card p {
   margin: 0;
   color: var(--text-muted);
}

/* =========================================
   STATISTICS SECTION
========================================= */

.statistics-section {
   position: relative;
   padding: 120px 0;
   background:
      linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)),
      url("../images/bg/statistics-bg.jpg") center/cover fixed;
}

.statistics-overlay {
   position: absolute;
   inset: 0;
}

.statistics-section .container {
   position: relative;
   z-index: 2;
}

.statistics-section .section-tag {
   color: var(--accent);
}

.statistics-section .heading-lg,
.statistics-section .section-header p {
   color: var(--white);
}

.stat-card {
   padding: 2.5rem 1.5rem;
   text-align: center;
   background: rgba(255, 255, 255, .12);
   backdrop-filter: blur(12px);
   border: 1px solid rgba(255, 255, 255, .2);
   border-radius: var(--radius-lg);
   transition: .35s ease;
}

.stat-card:hover {
   transform: translateY(-8px);
   background: rgba(255, 255, 255, .18);
}

.stat-card h2 {
   margin-bottom: .5rem;
   font-size: 3rem;
   font-weight: 700;
   color: var(--white);
}

.stat-card p {
   margin: 0;
   color: rgba(255, 255, 255, .85);
}

/* =========================================
   ABOUT PROCESS
========================================= */

.about-process {
   background: var(--section-gray);
}

.process-timeline {
   position: relative;
   max-width: 900px;
   margin: auto;
}

.process-timeline::before {
   content: "";
   position: absolute;
   left: 30px;
   top: 0;
   bottom: 0;
   width: 2px;
   background: var(--primary);
}

.timeline-item {
   position: relative;
   display: flex;
   gap: 2rem;
   padding-left: 90px;
   margin-bottom: 3rem;
}

.timeline-item:last-child {
   margin-bottom: 0;
}

.timeline-number {
   position: absolute;
   left: 0;
   width: 60px;
   height: 60px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: var(--primary);
   color: var(--white);
   font-weight: 700;
   border-radius: 50%;
}

.timeline-content {
   background: var(--white);
   padding: 2rem;
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-card);
   width: 100%;
}

.timeline-content h3 {
   margin-bottom: .75rem;
}

.timeline-content p {
   margin: 0;
   color: var(--text-muted);
}

@media (max-width:768px) {

   .process-timeline::before {
      left: 20px;
   }

   .timeline-item {
      padding-left: 70px;
   }

   .timeline-number {
      width: 40px;
      height: 40px;
      font-size: .9rem;
   }

}


/* =========================================
   CTA + FAQ SECTION
========================================= */

.cta-faq-section {
   position: relative;
   padding: 100px 0;
   background: var(--primary);
}

.cta-faq-wrapper {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
}

.cta-content {
   color: var(--white);
}

.cta-content .section-tag {
   color: var(--accent);
}

.cta-content .heading-lg {
   color: var(--white);
}

.cta-content p {
   color: rgba(255, 255, 255, .85);
   margin-top: 1rem;
}

.cta-actions {
   display: flex;
   gap: 1rem;
   margin-top: 2rem;
}

.cta-content .btn-primary {
   background: var(--white);
   color: var(--primary);
}

.cta-content .btn-outline {
   border-color: var(--white);
   color: var(--white);
}

.cta-content .btn-outline:hover {
   background: var(--white);
   color: var(--primary);
}


/* FAQ */

.cta-faq-section .section-header {
   text-align: left;
   margin-bottom: 2rem;
}

.cta-faq-section .section-header .heading-lg {
   color: var(--white);
}

.faq-item {
   background: rgba(255, 255, 255, .95);
   border-radius: var(--radius-md);
   margin-bottom: 1rem;
   overflow: hidden;
}

.faq-question {
   width: 100%;
   padding: 1.2rem 1.5rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
   background: transparent;
   border: 0;
   font-weight: 600;
   cursor: pointer;
}

.faq-answer {
   display: none;
   padding: 0 1.5rem 1.2rem;
}

.faq-answer p {
   color: var(--text-muted);
}


@media(max-width:991px) {

   .cta-faq-wrapper {
      grid-template-columns: 1fr;
   }

   .cta-actions {
      flex-direction: column;
   }

}