:root {
  --red: rgb(221, 0, 59);
  --white: #ffffff;
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  background: var(--red);
  color: var(--white);
}
/* === GLOBAL TYPOGRAPHY POLISH === */

h1, h2, h3 {
  letter-spacing: -0.02em;
}

.hero-card h1 {
  font-weight: 700;
}
p {
  letter-spacing: 0.01em;
}


/* FADED COMING EFFECT – ABOUT & MISSION */

.fade-section {
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.workflow {
  padding: 160px 64px;
  text-align: center;
}

.workflow-title {
  font-size: 46px;
  margin-bottom: 100px;
}

.workflow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 1200px;
  margin: auto;
}

.workflow-step {
  max-width: 320px;
}

.workflow-step img {
  width: 64px;
  margin-bottom: 24px;
}

.workflow-step h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.workflow-step p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.95;
}

.workflow-arrow {
  font-size: 48px;
  font-weight: 600;
  opacity: 0.6;
}

.workflow-step img {
  width: 80px;
  height: auto;
  opacity: 1;
  background: white;   /* DEBUG */
  padding: 10px;       /* DEBUG */
}

/* Mobile */
@media (max-width: 900px) {
  .workflow-steps {
    flex-direction: column;
  }

  .workflow-arrow {
    transform: rotate(90deg);
  }
}

/* ================= PREMIUM SERVICES SECTION ================= */

.services-premium {
  padding: 160px 64px;
  background: linear-gradient(
    to bottom,
    rgba(120, 0, 35, 0.95),
    rgba(90, 0, 30, 0.95)
  );
}

.services-header {
  max-width: 700px;
  margin: 0 auto 120px;
  text-align: center;
}

.services-header h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 18px;
}

.services-header p {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.6;
}

.services-premium-list {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}

/* CARD */
.service-premium-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  padding: 48px 46px;
  color: #222;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.service-text h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* RED ACCENT LINE */
.service-accent {
  display: block;
  width: 44px;
  height: 3px;
  background: rgb(221, 0, 59);
  margin-bottom: 18px;
}

.service-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* MOBILE */
@media (max-width: 900px) {
  .services-premium-list {
    grid-template-columns: 1fr;
  }

  .services-premium {
    padding: 120px 32px;
  }
}

/* ================= PREMIUM HERO ================= */

.hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 64px;
  overflow: hidden;
}

/* BACKGROUND */
.hero-premium .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-premium .hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-premium .hero-slide.active {
  opacity: 1;
}

/* DIM + BLUR */
.hero-premium .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.45);
}

/* CONTENT PANEL */
.hero-panel {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 56px 60px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  color: #222;
}

/* HEADLINE */
.hero-panel h1 {
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 700;
}

/* SUBTEXT */
.hero-subtext {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 36px;
}

/* CTA */
.hero-cta {
  display: inline-block;
  padding: 14px 32px;
  background: rgb(221, 0, 59);
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-cta:hover {
  background: rgb(190, 0, 50);
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-premium {
    padding: 0 24px;
  }

  .hero-panel {
    padding: 40px 32px;
  }

  .hero-panel h1 {
    font-size: 38px;
  }
}
/* ================= PREMIUM ABOUT SECTION ================= */

.about-premium {
  padding: 160px 64px;
  background: linear-gradient(
    to bottom,
    rgba(120, 0, 35, 0.95),
    rgba(90, 0, 30, 0.95)
  );
}

.about-card {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  padding: 72px 76px;
  border-radius: 18px;
  color: #222;
}

/* TEXT */
.about-text h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* ACCENT */
.about-accent {
  display: block;
  width: 36px;
  height: 3px;
  background: rgb(221, 0, 59);
  margin-bottom: 18px;
}
.about-lead {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
  color: #333;
  margin-bottom: 24px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 18px;
}

/* IMAGE */
.about-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
  opacity: 0.9;
}

/* MOBILE */
@media (max-width: 900px) {
  .about-premium {
    padding: 120px 24px;
  }

  .about-card {
    grid-template-columns: 1fr;
    padding: 48px 36px;
  }

  .about-text h2 {
    font-size: 36px;
  }
}
/* ================= PREMIUM MISSION SECTION ================= */

.mission-premium {
  padding: 160px 64px;
  background: linear-gradient(
    to bottom,
    rgba(100, 0, 30, 0.95),
    rgba(70, 0, 25, 0.95)
  );
}

.mission-card {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  padding: 72px 76px;
  border-radius: 18px;
  color: #222;
}

/* ACCENT */
.mission-accent {
  display: block;
  width: 36px;
  height: 3px;
  background: rgb(221, 0, 59);
  margin-bottom: 18px;
}

/* TEXT */
.mission-text h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 24px;
}

.mission-lead {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
  color: #333;
  margin-bottom: 24px;
}


.mission-text p {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 18px;
}

/* IMAGE */
.mission-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
  opacity: 0.9;
}

/* MOBILE */
@media (max-width: 900px) {
  .mission-premium {
    padding: 120px 24px;
  }

  .mission-card {
    grid-template-columns: 1fr;
    padding: 48px 36px;
  }

  .mission-text h2 {
    font-size: 36px;
  }
}


/* ================= PREMIUM WORKFLOW ================= */

.workflow-premium {
  padding: 160px 64px;
  background: linear-gradient(
    to bottom,
    rgba(90, 0, 30, 0.95),
    rgba(70, 0, 25, 0.95)
  );
}

.workflow-header {
  max-width: 720px;
  margin: 0 auto 120px;
  text-align: center;
}

.workflow-header h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 18px;
}

.workflow-header p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
}

/* STEPS */
.workflow-steps-premium {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 36px;
}

/* CARD */
.workflow-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 48px 44px;
  color: #222;
  max-width: 340px;
  text-align: left;
}

.workflow-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* TITLE */
.workflow-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* ACCENT LINE */
.workflow-accent {
  display: block;
  width: 36px;
  height: 3px;
  background: rgb(221, 0, 59);
  margin-bottom: 18px;
}

/* TEXT */
.workflow-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

/* ARROW */
.workflow-arrow {
  font-size: 55px;
  font-weight: 500;
  opacity: 1;
  align-self: center;
}

/* MOBILE */
@media (max-width: 900px) {
  .workflow-premium {
    padding: 120px 24px;
  }

  .workflow-steps-premium {
    flex-direction: column;
    gap: 48px;
  }

  .workflow-arrow {
    transform: rotate(90deg);
  }
}
/* ================= WHY CHOOSE US — PREMIUM ================= */

.why-premium {
  padding: 160px 64px;
  background: linear-gradient(
    to bottom,
    rgba(85, 0, 30, 0.95),
    rgba(65, 0, 25, 0.95)
  );
}

.why-header {
  max-width: 760px;
  margin: 0 auto 120px;
  text-align: center;
}

.why-header h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 18px;
}

.why-header p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
}

/* GRID */
.why-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}

/* CARD */
.why-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 44px 42px;
  color: #222;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* TITLE */
.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* ACCENT */
.why-accent {
  display: block;
  width: 34px;
  height: 3px;
  background: rgb(221, 0, 59);
  margin-bottom: 18px;
}

/* TEXT */
.why-card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #444;
}

/* MOBILE */
@media (max-width: 900px) {
  .why-premium {
    padding: 120px 24px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-header h2 {
    font-size: 36px;
  }
}
/* ================= SECTORS WE SERVE — PREMIUM ================= */

.sectors-premium {
  padding: 160px 64px;
  background: rgba(60, 0, 20, 0.95);
}

/* HEADER */
.sectors-header {
  max-width: 760px;
  margin: 0 auto 100px;
  text-align: center;
}

.sectors-header h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 18px;
}

.sectors-header p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
}

/* GRID */
.sectors-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */

.sector-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 44px 42px;
  color: #222;
}

.sector-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 1);
  padding: 26px 22px;
  border-radius: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: transform 0.3s ease, background 0.3s ease;
}

/* HOVER */
.sector-card:hover {
  background: rgba(255, 255, 255, 095);
  transform: translateY(-4px);
}

/* MOBILE */
@media (max-width: 900px) {
  .sectors-premium {
    padding: 120px 24px;
  }

  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .sectors-header h2 {
    font-size: 36px;
  }
}
/* ================= STANDARDS — TRUST WALL ================= */

.standards-premium {
  padding: 160px 64px;
  background: rgba(40, 0, 18, 0.96);
}

/* HEADER */
.standards-header {
  max-width: 780px;
  margin: 0 auto 100px;
  text-align: center;
}

.standards-header h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
}

.standards-header p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
}

/* GRID */
.standards-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */

.standard-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 44px 42px;
  color: #222;
}

.standard-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 1);
  padding: 26px 22px;
  border-radius: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: transform 0.3s ease, background 0.3s ease;
}



/* TITLE */
.standard-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

/* SUBTEXT */
.standard-card span {
  font-size: 14px;
  opacity: 0.85;
}

/* HOVER */
.standard-card:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-6px);
}

/* MOBILE */
@media (max-width: 900px) {
  .standards-premium {
    padding: 120px 24px;
  }

  .standards-grid {
    grid-template-columns: 1fr;
  }

  .standards-header h2 {
    font-size: 36px;
  }
}



/* ================= CONTACT / CTA — PREMIUM ================= */

.contact-premium {
  padding: 160px 64px;
  background: linear-gradient(
    180deg,
    rgba(40, 0, 18, 0.96),
    rgba(80, 0, 35, 0.96)
  );
}

.contact-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.contact-text h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.contact-text p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
  max-width: 520px;
}

/* RIGHT */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item span {
  display: block;
  font-size: 13px;
  letter-spacing: 0.6px;

  opacity: 0.75;
  margin-bottom: 6px;
}

.contact-item a {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: opacity 0.25s ease;
}

.contact-item a:hover {
  opacity: 0.75;
}

/* MOBILE */
@media (max-width: 900px) {
  .contact-premium {
    padding: 120px 24px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .contact-text h2 {
    font-size: 36px;
  }
}


/* ================= FOOTER — PREMIUM ================= */

.footer-premium {
  background: rgba(40, 0, 18, 0.96);
  padding: 10px 10px;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* BRAND */
.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
}

/* META */
.footer-meta {
  text-align: right;
}

.footer-meta p {
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 6px;
}

.footer-meta span {
  font-size: 14px;
  opacity: 0.85;
}

.footer-copy {
  margin-top: 24px;
  font-size: 13px;
  opacity: 0.6;
}

/* MOBILE */
@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-center {
    order: 3;
  }
}

.footer-center {
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  opacity: 0.6;
  text-align: center;
}

/* FOOTER LEGAL LINK — TERMS & CONDITIONS */

.footer-legal {
  color: #ffffff;          /* force white */
  font-weight: 700;        /* bold */
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: none;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.25s ease;
}

.footer-legal:hover {
  opacity: 0.7;
}


/* ================= NAVBAR — PREMIUM OVERRIDE ================= */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 22px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(20, 20, 20, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
}

.navbar.scrolled {
  background: rgba(18, 18, 18, 0.92);
  padding: 16px 64px;
}

.logo {
  height: 52px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: rgb(221, 0, 59);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta a {
  padding: 10px 15px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  transition: all 0.3s ease;
}

.nav-cta a:hover {
  background: rgba(221, 0, 59, 0);
  border-color: rgb(221, 0, 59);
}

@media (max-width: 900px) {
  .navbar {
    padding: 18px 24px;
  }
}

/* ================= STANDARDS LOGOS — FINAL ================= */

.standards-images {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-top: 48px;
justify-content: center;
}

/* WHITE BOX */
.standard-box {
  background: #ffffff;
  padding: 60px 60px;          /* box size control */
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 14px 36px rgba(0,0,0,0.22);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* IMAGE CONTROL */
.standard-box img {
  height: 100px;                /* IMAGE SIZE */
  width: auto;
  display: block;
}

/* HOVER EFFECT */
.standard-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.28);
}

/* MOBILE */
@media (max-width: 900px) {
  .standards-images {
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
  }

  .standard-box img {
    height: 48px;
  }
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 28px;          /* spacing between icons */
  margin: 32px 0;    /* space from text */
}

.footer-socials a {
  font-size: 22px;
  color: #ffffff;
  opacity: 0.85;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-socials a:hover {
  transform: translateY(-4px);
  opacity: 1;

.footer-socials {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 28px;
}
}

/* ================= TERMS & CONDITIONS PAGE ================= */

.terms-section {
  padding: 160px 24px;
  background: linear-gradient(
    to bottom,
    rgba(90, 0, 35, 0.98),
    rgba(45, 0, 20, 0.98)
  );
}

.terms-card {
  max-width: 960px;
  margin: auto;
  background: #ffffff;
  color: #222;
  border-radius: 18px;
  padding: 80px 72px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

/* MAIN TITLE */
.terms-title {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 72px;
  color: #111;
}

/* CONTENT */
.terms-content {
  max-width: 760px;
  margin: auto;
}

/* SECTION HEADING WITH VERTICAL STRIP */
.terms-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 64px;
  margin-bottom: 14px;
}

.terms-accent-vertical {
  width: 6px;
  height: 26px;
  background: rgb(221, 0, 59);
  border-radius: 2px;
  flex-shrink: 0;
}

.terms-heading h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

/* PARAGRAPHS */
.terms-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
}

/* MOBILE */
@media (max-width: 900px) {
  .terms-card {
    padding: 48px 28px;
  }

  .terms-title {
    font-size: 34px;
    margin-bottom: 48px;
  }

  .terms-heading h3 {
    font-size: 20px;
  }
}
