:root {
  --mdc-accent: #000962;
  --mdc-ink: #0b0d10;
  --mdc-muted: #5b6472;
  --mdc-bg: #f6f7f9;
  --mdc-card: #ffffff;
  --mdc-border: rgba(15, 23, 42, 0.12);

  --mdc-radius-card: 20px;
  --mdc-radius-input: 14px;
  --mdc-radius-pill: 999px;

  --mdc-shadow: 0 18px 45px rgba(11, 13, 16, 0.12);
  --mdc-shadow-sm: 0 10px 25px rgba(11, 13, 16, 0.10);
}

/* Base */
body.mdc-modern {
  background: var(--mdc-bg) !important;
  color: var(--mdc-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.mdc-modern a:not(.mdc-btn) { color: inherit; }
body.mdc-modern a:not(.mdc-btn):hover { color: var(--mdc-accent); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 1000; }
.mdc-header {
  background: rgba(11, 13, 16, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mdc-navbar { padding: 14px 0; gap:3px;}
.mdc-navbar .navbar-nav{
  gap: 5px;
}
.mdc-logo { height: 34px; width: auto; }
.mdc-brand-text {
  color:#fff;
  margin-left: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.mdc-navbar .nav-link {
  color: rgba(255, 255, 255, 0.88) !important;
  font-weight: 500;
  padding: 10px 14px !important;
  border-radius: 12px;
  transition: all 160ms ease;
}

.mdc-navbar .nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
}

.mdc-navbar .nav-link.active {
  background: rgba(9, 50, 255, 0.14);
  color: #fff !important;
  box-shadow: inset 0 0 0 1px rgba(9, 39, 255, 0.35);
}

.mdc-nav-cta-wrap { margin-left: 14px; }
.mdc-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: var(--mdc-radius-pill);
  font-weight: 600;
  background: var(--mdc-accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 9, 9, 0.25);
  white-space: nowrap;
  transition: transform 160ms ease, filter 160ms ease;
}
.mdc-nav-cta:hover { color: #fff; filter: brightness(1.05); transform: translateY(-1px); }

@media (max-width: 991.98px) {
  .mdc-nav-cta-wrap { margin: 12px 0 4px; }
}

/* Page hero */
.mdc-page-hero {
  position: relative;
  padding: 20px 0 20px;
  background: radial-gradient(900px 360px at 15% 0%, rgba(255, 9, 9, 0.26), transparent 60%),
              linear-gradient(180deg, rgba(0, 24, 59, 0.98), rgba(11, 13, 16, 0.92));
  color: #fff;
  overflow: hidden;
}
.mdc-page-hero h1 { font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; margin: 0 0 10px;   color:#c0c0c0;}
.mdc-page-hero p { margin: 0; color: rgba(255, 255, 255, 0.78); max-width: 62ch; }

/* Sections */
.mdc-section { padding: 56px 0; }
.mdc-section-surface { background: #fff; }
.mdc-section-head { margin-bottom: 22px; }
.mdc-section-head h2 {
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 30px);
  margin: 0 0 8px;
}
.mdc-section-head p { margin: 0; color: var(--mdc-muted); }

/* Cards */
.mdc-card {
  background: var(--mdc-card);
  border-radius: var(--mdc-radius-card);
  box-shadow: var(--mdc-shadow);
  border: 1px solid var(--mdc-border);
}
.mdc-card-pad { padding: 22px; }
.mdc-card-head { padding: 22px 22px 0; }
.mdc-card-head h2 { margin: 0 0 6px; font-weight: 800; font-size: 22px; }
.mdc-card-head p { margin: 0; color: var(--mdc-muted); }

/* Buttons */
.mdc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--mdc-radius-pill);
  font-weight: 700;
  border: 1px solid rgba(11, 13, 16, 0.12);
  background: rgba(11, 13, 16, 0.06);
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease;
}
.mdc-btn:hover { transform: translateY(-1px); filter: brightness(1.03); }
.mdc-btn:active { transform: translateY(0px); }

.mdc-btn-accent {
  background: var(--mdc-accent);
  border-color: transparent;
  color: #fff;

}
.mdc-btn-accent:hover { 
  color: #fff; 
  box-shadow: 0 3px 20px rgba(0, 9, 62, 0.22);
}

.mdc-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.mdc-btn-ghost:hover { color: #fff; background: rgba(255, 255, 255, 0.10); }

/* Form controls (avoid overriding the tracking UI internals) */
body.mdc-modern:not(.page-tracking) input,
body.mdc-modern:not(.page-tracking) textarea,
body.mdc-modern:not(.page-tracking) select,
body.mdc-modern:not(.page-tracking) .form-control {
  border-radius: var(--mdc-radius-input) !important;
  border: 1px solid rgba(15, 23, 42, 0.14) !important;
  box-shadow: none !important;
  height: auto;
  padding: 12px 14px;
}

body.mdc-modern:not(.page-tracking) .form-control:focus {
  border-color: rgba(255, 9, 9, 0.55) !important;
  box-shadow: 0 0 0 4px rgba(255, 9, 9, 0.12) !important;
}

body.mdc-modern:not(.page-tracking) label { font-weight: 600; color: rgba(11, 13, 16, 0.76); }

.mdc-form {
  background: var(--mdc-card);
  border-radius: var(--mdc-radius-card);
  box-shadow: var(--mdc-shadow);
  border: 1px solid var(--mdc-border);
  padding: 22px;
}

/* Hero */
.mdc-hero {
  position: relative;
  padding: 74px 0 62px;
  background: radial-gradient(900px 360px at 15% 0%, rgba(255, 9, 9, 0.26), transparent 60%),
              linear-gradient(180deg, rgba(0, 24, 59, 0.98), rgba(11, 13, 16, 0.92));
  color: #fff;
  overflow: hidden;
}

.mdc-hero-copy h1 {
  color:#c0c0c0;
  font-size: clamp(34px, 4.3vw, 54px);
  font-weight: 650;
  line-height: 1.05;
  margin: 0 0 14px;
}

.mdc-hero-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  margin: 0 0 22px;
  max-width: 54ch;
}

.mdc-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }

.mdc-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.mdc-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--mdc-radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 13px;
}

.mdc-track-card { padding: 8px 0 22px; text-align: center;}
.mdc-track-form { padding: 18px 22px 0; }
.mdc-track-help { margin: 6px 0 12px; }

.mdc-link{
  color: rgba(4, 0, 180, 1);
  text-decoration-color: rgba(255, 255, 255, 0.35);

  font-weight: 600;                 /* more weight */
  cursor: pointer;                  /* hand cursor */
  position: relative;
  display: inline-flex;             /* lets padding/pill work nicely */
  align-items: center;

  padding: 2px 10px;                /* pill spacing (subtle by default) */
  border-radius: 999px;

  transition:
    color .18s ease,
    text-decoration-color .18s ease,
    background-color .18s ease,
    box-shadow .18s ease,
    transform .18s ease;
}

/* pillbox effect on hover */
.mdc-link:hover{
  color: #ff0000;
  text-decoration-color: rgba(255, 9, 9, 0.65);

  background: rgba(255, 255, 255, 0.08);         /* the pill */
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);       /* optional depth */
  transform: translateY(-1px);                    /* tiny lift */
}

/* optional: keyboard focus style (recommended) */
.mdc-link:focus-visible{
  outline: none;
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 0 0 3px rgba(255, 9, 9, 0.25);
}

.mdc-hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.mdc-hero-art-inner {
  position: absolute;
  right: -120px;
  top: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 9, 9, 0.38), rgba(255, 9, 9, 0.04) 60%, transparent 70%);
  filter: blur(0px);
  opacity: 0.95;
}

/* Features */
.mdc-feature {
  background: var(--mdc-card);
  border-radius: var(--mdc-radius-card);
  border: 1px solid var(--mdc-border);
  box-shadow: var(--mdc-shadow-sm);
  padding: 22px;
  height: 100%;
}
.mdc-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 5, 124, 0.10);
  color: var(--mdc-accent);
  margin-bottom: 12px;
  font-size: 18px;
}
.mdc-feature h3 { font-weight: 800; margin: 0 0 8px; font-size: 18px; }
.mdc-feature p { margin: 0; color: var(--mdc-muted); }

/* Slab + image card */
.mdc-slab h2 { font-weight: 900; margin: 0 0 10px; }
.mdc-slab p { margin: 0 0 18px; color: var(--mdc-muted); }
.mdc-slab-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.mdc-image-card {
  border-radius: var(--mdc-radius-card, 18px);
  overflow: hidden;
  min-height: 260px;

}

.mdc-image-card-img{
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.mdc-image-card-inner { height: 100%; width: 100%; }

/* Maps */
.mdc-map {
  border-radius: var(--mdc-radius-card);
  overflow: hidden;
  border: 1px solid var(--mdc-border);
  box-shadow: var(--mdc-shadow);
  background: #fff;
}
.mdc-map iframe { display: block; width: 100%; }
.mdc-map-tall iframe { height: 720px; }

/* Footer */
.mdc-footer {
  background: rgba(11, 13, 16, 0.98);
  color: rgba(255, 255, 255, 0.88);
  padding: 52px 0 0;
}
.mdc-footer a { color: rgba(255, 255, 255, 0.92); }
.mdc-footer a:hover { color: #fff; }

.mdc-footer-logo { height: 34px; width: auto; margin-bottom: 14px; }
.mdc-footer-title { font-weight: 800; margin: 0 0 14px; color: #fff; }
.mdc-footer-text { color: rgba(255, 255, 255, 0.72); margin: 0 0 14px; }

.mdc-footer-contact,
.mdc-footer-links { list-style: none; padding: 0; margin: 0; }
.mdc-footer-contact li { margin: 10px 0; color: rgba(255, 255, 255, 0.78); }
.mdc-footer-contact i { width: 18px; color: rgba(255, 255, 255, 0.70); }
.mdc-footer-links li { margin: 10px 0; }
.mdc-footer-links li a { color: rgba(255, 255, 255, 0.78); }
.mdc-footer-links li.active a { color: #fff; }

.mdc-footer-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.mdc-footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: var(--mdc-radius-pill);
  font-weight: 700;
  background: var(--mdc-accent);
  color: #fff;
  border: 1px solid transparent;
}
.mdc-footer-btn:hover { color: #fff; filter: brightness(1.05); }
.mdc-footer-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.mdc-footer-social { margin-top: 18px; display: flex; gap: 12px; }
.mdc-footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.mdc-footer-bottom { margin-top: 40px; border-top: 1px solid rgba(255, 255, 255, 0.10); }
.mdc-footer-bottom-inner {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.64);
}

/* WhatsApp bubble tweaks */
body.mdc-modern .whatsapp-message {
  width: 52px;
  height: 52px;
  bottom: 22px;
  right: 22px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}
body.mdc-modern .whatsapp-message img { width: 52px; height: 52px; }

/* Keep tracking page layout intact: only tone down the old page title band. */
body.mdc-modern.page-tracking .mdc-hero,
body.mdc-modern.page-tracking .mdc-section,
body.mdc-modern.page-tracking .mdc-page-hero { display: block; }

body.mdc-modern.page-tracking .back_re {
  padding: 20px 0 20px;
  background: radial-gradient(900px 360px at 15% 0%, rgba(255, 9, 9, 0.26), transparent 60%),
              linear-gradient(180deg, rgba(0, 24, 59, 0.98), rgba(11, 13, 16, 0.92));
}
body.mdc-modern.page-tracking .back_re .title h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin: 0 0 10px;
  color: #c0c0c0;
  font-weight: 800;
}

/* Footer bottom centered */
.mdc-footer-bottom-center {
  justify-content: center !important;
  text-align: center;
}

/* WhatsApp floating button */
.whatsapp-message{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 60px;
  height: 60px;
  border-radius: 999px;

  background: #25D366;          /* WhatsApp green */
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.whatsapp-message:hover{
  background: #1EBE5A;          /* slightly darker on hover */
}

.whatsapp-message img{
  width: 34px;                   /* make the icon sit inside the green circle */
  height: 34px;
  display: block;
  filter: brightness(0) invert(1); /* forces the svg/png to appear white */
}

/* Keep it off the edge on small screens */
@media (max-width: 575.98px){
  .whatsapp-message{
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-message img{
    width: 52px;
    height: 52px;
  }
}

/* Social layout on the right */
.mdc-footer-social-right{
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

/* icon + label link */
.mdc-social-link{
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 12px 16px;                 /* bigger */
  min-width: 190px;                   /* keeps them from looking tiny */
  border-radius: 999px;

  background: rgba(255,255,255,0.06); /* subtle pill background */
  border: 1px solid rgba(255,255,255,0.10);

  text-decoration: none;
}

.mdc-social-link i{
  font-size: 18px;
  line-height: 1;
}

/* show label on desktop */
.mdc-social-text{
  display: inline;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* Mobile: icons only + centered */
@media (max-width: 991.98px){
  .mdc-footer-social-right{
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .mdc-social-text{
    display: none;
  }
}

/* ===== Footer 3/6/3 ===== */
.mdc-footer-363{
  border-top: 1px solid rgba(255,255,255,.08);
}

.mdc-footer-363 .mdc-footer-logo{
  width: 54px;
  height: 54px;
  display: block;
  margin: 0 auto;
}

@media (min-width: 992px){
  .mdc-footer-363 .mdc-footer-logo{
	  margin: 0; 
	  width: auto;
	  height: 120px;
	  }
}

.mdc-foot-name{
  margin-top: 10px;
  font-weight: 900;
  letter-spacing: .3px;
  color: rgba(255,255,255,.92);
}

/* Center contact */
.mdc-foot-center{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

@media (min-width: 992px){
  .mdc-foot-center{ align-items: center; }
}

.mdc-foot-line{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.78);
  text-decoration: none;
}

.mdc-foot-line i{
  opacity: .95;
  width: 18px; /* keeps alignment tidy */
  text-align: center;
}

.mdc-foot-line:hover{
  color: rgba(255,255,255,.95);
}

/* Right socials (one block) */
.mdc-foot-right{
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

@media (min-width: 992px){
  .mdc-foot-right{ align-items: flex-start; }
}

/* Right socials (one block) */
.mdc-foot-left{
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

@media (min-width: 992px){
  .mdc-foot-left{ align-items: flex-end; }
}

.mdc-social-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
  min-width:180px;
  justify-content:center;
}

.mdc-social-pill:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.16);
  transform: translateY(-1px);
}

/* Bottom centered */
.mdc-footer-bottom-center{
  justify-content: center !important;
  text-align: center;
}