/* ============================================
   ABOUT PAGE - S N Engineering Consultant
   ============================================ */

/* --- Page Hero / Banner --- */
.about-hero {
  background: linear-gradient(135deg, #16213e 0%, #1b2a41 40%, #243b55 100%);
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: "";
  position: absolute;
  right: -180px;
  top: -130px;
  width: 410px;
  height: 410px;
  background: var(--snec-orange);
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.1;
}
.about-hero .hero-grid-bg {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  position: absolute;
  inset: 0;
  mask-image: linear-gradient(to right, black, transparent);
}
.about-hero .breadcrumb-nav {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.about-hero .breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}
.about-hero .breadcrumb-nav a:hover {
  color: #fff;
}
.about-hero .breadcrumb-nav span {
  color: var(--snec-orange);
}
.about-hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  max-width: 700px;
}
.about-hero h1 span {
  color: var(--snec-orange);
}
.about-hero p.hero-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.8;
  margin-top: 1.25rem;
}

/* --- Who We Are Section --- */
.who-we-are {
  padding: 5rem 0;
  background: #fff;
}
.who-we-are .eyebrow {
  color: var(--snec-orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.who-we-are .section-title {
  color: var(--snec-navy);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 40px;
}
.who-we-are .about-text {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.85;
  text-align: justify;
}
.who-we-are .about-text strong {
  color: var(--snec-navy);
}
.who-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}
.who-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.who-img-wrap .accent-bar {
  position: absolute;
  right: -10px;
  top: 40px;
  width: 12px;
  height: 90px;
  background: var(--snec-orange);
  border-radius: 8px;
}
.experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 2;
}
.experience-badge .big-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--snec-orange);
  line-height: 1;
}
.experience-badge span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--snec-navy);
  margin-top: 0.25rem;
}

/* --- Vision / Mission / Values --- */
.vmv-section {
  padding: 5rem 0;
  background: #f9f9f9;
}
.vmv-card {
  background: #fff;
  border: 1px solid #e5e0db;
  border-radius: 14px;
  padding: 2.25rem 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.vmv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(9, 27, 49, 0.1);
}
.vmv-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--snec-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.vmv-card:hover::after {
  transform: scaleX(1);
}
.vmv-card .vmv-icon {
  width: 60px;
  height: 60px;
  background: #fff0e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--snec-orange);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.vmv-card.featured-vmv {
  background: linear-gradient(135deg, #e8732a, #c9581a);
  border-color: #e8732a;
  color: #fff;
}
.vmv-card.featured-vmv .vmv-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.vmv-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--snec-navy);
}
.vmv-card.featured-vmv h3 {
  color: #fff;
}
.vmv-card p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: #6b7280;
  margin: 0;
}
.vmv-card.featured-vmv p {
  color: rgba(255, 255, 255, 0.65);
}

/* --- Why Choose Us --- */
.why-choose {
  padding: 5rem 0;
  background: #f5f5f5;
}
.why-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e0db;
}
.why-card:last-child {
  border-bottom: none;
}
.why-card .why-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--snec-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}
.why-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--snec-navy);
  margin-bottom: 0.35rem;
}
.why-card p {
  font-size: 0.84rem;
  color: #6b7280;
  line-height: 1.75;
  margin: 0;
}

/* --- Journey / Timeline --- */
.journey-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1b2a41 0%, #16213e 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.journey-section::before {
  content: "";
  position: absolute;
  left: -180px;
  top: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 115, 42, 0.2), transparent 70%);
}
.journey-section .eyebrow {
  color: #ffb074;
}
.journey-section .section-title {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 40px;
}
.timeline-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.timeline-item {
  flex: 1 1 220px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.75rem;
  transition:
    background 0.3s,
    transform 0.3s;
}
.timeline-item:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}
.timeline-item .year-tag {
  display: inline-block;
  background: var(--snec-orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: 50rem;
  margin-bottom: 1rem;
}
.timeline-item h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.timeline-item p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  line-height: 1.7;
  margin: 0;
}

/* --- Stats Counter --- */
.stats-strip {
  padding: 4rem 0;
  background: #fff;
  border-top: 1px solid #e5e0db;
  border-bottom: 1px solid #e5e0db;
}
.stat-box {
  text-align: center;
  padding: 1.5rem 1rem;
}
.stat-box .stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--snec-orange);
  line-height: 1;
}
.stat-box .stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--snec-navy);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --- CTA Section --- */
.about-cta {
  padding: 5rem 0;
  background: #f9f9f9;
  text-align: center;
}
.about-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--snec-navy);
  letter-spacing: -0.03em;
}
.about-cta h2 span {
  color: var(--snec-orange);
}
.about-cta p {
  color: #6b7280;
  font-size: 1rem;
  max-width: 600px;
  margin: 1rem auto 2rem;
  line-height: 1.8;
}

/* --- Animations --- */
.animate-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.animate-ready .reveal-left {
  transform: translateX(-35px);
}
.animate-ready .reveal-right {
  transform: translateX(35px);
}
.animate-ready .reveal.is-visible {
  opacity: 1;
  transform: translate(0);
}
.animate-ready .delay-1 {
  transition-delay: 0.08s;
}
.animate-ready .delay-2 {
  transition-delay: 0.16s;
}
.animate-ready .delay-3 {
  transition-delay: 0.24s;
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
  .about-hero {
    padding: 6rem 0 4rem;
  }
  .who-img-wrap {
    min-height: 350px;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767.98px) {
  .about-hero {
    padding: 5rem 0 3rem;
  }
  .about-hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .who-img-wrap {
    min-height: 280px;
  }
  .vmv-card {
    padding: 1.5rem;
  }
  .timeline-item {
    flex: 1 1 100%;
  }
}
@media (max-width: 575.98px) {
  .stat-box .stat-num {
    font-size: 2rem;
  }
}

/* --- Floating Buttons (needed since index.php inline styles don't carry over) --- */
.floating-contact-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1050;
}
.floating-contact-btn > div,
.floating-contact-btn > a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  text-decoration: none;
}
.floating-contact-btn > div:hover,
.floating-contact-btn > a:hover {
  transform: scale(1.1);
}
.floating-whatsapp-btn {
  background-color: #25d366;
}
.floating-phone-btn {
  background-color: #34b7f1;
}
.floating-contact-btn i {
  color: white;
  font-size: 22px;
}

@media (max-width: 768px) {
  .floating-contact-btn {
    bottom: 2rem;
    right: 1rem;
    gap: 0.75rem;
  }
}
