/* ============ RESET & BASE ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --clr-white: #FFFFFF;
  --clr-navy: #00173C;
  --clr-red: #B40000;
  --clr-black: #0A0A0A;
  --clr-gray: #5A6473;
  --clr-light: #F5F7FA;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--clr-black);
  background: var(--clr-white);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ============================================================
   PAGE BANNER
   ============================================================ */
.page-banner {
  position: relative;
  background: var(--clr-navy);
  padding: 90px 24px 80px;
  text-align: center;
  overflow: hidden;
}

.page-banner__lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(120deg, rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 60px);
  pointer-events: none;
}

.page-banner__container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.page-banner__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(180, 0, 0, 0.16);
  color: var(--clr-red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.page-banner__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 16px;
}

.page-banner__crumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.page-banner__crumb a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s var(--ease);
}

.page-banner__crumb a:hover { color: var(--clr-red); }

.page-banner__crumb i { font-size: 10px; opacity: 0.6; }

.page-banner__crumb span { color: var(--clr-red); font-weight: 600; }

.page-banner__gear {
  position: absolute;
  color: rgba(255, 255, 255, 0.06);
  z-index: 0;
  pointer-events: none;
}

.page-banner__gear--1 {
  font-size: 160px;
  top: -40px;
  left: -40px;
  animation: spin-slow 24s linear infinite;
}

.page-banner__gear--2 {
  font-size: 110px;
  bottom: -30px;
  right: -20px;
  animation: spin-slow-rev 20s linear infinite;
}

@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spin-slow-rev { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }

/* ============================================================
   ABOUT INTRO
   ============================================================ */
.about {
  position: relative;
  padding: 110px 24px;
  overflow: hidden;
  background: var(--clr-white);
}

.about__bg-shape { position: absolute; z-index: 0; pointer-events: none; }

.about__bg-shape--top {
  top: -120px; right: -120px; width: 420px; height: 420px;
  background: var(--clr-light); border-radius: 50%;
}

.about__bg-shape--bottom {
  bottom: -160px; left: -100px; width: 320px; height: 320px;
  border: 60px solid var(--clr-light); border-radius: 50%;
}

.about__container {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 70px;
  align-items: center;
}

.about__media { position: relative; padding: 40px 30px 60px 0; }

.about__deco { position: absolute; z-index: 0; }

.about__deco--square {
  top: 60px; left: 20px; width: 220px; height: 260px;
  background: var(--clr-navy); border-radius: 8px;
}

.about__deco--dots {
  bottom: 10px; right: 0; width: 130px; height: 130px;
  background-image: radial-gradient(var(--clr-red) 2.5px, transparent 2.5px);
  background-size: 16px 16px; opacity: 0.35;
}

.about__image-wrap {
  position: relative; z-index: 2; margin-left: 60px;
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 23, 60, 0.22);
  border: 8px solid var(--clr-white);
  aspect-ratio: 4 / 5;
}

.about__image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.about__media:hover .about__image { transform: scale(1.06); }

.about__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 66px; height: 66px; border-radius: 50%;
  background: var(--clr-red); border: none; color: var(--clr-white);
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 3; box-shadow: 0 10px 26px rgba(180, 0, 0, 0.4);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.about__play i { transform: translateX(2px); }
.about__play:hover { transform: translate(-50%, -50%) scale(1.1); background: var(--clr-navy); }

.about__play-ring {
  position: absolute; inset: -14px; border: 2px solid var(--clr-white);
  border-radius: 50%; opacity: 0.6; animation: ring-pulse 2.6s ease-out infinite;
}

@keyframes ring-pulse {
  0% { transform: scale(0.85); opacity: 0.7; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.about__badge {
  position: absolute; top: 90px; left: -10px; z-index: 3;
  background: var(--clr-red); color: var(--clr-white);
  width: 130px; padding: 20px 14px 26px; text-align: center;
  border-radius: 4px; box-shadow: 0 16px 30px rgba(180, 0, 0, 0.3);
}

.about__badge::after {
  content: ''; position: absolute; left: 50%; bottom: -14px; transform: translateX(-50%);
  border-left: 65px solid transparent; border-right: 65px solid transparent;
  border-top: 14px solid #7d0000;
}

.about__badge i { font-size: 26px; margin-bottom: 10px; display: block; }
.about__badge-line1 { display: block; font-size: 13px; font-weight: 500; opacity: 0.9; }
.about__badge-line2 { display: block; font-size: 14px; font-weight: 700; line-height: 1.3; margin-top: 2px; }

.about__gear { position: absolute; color: var(--clr-navy); opacity: 0.08; z-index: 0; }
.about__gear--1 { font-size: 90px; bottom: 20px; left: -20px; animation: spin-slow 18s linear infinite; }
.about__gear--2 { font-size: 50px; top: 10px; right: 10px; animation: spin-slow-rev 14s linear infinite; }

.about__label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(180, 0, 0, 0.08); color: var(--clr-red);
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 30px; margin-bottom: 18px;
}

.about__heading { font-size: 36px; font-weight: 700; line-height: 1.28; color: var(--clr-navy); margin-bottom: 20px; }
.about__heading span { color: var(--clr-red); }

.about__text { font-size: 15.5px; line-height: 1.85; color: var(--clr-gray); margin-bottom: 32px; max-width: 560px; }
.about__text strong { color: var(--clr-navy); }

.about__features { display: flex; flex-direction: column; gap: 22px; margin-bottom: 34px; }
.about__feature { display: flex; align-items: flex-start; gap: 18px; transition: transform 0.35s var(--ease); }
.about__feature:hover { transform: translateX(6px); }

.about__feature-icon {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 10px;
  background: rgba(180, 0, 0, 0.08); color: var(--clr-red);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}

.about__feature:hover .about__feature-icon { background: var(--clr-red); color: var(--clr-white); transform: rotate(-8deg); }

.about__feature-info h3 { font-size: 16.5px; font-weight: 600; color: var(--clr-navy); margin-bottom: 6px; }
.about__feature-info p { font-size: 14px; line-height: 1.7; color: var(--clr-gray); max-width: 480px; }

.about__bottom { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }

.about__btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--clr-red); color: var(--clr-white);
  font-size: 14px; font-weight: 600; letter-spacing: 0.3px;
  padding: 16px 30px; border-radius: 4px;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.about__btn i { transition: transform 0.35s var(--ease); }
.about__btn:hover { background: var(--clr-navy); transform: translateY(-3px); box-shadow: 0 14px 28px rgba(0, 23, 60, 0.25); }
.about__btn:hover i { transform: translateX(5px); }

.about__contact-mini { display: flex; align-items: center; gap: 12px; color: var(--clr-navy); }

.about__contact-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--clr-light); color: var(--clr-red);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

.about__contact-mini:hover .about__contact-icon { background: var(--clr-red); color: var(--clr-white); }

.about__contact-text { font-size: 14.5px; font-weight: 600; line-height: 1.4; }
.about__contact-text small { display: block; font-size: 12px; font-weight: 400; color: var(--clr-gray); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why {
  padding: 100px 24px;
  background: var(--clr-light);
}

.why__container { max-width: 1320px; margin: 0 auto; }

.why__head { text-align: center; max-width: 620px; margin: 0 auto 56px; }

.why__label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(180, 0, 0, 0.08); color: var(--clr-red);
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 30px; margin-bottom: 16px;
}

.why__title { font-size: 32px; font-weight: 700; color: var(--clr-navy); line-height: 1.3; }

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.why__card {
  background: var(--clr-white);
  padding: 38px 26px;
  border-radius: 10px;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.why__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 46px rgba(0, 23, 60, 0.12);
  border-bottom-color: var(--clr-red);
}

.why__icon {
  width: 68px; height: 68px; margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(180, 0, 0, 0.08);
  color: var(--clr-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}

.why__card:hover .why__icon {
  background: var(--clr-red);
  color: var(--clr-white);
  transform: rotate(-10deg) scale(1.05);
}

.why__card h3 { font-size: 16.5px; font-weight: 600; color: var(--clr-navy); margin-bottom: 10px; }
.why__card p { font-size: 13.5px; line-height: 1.7; color: var(--clr-gray); }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip { padding: 0 24px 110px; background: var(--clr-white); }

.cta-strip__container {
  max-width: 1320px;
  margin: 0 auto;
  background: var(--clr-navy);
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: stretch;
  box-shadow: 0 30px 60px rgba(0, 23, 60, 0.2);
}

.cta-strip__media { position: relative; min-height: 220px; clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%); }
.cta-strip__media img { width: 100%; height: 100%; object-fit: cover; }

.cta-strip__body { display: flex; align-items: center; gap: 22px; padding: 40px 44px 40px 10px; }

.cta-strip__icon {
  flex-shrink: 0; width: 62px; height: 62px; border-radius: 50%;
  background: var(--clr-red); color: var(--clr-white); font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  animation: ring 2.4s ease-in-out infinite;
}

@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(18deg); }
  20% { transform: rotate(-14deg); }
  30% { transform: rotate(10deg); }
  40% { transform: rotate(0deg); }
}

.cta-strip__body h3 { font-size: 24px; font-weight: 700; color: var(--clr-white); margin-bottom: 8px; }
.cta-strip__body a { font-size: 17px; font-weight: 600; color: var(--clr-red); transition: color 0.3s var(--ease); }
.cta-strip__body a:hover { color: var(--clr-white); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: transform, opacity;
}

.reveal--left { transform: translateX(-60px); }
.reveal--pop { transform: translateY(20px) scale(0.85); }

.reveal.is-visible { opacity: 1; transform: translate(0, 0) scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .about__gear, .about__play-ring, .cta-strip__icon, .page-banner__gear { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .about__container { grid-template-columns: 1fr; gap: 90px; }
  .about__media { max-width: 460px; margin: 0 auto; padding-bottom: 30px; }
  .about__text, .about__feature-info p { max-width: 100%; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .cta-strip__container { grid-template-columns: 1fr; }
  .cta-strip__media { clip-path: none; min-height: 200px; }
  .cta-strip__body { padding: 32px 28px; }
  .page-banner__title { font-size: 32px; }
}

@media (max-width: 640px) {
  .about { padding: 80px 18px; }
  .about__heading { font-size: 27px; }
  .about__media { padding: 20px 16px 40px 0; }
  .about__deco--square { width: 160px; height: 190px; top: 30px; }
  .about__image-wrap { margin-left: 34px; }
  .about__badge { width: 110px; top: 60px; left: -6px; padding: 14px 8px 20px; }
  .about__badge-line1 { font-size: 11.5px; }
  .about__badge-line2 { font-size: 12.5px; }
  .about__play { width: 54px; height: 54px; font-size: 15px; }
  .about__bottom { flex-direction: column; align-items: flex-start; gap: 20px; }

  .why { padding: 70px 18px; }
  .why__grid { grid-template-columns: 1fr; }
  .why__title { font-size: 25px; }

  .cta-strip { padding: 0 18px 80px; }
  .cta-strip__body { flex-direction: column; align-items: flex-start; gap: 16px; }

  .page-banner { padding: 70px 20px 60px; }
  .page-banner__title { font-size: 27px; }
}