/* =========================
   GLOBAL BASE
========================= */
body {
  font-family: Arial, sans-serif;
  background: #fff;
}

/* =========================
   NAVBAR (SCOPED)
========================= */
.tm-navbar {
  background: #fff;
  padding: 14px 0;
  border-bottom: 1px solid #eef2f6;
}

.tm-navbar__logo {
  height: 42px;
}

/* LINKS */
.tm-navbar__links {
  gap: 60px;
}

.tm-navbar__link {
  color: #1f2937;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

.tm-navbar__link:hover {
  color: #0d6efd;
}

/* ACTIVE STATE */
.tm-navbar__link.is-active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0d6efd;
  border-radius: 10px;
}

/* CTA */
.tm-navbar__cta {
  background: linear-gradient(135deg, #0d6efd, #14b8a6);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2);
}

.tm-navbar__cta:hover {
  transform: translateY(-2px);
  color: #fff;
}


/* =========================
   HERO (SCOPED)
========================= */

/* =========================
   HERO FULL SYSTEM (IMPORTANT FIX)
========================= */

.tm-hero {
  width: 100%;
  height: 650px; /* KEY FIX */
}

/* THIS IS THE REAL TRICK */
.tm-hero__container {
  display: flex;
  height: 100%;
}


/* =========================
   LEFT SIDE FIX (FINAL MOCKUP MATCH)
========================= */

.tm-hero__left {
  display: flex;
  align-items: center;     /* 🔥 vertical center */
  height: 100%;
  padding-left: 80px;
}

/* CONTENT WRAPPER (IMPORTANT) */
.tm-hero__content {
  max-width: 540px;
}

/* BADGE */

/* =========================
   HERO BADGE (MOCKUP STYLE)
========================= */

.tm-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 6px 12px;
  border-radius: 999px;

  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.2);

  font-size: 12px;
  font-weight: 500;
  color: #0f172a;
}

/* ICON WRAPPER */
.tm-badge__icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tm-badge__icon svg {
  width: 16px;
  height: 16px;
}

/* TEXT */
.tm-badge__text {
  white-space: nowrap;
}

/* REMOVE EXTRA SVG WEIGHT */
.tm-badge__icon svg path {
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* TITLE (NO BR BREAKS) */
.tm-hero__title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 15px;
}

.tm-hero__title span {
  color: #14b8a6;
  display: block; /* 🔥 makes mockup-style break */
  margin-top: 6px;
}

/* TEXT */
.tm-hero__text {
  font-size: 20px;
  color: #6b7280;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* BUTTONS */
.tm-hero__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.tm-btn-primary {
  background: linear-gradient(135deg, #1d4ed8, #14b8a6);
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(29,78,216,0.25);
}

/* OUTLINE BUTTON */
.tm-btn-outline {
  border: 1px solid #1d4ed8;
  color: black;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
}

/* =========================
   RIGHT SIDE (FULL COVER FIX)
========================= */

.tm-hero__right {
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.tm-hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* KEY FIX */
  object-position: center;
  display: block;
}

/* FEATURES */
.tm-hero__features {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  color: #4b5563;
}


/* OUTER SECTION BACKGROUND */
.tm-feature-card-strip {
  display: flex;
  align-items: stretch;
  gap: 50px;

  margin-top: -25px;
  position: relative;
  z-index: 9999 !important;

  padding: 18px;

  background: linear-gradient(135deg, #1d4ed8, #14b8a6);
  border-radius: 16px;

  box-shadow: 0 12px 30px rgba(0,0,0,0.15);

  /* ✅ IMPORTANT FIX */
  flex-wrap: wrap;
  justify-content: center;
}

/* EACH CARD */
.tm-feature-card-dark {
  display: flex;
  align-items: center;
  gap: 12px;

  /* ❌ removed flex:1 */
  flex: 0 0 auto;

  padding: 14px 16px;
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.3s;

  /* ✅ responsive width control */
  min-width: 200px;
  max-width: 240px;
}

/* ICON */
.tm-feature-card-dark .tm-icon {
  font-size: 18px;
  color: #38bdf8;
}

/* TEXT */
.tm-feature-card-dark .tm-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

/* TOP */
.tm-feature-card-dark .tm-top {
  font-size: 12px;
  color: #edf4ff;
  font-weight: 400;
}

/* BOTTOM */
.tm-feature-card-dark .tm-bottom {
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
}



@media (max-width: 768px) {
  .tm-feature-card-strip {
    display: none !important;
  }
}

@media (max-width: 991px) {

  .tm-hero {
    padding: 50px 0;
    text-align: center;
  }

  .tm-hero__row {
    flex-direction: column-reverse;
  }

  .tm-hero__left {
    padding-right: 0;
    margin-top: 25px;
  }

  .tm-hero__title {
    font-size: 30px;
  }

  .tm-hero__text {
    margin: 0 auto;
  }

  .tm-hero__buttons {
    justify-content: center;
  }

  .tm-hero__right img {
    height: auto;
    max-height: 360px;
  }
}

@media (max-width: 991px) {

  .tm-feature-card-strip {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;

    padding: 12px;
    scroll-snap-type: x mandatory;
  }

  .tm-feature-card-dark {
    min-width: 240px;
    flex: 0 0 auto;

    scroll-snap-align: start;
  }

  /* hide scrollbar */
  .tm-feature-card-strip::-webkit-scrollbar {
    display: none;
  }

  .tm-feature-card-strip {
    scrollbar-width: none;
  }
}

@media (max-width: 991px) {

  .tm-navbar__cta {
    margin-top: 12px;
    display: inline-block;
  }

  .tm-navbar__links {
    text-align: center;
    margin-top: 15px;
  }
}


.tm-features {
    margin-top: -60px;
    z-index: 99999;
    padding-bottom: 40px;
    position: relative;
}


/* =========================
   PREMIUM ICON STYLE (SAAS LEVEL)
========================= */

.tm-feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;

  backdrop-filter: blur(10px);

  transition: all 0.3s ease;
}

/* SVG inside icon */
.tm-feature-icon svg {
  width: 35px;
  height: 35px;
}

/* HOVER PREMIUM EFFECT */
.tm-feature-card-dark:hover .tm-feature-icon {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
/* =========================
   FEATURE STRIP OUTER GAP FIX
========================= */

.tm-features {
  padding: 0 20px;   /* 🔥 LEFT + RIGHT GAP */
}

/* INNER CONTAINER */
.tm-features__container {
  max-width: 1200px;   /* keeps it aligned like SaaS layout */
  margin: 0 auto;      /* center */
  display: flex;
  gap: 16px;
  justify-content: space-between;

  padding: 18px;
  border-radius: 16px;

  background: white;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* CARD */
.tm-feature-card {
  display: flex;
  align-items: center;
  gap: 12px;

  flex: 1;
  min-width: 180px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);

  padding: 14px 16px;
  border-radius: 12px;
}

/* ICON */
.tm-feature-icon {
  font-size: 18px;
}

/* TEXT */
.tm-feature-top {
  font-size: 12px;
  color: black;
}

.tm-feature-bottom {
  font-size: 14px;
  color: black;
  font-weight: 600;
}


/* =========================
   SECTION BASE
========================= */
.tm-products {
  padding: 90px 0;
  background: #ffffff;
}

/* HEADER */
.tm-products__header {
  text-align: center;
  margin-bottom: 50px;
}

.tm-products__sub {
  font-size: 12px;
  letter-spacing: 1px;
  color: #64748b;
  font-weight: 600;
}

.tm-products__title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 8px;
}

.tm-products__text {
  font-size: 15px;
  color: #6b7280;
  margin-top: 8px;
}

/* =========================
   CARD
========================= */
.tm-product-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 14px;
  padding: 18px;
  text-align: center;

  transition: 0.3s;
  height: 100%;
}

/* HOVER */
.tm-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* IMAGE */
.tm-product-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* TITLE */
.tm-product-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

/* SUBTEXT */
.tm-product-card span {
  font-size: 12px;
  color: #64748b;
  display: block;
  margin-bottom: 10px;
}

/* LINK */
.tm-product-card a {
  font-size: 12px;
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 500;
}

/* =========================
   FOOTER BUTTON
========================= */
.tm-products__footer {
  text-align: center;
  margin-top: 40px;
}

.tm-products__btn {
  display: inline-block;
  padding: 12px 20px;
  border: 1px solid #1d4ed8;
  border-radius: 10px;
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.tm-products__btn:hover {
  background: #1d4ed8;
  color: #fff;
}


/* =========================
   SECTION WRAPPER (WITH GAP + CURVE)
========================= */

.tm-why {
    padding-bottom: 5px !important;
  padding: 60px 0;
  background: white;
}

.tm-why__container {
  max-width: 1300px;
  margin: 0 auto;

  padding: 40px 30px;

  background: #f5f9ff;

  border-radius: 18px;   /* 🔥 CURVED CORNERS */
}

/* =========================
   MAIN LAYOUT
========================= */

.tm-why__wrap {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LEFT */
.tm-why__left {
  flex: 1;
}

.tm-why__sub {
  font-size: 12px;
  font-weight: 600;
  color: #14b8a6;
  letter-spacing: 1px;
}

.tm-why__title {
  font-size: 34px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 10px;
  line-height: 1.2;
}

.tm-why__text {
  margin-top: 10px;
  font-size: 15px;
  color: #6b7280;
  max-width: 420px;
}

/* =========================
   RIGHT SIDE
========================= */

.tm-why__right {
  flex: 1.6;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

/* ITEM (ICON TOP, TEXT BELOW) */
.tm-why__item {
  flex: 1;
  display: flex;
  flex-direction: column; /* 🔥 ICON TOP FIX */
  align-items: flex-start;
  gap: 10px;
}

/* ICON (PREMIUM SVG STYLE) */
.tm-why__icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(29, 78, 216, 0.08);
  border-radius: 12px;
}

.tm-why__icon svg {
  width: 30px;
  height: 40px;
  fill: none;
  stroke: #14b8a6;
  stroke-width: 1.8;
}

/* HEADING */
.tm-why__item h4 {
  font-size: 14px;
  font-weight: 700; /* 🔥 BOLD FIX */
  color: #0f172a;
  margin: 0;
}

/* DESCRIPTION */
.tm-why__item p {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .tm-why__wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .tm-why__right {
    flex-wrap: wrap;
  }

  .tm-why__item {
    min-width: 45%;
  }
}

@media (max-width: 576px) {
  .tm-why__item {
    min-width: 100%;
  }
}


/* =========================
   PREMIUM SVG ICON STYLE
========================= */

.tm-svg-icon {
  width: 26px;
  height: 26px;

  stroke: #14b8a6;
  stroke-width: 1.8;
  fill: none;

  stroke-linecap: round;
  stroke-linejoin: round;

  margin-bottom: 10px;
}

/* ICON BACKGROUND (SOFT PREMIUM LOOK) */
.tm-why__icon {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(29, 78, 216, 0.08);
  border-radius: 12px;
}



/* =========================
   CTA SECTION BACKGROUND
========================= */

/* =========================
   CTA MAIN WRAPPER
========================= */

.tm-cta {
  padding: 60px 0;
  padding-top: 5px !important;
}

/* MAIN CONTAINER */
.tm-cta__container {
  max-width: 1300px;
  margin: 0 auto;

  display: flex;
  align-items: stretch;

  background: linear-gradient(135deg, #0b2f6a, #123f8a);
  border-radius: 18px;

  overflow: hidden; /* IMPORTANT for full image edge */
}

/* =========================
   LEFT IMAGE (NO PADDING / NO BOX)
========================= */

.tm-cta__left {
  flex: 1;
  display: flex;
}

.tm-cta__left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   MIDDLE SECTION
========================= */

.tm-cta__middle {
  flex: 1.2;

  padding: 30px;

  position: relative;
}

/* DOTTED LINE RIGHT SIDE */
.tm-cta__middle::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20px;
  bottom: 20px;

  width: 1px;
  border-right: 1px dashed rgba(255,255,255,0.3);
}

.tm-cta__middle h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

.tm-cta__middle p {
  color: #dbeafe;
  font-size: 13px;
  line-height: 1.6;
}

/* LIST */
.tm-cta__list {
  margin-top: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  color: #fff;
  font-size: 13px;
}

/* =========================
   RIGHT SECTION
========================= */

.tm-cta__right {
  flex: 1;

  padding: 30px;
}

.tm-cta__right h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}

.tm-cta__right p {
  color: #dbeafe;
  font-size: 13px;
  margin-bottom: 15px;
}

/* BUTTON */
.tm-cta__btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;

  background: #ffffff;
  color: #0b2f6a;

  font-weight: 600;
  text-decoration: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .tm-cta__container {
    flex-direction: column;
  }

  .tm-cta__middle::after {
    display: none;
  }

  .tm-cta__list {
    grid-template-columns: 1fr;
  }
}


/* =========================
   FOOTER BACKGROUND
========================= */

.tm-footer {
  background: linear-gradient(135deg, #061a3a 0%, #0b2f6a 55%, #0f766e 100%);
  color: #fff;
  padding: 60px 0 20px;
}

/* =========================
   TOP GRID
========================= */

.tm-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 30px;
}

/* BRAND */
.tm-footer__brand img {
  height: 40px;
  margin-bottom: 15px;
}

.tm-footer__brand p {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* SOCIAL */
.tm-footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ICON BUTTON */
.tm-social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;

  /* IMPORTANT FIX */
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);

  border-radius: 12px;

  color: #ffffff;
  transition: 0.3s ease;
}

/* ICON SIZE */
.tm-social-icon svg {
  width: 18px;
  height: 18px;
  stroke: white;
  fill: white;
}

/* HOVER */
.tm-social-icon:hover {
  background: #14b8a6;
  border-color: #14b8a6;
  transform: translateY(-2px);
}

.tm-footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* =========================
   SOCIAL BUTTON (PREMIUM)
========================= */

.tm-social-btn {
  width: 24px;
  height: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  /* PREMIUM LOOK */
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);

  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}

/* ICON */
.tm-social-btn svg {
  width: 20px;
  height: 20px;
  fill: #0f172a;
  transition: all 0.25s ease;
}

/* =========================
   HOVER (MODERN BRAND STYLE)
========================= */

.tm-social-btn:hover {
  transform: translateY(-3px);
  background: #14b8a6;
  border-color: #14b8a6;
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.25);
}

.tm-social-btn:hover svg {
  fill: #ffffff;
}

/* =========================
   ACTIVE PRESS EFFECT
========================= */

.tm-social-btn:active {
  transform: scale(0.95);
}

/* HEADINGS */
.tm-footer__col h4 {
  font-size: 14px;
  margin-bottom: 12px;
}

/* LINKS */
.tm-footer__col a {
  display: block;
  font-size: 13px;
  color: #cbd5e1;
  text-decoration: none;
  margin-bottom: 8px;
}

.tm-footer__col a:hover {
  color: #fff;
}

/* CONTACT TEXT */
.tm-footer__col p {
  font-size: 13px;
  color: #cbd5e1;
  margin-bottom: 8px;
}

/* =========================
   NEWSLETTER
========================= */

.tm-footer__input {
  display: flex;
  margin-top: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.tm-footer__input input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  font-size: 13px;
}

.tm-footer__input button {
  background: #1d4ed8;
  color: #fff;
  border: none;
  padding: 0 14px;
  cursor: pointer;
}

/* =========================
   DIVIDER
========================= */

.tm-footer__divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 30px 0 15px;
}

/* =========================
   BOTTOM BAR
========================= */

.tm-footer__bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #94a3b8;
}

.tm-footer__links {
  display: flex;
  gap: 15px;
}

.tm-footer__links a {
  color: #94a3b8;
  text-decoration: none;
}

.tm-footer__links a:hover {
  color: #fff;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .tm-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .tm-footer__bottom {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .tm-footer__top {
    grid-template-columns: 1fr;
  }
}


.tm-btn-icon {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
}

.tm-btn-arrow {
  width: 16px;
  height: 16px;
}

.tm-contact-item {
  display: flex;
  align-items: center;
  gap: 30px;

  padding: 20px;
  border-radius: 12px;

  background: #fff;
  border: 1px solid #eef2ff;

  transition: all 0.2s ease;
}

.tm-contact-item:hover {
  border-color: #14b8a6;
  box-shadow: 0 6px 18px rgba(20, 184, 166, 0.08);
}

.tm-icon svg {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

.tm-text span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.tm-text small {
  display: block;
  font-size: 12px;
  color: #64748b;
}
/* =========================
   HERO WRAPPER (FULL WIDTH)
========================= */

.tm-contact-hero {
  width: 100%;
  background: #fff;
  padding: 0;
}

/* MAIN LAYOUT */
.tm-contact-hero__container {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  min-height: 520px;
}

/* =========================
   LEFT SIDE
========================= */

.tm-contact-hero__left {
  flex: 1;
  max-width: 600px;
  padding: 60px 40px;
}

.tm-contact-hero__badge {
  font-size: 12px;
  font-weight: 600;
  color: #14b8a6;
  letter-spacing: 1px;
}

.tm-contact-hero__title {
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 10px;
}

.tm-contact-hero__text {
  font-size: 15px;
  color: #6b7280;
  margin-top: 10px;
  max-width: 480px;
}

/* =========================
   FEATURES ROW FIXED
========================= */

.tm-contact-hero__features {
  display: flex;
  gap: 18px;
  margin-top: 25px;
}

/* FEATURE ITEM */
.tm-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
}

/* ICON FIX */
.tm-feature svg {
  width: 22px;
  height: 22px;
  stroke: #1d4ed8;
  stroke-width: 1.8;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

/* TEXT */
.tm-feature h4 {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.tm-feature p {
  font-size: 12px;
  color: #6b7280;
  margin: 2px 0 0;
}

/* =========================
   RIGHT IMAGE (NO BOX STYLE)
========================= */

.tm-contact-hero__right {
  flex: 1;
  position: relative;
}

/* FULL IMAGE */
.tm-contact-hero__right img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

/* LEFT FADE ONLY */
.tm-contact-hero__right::before {
  content: "";
  position: absolute;

  top: 0;
  left: 0;
  width: 55%;
  height: 100%;

  background: linear-gradient(
    to right,
    #ffffff 0%,
    rgba(255,255,255,0.7) 40%,
    rgba(255,255,255,0) 100%
  );

  pointer-events: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .tm-contact-hero__container {
    flex-direction: column;
  }

  .tm-contact-hero__left {
    padding: 40px 20px;
  }

  .tm-contact-hero__features {
    flex-wrap: wrap;
  }

  .tm-contact-hero__right img {
    min-height: 300px;
    height: auto;
  }

  .tm-contact-hero__right::before {
    display: none;
  }
}


/* =========================
   SECTION BACKGROUND
========================= */

.tm-contact-form {
  padding: 30px 0;
  background: #f6f9ff;
}

/* MAIN CONTAINER */
.tm-contact-form__container {
  max-width: 1300px;
  margin: 0 auto;

  display: flex;
  gap: 30px;
}

/* =========================
   LEFT FORM CARD
========================= */

.tm-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.tm-form-card h2 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #0f172a;
}

.tm-form-card p {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 20px;
}

/* FORM ROWS */
.tm-form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.tm-form-card input,
.tm-form-card select,
.tm-form-card textarea {
  width: 100%;
  padding: 12px 14px;

  border: 1px solid #e5e7eb;
  border-radius: 10px;

  font-size: 13px;
  outline: none;
}

.tm-form-card textarea {
  height: 120px;
  resize: none;
}

/* BUTTON */
.tm-form-card button {
  width: 100%;
  padding: 12px;

  background: linear-gradient(135deg, #1d4ed8, #14b8a6);
  color: #fff;

  border: none;
  border-radius: 10px;

  font-weight: 600;
  cursor: pointer;

  margin-top: 10px;
}

/* NOTE */

/* =========================
   PRIVACY NOTE CENTERED
========================= */

.tm-form-note {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  margin-top: 12px;

  font-size: 12px;
  color: #64748b;
  text-align: center;
}

/* LOCK ICON */
.tm-lock-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tm-lock-icon svg {
  width: 16px;
  height: 16px;
  stroke: #1d4ed8;
}

/* =========================
   RIGHT INFO CARDS
========================= */

.tm-contact-form__right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tm-info-card {
  background: #fff;
  border-radius: 14px;

  padding: 18px;
  display: flex;
  gap: 12px;

  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

/* ICON */
.tm-info-icon {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(29,78,216,0.08);
  border-radius: 10px;
}

.tm-info-icon svg {
  width: 18px;
  height: 18px;
  stroke: #1d4ed8;
  fill: none;
  stroke-width: 1.8;
}

/* TEXT */
.tm-info-card h4 {
  font-size: 14px;
  margin: 0;
  color: #0f172a;
}

.tm-info-card p {
  font-size: 12px;
  margin: 2px 0;
  color: #6b7280;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .tm-contact-form__container {
    flex-direction: column;
  }

  .tm-form-row {
    flex-direction: column;
  }
}


/* =========================
   SEND BUTTON
========================= */

.tm-send-btn {
  width: 100%;
  padding: 12px 16px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: linear-gradient(135deg, #1d4ed8, #14b8a6);
  color: #fff;

  border: none;
  border-radius: 10px;

  font-size: 14px;
  font-weight: 600;

  cursor: pointer;
  transition: 0.3s ease;
}

.tm-send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(29, 78, 216, 0.25);
}

/* ICON */
.tm-send-icon svg {
  width: 18px;
  height: 18px;
  stroke: white;
  fill: none;
}



/* =========================
   CTA STRIP BACKGROUND
========================= */

.tm-contact-cta {
  padding: 40px 0;
}

/* MAIN CONTAINER */
.tm-contact-cta__container {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 20px 30px;

  background: linear-gradient(135deg, #f3f7ff, #ffffff);
  border-radius: 16px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* =========================
   LEFT ICON
========================= */

.tm-contact-cta__icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(29,78,216,0.08);
}

.tm-contact-cta__icon svg {
  width: 22px;
  height: 22px;
  stroke: #1d4ed8;
}

/* =========================
   TEXT
========================= */

.tm-contact-cta__text {
  flex: 1;
}

.tm-contact-cta__text h3 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.tm-contact-cta__text p {
  font-size: 13px;
  color: #6b7280;
  margin: 4px 0 0;
}

/* =========================
   BUTTON
========================= */

.tm-contact-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 18px;
  border-radius: 10px;

  background: #1d4ed8;
  color: #fff;

  font-size: 13px;
  font-weight: 600;
  text-decoration: none;

  transition: 0.3s ease;
}

.tm-contact-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(29,78,216,0.25);
}

/* BUTTON ICON */
.tm-contact-cta__btn svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .tm-contact-cta__container {
    flex-direction: column;
    text-align: center;
  }

  .tm-contact-cta__text {
    text-align: center;
  }
}



/* =========================
   ORDER HERO WRAPPER
========================= */

.tm-order-hero {
  width: 100%;
  background: #fff;
}

/* MAIN LAYOUT */
.tm-order-hero__container {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  min-height: 520px;
}

/* =========================
   LEFT SIDE (BIG TEXT)
========================= */

.tm-order-hero__left {
  flex: 1;
  max-width: 620px;
  padding: 60px 40px;
}

.tm-order-hero__badge {
  font-size: 12px;
  font-weight: 600;
  color: #14b8a6;
  letter-spacing: 1px;
}

.tm-order-hero__title {
  font-size: 46px;   /* 🔥 BIGGER THAN CONTACT */
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-top: 10px;
}

.tm-order-hero__text {
  font-size: 16px;
  color: #6b7280;
  margin-top: 12px;
  max-width: 500px;
}

/* =========================
   RIGHT IMAGE (FULL WIDTH)
========================= */

.tm-order-hero__right {
  flex: 1;
  position: relative;
}

/* IMAGE FULL COVER */
.tm-order-hero__right img {
  width: 100%;
  height: 100%;
  min-height: 520px;

  object-fit: cover;
  display: block;
}

/* LEFT FADE ONLY (LIKE CONTACT STYLE) */
.tm-order-hero__right::before {
  content: "";
  position: absolute;

  top: 0;
  left: 0;

  width: 55%;
  height: 100%;

  background: linear-gradient(
    to right,
    #ffffff 0%,
    rgba(255,255,255,0.75) 40%,
    rgba(255,255,255,0) 100%
  );

  pointer-events: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .tm-order-hero__container {
    flex-direction: column;
  }

  .tm-order-hero__left {
    padding: 40px 20px;
  }

  .tm-order-hero__title {
    font-size: 34px;
  }

  .tm-order-hero__right img {
    min-height: 300px;
    height: auto;
  }

  .tm-order-hero__right::before {
    display: none;
  }
}



/* =========================
   PAGE BACKGROUND
========================= */

.tm-order {
  padding: 70px 0;
  background: #f6f9ff;
}

/* =========================
   MAIN WRAPPER (NO BIG CARD ANYMORE)
========================= */

.tm-order-card {
  max-width: 1200px;
  margin: auto;

  display: flex;
  gap: 25px;

  background: transparent; /* 🔥 REMOVE BIG CARD */
  box-shadow: none;
  padding: 0;
}

/* =========================
   LEFT FORM CARD (SEPARATE)
========================= */

.tm-left {
  flex: 2;

  background: #ffffff;
  border-radius: 16px;
  padding: 24px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* =========================
   RIGHT CARD (SEPARATE)
========================= */

.tm-right {
  flex: 1;

  border-radius: 16px;
  padding: 18px;

}

/* =========================
   LEFT FORM (UNCHANGED VISUAL)
========================= */

.tm-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.tm-row input,
.tm-row select,
.tm-row textarea {
  flex: 1;

  padding: 11px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;

  font-size: 13px;
  outline: none;
}

.tm-row.full {
  flex-direction: column;
}

.tm-row textarea {
  min-height: 90px;
}

/* BUTTON */
.tm-btn {
  width: 100%;
  margin-top: 12px;

  padding: 12px;
  border-radius: 10px;

  background: #0b2a6f;
  color: #fff;

  border: none;
  font-weight: 600;
}

/* NOTE */
.tm-note {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 10px;
}

/* =========================
   RIGHT CARDS
========================= */

.tm-card {
  background: #fff;
  border: 1px solid #eef2ff;

  padding: 12px;
  border-radius: 12px;

  margin-bottom: 10px;

  display: flex;
  flex-direction: column;
}

.tm-card.active {
  border: 2px solid #1d4ed8;
}

.tm-card span {
  font-size: 13px;
  font-weight: 600;
}

.tm-card small {
  font-size: 12px;
  color: #64748b;
}


/* =========================
   SUPPORT CARD PREMIUM
========================= */

.tm-support {
  background: lightcyan;
  color: black;

  padding: 18px;
  border-radius: 14px;
}

/* HEADER (ICON + TEXT) */
.tm-support-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* ICON */
.tm-support-icon {
  width: 60px;
  height: 60px;

  background: rgba(255,255,255,0.15);
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.tm-support-icon svg {
  width: 40px;
  height: 40px;
  /*stroke: blue;*/
  /*fill: none;*/
}

/* TEXT */
.tm-support-text h4 {
  font-size: 20px;
  margin: 0;
  font-weight: 700;
}

.tm-support-text p {
  font-size: 12px;
  margin: 4px 0 0;
  opacity: 0.85;
  line-height: 1.4;
}

/* BUTTON */
.tm-support-btn {
  display: inline-block;
  margin-top: 14px;

  padding: 10px 14px;
  border-radius: 10px;

  background: #0b2a6f;
  color: #fff;

  font-size: 16px;
  font-weight: 600;
  text-decoration: none;

  transition: 0.5s;
}

.tm-support-btn:hover {
  background: black;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .tm-order-card {
    flex-direction: column;
  }

  .tm-row {
    flex-direction: column;
  }
}


/* =========================
   SPLIT HEADER (50/50)
========================= */
.tm-form-header-split {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #eef2ff;
  margin-bottom: 15px;
}

/* BOTH SIDES */
.tm-header-left,
.tm-header-right {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 10px;

  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

/* RIGHT BORDER */
.tm-header-left {
  border-right: 1px solid #eef2ff;
}

/* ICON WRAPPER */
.tm-icon-wrap svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* TEXT */
.tm-title {
  line-height: 1;
}


/* =========================
   RIGHT SIDE WRAPPER FIX
========================= */

.tm-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* =========================
   CONTACT CARD WRAPPER
========================= */

.tm-contact-card {
  background: #fff;
  border-radius: 14px;
  padding: 15px;

  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

/* INNER CARDS */
.tm-contact-card .tm-card {
  background: #fff;
  border: 1px solid #eef2ff;

  padding: 12px;
  border-radius: 12px;

  margin-top: 10px;
}

/* ACTIVE STATE */
.tm-contact-card .tm-card.active {
  border: 2px solid #1d4ed8;
}



/* =========================
   WRAPPER
========================= */

.tm-about-hero {
  width: 100%;
  background: #fff;
}

/* MAIN LAYOUT */
.tm-about-hero__container {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  min-height: 520px;
}

/* =========================
   LEFT SIDE
========================= */

.tm-about-hero__left {
  flex: 1;
  padding: 60px 80px;
}

.tm-about-hero__badge {
  font-size: 12px;
  font-weight: 600;
  color: #14b8a6;
  letter-spacing: 1px;
}

.tm-about-hero__title {
  font-size: 52px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;

  margin-top: 10px;
}

.tm-about-hero__text {
    font-size: 18px;
    color: #64748b;
    margin-top: 12px;
    max-width: 423px;
}

/* FEATURES */
.tm-about-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 20px;
  font-size: 13px;
  color: #334155;
}

.tm-feature {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tm-feature span {
  color: #1d4ed8;
  font-weight: 700;
}

/* =========================
   RIGHT IMAGE (FULL COVER)
========================= */

.tm-about-hero__right {
  flex: 1;
  position: relative;
}

.tm-about-hero__right img {
  width: 100%;
  height: 100%;
  min-height: 520px;

  object-fit: cover;
  display: block;
}

/* LEFT FADE */
.tm-about-hero__right::before {
  content: "";
  position: absolute;

  top: 0;
  left: 0;

  width: 55%;
  height: 100%;

  background: linear-gradient(
    to right,
    #ffffff 0%,
    rgba(255,255,255,0.8) 40%,
    rgba(255,255,255,0) 100%
  );

  pointer-events: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .tm-about-hero__container {
    flex-direction: column;
  }

  .tm-about-hero__left {
    padding: 40px 20px;
  }

  .tm-about-hero__title {
    font-size: 32px;
  }

  .tm-about-hero__right img {
    min-height: 320px;
  }

  .tm-about-hero__right::before {
    display: none;
  }
}

.tm-footer {
  background: linear-gradient(135deg, #061a3a 0%, #0b2f6a 55%, #0f766e 100%);
  color: #fff;
  padding: 50px 20px 20px;
}

.tm-footer-container {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.tm-footer h3,
.tm-footer h4 {
  margin-bottom: 15px;
}

.tm-footer p,
.tm-footer a {
  font-size: 14px;
  color: #cbd5e1;
  text-decoration: none;
}

.tm-footer a {
  display: block;
  margin: 6px 0;
}

.tm-footer a:hover {
  color: #14b8a6;
}

/* CONTACT ITEM */
.tm-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  color: #cbd5e1;
}

.tm-icon svg {
  width: 18px;
  height: 18px;
}

/* BOTTOM BAR */
.tm-footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #1e293b;
  font-size: 13px;
  color: #94a3b8;
}

.tm-contact-items{
 display: flex;
  align-items: center;
  gap: 8px;

  padding: 3px;
  border-radius: 12px;

  transition: all 0.2s ease;
}

.tm-contact-items:hover {
  border-color: #14b8a6;
  box-shadow: 0 6px 18px rgba(20, 184, 166, 0.08);
}

.tm-about-hero-features-row {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: nowrap;
}

.tm-about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 8px 10px;

  font-size: 14px;
  font-weight: 500;
  color: #0f172a;

  white-space: nowrap;
}

.tm-about-feature-icon svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.tm-about-feature-text {
  line-height: 1;
  font-weight: bold;
}


/* =========================
   SECTION WRAPPER
========================= */

.tm-about-story {
  padding: 80px 0;
  background: #ffffff;
}

/* MAIN LAYOUT */
.tm-about-story__container {
  max-width: 1200px;
  margin: auto;

  display: flex;
  align-items: center;
  gap: 40px;
}

/* =========================
   LEFT IMAGE
========================= */

.tm-about-story__left {
  flex: 1;
}

.tm-about-story__left img {
  width: 100%;
  height: 350px;

  object-fit: cover;

  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* =========================
   RIGHT CONTENT
========================= */

.tm-about-story__right {
  flex: 1;
}

/* BADGE */
.tm-about-story__badge {
  display: inline-block;

  font-size: 12px;
  font-weight: 600;
  color: #1d4ed8;

  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* TITLE */
.tm-about-story__title {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;

  margin-bottom: 14px;
}

/* TEXT */
.tm-about-story__text {
  font-size: 15px;
  color: #64748b;

  line-height: 1.6;
  margin-bottom: 12px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .tm-about-story__container {
    flex-direction: column;
  }

  .tm-about-story__left img {
    height: 300px;
  }

  .tm-about-story__title {
    font-size: 26px;
  }
}



/* =========================
   SECTION WRAPPER
========================= */

.tm-mv {
  padding: 70px 0;
  background: #ffffff;
}

/* CONTAINER */
.tm-mv__container {
  max-width: 1200px;
  margin: auto;

  display: flex;
  gap: 20px;
}

/* =========================
   CARD BASE STYLE
========================= */

.tm-mv__card {
  flex: 1;

  display: flex;
  gap: 14px;
  align-items: flex-start;

  padding: 42px;
  border-radius: 16px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* =========================
   MISSION CARD STYLE
========================= */

.tm-mv__mission {
  background: linear-gradient(135deg, #eef5ff, #f8fbff);
}

/* =========================
   VISION CARD STYLE
========================= */

.tm-mv__vision {
  background: linear-gradient(135deg, #ecfeff, #f0fdfa);
}

/* =========================
   ICON CIRCLE
========================= */

.tm-mv__icon {
  width: 52px;
  height: 52px;

  background: #ffffff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

.tm-mv__icon svg {
  width: 22px;
  height: 22px;
}

/* =========================
   CONTENT
========================= */

.tm-mv__content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #0f172a;
}

.tm-mv__content p {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .tm-mv__container {
    flex-direction: column;
  }
}



/* =========================
   SECTION WRAPPER
========================= */

.tm-core {
  padding: 70px 20px;
  background: #fff;
}

/* TITLE */
.tm-core__title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0f172a;
}

/* ROW */
.tm-core__row {
  max-width: 1200px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* ITEM */
.tm-core__item {
  flex: 1;
  text-align: center;

  padding: 0 20px;
  position: relative;
}

/* VERTICAL DIVIDER (EXACT MOCKUP LOOK) */
.tm-core__item:not(:last-child)::after {
  content: "";
  position: absolute;

  right: 0;
  top: 20%;

  width: 1px;
  height: 60%;

  background: #e5e7eb;
}

/* ICON */
.tm-core__icon {
  width: 46px;
  height: 46px;

  margin: auto;
  margin-bottom: 10px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.tm-core__icon svg {
  width: 40px;
  height: 40px;
}

/* TITLE */
.tm-core__item h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0f172a;
}

/* TEXT */
.tm-core__item p {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .tm-core__row {
    flex-wrap: wrap;
    gap: 20px;
  }

  .tm-core__item {
    flex: 1 1 45%;
  }

  .tm-core__item::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .tm-core__item {
    flex: 1 1 100%;
  }
}


/* =========================
   SECTION WRAPPER
========================= */

.tm-serve {
  padding: 70px 20px;
  background: #f6f9ff;
}

/* TITLE */
.tm-serve__title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #0f172a;
}

/* GRID */
.tm-serve__grid {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.tm-serve__card {
  background: #fff;
  border-radius: 16px;

  overflow: hidden;

  box-shadow: 0 10px 25px rgba(0,0,0,0.05);

  padding-bottom: 16px;
}

/* IMAGE */
.tm-serve__img {
  position: relative;
}

.tm-serve__img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

/* ICON */
.tm-serve__icon {
  position: absolute;
  bottom: -18px;
  left: 15px;

  width: 36px;
  height: 36px;

  background: #fff;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.tm-serve__icon svg {
  width: 18px;
  height: 18px;
}

/* TEXT */
.tm-serve__card h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 22px 15px 6px;
  color: #0f172a;
}

.tm-serve__card p {
  font-size: 12px;
  color: #64748b;
  margin: 0 15px;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .tm-serve__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tm-serve__grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   WRAPPER
========================= */

.tm-product-hero {
  width: 100%;
  background: #fff;
}

/* MAIN LAYOUT */
.tm-product-hero__container {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 520px;
}

/* =========================
   LEFT SIDE
========================= */

.tm-product-hero__left {
  flex: 1;
  padding: 60px 40px;
}

.tm-product-hero__badge {
  font-size: 12px;
  font-weight: 600;
  color: #14b8a6;
  letter-spacing: 1px;
}

.tm-product-hero__title {
  font-size: 52px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;

  margin-top: 10px;
}

.tm-product-hero__text {
  font-size: 18px;
  color: #64748b;
  margin-top: 12px;
  max-width: 520px;
}

/* =========================
   FEATURES
========================= */

/* =========================
   PRODUCT HERO FEATURES
========================= */

.exn-product-features {
  display: flex;
  gap: 22px;
  margin-top: 22px;

  flex-wrap: nowrap;
}

/* FEATURE ITEM */
.exn-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  min-width: 180px;
}

/* ICON */
.exn-feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

/* TEXT WRAPPER */
.exn-feature-text {
  display: flex;
  flex-direction: column;
}

/* TITLE LINE */
.exn-feature-text strong {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
}

/* SUB LINE */
.exn-feature-text span {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .exn-product-features {
    flex-wrap: wrap;
    gap: 16px;
  }

  .exn-feature-item {
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .exn-feature-item {
    flex: 1 1 100%;
  }
}

/* =========================
   RIGHT IMAGE
========================= */

.tm-product-hero__right {
  flex: 1;
  position: relative;
}

.tm-product-hero__right img {
  width: 100%;
  min-height: 520px;

  object-fit: cover;
  display: block;
}

/* LEFT FADE */
.tm-product-hero__right::before {
  content: "";
  position: absolute;

  top: 0;
  left: 0;

  width: 55%;
  height: 100%;

  background: linear-gradient(
    to right,
    #ffffff 0%,
    rgba(255,255,255,0.85) 40%,
    rgba(255,255,255,0) 100%
  );

  pointer-events: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .tm-product-hero__container {
    flex-direction: column;
  }

  .tm-product-hero__left {
    padding: 40px 20px;
  }

  .tm-product-hero__title {
    font-size: 32px;
  }

  .tm-product-hero__features {
    grid-template-columns: 1fr;
  }

  .tm-product-hero__right img {
    min-height: 320px;
  }

  .tm-product-hero__right::before {
    display: none;
  }
}


/* =========================
   SECTION WRAPPER
========================= */

.exn-products {
  padding: 70px 20px;
  background: #f6f9ff;
}

/* HEADER */
.exn-products__header {
  max-width: 1200px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 25px;
}

.exn-products__header h2 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
}

/* BUTTON */
.exn-products__btn {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 10px 14px;
  border-radius: 10px;

  border: 1px solid #c7d2fe;
  background: #fff;

  font-size: 13px;
  color: #1d4ed8;

  text-decoration: none;
}

.exn-products__btn svg {
  width: 16px;
  height: 16px;
}

/* =========================
   GRID
========================= */

.exn-products__grid {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* =========================
   PRODUCT CARD
========================= */

.exn-product-card {
  background: #fff;
  border-radius: 16px;

  padding: 18px;

  display: flex;
  align-items: center;
  gap: 16px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.05);

  transition: 0.3s;
}

.exn-product-card:hover {
  transform: translateY(-4px);
}

/* IMAGE */
.exn-product-card img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

/* TEXT */
.exn-product-content h3 {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;

  margin: 0 0 6px 0;
}

.exn-product-content p {
  font-size: 12px;
  color: #64748b;

  margin: 0 0 8px 0;
}

/* CTA */
.exn-product-content a {
  font-size: 12px;
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 500;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .exn-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exn-product-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .exn-products__grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   SECTION
========================= */

.pdp-section {
  padding: 40px 0;
  background: #fff;
}

/* CONTAINER FIX */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* =========================
   BREADCRUMB
========================= */

.pdp-breadcrumb {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 20px;
}

/* =========================
   MAIN LAYOUT
========================= */

.pdp-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* =========================
   LEFT GALLERY
========================= */

.pdp-gallery {
  display: flex;
  gap: 15px;
}

.pdp-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pdp-thumbs img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #e5e7eb;
}

.pdp-main img {
  width: 420px;
  border-radius: 14px;
  background: #f6f9ff;
}

/* =========================
   RIGHT CONTENT (FIXED PROFESSIONAL)
========================= */

.pdp-content {
  flex: 1;
}

.pdp-badge {
  font-size: 12px;
  color: #1d4ed8;
}

.pdp-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
}

.pdp-desc {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

/* FEATURES */
.pdp-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pdp-feature strong {
  display: block;
  font-size: 14px;
  color: #0f172a;
}

.pdp-feature span {
  font-size: 12px;
  color: #64748b;
}

/* BUTTON */
.pdp-btn {
  width: 100%;
  padding: 12px;
  margin-top: 20px;

  background: #0b2a6f;
  color: #fff;
  border: none;
  border-radius: 10px;
}

/* =========================
   TABS (FIXED WORKING)
========================= */

.pdp-tabs {
  display: flex;
  gap: 25px;
  margin-top: 40px;
  border-bottom: 1px solid #e5e7eb;
}

.pdp-tab {
  padding: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #64748b;
}

.pdp-tab.active {
  color: #1d4ed8;
  border-bottom: 2px solid #1d4ed8;
}

/* TAB CONTENT */
.pdp-panel {
  display: none;
  padding: 20px 0;
  font-size: 14px;
  color: #64748b;
}

.pdp-panel.active {
  display: block;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .pdp-layout {
    flex-direction: column;
  }

  .pdp-main img {
    width: 100%;
  }
}

/* =========================
   GLOBAL MOBILE FIXES
========================= */

@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  /* prevent all flex overflow issues */
  .tm-hero__container,
  .pdp-layout,
  .tm-order-card,
  .tm-contact-hero__container,
  .tm-about-hero__container {
    flex-direction: column !important;
  }

  /* GENERAL TEXT SCALING */
  h1, .tm-hero__title, .pdp-title {
    font-size: 26px !important;
    line-height: 1.2;
  }

  p, .tm-hero__text, .pdp-desc {
    font-size: 14px !important;
  }

  /* HERO FIX */
  .tm-hero {
    height: auto !important;
    padding: 40px 15px;
  }

  .tm-hero__left {
    padding-left: 20px !important;
    text-align: center;
  }

  .tm-hero__right {
    width: 100% !important;
  }

  /* FEATURE STRIP FIX */
  .tm-feature-card-strip {
    flex-wrap: wrap !important;
    gap: 10px;
    justify-content: center;
  }

  .tm-feature-card-dark {
    min-width: 100% !important;
    max-width: 100% !important;
  }

  /* PRODUCT GRID FIX */
  .exn-products__grid,
  .tm-serve__grid {
    grid-template-columns: 1fr !important;
  }

  /* CTA FIX */
  .tm-cta__container {
    flex-direction: column !important;
    text-align: center;
  }

  /* FOOTER FIX */
  .tm-footer__top {
    grid-template-columns: 1fr !important;
  }

  /* PDP FIX */
  .pdp-gallery {
    flex-direction: column !important;
    align-items: center;
  }

  .pdp-main img {
    width: 100% !important;
    max-width: 100%;
  }

  .pdp-thumbs {
    flex-direction: row !important;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* BUTTONS */
  .tm-hero__buttons {
    justify-content: center;
  }

}

@media (max-width: 768px) {

  /* =========================
     HERO FIX (MAIN)
  ========================= */

@media (max-width: 768px) {

  /* =========================
     HERO BASE LAYOUT
  ========================= */

  .tm-hero {
    padding: 25px 15px 40px;
    background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
  }

  .tm-hero__container {
    flex-direction: column !important;
    gap: 20px;
  }

  /* =========================
     LEFT SECTION → CARD STYLE
  ========================= */

  .tm-hero__left {
    text-align: center;
    padding: 0 !important;
  }

  .tm-hero__content {
    background: #ffffff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  }

  /* BADGE */
  .tm-hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 50px;
    background: #e6fffb;
    margin-bottom: 12px;
  }

  /* TITLE */
  .tm-hero__title {
    font-size: 24px !important;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .tm-hero__title span {
    display: inline;
  }

  /* TEXT */
  .tm-hero__text {
    font-size: 14px !important;
    line-height: 1.5;
    color: #64748b;
  }

  /* =========================
     BUTTONS → FULL WIDTH CTA STYLE
  ========================= */

  .tm-hero__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
  }

  .tm-btn-primary,
  .tm-btn-outline {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
  }

  /* PRIMARY CTA POP */
  .tm-btn-primary {
    background: #14b8a6;
    color: #fff;
    font-weight: 600;
  }

  /* =========================
     RIGHT IMAGE → FEATURE CARD STYLE
  ========================= */

  .tm-hero__right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .tm-hero__right img {
    width: 100%;
    max-height: 260px;
    object-fit: contain;
    border-radius: 16px;
    background: #fff;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

}

  /* =========================
     FEATURES STRIP (HIDE ON MOBILE)
  ========================= */

  .tm-features {
    display: none !important;
  }

}

@media (max-width: 991px) {

  /* CENTER ENTIRE NAV CONTENT */
  #tmNavMenu {
    text-align: center;
    padding: 20px 0;
  }

  /* NAV LINKS STACK */
  .tm-navbar__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .tm-navbar__link {
    display: block;
    padding: 6px 0;
  }

  /* FIX CTA BUTTON CENTER */
  .tm-navbar__cta {
    display: inline-block !important;
    margin: 15px auto 0 auto !important;
    text-align: center;

    /* make it behave like centered button */
    width: fit-content;
  }

  /* OPTIONAL: make collapse look cleaner */
  .navbar-collapse {
    background: #fff;
    border-top: 1px solid #eef2f6;
  }
}

@media (max-width: 768px) {

  /* =========================
     HERO STACK FIX
  ========================= */

  .tm-about-hero__container {
    flex-direction: column !important;
    gap: 25px;
    text-align: center;
  }

  .tm-about-hero__left {
    padding: 40px 20px !important;
  }

  .tm-about-hero__title {
    font-size: 28px !important;
    line-height: 1.3;
  }

  .tm-about-hero__text {
    font-size: 14px !important;
    max-width: 100% !important;
    margin: 10px auto;
  }

  /* =========================
     FEATURE ROW FIX
  ========================= */

  .tm-about-hero-features-row {
    flex-wrap: wrap !important;
    justify-content: center;
    gap: 12px;
  }

  .tm-about-feature-item {
    flex: 1 1 45%;
    justify-content: center;
    text-align: center;
    padding: 10px;
  }

  .tm-about-feature-icon svg {
    width: 30px !important;
    height: 30px !important;
  }

  .tm-about-feature-text {
    font-size: 12px;
  }

  /* =========================
     IMAGE FIX
  ========================= */

  .tm-about-hero__right img {
    width: 100%;
    height: auto;
    min-height: unset !important;
    border-radius: 12px;
  }

  .tm-about-hero__right::before {
    display: none !important; /* remove fade for mobile clean view */
  }

}

@media (max-width: 768px) {

  /* =========================
     MAIN STACK FIX
  ========================= */

  .tm-about-story__container {
    flex-direction: column !important;
    gap: 25px;
    text-align: center;
    padding: 0 15px;
  }

  /* =========================
     IMAGE FIX
  ========================= */

  .tm-about-story__left {
    width: 100%;
  }

  .tm-about-story__left img {
    width: 100% !important;
    height: 240px !important;
    object-fit: cover;
    border-radius: 14px;
  }

  /* =========================
     CONTENT FIX
  ========================= */

  .tm-about-story__right {
    text-align: center;
    padding: 0 10px;
  }

  .tm-about-story__title {
    font-size: 24px !important;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .tm-about-story__text {
    font-size: 14px !important;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .tm-about-story__badge {
    display: inline-block;
    margin-bottom: 8px;
  }

}

@media (max-width: 768px) {

  /* =========================
     MAIN LAYOUT FIX
  ========================= */

  .tm-contact-hero__container {
    flex-direction: column !important;
    gap: 25px;
  }

  .tm-contact-hero__left {
    padding: 40px 20px !important;
    text-align: center;
    max-width: 100% !important;
  }

  .tm-contact-hero__title {
    font-size: 26px !important;
    line-height: 1.3;
  }

  .tm-contact-hero__text {
    font-size: 14px !important;
    margin: 10px auto;
  }

  /* =========================
     FEATURES → 2 COLUMN GRID (IMPORTANT FIX)
  ========================= */

  .tm-contact-hero__features {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
  }

  .tm-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .tm-feature svg {
    width: 22px;
    height: 22px;
  }

  .tm-feature h4 {
    font-size: 12px;
  }

  .tm-feature p {
    font-size: 11px;
  }

  /* =========================
     IMAGE FIX
  ========================= */

  .tm-contact-hero__right img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
  }

  .tm-contact-hero__right::before {
    display: none !important;
  }

}

/* =========================
   TERMS & CONDITIONS - MODERN DESIGN
========================= */

/* Section background */
.tm-terms {
  padding: 60px 20px;
  background: #f9fafb;
  font-family: "Arial", sans-serif;
  color: #1f2937;
  line-height: 1.6;
}

/* Container */
.tm-terms__container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Header */
.tm-terms__header {
  text-align: center;
  margin-bottom: 40px;
}

.tm-terms__header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.tm-terms__header p {
  font-size: 14px;
  color: #64748b;
}

/* Card */
.tm-terms__card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Headings */
.tm-terms__card h2 {
  font-size: 20px;
  font-weight: 600;
  color: #1d4ed8; /* accent color for headings */
  margin-top: 20px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

/* Add modern icon bullet for headings */
.tm-terms__card h2::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1d4ed8;
  font-size: 24px;
  line-height: 1;
  top: 0;
}

/* Paragraphs */
.tm-terms__card p {
  font-size: 14px;
  color: #4b5563;
  margin: 0;
}

/* Links in card */
.tm-terms__card a {
  color: #1d4ed8;
  text-decoration: underline;
  transition: color 0.3s;
}

.tm-terms__card a:hover {
  color: #0d3b94;
}

/* Contact info */
.tm-terms__card h2:last-of-type {
  margin-top: 30px;
}

.tm-terms__card p:last-of-type {
  font-weight: 500;
  color: #0f172a;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tm-terms {
    padding: 40px 15px;
  }

  .tm-terms__header h1 {
    font-size: 28px;
  }

  .tm-terms__card {
    padding: 30px 20px;
  }

  .tm-terms__card h2 {
    font-size: 18px;
  }
}

.tm-privacy {
  background: #f6f9ff;
  padding: 60px 15px;
}

.tm-privacy__container {
  max-width: 1100px;
  margin: auto;
}

.tm-privacy__header {
  text-align: center;
  margin-bottom: 25px;
}

.tm-privacy__header h1 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
}

.tm-privacy__header p {
  font-size: 14px;
  color: #64748b;
  margin-top: 5px;
}

/* CARD */
.tm-privacy__card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  line-height: 1.7;
}

/* HEADINGS */
.tm-privacy__card h2 {
  font-size: 18px;
  margin-top: 22px;
  color: #0f172a;
}

/* TEXT */
.tm-privacy__card p,
.tm-privacy__card li {
  font-size: 14px;
  color: #64748b;
}

/* MOBILE */
@media (max-width: 768px) {
  .tm-privacy__card {
    padding: 18px;
  }

  .tm-privacy__header h1 {
    font-size: 24px;
  }
}

.tm-thankyou {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f9ff;
  padding: 60px 15px;
}

.tm-thankyou__container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

/* ICON */
.tm-thankyou__icon {
  width: 80px;
  height: 80px;
  margin: auto;
  background: #e6fffb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tm-thankyou__icon svg {
  width: 40px;
  height: 40px;
}

/* TITLE */
.tm-thankyou__title {
  font-size: 34px;
  margin-top: 20px;
  color: #0f172a;
}

/* TEXT */
.tm-thankyou__text {
  font-size: 16px;
  color: #64748b;
  margin-top: 10px;
  line-height: 1.6;
}

/* CARD */
.tm-thankyou__card {
  background: #fff;
  padding: 20px;
  margin-top: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: left;
}

.tm-thankyou__card ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.tm-thankyou__card li {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 6px;
}

/* BUTTONS */
.tm-thankyou__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 25px;
  flex-wrap: wrap;
}

/* CONTACT */
.tm-thankyou__contact {
  margin-top: 25px;
  font-size: 14px;
  color: #64748b;
}

/* MOBILE */
@media (max-width: 768px) {
  .tm-thankyou__title {
    font-size: 26px;
  }

  .tm-thankyou__text {
    font-size: 14px;
  }
}

/* =========================
   UNIQUE MODERN HERO SLIDER
========================= */

.tm-modern-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(20,184,166,0.16), transparent 32%),
    radial-gradient(circle at bottom right, rgba(29,78,216,0.14), transparent 35%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 45%, #edf7ff 100%);
}

.tm-modern-slider {
  position: relative;
  min-height: 680px;
}

.tm-modern-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  padding: 70px 80px 90px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px);
  transition: all 0.8s ease;
}

.tm-modern-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 2;
}

.tm-modern-content {
  max-width: 620px;
  position: relative;
  z-index: 3;
}

.tm-modern-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(20,184,166,0.25);
  box-shadow: 0 12px 35px rgba(15,23,42,0.06);
  backdrop-filter: blur(14px);
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
}

.tm-modern-badge i {
  color: #14b8a6;
}

.tm-modern-content h1 {
  margin: 22px 0 18px;
  font-size: 58px;
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -1.8px;
  color: #0f172a;
}

.tm-modern-content h1 span {
  display: block;
  background: linear-gradient(135deg, #1d4ed8, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tm-modern-content p {
  max-width: 530px;
  color: #64748b;
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 30px;
}

.tm-modern-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.tm-modern-btn-primary,
.tm-modern-btn-light {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.tm-modern-btn-primary {
  background: linear-gradient(135deg, #1d4ed8, #14b8a6);
  color: #ffffff;
  box-shadow: 0 16px 35px rgba(29,78,216,0.24);
}

.tm-modern-btn-primary:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

.tm-modern-btn-light {
  background: #ffffff;
  color: #0b2a6f;
  border: 1px solid #dbeafe;
  box-shadow: 0 12px 30px rgba(15,23,42,0.06);
}

.tm-modern-btn-light:hover {
  color: #14b8a6;
  transform: translateY(-3px);
}

.tm-modern-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 560px;
}

.tm-modern-stats div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(226,232,240,0.9);
  box-shadow: 0 15px 35px rgba(15,23,42,0.05);
  backdrop-filter: blur(14px);
}

.tm-modern-stats strong {
  display: block;
  color: #0b2a6f;
  font-size: 20px;
  line-height: 1;
}

.tm-modern-stats span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #64748b;
}

.tm-modern-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tm-image-frame {
  position: relative;
  width: min(520px, 100%);
  height: 520px;
  border-radius: 42px;
  padding: 14px;
  background: linear-gradient(135deg, rgba(29,78,216,0.25), rgba(20,184,166,0.25));
  box-shadow: 0 35px 80px rgba(15,23,42,0.16);
  transform: rotate(2deg);
  overflow: hidden;
}

.tm-image-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.55);
  z-index: 2;
  pointer-events: none;
}

.tm-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 32px;
  display: block;
  transform: scale(1.03);
}

.tm-float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(226,232,240,0.9);
  box-shadow: 0 18px 45px rgba(15,23,42,0.14);
  backdrop-filter: blur(14px);
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  animation: tmFloat 3.5s ease-in-out infinite;
}

.tm-float-card i {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(20,184,166,0.12);
  color: #14b8a6;
}

.tm-card-one {
  top: 72px;
  left: 10px;
}

.tm-card-two {
  bottom: 85px;
  right: 5px;
  animation-delay: 0.8s;
}

.tm-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  opacity: 0.75;
  z-index: 1;
}

.tm-orb-1 {
  width: 220px;
  height: 220px;
  right: 42%;
  top: 70px;
  background: rgba(20,184,166,0.10);
}

.tm-orb-2 {
  width: 280px;
  height: 280px;
  right: -80px;
  bottom: -80px;
  background: rgba(29,78,216,0.10);
}

.tm-modern-controls {
  position: absolute;
  z-index: 8;
  left: 80px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.tm-modern-prev,
.tm-modern-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #0b2a6f;
  box-shadow: 0 14px 35px rgba(15,23,42,0.12);
  cursor: pointer;
  transition: 0.3s ease;
}

.tm-modern-prev:hover,
.tm-modern-next:hover {
  background: #14b8a6;
  color: #ffffff;
}

.tm-modern-dots {
  display: flex;
  gap: 9px;
}

.tm-modern-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  transition: 0.3s ease;
}

.tm-modern-dots button.active {
  width: 34px;
  background: #14b8a6;
}

@keyframes tmFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .tm-modern-hero,
  .tm-modern-slider {
    min-height: auto;
  }

  .tm-modern-slide {
    position: relative;
    display: none;
    grid-template-columns: 1fr;
    padding: 45px 20px 100px;
    gap: 25px;
  }

  .tm-modern-slide.active {
    display: grid;
  }

  .tm-modern-content {
    text-align: center;
    margin: auto;
  }

  .tm-modern-badge,
  .tm-modern-actions {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .tm-modern-content h1 {
    font-size: 36px;
  }

  .tm-modern-content p {
    font-size: 15px;
  }

  .tm-modern-stats {
    grid-template-columns: 1fr;
  }

  .tm-modern-visual {
    min-height: auto;
  }

  .tm-image-frame {
    height: 360px;
    border-radius: 28px;
  }

  .tm-image-frame img {
    border-radius: 22px;
  }

  .tm-float-card {
    display: none;
  }

  .tm-modern-controls {
    left: 50%;
    transform: translateX(-50%);
    bottom: 32px;
  }
}

@media (max-width: 576px) {
  .tm-modern-content h1 {
    font-size: 30px;
  }

  .tm-modern-actions {
    flex-direction: column;
  }

  .tm-modern-btn-primary,
  .tm-modern-btn-light {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   PREMIUM FEATURE STRIP
========================= */

.tm-premium-features {
  position: relative;
  z-index: 20;
  padding: 0 20px;
  margin-top: -55px;
}

.tm-premium-features__container {
  max-width: 1220px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;

  padding: 18px;

  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;

  box-shadow: 0 24px 65px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(18px);

  overflow: hidden;
}

.tm-premium-features__container::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at top left, rgba(20,184,166,0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(29,78,216,0.16), transparent 30%);

  pointer-events: none;
}

.tm-premium-feature-card {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 13px;

  padding: 18px 14px;
  border-radius: 18px;

  background: linear-gradient(135deg, #ffffff, #f8fbff);
  border: 1px solid #eef2ff;

  transition: 0.35s ease;
  overflow: hidden;

  animation: tmFeatureUp 0.8s ease both;
}

.tm-premium-feature-card:nth-child(1) { animation-delay: 0.05s; }
.tm-premium-feature-card:nth-child(2) { animation-delay: 0.15s; }
.tm-premium-feature-card:nth-child(3) { animation-delay: 0.25s; }
.tm-premium-feature-card:nth-child(4) { animation-delay: 0.35s; }
.tm-premium-feature-card:nth-child(5) { animation-delay: 0.45s; }

.tm-premium-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29,78,216,0.08), rgba(20,184,166,0.10));
  opacity: 0;
  transition: 0.35s ease;
}

.tm-premium-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(20,184,166,0.35);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.tm-premium-feature-card:hover::after {
  opacity: 1;
}

.tm-premium-feature-icon {
  position: relative;
  z-index: 2;

  width: 48px;
  height: 48px;
  min-width: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 15px;
  background: linear-gradient(135deg, rgba(29,78,216,0.12), rgba(20,184,166,0.14));
  color: #14b8a6;

  font-size: 20px;

  transition: 0.35s ease;
}

.tm-premium-feature-card:hover .tm-premium-feature-icon {
  background: linear-gradient(135deg, #1d4ed8, #14b8a6);
  color: #ffffff;
  transform: rotate(-6deg) scale(1.08);
}

.tm-premium-feature-card span,
.tm-premium-feature-card h4 {
  position: relative;
  z-index: 2;
}

.tm-premium-feature-card span {
  display: block;
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.tm-premium-feature-card h4 {
  margin: 3px 0 0;
  font-size: 14px;
  color: #0f172a;
  font-weight: 800;
  line-height: 1.2;
}

@keyframes tmFeatureUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .tm-premium-features__container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .tm-premium-features {
    margin-top: 25px;
  }

  .tm-premium-features__container {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .tm-premium-feature-card {
    padding: 16px;
  }
}

/* =========================
   BEST PRODUCT CATEGORY SHOWCASE
========================= */

.tm-category-showcase {
  position: relative;
  padding: 95px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(20,184,166,0.10), transparent 32%),
    radial-gradient(circle at bottom right, rgba(29,78,216,0.11), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.tm-category-bg-shape {
  position: absolute;
  top: 80px;
  right: -90px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(20,184,166,0.10);
  filter: blur(2px);
}

.tm-category-header {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.tm-category-header span {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 14px;
  border-radius: 999px;

  background: rgba(20,184,166,0.10);
  border: 1px solid rgba(20,184,166,0.22);

  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
}

.tm-category-header span i {
  color: #14b8a6;
}

.tm-category-header h2 {
  margin: 16px 0 10px;
  color: #0f172a;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.tm-category-header p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
}

.tm-category-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.tm-category-card {
  position: relative;
  min-height: 245px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 12px;
  border-radius: 24px;

  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(226,232,240,0.95);

  text-decoration: none;
  overflow: hidden;

  box-shadow: 0 18px 45px rgba(15,23,42,0.06);
  transition: 0.35s ease;

  animation: tmCategoryUp 0.8s ease both;
}

.tm-category-card:nth-child(1) { animation-delay: 0.05s; }
.tm-category-card:nth-child(2) { animation-delay: 0.10s; }
.tm-category-card:nth-child(3) { animation-delay: 0.15s; }
.tm-category-card:nth-child(4) { animation-delay: 0.20s; }
.tm-category-card:nth-child(5) { animation-delay: 0.25s; }
.tm-category-card:nth-child(6) { animation-delay: 0.30s; }
.tm-category-card:nth-child(7) { animation-delay: 0.35s; }
.tm-category-card:nth-child(8) { animation-delay: 0.40s; }
.tm-category-card:nth-child(9) { animation-delay: 0.45s; }
.tm-category-card:nth-child(10) { animation-delay: 0.50s; }
.tm-category-card:nth-child(11) { animation-delay: 0.55s; }
.tm-category-card:nth-child(12) { animation-delay: 0.60s; }

.tm-category-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(135deg, rgba(29,78,216,0.10), rgba(20,184,166,0.12));
  opacity: 0;
  transition: 0.35s ease;
}

.tm-category-card:hover {
  transform: translateY(-10px);
  border-color: rgba(20,184,166,0.36);
  box-shadow: 0 28px 70px rgba(15,23,42,0.14);
}

.tm-category-card:hover::before {
  opacity: 1;
}

.tm-category-img {
  position: relative;
  z-index: 2;

  height: 118px;
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

   background: #fdfdfd !important;
  overflow: hidden;
}

.tm-category-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  background: #fdfdfd;
}

.tm-category-card:hover .tm-category-img img {
  transform: scale(1.08) rotate(-2deg);
}

.tm-category-content {
  position: relative;
  z-index: 2;

  margin-top: 12px;
  padding: 14px 12px 16px;

  border-radius: 18px;
  background: linear-gradient(135deg, #eef6ff, #ecfffb);
  border: 1px solid rgba(20,184,166,0.14);
}

.tm-category-content > i {
  width: 36px;
  height: 36px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 10px;
  border-radius: 12px;

  background: linear-gradient(135deg, rgba(29,78,216,0.12), rgba(20,184,166,0.14));
  color: #14b8a6;

  font-size: 15px;
  transition: 0.35s ease;
}

.tm-category-card:hover .tm-category-content {
  background: linear-gradient(135deg, #e8f1ff, #e6fffb);
  border-color: rgba(20,184,166,0.28);
}

.tm-category-card:hover .tm-category-content > i {
  background: linear-gradient(135deg, #1d4ed8, #14b8a6);
  color: #ffffff;
  transform: rotate(-8deg);
}

.tm-category-content h3 {
  margin: 0;
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.tm-category-content span {
  display: block;
  margin-top: 5px;
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
}

.tm-category-arrow {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;

  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #ffffff;
  color: #0b2a6f;

  box-shadow: 0 10px 25px rgba(15,23,42,0.10);

  opacity: 0;
  transform: translateX(-8px);
  transition: 0.35s ease;
}

.tm-category-card:hover .tm-category-arrow {
  opacity: 1;
  transform: translateX(0);
}

.tm-category-footer {
  margin-top: 38px;
  text-align: center;
}

.tm-category-footer a {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 14px 24px;
  border-radius: 14px;

  background: linear-gradient(135deg, #1d4ed8, #14b8a6);
  color: #ffffff;

  text-decoration: none;
  font-size: 14px;
  font-weight: 800;

  box-shadow: 0 16px 35px rgba(29,78,216,0.22);
  transition: 0.3s ease;
}

.tm-category-footer a:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

@keyframes tmCategoryUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .tm-category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .tm-category-showcase {
    padding: 70px 0;
  }

  .tm-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tm-category-header h2 {
    font-size: 30px;
  }
}

@media (max-width: 650px) {
  .tm-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .tm-category-card {
    min-height: 225px;
    border-radius: 20px;
  }

  .tm-category-img {
    height: 250px;
  }
}

@media (max-width: 420px) {
  .tm-category-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   UNIQUE TRUST SECTION
========================= */

.tm-trust-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, #061a3a 0%, #0b2f6a 55%, #0f766e 100%);
}

.tm-trust-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.45;
}

.tm-trust-bg-1 {
  width: 260px;
  height: 260px;
  background: rgba(20,184,166,0.28);
  top: -80px;
  left: -70px;
}

.tm-trust-bg-2 {
  width: 320px;
  height: 320px;
  background: rgba(29,78,216,0.28);
  right: -100px;
  bottom: -120px;
}

.tm-trust-layout {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: 55px;
  align-items: center;
}

.tm-trust-left {
  animation: tmTrustLeft 0.9s ease both;
}

.tm-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 9px 15px;
  border-radius: 999px;

  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);

  color: #ffffff;
  font-size: 13px;
  font-weight: 700;

  backdrop-filter: blur(12px);
}

.tm-trust-badge i {
  color: #5eead4;
}

.tm-trust-left h2 {
  margin: 22px 0 16px;
  color: #ffffff;
  font-size: 44px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -1px;
}

.tm-trust-left h2 span {
  display: block;
  color: #5eead4;
}

.tm-trust-left p {
  max-width: 500px;
  color: #dbeafe;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.tm-trust-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 14px 22px;
  border-radius: 14px;

  background: #ffffff;
  color: #0b2a6f;

  text-decoration: none;
  font-size: 14px;
  font-weight: 800;

  box-shadow: 0 16px 38px rgba(0,0,0,0.18);
  transition: 0.3s ease;
}

.tm-trust-btn:hover {
  color: #ffffff;
  background: #14b8a6;
  transform: translateY(-3px);
}

.tm-trust-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.tm-trust-card {
  position: relative;
  min-height: 220px;

  padding: 24px;
  border-radius: 26px;

  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);

  box-shadow: 0 22px 60px rgba(0,0,0,0.16);
  backdrop-filter: blur(18px);

  overflow: hidden;
  transition: 0.35s ease;

  animation: tmTrustCard 0.85s ease both;
}

.tm-trust-card:nth-child(1) { animation-delay: 0.08s; }
.tm-trust-card:nth-child(2) { animation-delay: 0.18s; }
.tm-trust-card:nth-child(3) { animation-delay: 0.28s; }
.tm-trust-card:nth-child(4) { animation-delay: 0.38s; }

.tm-trust-card::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -35px;
  top: -35px;

  border-radius: 50%;
  background: rgba(94,234,212,0.14);
  transition: 0.35s ease;
}

.tm-trust-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.15);
  border-color: rgba(94,234,212,0.38);
}

.tm-trust-card:hover::before {
  transform: scale(1.4);
}

.tm-trust-icon {
  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;
  background: rgba(255,255,255,0.14);
  color: #5eead4;

  font-size: 23px;
  margin-bottom: 18px;

  transition: 0.35s ease;
}

.tm-trust-card:hover .tm-trust-icon {
  background: #14b8a6;
  color: #ffffff;
  transform: rotate(-8deg) scale(1.08);
}

.tm-trust-card h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 850;
  margin-bottom: 10px;
}

.tm-trust-card p {
  color: #dbeafe;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

@keyframes tmTrustLeft {
  from {
    opacity: 0;
    transform: translateX(-35px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes tmTrustCard {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 991px) {
  .tm-trust-section {
    padding: 75px 0;
  }

  .tm-trust-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .tm-trust-left {
    text-align: center;
  }

  .tm-trust-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .tm-trust-left h2 {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .tm-trust-right {
    grid-template-columns: 1fr;
  }

  .tm-trust-card {
    min-height: auto;
  }

  .tm-trust-left h2 {
    font-size: 30px;
  }
}

/* =========================
   PROFESSIONAL CTA WITHOUT IMAGE
========================= */

.tm-pro-cta {
  padding: 80px 0;
  background: #f6f9ff;
}

.tm-pro-cta__box {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;

  padding: 42px;
  border-radius: 28px;

  background: linear-gradient(135deg, #061a3a, #0b2f6a 65%, #0f766e);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);

  animation: tmCtaFadeUp 0.8s ease both;
}

.tm-pro-cta__box::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;

  width: 240px;
  height: 240px;
  border-radius: 50%;

  background: rgba(20, 184, 166, 0.25);
}

.tm-pro-cta__box::after {
  content: "";
  position: absolute;
  left: 35%;
  bottom: -120px;

  width: 260px;
  height: 260px;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);
}

.tm-pro-cta__icon {
  position: relative;
  z-index: 2;

  width: 74px;
  height: 74px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 24px;

  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.22);

  color: #5eead4;
  font-size: 30px;

  backdrop-filter: blur(14px);
}

.tm-pro-cta__content {
  position: relative;
  z-index: 2;
}

.tm-pro-cta__content span {
  display: inline-block;
  margin-bottom: 8px;

  color: #5eead4;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.tm-pro-cta__content h2 {
  margin: 0;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 900;
}

.tm-pro-cta__content p {
  max-width: 650px;
  margin: 10px 0 0;

  color: #dbeafe;
  font-size: 15px;
  line-height: 1.7;
}

.tm-pro-cta__actions {
  position: relative;
  z-index: 2;

  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tm-pro-cta__primary,
.tm-pro-cta__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 13px 20px;
  border-radius: 14px;

  text-decoration: none;
  font-size: 14px;
  font-weight: 800;

  transition: 0.3s ease;
  white-space: nowrap;
}

.tm-pro-cta__primary {
  background: #ffffff;
  color: #0b2a6f;
}

.tm-pro-cta__secondary {
  background: rgba(255,255,255,0.10);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.22);
}

.tm-pro-cta__primary:hover {
  color: #ffffff;
  background: #14b8a6;
  transform: translateY(-3px);
}

.tm-pro-cta__secondary:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}

@keyframes tmCtaFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .tm-pro-cta__box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tm-pro-cta__icon,
  .tm-pro-cta__actions {
    margin: auto;
  }
}

/* =========================
   FOOTER MOBILE COMPACT GRID
========================= */

@media (max-width: 576px) {
  .tm-footer__top {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 22px 16px;
  }

  .tm-footer__brand,
  .tm-footer__col:last-child {
    grid-column: 1 / -1;
  }

  .tm-footer__col h4 {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .tm-footer__col a,
  .tm-footer__col p {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .tm-footer {
    padding: 42px 16px 18px;
  }
}

/* =========================
   SIMPLE MODERN PRODUCT HERO
========================= */

.tm-simple-product-hero {
  padding: 70px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 55%, #eef7ff 100%);
  overflow: hidden;
}

.tm-simple-product-hero__inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 45px;
  align-items: center;
}

.tm-simple-product-hero__content {
  animation: tmSimpleHeroLeft 0.8s ease both;
}

.tm-simple-product-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 14px;
  border-radius: 999px;

  background: rgba(20,184,166,0.10);
  border: 1px solid rgba(20,184,166,0.22);

  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
}

.tm-simple-product-hero__badge i {
  color: #14b8a6;
}

.tm-simple-product-hero h1 {
  margin: 18px 0 12px;
  max-width: 620px;

  color: #0f172a;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -1px;
}

.tm-simple-product-hero p {
  max-width: 560px;
  color: #64748b;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.tm-simple-product-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tm-simple-product-hero__features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 14px;
  border-radius: 12px;

  background: #ffffff;
  border: 1px solid #e5e7eb;

  color: #0f172a;
  font-size: 13px;
  font-weight: 700;

  box-shadow: 0 10px 25px rgba(15,23,42,0.05);
}

.tm-simple-product-hero__features i {
  color: #14b8a6;
}

.tm-simple-product-hero__image {
  height: 390px;
  border-radius: 28px;
  overflow: hidden;

  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15,23,42,0.12);

  animation: tmSimpleHeroRight 0.8s ease both;
}

.tm-simple-product-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@keyframes tmSimpleHeroLeft {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes tmSimpleHeroRight {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .tm-simple-product-hero {
    padding: 50px 0;
  }

  .tm-simple-product-hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .tm-simple-product-hero h1 {
    font-size: 34px;
    margin-left: auto;
    margin-right: auto;
  }

  .tm-simple-product-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .tm-simple-product-hero__features {
    justify-content: center;
  }

  .tm-simple-product-hero__image {
    height: 300px;
  }
}

/* =========================
   MODERN PRODUCTS CTA
========================= */

.tm-products-cta {
  padding: 75px 0;
  background: #ffffff;
}

.tm-products-cta__box {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  padding: 42px;
  border-radius: 28px;

  background: linear-gradient(135deg, #061a3a, #0b2f6a 60%, #0f766e);
  box-shadow: 0 24px 65px rgba(15, 23, 42, 0.18);
}

.tm-products-cta__box::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(20,184,166,0.28);
}

.tm-products-cta__content,
.tm-products-cta__actions {
  position: relative;
  z-index: 2;
}

.tm-products-cta__content span {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 10px;
  color: #5eead4;

  font-size: 13px;
  font-weight: 800;
}

.tm-products-cta__content h2 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
}

.tm-products-cta__content p {
  max-width: 620px;
  margin: 10px 0 0;
  color: #dbeafe;
  font-size: 15px;
  line-height: 1.7;
}

.tm-products-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tm-products-cta__primary,
.tm-products-cta__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 13px 20px;
  border-radius: 14px;

  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;

  transition: 0.3s ease;
}

.tm-products-cta__primary {
  background: #ffffff;
  color: #0b2a6f;
}

.tm-products-cta__secondary {
  color: #ffffff;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
}

.tm-products-cta__primary:hover {
  background: #14b8a6;
  color: #ffffff;
  transform: translateY(-3px);
}

.tm-products-cta__secondary:hover {
  background: rgba(255,255,255,0.18);
  color: #ffffff;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .tm-products-cta__box {
    flex-direction: column;
    text-align: center;
    padding: 32px 22px;
  }

  .tm-products-cta__actions {
    justify-content: center;
  }
}

/* =========================
   SIMPLE MODERN ABOUT HERO
========================= */

.tm-simple-about-hero {
  padding: 70px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 55%, #eef7ff 100%);
  overflow: hidden;
}

.tm-simple-about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 45px;
  align-items: center;
}

.tm-simple-about-hero__content {
  animation: tmAboutHeroLeft 0.8s ease both;
}

.tm-simple-about-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 14px;
  border-radius: 999px;

  background: rgba(20,184,166,0.10);
  border: 1px solid rgba(20,184,166,0.22);

  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
}

.tm-simple-about-hero__badge i {
  color: #14b8a6;
}

.tm-simple-about-hero h1 {
  margin: 18px 0 12px;
  max-width: 650px;

  color: #0f172a;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -1px;
}

.tm-simple-about-hero p {
  max-width: 570px;
  color: #64748b;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.tm-simple-about-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tm-simple-about-hero__features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 14px;
  border-radius: 12px;

  background: #ffffff;
  border: 1px solid #e5e7eb;

  color: #0f172a;
  font-size: 13px;
  font-weight: 700;

  box-shadow: 0 10px 25px rgba(15,23,42,0.05);
}

.tm-simple-about-hero__features i {
  color: #14b8a6;
}

.tm-simple-about-hero__image {
  height: 390px;
  border-radius: 28px;
  overflow: hidden;

  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15,23,42,0.12);

  animation: tmAboutHeroRight 0.8s ease both;
}

.tm-simple-about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@keyframes tmAboutHeroLeft {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes tmAboutHeroRight {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .tm-simple-about-hero {
    padding: 50px 0;
  }

  .tm-simple-about-hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .tm-simple-about-hero h1 {
    font-size: 34px;
    margin-left: auto;
    margin-right: auto;
  }

  .tm-simple-about-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .tm-simple-about-hero__features {
    justify-content: center;
  }

  .tm-simple-about-hero__image {
    height: 300px;
  }
}

/* =========================
   MODERN ABOUT STORY
========================= */

.tm-modern-story {
  padding: 90px 0;
  background: #ffffff;
  overflow: hidden;
}

.tm-modern-story__layout {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 55px;
  align-items: center;
}

.tm-modern-story__visual {
  position: relative;
  animation: tmStoryLeft 0.85s ease both;
}

.tm-modern-story__image {
  height: 430px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 65px rgba(15,23,42,0.13);
}

.tm-modern-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tm-modern-story__card {
  position: absolute;
  right: -22px;
  bottom: 35px;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 16px 18px;
  border-radius: 20px;

  background: rgba(255,255,255,0.92);
  border: 1px solid #e5e7eb;

  box-shadow: 0 20px 45px rgba(15,23,42,0.14);
  backdrop-filter: blur(14px);

  animation: tmStoryFloat 3.5s ease-in-out infinite;
}

.tm-modern-story__card i {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;
  background: rgba(20,184,166,0.12);
  color: #14b8a6;
  font-size: 18px;
}

.tm-modern-story__card strong {
  display: block;
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
}

.tm-modern-story__card span {
  display: block;
  margin-top: 3px;
  color: #64748b;
  font-size: 12px;
}

.tm-modern-story__content {
  animation: tmStoryRight 0.85s ease both;
}

.tm-modern-story__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 14px;
  border-radius: 999px;

  background: rgba(20,184,166,0.10);
  border: 1px solid rgba(20,184,166,0.22);

  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
}

.tm-modern-story__badge i {
  color: #14b8a6;
}

.tm-modern-story__content h2 {
  margin: 18px 0 14px;
  color: #0f172a;
  font-size: 38px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.tm-modern-story__content p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.tm-modern-story__points {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.tm-modern-story__points span {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 14px;
  border-radius: 14px;

  background: #f8fbff;
  border: 1px solid #e5e7eb;

  color: #0f172a;
  font-size: 14px;
  font-weight: 700;

  transition: 0.3s ease;
}

.tm-modern-story__points span:hover {
  transform: translateX(8px);
  border-color: rgba(20,184,166,0.35);
  background: #f0fdfa;
}

.tm-modern-story__points i {
  color: #14b8a6;
}

@keyframes tmStoryLeft {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes tmStoryRight {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes tmStoryFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 991px) {
  .tm-modern-story {
    padding: 70px 0;
  }

  .tm-modern-story__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tm-modern-story__content {
    text-align: center;
  }

  .tm-modern-story__image {
    height: 320px;
  }

  .tm-modern-story__card {
    right: 18px;
    bottom: 18px;
  }

  .tm-modern-story__points span {
    justify-content: center;
  }
}

/* =========================
   MODERN MISSION VISION
========================= */

.tm-modern-mv {
  padding: 90px 0;
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
  overflow: hidden;
}

.tm-modern-mv__header {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
  animation: tmMvFadeUp 0.8s ease both;
}

.tm-modern-mv__header span {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 14px;
  border-radius: 999px;

  background: rgba(20,184,166,0.10);
  border: 1px solid rgba(20,184,166,0.22);

  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
}

.tm-modern-mv__header span i {
  color: #14b8a6;
}

.tm-modern-mv__header h2 {
  margin: 16px 0 0;
  color: #0f172a;
  font-size: 36px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.tm-modern-mv__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tm-modern-mv__card {
  position: relative;
  overflow: hidden;

  padding: 38px;
  border-radius: 28px;

  background: #ffffff;
  border: 1px solid #e5e7eb;

  box-shadow: 0 22px 60px rgba(15,23,42,0.08);
  transition: 0.35s ease;

  animation: tmMvCardUp 0.85s ease both;
}

.tm-modern-mv__card:nth-child(2) {
  animation-delay: 0.15s;
}

.tm-modern-mv__card::before {
  content: "";
  position: absolute;
  right: -55px;
  top: -55px;

  width: 160px;
  height: 160px;
  border-radius: 50%;

  background: rgba(20,184,166,0.12);
  transition: 0.35s ease;
}

.tm-modern-mv__card:hover {
  transform: translateY(-8px);
  border-color: rgba(20,184,166,0.32);
}

.tm-modern-mv__card:hover::before {
  transform: scale(1.25);
}

.tm-modern-mv__card-dark {
  background: linear-gradient(135deg, #061a3a, #0b2f6a 65%, #0f766e);
  border-color: transparent;
}

.tm-modern-mv__icon {
  position: relative;
  z-index: 2;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;
  border-radius: 18px;

  background: rgba(20,184,166,0.12);
  color: #14b8a6;

  font-size: 24px;
  transition: 0.35s ease;
}

.tm-modern-mv__card-dark .tm-modern-mv__icon {
  background: rgba(255,255,255,0.13);
  color: #5eead4;
}

.tm-modern-mv__card:hover .tm-modern-mv__icon {
  transform: rotate(-7deg) scale(1.08);
  background: #14b8a6;
  color: #ffffff;
}

.tm-modern-mv__card h3 {
  position: relative;
  z-index: 2;

  color: #0f172a;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 12px;
}

.tm-modern-mv__card p {
  position: relative;
  z-index: 2;

  color: #64748b;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

.tm-modern-mv__card-dark h3 {
  color: #ffffff;
}

.tm-modern-mv__card-dark p {
  color: #dbeafe;
}

@keyframes tmMvFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tmMvCardUp {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .tm-modern-mv {
    padding: 70px 0;
  }

  .tm-modern-mv__grid {
    grid-template-columns: 1fr;
  }

  .tm-modern-mv__header h2 {
    font-size: 28px;
  }

  .tm-modern-mv__card {
    padding: 28px;
  }
}

/* =========================
   MODERN CORE VALUES
========================= */

.tm-modern-core {
  padding: 90px 0;
  background: #ffffff;
  overflow: hidden;
}

.tm-modern-core__header {
  max-width: 700px;
  margin: 0 auto 42px;
  text-align: center;
  animation: tmCoreFadeUp 0.8s ease both;
}

.tm-modern-core__header span {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 14px;
  border-radius: 999px;

  background: rgba(20,184,166,0.10);
  border: 1px solid rgba(20,184,166,0.22);

  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
}

.tm-modern-core__header span i {
  color: #14b8a6;
}

.tm-modern-core__header h2 {
  margin: 16px 0 0;
  color: #0f172a;
  font-size: 36px;
  line-height: 1.18;
  font-weight: 900;
}

.tm-modern-core__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.tm-modern-core__card {
  position: relative;
  overflow: hidden;

  padding: 28px 20px;
  border-radius: 24px;

  background: linear-gradient(135deg, #ffffff, #f8fbff);
  border: 1px solid #e5e7eb;

  text-align: center;
  box-shadow: 0 18px 45px rgba(15,23,42,0.06);

  transition: 0.35s ease;
  animation: tmCoreCardUp 0.8s ease both;
}

.tm-modern-core__card:nth-child(1) { animation-delay: 0.05s; }
.tm-modern-core__card:nth-child(2) { animation-delay: 0.15s; }
.tm-modern-core__card:nth-child(3) { animation-delay: 0.25s; }
.tm-modern-core__card:nth-child(4) { animation-delay: 0.35s; }
.tm-modern-core__card:nth-child(5) { animation-delay: 0.45s; }

.tm-modern-core__card::before {
  content: "";
  position: absolute;
  inset: auto -40px -50px auto;

  width: 130px;
  height: 130px;
  border-radius: 50%;

  background: rgba(20,184,166,0.10);
  transition: 0.35s ease;
}

.tm-modern-core__card:hover {
  transform: translateY(-9px);
  border-color: rgba(20,184,166,0.35);
  box-shadow: 0 25px 65px rgba(15,23,42,0.12);
}

.tm-modern-core__card:hover::before {
  transform: scale(1.35);
}

.tm-modern-core__card > i {
  position: relative;
  z-index: 2;

  width: 56px;
  height: 56px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;
  border-radius: 18px;

  background: linear-gradient(135deg, rgba(29,78,216,0.12), rgba(20,184,166,0.14));
  color: #14b8a6;

  font-size: 22px;
  transition: 0.35s ease;
}

.tm-modern-core__card:hover > i {
  background: linear-gradient(135deg, #1d4ed8, #14b8a6);
  color: #ffffff;
  transform: rotate(-7deg) scale(1.08);
}

.tm-modern-core__card h3 {
  position: relative;
  z-index: 2;

  color: #0f172a;
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 9px;
}

.tm-modern-core__card p {
  position: relative;
  z-index: 2;

  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

@keyframes tmCoreFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tmCoreCardUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .tm-modern-core__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .tm-modern-core {
    padding: 70px 0;
  }

  .tm-modern-core__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tm-modern-core__header h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .tm-modern-core__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   MODERN ABOUT CTA
========================= */

.tm-about-cta {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  overflow: hidden;
}

.tm-about-cta__box {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  padding: 42px;
  border-radius: 28px;

  background: linear-gradient(135deg, #061a3a, #0b2f6a 60%, #0f766e);
  box-shadow: 0 24px 65px rgba(15, 23, 42, 0.18);

  animation: tmAboutCtaUp 0.85s ease both;
}

.tm-about-cta__box::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(20,184,166,0.28);
}

.tm-about-cta__content,
.tm-about-cta__actions {
  position: relative;
  z-index: 2;
}

.tm-about-cta__content span {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 10px;
  color: #5eead4;

  font-size: 13px;
  font-weight: 800;
}

.tm-about-cta__content h2 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
}

.tm-about-cta__content p {
  max-width: 650px;
  margin: 10px 0 0;
  color: #dbeafe;
  font-size: 15px;
  line-height: 1.7;
}

.tm-about-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tm-about-cta__primary,
.tm-about-cta__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 13px 20px;
  border-radius: 14px;

  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;

  transition: 0.3s ease;
}

.tm-about-cta__primary {
  background: #ffffff;
  color: #0b2a6f;
}

.tm-about-cta__secondary {
  color: #ffffff;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
}

.tm-about-cta__primary:hover {
  background: #14b8a6;
  color: #ffffff;
  transform: translateY(-3px);
}

.tm-about-cta__secondary:hover {
  background: rgba(255,255,255,0.18);
  color: #ffffff;
  transform: translateY(-3px);
}

@keyframes tmAboutCtaUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .tm-about-cta__box {
    flex-direction: column;
    text-align: center;
    padding: 32px 22px;
  }

  .tm-about-cta__actions {
    justify-content: center;
  }
}

/* =========================
   SIMPLE MODERN CONTACT HERO
========================= */

.tm-simple-contact-hero {
  padding: 70px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 55%, #eef7ff 100%);
  overflow: hidden;
}

.tm-simple-contact-hero__inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 45px;
  align-items: center;
}

.tm-simple-contact-hero__content {
  animation: tmContactHeroLeft 0.8s ease both;
}

.tm-simple-contact-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 14px;
  border-radius: 999px;

  background: rgba(20,184,166,0.10);
  border: 1px solid rgba(20,184,166,0.22);

  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
}

.tm-simple-contact-hero__badge i {
  color: #14b8a6;
}

.tm-simple-contact-hero h1 {
  margin: 18px 0 12px;
  max-width: 650px;

  color: #0f172a;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -1px;
}

.tm-simple-contact-hero p {
  max-width: 570px;
  color: #64748b;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.tm-simple-contact-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tm-simple-contact-hero__features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 14px;
  border-radius: 12px;

  background: #ffffff;
  border: 1px solid #e5e7eb;

  color: #0f172a;
  font-size: 13px;
  font-weight: 700;

  box-shadow: 0 10px 25px rgba(15,23,42,0.05);
}

.tm-simple-contact-hero__features i {
  color: #14b8a6;
}

.tm-simple-contact-hero__image {
  height: 390px;
  border-radius: 28px;
  overflow: hidden;

  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15,23,42,0.12);

  animation: tmContactHeroRight 0.8s ease both;
}

.tm-simple-contact-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@keyframes tmContactHeroLeft {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes tmContactHeroRight {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .tm-simple-contact-hero {
    padding: 50px 0;
  }

  .tm-simple-contact-hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .tm-simple-contact-hero h1 {
    font-size: 34px;
    margin-left: auto;
    margin-right: auto;
  }

  .tm-simple-contact-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .tm-simple-contact-hero__features {
    justify-content: center;
  }

  .tm-simple-contact-hero__image {
    height: 300px;
  }
}

/* =========================
   MODERN CONTACT FORM SECTION
========================= */

.tm-modern-contact {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  overflow: hidden;
}

.tm-modern-contact__layout {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.tm-modern-contact__form-card {
  padding: 34px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 24px 65px rgba(15,23,42,0.08);
  animation: tmContactFormLeft 0.85s ease both;
}

.tm-modern-contact__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 14px;
  border-radius: 999px;

  background: rgba(20,184,166,0.10);
  border: 1px solid rgba(20,184,166,0.22);

  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
}

.tm-modern-contact__badge i {
  color: #14b8a6;
}

.tm-modern-contact__form-card h2 {
  margin: 16px 0 8px;
  color: #0f172a;
  font-size: 30px;
  font-weight: 900;
}

.tm-modern-contact__form-card p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.tm-modern-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.tm-modern-contact input,
.tm-modern-contact select,
.tm-modern-contact textarea {
  width: 100%;
  padding: 14px 15px;

  border: 1px solid #e5e7eb;
  border-radius: 14px;

  background: #f8fbff;
  color: #0f172a;

  font-size: 14px;
  outline: none;
  transition: 0.3s ease;
}

.tm-modern-contact textarea {
  min-height: 130px;
  resize: none;
  margin-bottom: 14px;
}

.tm-modern-contact input:focus,
.tm-modern-contact select:focus,
.tm-modern-contact textarea:focus {
  border-color: #14b8a6;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(20,184,166,0.10);
}

.tm-modern-send-btn {
  width: 100%;
  padding: 14px 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  border: none;
  border-radius: 14px;

  background: linear-gradient(135deg, #1d4ed8, #14b8a6);
  color: #ffffff;

  font-size: 14px;
  font-weight: 900;

  cursor: pointer;
  transition: 0.3s ease;
}

.tm-modern-send-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(29,78,216,0.22);
}

.tm-modern-contact-note {
  margin-top: 14px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;

  color: #64748b;
  font-size: 12px;
  font-weight: 600;
}

.tm-modern-contact-note i {
  color: #1d4ed8;
}

.tm-modern-contact__info {
  display: grid;
  gap: 16px;
  animation: tmContactFormRight 0.85s ease both;
}

.tm-modern-info-card {
  padding: 22px;
  border-radius: 22px;

  display: flex;
  gap: 15px;
  align-items: flex-start;

  background: #ffffff;
  border: 1px solid #e5e7eb;

  box-shadow: 0 18px 45px rgba(15,23,42,0.06);
  transition: 0.35s ease;
}

.tm-modern-info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20,184,166,0.35);
  box-shadow: 0 24px 60px rgba(15,23,42,0.10);
}

.tm-modern-info-card > i {
  width: 46px;
  height: 46px;
  min-width: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 15px;

  background: linear-gradient(135deg, rgba(29,78,216,0.12), rgba(20,184,166,0.14));
  color: #14b8a6;

  font-size: 18px;
  transition: 0.35s ease;
}

.tm-modern-info-card:hover > i {
  background: linear-gradient(135deg, #1d4ed8, #14b8a6);
  color: #ffffff;
  transform: rotate(-7deg) scale(1.08);
}

.tm-modern-info-card h4 {
  margin: 0 0 5px;
  color: #0f172a;
  font-size: 15px;
  font-weight: 900;
}

.tm-modern-info-card p {
  margin: 0;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}

.tm-modern-info-card span {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
}

@keyframes tmContactFormLeft {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes tmContactFormRight {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .tm-modern-contact {
    padding: 70px 0;
  }

  .tm-modern-contact__layout {
    grid-template-columns: 1fr;
  }

  .tm-modern-form-row {
    grid-template-columns: 1fr;
  }

  .tm-modern-contact__form-card {
    padding: 26px;
  }
}

.tm-contact-modern-cta {
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
}

.tm-contact-modern-cta__box {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  padding: 42px;
  border-radius: 28px;

  background: linear-gradient(135deg, #061a3a, #0b2f6a 60%, #0f766e);
  box-shadow: 0 24px 65px rgba(15, 23, 42, 0.18);

  animation: tmContactCtaUp 0.85s ease both;
}

.tm-contact-modern-cta__box::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(20,184,166,0.28);
}

.tm-contact-modern-cta__content,
.tm-contact-modern-cta__actions {
  position: relative;
  z-index: 2;
}

.tm-contact-modern-cta__content span {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 10px;
  color: #5eead4;

  font-size: 13px;
  font-weight: 800;
}

.tm-contact-modern-cta__content h2 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
}

.tm-contact-modern-cta__content p {
  max-width: 650px;
  margin: 10px 0 0;
  color: #dbeafe;
  font-size: 15px;
  line-height: 1.7;
}

.tm-contact-modern-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tm-contact-modern-cta__primary,
.tm-contact-modern-cta__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 13px 20px;
  border-radius: 14px;

  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;

  transition: 0.3s ease;
}

.tm-contact-modern-cta__primary {
  background: #ffffff;
  color: #0b2a6f;
}

.tm-contact-modern-cta__secondary {
  color: #ffffff;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
}

.tm-contact-modern-cta__primary:hover {
  background: #14b8a6;
  color: #ffffff;
  transform: translateY(-3px);
}

.tm-contact-modern-cta__secondary:hover {
  background: rgba(255,255,255,0.18);
  color: #ffffff;
  transform: translateY(-3px);
}

@keyframes tmContactCtaUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .tm-contact-modern-cta__box {
    flex-direction: column;
    text-align: center;
    padding: 32px 22px;
  }

  .tm-contact-modern-cta__actions {
    justify-content: center;
  }
}

.tm-simple-order-hero {
  padding: 70px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 55%, #eef7ff 100%);
  overflow: hidden;
}

.tm-simple-order-hero__inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 45px;
  align-items: center;
}

.tm-simple-order-hero__content {
  animation: tmOrderHeroLeft 0.8s ease both;
}

.tm-simple-order-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(20,184,166,0.10);
  border: 1px solid rgba(20,184,166,0.22);
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
}

.tm-simple-order-hero__badge i,
.tm-simple-order-hero__features i {
  color: #14b8a6;
}

.tm-simple-order-hero h1 {
  margin: 18px 0 12px;
  max-width: 650px;
  color: #0f172a;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -1px;
}

.tm-simple-order-hero p {
  max-width: 570px;
  color: #64748b;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.tm-simple-order-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tm-simple-order-hero__features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(15,23,42,0.05);
}

.tm-simple-order-hero__image {
  height: 390px;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15,23,42,0.12);
  animation: tmOrderHeroRight 0.8s ease both;
}

.tm-simple-order-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes tmOrderHeroLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes tmOrderHeroRight {
  from { opacity: 0; transform: translateX(28px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 991px) {
  .tm-simple-order-hero {
    padding: 50px 0;
  }

  .tm-simple-order-hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .tm-simple-order-hero h1 {
    font-size: 34px;
    margin-left: auto;
    margin-right: auto;
  }

  .tm-simple-order-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .tm-simple-order-hero__features {
    justify-content: center;
  }

  .tm-simple-order-hero__image {
    height: 300px;
  }
}

.tm-modern-order {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  overflow: hidden;
}

.tm-modern-order__layout {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr;
  gap: 28px;
}

.tm-modern-order__form-card {
  padding: 34px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 24px 65px rgba(15,23,42,0.08);
  animation: tmOrderFormLeft 0.85s ease both;
}

.tm-modern-order__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(20,184,166,0.10);
  border: 1px solid rgba(20,184,166,0.22);
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
}

.tm-modern-order__badge i {
  color: #14b8a6;
}

.tm-modern-order__form-card h2 {
  margin: 16px 0 8px;
  color: #0f172a;
  font-size: 30px;
  font-weight: 900;
}

.tm-modern-order__form-card p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.tm-modern-order-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.tm-modern-order input,
.tm-modern-order select,
.tm-modern-order textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #f8fbff;
  color: #0f172a;
  font-size: 14px;
  outline: none;
  transition: 0.3s ease;
}

.tm-modern-order textarea {
  min-height: 130px;
  resize: none;
  margin-bottom: 14px;
}

.tm-modern-order input:focus,
.tm-modern-order select:focus,
.tm-modern-order textarea:focus {
  border-color: #14b8a6;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(20,184,166,0.10);
}

.tm-modern-order-btn {
  width: 100%;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #1d4ed8, #14b8a6);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s ease;
}

.tm-modern-order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(29,78,216,0.22);
}

.tm-modern-order-note {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
}

.tm-modern-order-note i {
  color: #1d4ed8;
}

.tm-modern-order__side {
  display: grid;
  gap: 16px;
  animation: tmOrderFormRight 0.85s ease both;
}

.tm-modern-order-info-card,
.tm-modern-order-support {
  padding: 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 45px rgba(15,23,42,0.06);
  transition: 0.35s ease;
}

.tm-modern-order-info-card {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.tm-modern-order-info-card:hover,
.tm-modern-order-support:hover {
  transform: translateY(-6px);
  border-color: rgba(20,184,166,0.35);
}

.tm-modern-order-info-card > i {
  width: 46px;
  height: 46px;
  min-width: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(29,78,216,0.12), rgba(20,184,166,0.14));
  color: #14b8a6;
  font-size: 18px;
}

.tm-modern-order-info-card h4,
.tm-modern-order-support h3 {
  margin: 0 0 6px;
  color: #0f172a;
  font-weight: 900;
}

.tm-modern-order-info-card p,
.tm-modern-order-support p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
}

.tm-modern-order-support {
  background: linear-gradient(135deg, #061a3a, #0b2f6a 65%, #0f766e);
  color: #ffffff;
}

.tm-modern-order-support > i {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  background: rgba(255,255,255,0.13);
  color: #5eead4;
  font-size: 22px;
  margin-bottom: 14px;
}

.tm-modern-order-support h3 {
  color: #ffffff;
}

.tm-modern-order-support p {
  color: #dbeafe;
  margin-bottom: 16px;
}

.tm-modern-order-support a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

@keyframes tmOrderFormLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes tmOrderFormRight {
  from { opacity: 0; transform: translateX(28px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 991px) {
  .tm-modern-order {
    padding: 70px 0;
  }

  .tm-modern-order__layout {
    grid-template-columns: 1fr;
  }

  .tm-modern-order-row {
    grid-template-columns: 1fr;
  }

  .tm-modern-order__form-card {
    padding: 26px;
  }
}

.tm-order-modern-cta {
  padding: 80px 0;
  background: #ffffff;
}

.tm-order-modern-cta__box {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 42px;
  border-radius: 28px;
  background: linear-gradient(135deg, #061a3a, #0b2f6a 60%, #0f766e);
  box-shadow: 0 24px 65px rgba(15, 23, 42, 0.18);
  animation: tmOrderCtaUp 0.85s ease both;
}

.tm-order-modern-cta__box::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(20,184,166,0.28);
}

.tm-order-modern-cta__content,
.tm-order-modern-cta__actions {
  position: relative;
  z-index: 2;
}

.tm-order-modern-cta__content span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #5eead4;
  font-size: 13px;
  font-weight: 800;
}

.tm-order-modern-cta__content h2 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
}

.tm-order-modern-cta__content p {
  max-width: 650px;
  margin: 10px 0 0;
  color: #dbeafe;
  font-size: 15px;
  line-height: 1.7;
}

.tm-order-modern-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tm-order-modern-cta__primary,
.tm-order-modern-cta__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: 0.3s ease;
}

.tm-order-modern-cta__primary {
  background: #ffffff;
  color: #0b2a6f;
}

.tm-order-modern-cta__secondary {
  color: #ffffff;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
}

.tm-order-modern-cta__primary:hover {
  background: #14b8a6;
  color: #ffffff;
  transform: translateY(-3px);
}

.tm-order-modern-cta__secondary:hover {
  background: rgba(255,255,255,0.18);
  color: #ffffff;
  transform: translateY(-3px);
}

@keyframes tmOrderCtaUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .tm-order-modern-cta__box {
    flex-direction: column;
    text-align: center;
    padding: 32px 22px;
  }

  .tm-order-modern-cta__actions {
    justify-content: center;
  }
}

/* ==================================================
   HERO ORBS — SMOOTH FLOATING ANIMATION
================================================== */

.tm-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  opacity: 0.75;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}

/* First teal orb */
.tm-orb-1 {
  width: 220px;
  height: 220px;
  right: 42%;
  top: 70px;
  background: rgba(20, 184, 166, 0.10);

  animation: tmOrbMoveOne 10s ease-in-out infinite;
}

/* Second blue orb */
.tm-orb-2 {
  width: 280px;
  height: 280px;
  right: -80px;
  bottom: -80px;
  background: rgba(29, 78, 216, 0.10);

  animation: tmOrbMoveTwo 13s ease-in-out infinite;
}

/* Teal orb movement */
@keyframes tmOrbMoveOne {
  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  25% {
    transform: translate(45px, -25px) scale(1.08) rotate(70deg);
  }

  50% {
    transform: translate(15px, 40px) scale(0.94) rotate(160deg);
  }

  75% {
    transform: translate(-40px, 15px) scale(1.04) rotate(260deg);
  }
}

/* Blue orb movement */
@keyframes tmOrbMoveTwo {
  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  25% {
    transform: translate(-55px, -35px) scale(1.08) rotate(-80deg);
  }

  50% {
    transform: translate(-85px, 20px) scale(0.92) rotate(-170deg);
  }

  75% {
    transform: translate(-30px, -50px) scale(1.05) rotate(-270deg);
  }
}

/* Reduce movement on small screens */
@media (max-width: 768px) {
  .tm-orb-1 {
    animation-duration: 14s;
  }

  .tm-orb-2 {
    animation-duration: 17s;
  }

  @keyframes tmOrbMoveOne {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }

    50% {
      transform: translate(20px, 25px) scale(1.06);
    }
  }

  @keyframes tmOrbMoveTwo {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }

    50% {
      transform: translate(-30px, -20px) scale(1.07);
    }
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .tm-orb-1,
  .tm-orb-2 {
    animation: none;
  }
}

/* ==================================================
   MOBILE HERO — EXISTING IMAGE AS BACKGROUND
   DESKTOP VIEW WILL NOT CHANGE
================================================== */

@media (max-width: 991px) {

  .tm-modern-slide {
    position: relative;
    display: none;
    grid-template-columns: 1fr;

    min-height: 680px;
    padding: 65px 20px 110px;

    overflow: hidden;
    isolation: isolate;
  }

  .tm-modern-slide.active {
    display: grid;
  }

  /*
   Use the existing visual/image container
   as a full mobile background
  */
  .tm-modern-visual {
    display: block !important;

    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    min-height: 100%;

    z-index: -2;
  }

  .tm-image-frame {
    position: absolute;
    inset: 0;

    width: 100%;
    max-width: none;
    height: 100%;

    padding: 0;
    border-radius: 0;
    transform: none;

    background: none;
    box-shadow: none;
    overflow: hidden;
  }

  .tm-image-frame::before {
    display: none;
  }

  .tm-image-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    border-radius: 0;
    transform: none;

    display: block;
  }

  /*
   Overlay above the image.
   It keeps text readable without hiding the image.
  */
  .tm-modern-slide::after {
    content: "";
    position: absolute;
    inset: 0;

    z-index: -1;

    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.62) 0%,
      rgba(255, 255, 255, 0.48) 45%,
      rgba(255, 255, 255, 0.68) 100%
    );

    pointer-events: none;
  }

  .tm-modern-content {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 600px;

    margin: auto;
    text-align: center;
  }

  .tm-modern-content p {
    margin-left: auto;
    margin-right: auto;
    color: #334155;
  }

  .tm-modern-actions {
    justify-content: center;
  }

  /*
   Floating cards are hidden on mobile,
   but the main image remains visible.
  */
  .tm-float-card {
    display: none !important;
  }

  .tm-modern-controls {
    z-index: 20;
  }
}

@media (max-width: 576px) {

  .tm-modern-slide {
    min-height: 650px;
    padding: 50px 18px 100px;
  }

  .tm-modern-content h1 {
    font-size: 30px;
  }

  .tm-image-frame img {
    object-position: center center;
  }
}

/* ==================================================
   PROFESSIONAL CTA — RESPONSIVE + ANIMATED
================================================== */

/* Smooth internal entrance animations */
.tm-pro-cta__icon {
  animation:
    tmProIconEnter 0.7s ease 0.15s both,
    tmProIconFloat 3.5s ease-in-out 1s infinite;
}

.tm-pro-cta__content span {
  animation: tmProContentEnter 0.65s ease 0.25s both;
}

.tm-pro-cta__content h2 {
  animation: tmProContentEnter 0.7s ease 0.35s both;
}

.tm-pro-cta__content p {
  animation: tmProContentEnter 0.7s ease 0.45s both;
}

.tm-pro-cta__actions {
  animation: tmProActionsEnter 0.75s ease 0.55s both;
}

/* Moving decorative circles */
.tm-pro-cta__box::before {
  animation: tmProOrbOne 9s ease-in-out infinite;
}

.tm-pro-cta__box::after {
  animation: tmProOrbTwo 12s ease-in-out infinite;
}

/* Button arrow animation */
.tm-pro-cta__primary i {
  transition: transform 0.3s ease;
}

.tm-pro-cta__primary:hover i {
  transform: translateX(5px);
}

/* Icon entrance */
@keyframes tmProIconEnter {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.75) rotate(-12deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}

/* Icon continuous floating */
@keyframes tmProIconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-8px) rotate(3deg);
  }
}

/* Text entrance */
@keyframes tmProContentEnter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons entrance */
@keyframes tmProActionsEnter {
  from {
    opacity: 0;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* First background circle */
@keyframes tmProOrbOne {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  35% {
    transform: translate(-35px, 25px) scale(1.12);
  }

  70% {
    transform: translate(20px, 45px) scale(0.92);
  }
}

/* Second background circle */
@keyframes tmProOrbTwo {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  40% {
    transform: translate(45px, -25px) scale(1.08);
  }

  75% {
    transform: translate(-25px, -40px) scale(0.94);
  }
}

/* ==================================================
   TABLET AND MOBILE
================================================== */

@media (max-width: 991px) {

  .tm-pro-cta {
    padding: 55px 0;
  }

  .tm-pro-cta .container {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .tm-pro-cta__box {
    grid-template-columns: 1fr;
    justify-items: center;

    gap: 22px;
    padding: 38px 28px;

    text-align: center;
    border-radius: 24px;
  }

  .tm-pro-cta__icon {
    width: 68px;
    height: 68px;
    margin: 0;

    border-radius: 21px;
    font-size: 27px;
  }

  .tm-pro-cta__content {
    width: 100%;
    max-width: 680px;
  }

  .tm-pro-cta__content span {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .tm-pro-cta__content h2 {
    font-size: clamp(25px, 4vw, 32px);
    line-height: 1.25;
  }

  .tm-pro-cta__content p {
    max-width: 600px;
    margin: 12px auto 0;
    font-size: 14px;
    line-height: 1.65;
  }

  .tm-pro-cta__actions {
    width: 100%;
    max-width: 430px;

    margin: 4px auto 0;
    justify-content: center;
  }

  .tm-pro-cta__primary,
  .tm-pro-cta__secondary {
    flex: 1;
    min-height: 48px;
    padding: 13px 18px;
  }

  /* Keep decorations safely inside the card */
  .tm-pro-cta__box::before {
    width: 190px;
    height: 190px;
    right: -90px;
    top: -75px;
  }

  .tm-pro-cta__box::after {
    width: 210px;
    height: 210px;
    left: -100px;
    bottom: -120px;
  }
}

/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 576px) {

  .tm-pro-cta {
    padding: 38px 0;
  }

  .tm-pro-cta .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .tm-pro-cta__box {
    gap: 18px;

    padding: 30px 18px;
    border-radius: 20px;
  }

  .tm-pro-cta__icon {
    width: 60px;
    height: 60px;

    border-radius: 18px;
    font-size: 24px;
  }

  .tm-pro-cta__content span {
    font-size: 11px;
    line-height: 1.4;
  }

  .tm-pro-cta__content h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .tm-pro-cta__content p {
    font-size: 13px;
    line-height: 1.65;
  }

  .tm-pro-cta__actions {
    flex-direction: column;
    gap: 10px;

    width: 100%;
    max-width: none;
  }

  .tm-pro-cta__primary,
  .tm-pro-cta__secondary {
    width: 100%;
    flex: none;

    min-height: 50px;
    padding: 14px 18px;
  }

  /* Softer movement on mobile */
  .tm-pro-cta__box::before,
  .tm-pro-cta__box::after {
    opacity: 0.65;
  }

  @keyframes tmProActionsEnter {
    from {
      opacity: 0;
      transform: translateY(22px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Very small phones */
@media (max-width: 380px) {

  .tm-pro-cta__box {
    padding: 27px 15px;
  }

  .tm-pro-cta__content h2 {
    font-size: 21px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

  .tm-pro-cta__box,
  .tm-pro-cta__box::before,
  .tm-pro-cta__box::after,
  .tm-pro-cta__icon,
  .tm-pro-cta__content span,
  .tm-pro-cta__content h2,
  .tm-pro-cta__content p,
  .tm-pro-cta__actions {
    animation: none !important;
  }
}

/* ==================================================
   TRUST SECTION — SCROLL-TRIGGERED ANIMATIONS
================================================== */

/* Prevent the existing immediate animations */
.tm-trust-section.tm-animate-ready .tm-trust-left,
.tm-trust-section.tm-animate-ready .tm-trust-card {
  animation: none !important;
}

/* Keep content visible when JavaScript is unavailable */
.tm-trust-section:not(.tm-animate-ready) .tm-trust-left,
.tm-trust-section:not(.tm-animate-ready) .tm-trust-card {
  opacity: 1;
}

/* ==================================================
   INITIAL HIDDEN STATES
================================================== */

.tm-trust-section.tm-animate-ready:not(.is-visible)
  .tm-trust-left > * {
  opacity: 0;
  transform: translateX(-35px);
}

.tm-trust-section.tm-animate-ready:not(.is-visible)
  .tm-trust-card {
  opacity: 0;
  transform: translateY(38px) scale(0.94);
}

/* ==================================================
   LEFT CONTENT STAGGERED ENTRANCE
================================================== */

.tm-trust-section.is-visible .tm-trust-badge {
  animation: tmTrustTextReveal 0.65s ease 0.1s backwards;
}

.tm-trust-section.is-visible .tm-trust-left h2 {
  animation: tmTrustTextReveal 0.7s ease 0.22s backwards;
}

.tm-trust-section.is-visible .tm-trust-left p {
  animation: tmTrustTextReveal 0.7s ease 0.34s backwards;
}

.tm-trust-section.is-visible .tm-trust-btn {
  animation: tmTrustTextReveal 0.7s ease 0.46s backwards;
}

/* ==================================================
   CARD ENTRANCE WITH STAGGER
================================================== */

.tm-trust-section.is-visible .tm-trust-card {
  animation: tmTrustCardReveal 0.75s
    cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.tm-trust-section.is-visible .tm-trust-card:nth-child(1) {
  animation-delay: 0.18s;
}

.tm-trust-section.is-visible .tm-trust-card:nth-child(2) {
  animation-delay: 0.3s;
}

.tm-trust-section.is-visible .tm-trust-card:nth-child(3) {
  animation-delay: 0.42s;
}

.tm-trust-section.is-visible .tm-trust-card:nth-child(4) {
  animation-delay: 0.54s;
}

/* Preserve the existing hover movement */
.tm-trust-section.is-visible .tm-trust-card:hover {
  transform: translateY(-10px);
}

/* ==================================================
   MOVING BACKGROUND CIRCLES
================================================== */

.tm-trust-bg {
  pointer-events: none;
  will-change: transform;
}

.tm-trust-bg-1 {
  animation: tmTrustBgOne 11s ease-in-out infinite;
}

.tm-trust-bg-2 {
  animation: tmTrustBgTwo 14s ease-in-out infinite;
}

/* ==================================================
   ICON ANIMATIONS
================================================== */

/* Animate the actual icon without affecting card hover */
.tm-trust-icon i {
  display: inline-block;
  animation: tmTrustIconFloat 3.2s ease-in-out infinite;
}

.tm-trust-card:nth-child(2) .tm-trust-icon i {
  animation-delay: 0.4s;
}

.tm-trust-card:nth-child(3) .tm-trust-icon i {
  animation-delay: 0.8s;
}

.tm-trust-card:nth-child(4) .tm-trust-icon i {
  animation-delay: 1.2s;
}

/* Badge icon pulse */
.tm-trust-badge i {
  display: inline-block;
  animation: tmTrustBadgePulse 2.4s ease-in-out infinite;
}

/* ==================================================
   BUTTON ANIMATION
================================================== */

.tm-trust-btn {
  position: relative;
  overflow: hidden;
}

.tm-trust-btn i {
  transition: transform 0.3s ease;
}

.tm-trust-btn:hover i {
  transform: translateX(6px);
}

/* Moving light effect */
.tm-trust-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;

  width: 60%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );

  transform: skewX(-20deg);
  transition: left 0.65s ease;
}

.tm-trust-btn:hover::before {
  left: 140%;
}

/* ==================================================
   KEYFRAMES
================================================== */

@keyframes tmTrustTextReveal {
  from {
    opacity: 0;
    transform: translateX(-35px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes tmTrustCardReveal {
  from {
    opacity: 0;
    transform: translateY(38px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes tmTrustBgOne {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  30% {
    transform: translate(45px, -30px) scale(1.1);
  }

  65% {
    transform: translate(-25px, 40px) scale(0.92);
  }
}

@keyframes tmTrustBgTwo {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  35% {
    transform: translate(-55px, 35px) scale(1.08);
  }

  70% {
    transform: translate(30px, -40px) scale(0.95);
  }
}

@keyframes tmTrustIconFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-6px) scale(1.05);
  }
}

@keyframes tmTrustBadgePulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.16);
  }
}

/* ==================================================
   MOBILE ANIMATION ADJUSTMENTS
================================================== */

@media (max-width: 991px) {

  .tm-trust-section.tm-animate-ready:not(.is-visible)
    .tm-trust-left > * {
    transform: translateY(25px);
  }

  .tm-trust-section.is-visible .tm-trust-badge,
  .tm-trust-section.is-visible .tm-trust-left h2,
  .tm-trust-section.is-visible .tm-trust-left p,
  .tm-trust-section.is-visible .tm-trust-btn {
    animation-name: tmTrustMobileTextReveal;
  }

  @keyframes tmTrustMobileTextReveal {
    from {
      opacity: 0;
      transform: translateY(25px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Softer animation on small phones */
@media (max-width: 576px) {

  .tm-trust-section.is-visible .tm-trust-card {
    animation-duration: 0.65s;
  }

  .tm-trust-bg-1,
  .tm-trust-bg-2 {
    opacity: 0.3;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

  .tm-trust-section *,
  .tm-trust-section *::before,
  .tm-trust-section *::after {
    animation: none !important;
    transition: none !important;
  }

  .tm-trust-section.tm-animate-ready
    .tm-trust-left > *,
  .tm-trust-section.tm-animate-ready
    .tm-trust-card {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==================================================
   TRIVANA MEDICAL — COMPLETE FOOTER CSS
================================================== */

.tm-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding: 65px 0 22px;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(20, 184, 166, 0.16),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 90%,
      rgba(29, 78, 216, 0.18),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #061a3a 0%,
      #0b2f6a 55%,
      #0f766e 100%
    );
}

/* Keep footer content above decorations */
.tm-footer > .container {
  position: relative;
  z-index: 5;
}

/* ==================================================
   FOUR-COLUMN LAYOUT
================================================== */

.tm-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.5fr;
  align-items: start;
  gap: 38px;
}

/* ==================================================
   ANIMATED BACKGROUND DECORATIONS
================================================== */

.tm-footer-orb {
  position: absolute;
  z-index: 1;

  display: block;
  border-radius: 50%;

  pointer-events: none;
  will-change: transform;
}

.tm-footer-orb--one {
  width: 310px;
  height: 310px;

  top: -150px;
  right: 6%;

  background: rgba(94, 234, 212, 0.10);
  border: 1px solid rgba(94, 234, 212, 0.12);

  animation: tmFooterOrbOne 13s ease-in-out infinite;
}

.tm-footer-orb--two {
  width: 260px;
  height: 260px;

  left: -110px;
  bottom: -130px;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);

  animation: tmFooterOrbTwo 16s ease-in-out infinite;
}

.tm-footer-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;

  opacity: 0.16;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    );

  background-size: 45px 45px;

  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    #000000 18%,
    #000000 82%,
    transparent
  );

  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000000 18%,
    #000000 82%,
    transparent
  );
}

/* ==================================================
   FOOTER COLUMNS
================================================== */

.tm-footer__col {
  position: relative;
  min-width: 0;
}

.tm-footer__col p {
  margin: 0 0 10px;

  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.65;
}

.tm-footer__col h4 {
  position: relative;

  display: inline-block;

  margin: 0 0 18px;
  padding-bottom: 10px;

  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
}

.tm-footer__col h4::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 38px;
  height: 2px;

  border-radius: 20px;

  background: linear-gradient(
    90deg,
    #5eead4,
    rgba(94, 234, 212, 0.15)
  );

  animation: tmFooterHeadingGlow 2.8s ease-in-out infinite;
}

/* ==================================================
   BRAND COLUMN
================================================== */

.tm-footer__logo {
  display: inline-block;
  text-decoration: none;
}

.tm-footer__brand img {
  display: block;

  width: auto;
  height: 44px;

  margin-bottom: 16px;

  transition:
    transform 0.4s ease,
    filter 0.4s ease;

  animation: tmFooterLogoFloat 4s ease-in-out infinite;
}

.tm-footer__logo:hover img {
  transform: translateY(-3px) scale(1.03);

  filter: drop-shadow(
    0 10px 20px rgba(20, 184, 166, 0.26)
  );
}

.tm-footer__brand > p {
  max-width: 310px;
}

/* ==================================================
   TRUST BADGES
================================================== */

.tm-footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: 18px;
}

.tm-footer__trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 8px 10px;
  border-radius: 999px;

  color: #e6fffb;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);

  font-size: 11px;
  font-weight: 700;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.tm-footer__trust span:hover {
  transform: translateY(-3px);

  background: rgba(20, 184, 166, 0.18);
  border-color: rgba(94, 234, 212, 0.38);
}

.tm-footer__trust i {
  color: #5eead4;
}

/* ==================================================
   SUPPORT STATUS
================================================== */

.tm-footer__status {
  display: flex;
  align-items: center;
  gap: 8px;

  margin-top: 15px;

  color: #cbd5e1;
  font-size: 11px;
}

.tm-footer__status-dot {
  width: 8px;
  height: 8px;

  flex-shrink: 0;
  border-radius: 50%;

  background: #5eead4;

  animation: tmFooterStatusPulse 2s ease-out infinite;
}

/* ==================================================
   QUICK LINKS AND PRODUCT LINKS
================================================== */

.tm-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tm-footer__nav a {
  position: relative;

  display: inline-flex;
  align-items: center;

  margin-bottom: 9px;
  padding-left: 0;

  color: #cbd5e1;

  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;

  transition:
    color 0.3s ease,
    padding-left 0.3s ease,
    transform 0.3s ease;
}

.tm-footer__nav a::before {
  content: "›";

  position: absolute;
  left: 0;

  color: #5eead4;

  opacity: 0;
  transform: translateX(-7px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.tm-footer__nav a:hover {
  color: #ffffff;
  padding-left: 15px;
}

.tm-footer__nav a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* ==================================================
   CONTACT COLUMN
================================================== */

.tm-footer__contact {
  min-width: 0;
}

.tm-footer .tm-contact-items {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  width: 100%;

  margin: 0 0 6px;
  padding: 8px;

  border: 1px solid transparent;
  border-radius: 12px;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.tm-footer .tm-contact-items:hover {
  transform: translateX(4px);

  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(94, 234, 212, 0.20);
}

.tm-footer .tm-contact-items .tm-icon {
  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  color: #5eead4;

  background: rgba(20, 184, 166, 0.10);
  border: 1px solid rgba(94, 234, 212, 0.13);
  border-radius: 10px;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.tm-footer .tm-contact-items:hover .tm-icon {
  color: #061a3a;
  background: #5eead4;

  transform: rotate(-7deg) scale(1.06);
}

.tm-footer .tm-contact-items svg {
  width: 17px;
  height: 17px;

  display: block;
}

.tm-footer .tm-contact-items > span:last-child {
  min-width: 0;
}

.tm-footer .tm-contact-items small {
  display: block;

  margin-bottom: 2px;

  color: #94a3b8;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
}

.tm-footer .tm-contact-items a {
  display: inline-block;

  margin: 0;

  color: #dbeafe;

  font-size: 12px;
  line-height: 1.45;
  text-decoration: none;

  overflow-wrap: anywhere;

  transition: color 0.3s ease;
}

.tm-footer .tm-contact-items a:hover {
  color: #ffffff;
}

/* ==================================================
   ANIMATED DIVIDER
================================================== */

.tm-footer__divider {
  position: relative;

  height: 1px;

  margin: 38px 0 18px;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.10);
}

.tm-footer__divider span {
  position: absolute;
  top: 0;
  left: -25%;

  width: 25%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    #5eead4,
    transparent
  );

  animation: tmFooterDividerShine 4.5s linear infinite;
}

/* ==================================================
   BOTTOM FOOTER
================================================== */

.tm-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  color: #94a3b8;
  font-size: 12px;
}

.tm-footer__bottom p {
  margin: 0;

  color: #94a3b8;
  font-size: 12px;
}

.tm-footer__links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.tm-footer__links a {
  color: #94a3b8;

  font-size: 12px;
  text-decoration: none;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.tm-footer__links a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==================================================
   SCROLL REVEAL INITIAL STATES
================================================== */

.tm-footer.tm-footer-animate-ready:not(.is-visible)
.tm-footer__col {
  opacity: 0;
  transform: translateY(35px);
}

.tm-footer.tm-footer-animate-ready:not(.is-visible)
.tm-footer__divider {
  opacity: 0;
  transform: scaleX(0);
}

.tm-footer.tm-footer-animate-ready:not(.is-visible)
.tm-footer__bottom {
  opacity: 0;
  transform: translateY(18px);
}

/* ==================================================
   STAGGERED COLUMN ANIMATIONS
================================================== */

.tm-footer.is-visible .tm-footer__col {
  animation: tmFooterColumnReveal 0.75s
    cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.tm-footer.is-visible .tm-footer__col:nth-child(1) {
  animation-delay: 0.08s;
}

.tm-footer.is-visible .tm-footer__col:nth-child(2) {
  animation-delay: 0.18s;
}

.tm-footer.is-visible .tm-footer__col:nth-child(3) {
  animation-delay: 0.28s;
}

.tm-footer.is-visible .tm-footer__col:nth-child(4) {
  animation-delay: 0.38s;
}

.tm-footer.is-visible .tm-footer__divider {
  transform-origin: left center;

  animation: tmFooterDividerReveal 0.9s ease 0.48s backwards;
}

.tm-footer.is-visible .tm-footer__bottom {
  animation: tmFooterBottomReveal 0.7s ease 0.62s backwards;
}

/* ==================================================
   KEYFRAMES
================================================== */

@keyframes tmFooterColumnReveal {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tmFooterDividerReveal {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes tmFooterBottomReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tmFooterOrbOne {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  35% {
    transform: translate(-45px, 35px) scale(1.08);
  }

  70% {
    transform: translate(20px, 65px) scale(0.94);
  }
}

@keyframes tmFooterOrbTwo {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  35% {
    transform: translate(55px, -35px) scale(1.10);
  }

  70% {
    transform: translate(25px, -65px) scale(0.93);
  }
}

@keyframes tmFooterLogoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes tmFooterStatusPulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(94, 234, 212, 0.45);
  }

  70% {
    box-shadow:
      0 0 0 8px rgba(94, 234, 212, 0);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(94, 234, 212, 0);
  }
}

@keyframes tmFooterHeadingGlow {
  0%,
  100% {
    width: 38px;
    opacity: 0.75;
  }

  50% {
    width: 58px;
    opacity: 1;
  }
}

@keyframes tmFooterDividerShine {
  from {
    left: -25%;
  }

  to {
    left: 110%;
  }
}

/* ==================================================
   TABLET VIEW
================================================== */

@media (max-width: 991px) {

  .tm-footer {
    padding: 55px 20px 20px;
  }

  .tm-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
  }

  /* Brand full width */
  .tm-footer__brand {
    grid-column: 1 / -1;
  }

  .tm-footer__brand > p {
    max-width: 650px;
  }

  /* Contact full width */
  .tm-footer__contact {
    grid-column: 1 / -1;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 20px;
  }

  .tm-footer__contact h4 {
    grid-column: 1 / -1;
  }
}

/* ==================================================
   MOBILE VIEW
================================================== */

@media (max-width: 576px) {

  .tm-footer {
    padding: 45px 14px 18px;
  }

  .tm-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 30px 16px;
  }

  /* Brand and contact full width */
  .tm-footer__brand,
  .tm-footer__contact {
    grid-column: 1 / -1;
  }

  /* Quick Links and Products side by side */
  .tm-footer__top > .tm-footer__col:nth-child(2),
  .tm-footer__top > .tm-footer__col:nth-child(3) {
    grid-column: auto;
  }

  .tm-footer__brand {
    text-align: center;
  }

  .tm-footer__logo {
    display: table;
    margin: 0 auto;
  }

  .tm-footer__brand img {
    height: 42px;

    margin-left: auto;
    margin-right: auto;
  }

  .tm-footer__brand > p {
    max-width: 430px;

    margin-left: auto;
    margin-right: auto;
  }

  .tm-footer__trust,
  .tm-footer__status {
    justify-content: center;
  }

  .tm-footer__col h4 {
    font-size: 14px;
  }

  .tm-footer__nav a {
    font-size: 12px;
    line-height: 1.5;
  }

  .tm-footer__contact {
    display: block;
  }

  .tm-footer .tm-contact-items {
    width: 100%;

    margin-bottom: 7px;

    text-align: left;
  }

  .tm-footer__divider {
    margin-top: 30px;
  }

  .tm-footer__bottom {
    flex-direction: column;
    align-items: center;

    gap: 10px;

    text-align: center;
  }

  .tm-footer__links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .tm-footer-orb--one {
    width: 210px;
    height: 210px;
  }

  .tm-footer-orb--two {
    width: 190px;
    height: 190px;
  }
}

/* ==================================================
   VERY SMALL MOBILE VIEW
================================================== */

@media (max-width: 380px) {

  .tm-footer__top {
    grid-template-columns: 1fr !important;
  }

  .tm-footer__top > .tm-footer__col {
    grid-column: 1 / -1 !important;
  }

  .tm-footer__col {
    text-align: center;
  }

  .tm-footer__nav {
    align-items: center;
  }

  .tm-footer__col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .tm-footer .tm-contact-items {
    text-align: left;
  }
}

/* ==================================================
   REDUCED MOTION ACCESSIBILITY
================================================== */

@media (prefers-reduced-motion: reduce) {

  .tm-footer *,
  .tm-footer *::before,
  .tm-footer *::after {
    animation: none !important;
    transition: none !important;
  }

  .tm-footer.tm-footer-animate-ready
  .tm-footer__col,
  .tm-footer.tm-footer-animate-ready
  .tm-footer__divider,
  .tm-footer.tm-footer-animate-ready
  .tm-footer__bottom {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==================================================
   PRODUCT HERO — IMAGE AS MOBILE BACKGROUND
   DESKTOP VIEW REMAINS UNCHANGED
================================================== */

@media (max-width: 768px) {

  .tm-simple-product-hero {
    padding: 25px 0;
    background: #eef7ff;
  }

  .tm-simple-product-hero .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .tm-simple-product-hero__inner {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 590px;
    padding: 55px 20px;

    border-radius: 26px;
    text-align: center;

    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
  }

  /* Existing image becomes the background */
  .tm-simple-product-hero__image {
    position: absolute !important;
    inset: 0;

    display: block !important;

    width: 100%;
    height: 100% !important;
    min-height: 100%;

    margin: 0;
    padding: 0;

    border-radius: 0;
    box-shadow: none;

    animation: none;
    transform: none;

    z-index: 0;
  }

  .tm-simple-product-hero__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    border-radius: 0;
    transform: none;

    animation: tmProductBackgroundZoom 14s ease-in-out infinite alternate;
  }

  /* Overlay for readable text */
  .tm-simple-product-hero__inner::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;
    pointer-events: none;

    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.70) 0%,
        rgba(255, 255, 255, 0.58) 48%,
        rgba(255, 255, 255, 0.72) 100%
      );
  }

  /* Content stays above the image */
  .tm-simple-product-hero__content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 540px;

    margin: 0 auto;
  }

  .tm-simple-product-hero__badge {
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(20, 184, 166, 0.34);

    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.10);
    backdrop-filter: blur(10px);
  }

  .tm-simple-product-hero h1 {
    margin: 20px auto 14px;

    color: #0f172a;
    font-size: 34px;
    line-height: 1.15;

    text-shadow: 0 2px 15px rgba(255, 255, 255, 0.75);
  }

  .tm-simple-product-hero p {
    max-width: 500px;
    margin: 0 auto 24px;

    color: #334155;
    font-size: 15px;
    line-height: 1.65;
  }

  .tm-simple-product-hero__features {
    position: relative;
    z-index: 2;

    justify-content: center;
    gap: 9px;
  }

  .tm-simple-product-hero__features span {
    padding: 9px 12px;

    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(255, 255, 255, 0.80);

    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
  }
}

/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 576px) {

  .tm-simple-product-hero__inner {
    min-height: 560px;
    padding: 45px 16px;
    border-radius: 22px;
  }

  .tm-simple-product-hero h1 {
    font-size: 30px;
  }

  .tm-simple-product-hero p {
    font-size: 14px;
  }

  .tm-simple-product-hero__features {
    flex-direction: column;
    align-items: center;
  }

  .tm-simple-product-hero__features span {
    width: 100%;
    max-width: 220px;

    justify-content: center;
  }
}

/* Very small phones */
@media (max-width: 380px) {

  .tm-simple-product-hero__inner {
    min-height: 570px;
    padding: 40px 13px;
  }

  .tm-simple-product-hero h1 {
    font-size: 27px;
  }
}

/* Subtle background image movement */
@keyframes tmProductBackgroundZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

  .tm-simple-product-hero__image img {
    animation: none !important;
    transform: none !important;
  }
}