body {
  margin: 0;
  background: rgb(28, 46, 102);
  color: #fff;
}

.about-contact-page {
  background: rgb(28, 46, 102);
}

.about-contact-page .hero {
  overflow: hidden;
}

.about-contact-page .hero::before,
.about-contact-page .hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.about-contact-page .hero::before {
  top: -90px;
  left: -140px;
  background: radial-gradient(circle, rgba(228, 30, 38, 0.32), transparent 66%);
  animation: heroOrbFloat 10s ease-in-out infinite;
}

.about-contact-page .hero::after {
  right: -130px;
  bottom: -170px;
  background: radial-gradient(circle, rgba(80, 121, 255, 0.22), transparent 68%);
  animation: heroOrbFloat 12s ease-in-out infinite reverse;
}

.about-contact-page .hero-content {
  z-index: 2;
}

.about-contact-page .hero-pill {
  animation: softPulse 3.4s ease-in-out infinite;
}

.about-contact-page .hero-subtext {
  animation: fadeUp 700ms cubic-bezier(.22, .8, .3, 1) both;
  animation-delay: 220ms;
}

.about-contact-page .hero-actions {
  animation: fadeUp 700ms cubic-bezier(.22, .8, .3, 1) both;
  animation-delay: 320ms;
}

.about-contact-page .hero-btn {
  position: relative;
  overflow: hidden;
}

.about-contact-page .hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 120%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 420ms ease;
}

.about-contact-page .hero-btn:hover::before {
  left: 120%;
}

.about-contact-page .reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(3px);
  transition:
    opacity 720ms cubic-bezier(.22, .8, .3, 1),
    transform 720ms cubic-bezier(.22, .8, .3, 1),
    filter 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.about-contact-page .reveal-on-scroll[data-reveal="left"] {
  transform: translateX(-34px) scale(0.985);
}

.about-contact-page .reveal-on-scroll[data-reveal="right"] {
  transform: translateX(34px) scale(0.985);
}

.about-contact-page .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
  filter: blur(0);
}

.hero-subtext {
  margin-top: 14px;
  font-size: clamp(16px, 2.1vw, 22px);
  line-height: 1.45;
  color: #d8ddff;
  max-width: 760px;
}

.hero-pill {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-block;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  border-color: #E41E26;
}

.hero-btn.primary {
  background: #E41E26;
  border-color: #E41E26;
}

.eyebrow {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(228, 30, 38, 0.7);
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.intro-section,
.values-section,
.story-section,
.contact-section,
.map-section {
  max-width: 1200px;
  margin: 24px auto;
  padding: 28px;
  background: rgb(0, 18, 72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
  animation: blockIn 620ms cubic-bezier(.22,.8,.3,1) both;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.intro-section {
  position: relative;
  overflow: hidden;
}

.intro-highlights {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.intro-chip {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #e3e7ff;
  font-size: 14px;
}

.intro-section::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 30, 38, 0.22), transparent 62%);
  pointer-events: none;
}

.intro-section h2,
.values-section h2,
.story-section h2,
.contact-section h2,
.map-section h2 {
  margin: 0 0 14px;
  color: #E41E26;
  font-size: clamp(28px, 3.5vw, 44px);
}

.intro-section p,
.story-section p,
.contact-section p {
  font-size: 19px;
  line-height: 1.7;
  color: #d7ddff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stats-section {
  max-width: 1200px;
  margin: 0 auto 24px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  background: linear-gradient(145deg, #0f2360, #0b1b4b);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px;
  animation: blockIn 620ms cubic-bezier(.22,.8,.3,1) both;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.stat-card::before,
.value-card::before,
.journey-step::before,
.owner-card::before,
.partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -160%;
  width: 120%;
  height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transition: left 540ms ease;
  pointer-events: none;
}

.stat-card:hover::before,
.value-card:hover::before,
.journey-step:hover::before,
.owner-card:hover::before,
.partner-card:hover::before {
  left: 130%;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(228, 30, 38, 0.75);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.stat-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  color: #ffffff;
}

.stat-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #d7ddff;
}

.value-card,
.contact-card {
  background: #10245f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.value-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 30, 38, 0.7);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.value-card h3,
.contact-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 22px;
}

.value-card p,
.contact-card p,
.contact-card a {
  margin: 0;
  color: #d7ddff;
  line-height: 1.6;
  text-decoration: none;
}

.journey-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.journey-step {
  background: #0f2259;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.journey-step:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 30, 38, 0.72);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}

.journey-step span {
  display: inline-block;
  color: #E41E26;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}

.journey-step h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.journey-step p {
  margin: 0;
  color: #d7ddff;
  font-size: 16px;
  line-height: 1.55;
}

.team-section {
  max-width: 1200px;
  margin: 24px auto 30px;
  padding: 28px;
  background: linear-gradient(160deg, #0d1f53, #08143a);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.team-section h2 {
  margin: 0 0 10px;
  color: #E41E26;
  font-size: clamp(28px, 3.5vw, 44px);
}

.team-sub {
  margin: 0 0 18px;
  color: #d8ddff;
  font-size: 17px;
}

.owner-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.owner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(228, 30, 38, 0.75);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.profile-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #10245f;
  border: 2px solid rgba(228, 30, 38, 0.75);
  overflow: hidden;
}

.profile-image-wrap.small {
  aspect-ratio: 4 / 3;
}

.profile-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 340ms ease;
}

.owner-card:hover .profile-image-wrap img,
.partner-card:hover .profile-image-wrap img {
  transform: scale(1.06);
}

.profile-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.role-tag {
  display: inline-block;
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 10px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

.profile-content h3,
.partner-card h3 {
  margin: 0 0 8px;
  font-size: 26px;
  color: #fff;
}

.profile-content p,
.partner-card p {
  margin: 0;
  color: #d8ddff;
  line-height: 1.65;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.partner-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 30, 38, 0.75);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #0e1f52;
  color: #fff;
  padding: 12px 14px;
  box-sizing: border-box;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  border: 2px solid #E41E26;
  background: transparent;
  color: #E41E26;
  font-weight: 700;
  cursor: pointer;
  transition: all 220ms ease;
}

.contact-form button:hover {
  background: #E41E26;
  color: #fff;
}

.map-box {
  background: #10245f;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  min-height: 220px;
  display: grid;
  place-items: center;
  color: #cfd6ff;
  font-size: 18px;
}

@keyframes blockIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroOrbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(28px, -24px, 0) scale(1.08);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(228, 30, 38, 0.2);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(228, 30, 38, 0.05);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-contact-page .hero::before,
  .about-contact-page .hero::after,
  .about-contact-page .hero-pill,
  .about-contact-page .hero-subtext,
  .about-contact-page .hero-actions,
  .about-contact-page .reveal-on-scroll,
  .about-contact-page .hero-btn::before,
  .stat-card::before,
  .value-card::before,
  .journey-step::before,
  .owner-card::before,
  .partner-card::before,
  .profile-image-wrap img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 900px) {
  .intro-section,
  .values-section,
  .story-section,
  .contact-section,
  .map-section,
  .team-section {
    margin: 16px 10px;
    padding: 18px 14px;
  }

  .values-grid,
  .stats-section,
  .journey-grid,
  .partners-grid,
  .contact-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .owner-card {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }

  .intro-section p,
  .story-section p,
  .contact-section p {
    font-size: 16px;
  }
}

/* ===== SIMPLE UNIQUE CONTACT PAGE ===== */
.contact-simple-wrap {
  max-width: 1200px;
  margin: 24px auto 30px;
  padding: 28px;
  background: linear-gradient(160deg, #0b1a48, #081236);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.contact-simple-page .contact-simple-wrap {
  position: relative;
  overflow: hidden;
}

.contact-simple-page .contact-simple-wrap::before,
.contact-simple-page .contact-simple-wrap::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
}

.contact-simple-page .contact-simple-wrap::before {
  top: -130px;
  left: -90px;
  background: radial-gradient(circle, rgba(228, 30, 38, 0.22), transparent 66%);
  animation: contactOrbFloat 11s ease-in-out infinite;
}

.contact-simple-page .contact-simple-wrap::after {
  bottom: -130px;
  right: -70px;
  background: radial-gradient(circle, rgba(78, 134, 255, 0.2), transparent 68%);
  animation: contactOrbFloat 13s ease-in-out infinite reverse;
}

.contact-simple-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-simple-info {
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.contact-simple-info:hover {
  transform: translateY(-5px);
  border-color: rgba(228, 30, 38, 0.6);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.26);
}

.contact-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border: 1px solid rgba(228, 30, 38, 0.7);
  color: #fff;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  animation: softPulse 3.4s ease-in-out infinite;
}

.contact-simple-info h2 {
  margin: 0 0 10px;
  color: #E41E26;
  font-size: clamp(30px, 4vw, 48px);
}

.contact-simple-info p {
  margin: 0;
  color: #d8ddff;
  line-height: 1.65;
  font-size: 17px;
}

.simple-info-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.simple-info-list div {
  padding: 10px 12px;
  background: #0f2056;
  border-left: 3px solid #E41E26;
  transition: transform 220ms ease, border-left-color 220ms ease, background 220ms ease;
}

.simple-info-list div:hover {
  transform: translateX(4px);
  border-left-color: #ff4b52;
  background: #122765;
}

.simple-info-list span {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.simple-info-list a,
.simple-info-list p {
  margin: 0;
  color: #d8ddff;
  text-decoration: none;
}

.contact-simple-form {
  padding: 20px;
  display: grid;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.contact-simple-form:hover {
  transform: translateY(-5px);
  border-color: rgba(228, 30, 38, 0.6);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.26);
}

.contact-simple-form input,
.contact-simple-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #0e1f52;
  color: #fff;
  box-sizing: border-box;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease, transform 220ms ease;
}

.contact-simple-form input:focus,
.contact-simple-form textarea:focus {
  border-color: rgba(228, 30, 38, 0.9);
  background: #102764;
  box-shadow: 0 0 0 3px rgba(228, 30, 38, 0.18);
  transform: translateY(-1px);
  outline: none;
}

.contact-simple-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-simple-form button {
  padding: 12px;
  border: 2px solid #E41E26;
  background: transparent;
  color: #E41E26;
  font-weight: 700;
  cursor: pointer;
  transition: all 220ms ease;
}

.contact-simple-form button:hover {
  background: #E41E26;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(228, 30, 38, 0.28);
}

@keyframes contactOrbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(20px, -18px, 0) scale(1.08);
  }
}

@media (max-width: 900px) {
  .contact-simple-wrap {
    margin: 16px 10px;
    padding: 14px;
  }

  .contact-simple-grid {
    grid-template-columns: 1fr;
  }

  .contact-simple-info,
  .contact-simple-form {
    padding: 14px;
  }
}
