:root {
  --rt-red: #ff3b3b;          /* softened red */
  --rt-red-soft: #ff6b6b;      /* lighter red for hovers */
  --rt-black: #0a0a0d;         /* almost black */
  --rt-black-soft: #15151a;    /* softer dark background */
  --rt-white: #ffffff;         /* pure white */
  --rt-white-warm: #fff7f7;    /* white with a hint of red */
  --rt-radius: 14px;
  --rt-max-width: 1120px;
}

/* RESET */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--rt-white-warm);
  color: var(--rt-black);
}

/* BASIC */

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.rt-container {
  width: 100%;
  max-width: var(--rt-max-width);
  margin: 0 auto;
  padding: 0 16px;
}

section {
  padding: 48px 0;
}

/* NAVBAR */

.rt-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10, 10, 13, 0.06);
}

.rt-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
}

.rt-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rt-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--rt-white);
}

.rt-logo-text {
  display: flex;
  flex-direction: column;
}

.rt-logo-main {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--rt-black);
}

.rt-logo-sub {
  font-size: 11px;
  color: rgba(10, 10, 13, 0.6);
}

.rt-nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}

.rt-nav-link {
  background: none;
  border: none;
  padding: 4px 6px;
  cursor: pointer;
  color: rgba(10, 10, 13, 0.7);
}

.rt-nav-link:hover {
  color: var(--rt-red);
}

.rt-nav-call {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--rt-black);
  color: var(--rt-white);
  border: 1px solid var(--rt-black);
  font-size: 13px;
  white-space: nowrap;
}

.rt-nav-call:hover {
  background: #000000;
}

.rt-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.rt-nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--rt-black);
}

/* HERO */

.rt-hero {
  background: radial-gradient(circle at top left, var(--rt-white) 0, #ffecec 45%, var(--rt-white) 100%);
  border-bottom: 1px solid rgba(10, 10, 13, 0.06);
}

.rt-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 32px 0 40px;
}

.rt-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(10, 10, 13, 0.1);
  background: rgba(255, 247, 247, 0.9);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 10, 13, 0.6);
  margin-bottom: 12px;
}

.rt-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #16a34a;
}

.rt-hero h1 {
  margin: 0 0 10px;
  font-size: 34px;
  letter-spacing: -0.02em;
  color: var(--rt-black);
}

.rt-hero-sub {
  margin: 0 0 18px;
  font-size: 15px;
  color: rgba(10, 10, 13, 0.7);
}

.rt-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.rt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease,
    transform 0.08s ease;
}

/* Buttons */

.rt-btn-red {
  background: var(--rt-red);
  border-color: var(--rt-red);
  color: var(--rt-white);
}

.rt-btn-red:hover {
  background: var(--rt-red-soft);
  border-color: var(--rt-red-soft);
  transform: translateY(-1px);
}

.rt-btn-outline {
  background: var(--rt-white);
  border-color: rgba(10, 10, 13, 0.14);
  color: var(--rt-black);
}

.rt-btn-outline:hover {
  border-color: var(--rt-black);
}

.rt-hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(10, 10, 13, 0.7);
}

/* HERO RIGHT CARD */

.rt-hero-right {
  display: flex;
  justify-content: flex-end;
}

.rt-hero-logo-card {
  background: linear-gradient(145deg, var(--rt-black-soft) 0, #1f1f24 55%, var(--rt-black) 100%);
  border-radius: 20px;
  border: 1px solid rgba(10, 10, 13, 0.6);
  padding: 18px 18px 16px;
  color: var(--rt-white);
}

.rt-hero-logo {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: var(--rt-white);
  margin-bottom: 12px;
}

.rt-hero-logo-text span:first-child {
  display: block;
  font-weight: 700;
  font-size: 15px;
}

.rt-hero-logo-text span:nth-child(2) {
  display: block;
  font-size: 12px;
  opacity: 0.78;
}

.rt-hero-phone {
  display: block;
  margin-top: 6px;
  font-size: 14px;
}

/* SECTION TYPES */

.rt-section {
  border-bottom: 1px solid rgba(10, 10, 13, 0.05);
}

.rt-section-dark {
  background: var(--rt-black);
  color: var(--rt-white);
}

.rt-section-mid {
  background: var(--rt-white);
  color: var(--rt-black);
}

.rt-section-light {
  background: var(--rt-white);
  color: var(--rt-black);
}

.rt-section h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.rt-section-sub {
  margin: 0 0 18px;
  font-size: 14px;
  color: rgba(10, 10, 13, 0.7);
}

.rt-section-dark .rt-section-sub {
  color: rgba(255, 255, 255, 0.72);
}

/* CARDS */

.rt-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.rt-card {
  border-radius: var(--rt-radius);
  padding: 16px 15px 14px;
  font-size: 13px;
}

.rt-section-dark .rt-card {
  background: var(--rt-black-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.rt-section-mid .rt-card,
.rt-section-light .rt-card {
  background: var(--rt-white);
  border: 1px solid rgba(10, 10, 13, 0.06);
}

.rt-card h3 {
  margin: 0 0 4px;
  font-size: 15px;
  color: inherit;
}

/* FLEET */

.rt-fleet {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* CONTACT */

.rt-contact {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 22px;
}

.rt-contact-info p {
  margin: 4px 0;
  font-size: 14px;
}

.rt-contact-phone {
  font-size: 18px;
  font-weight: 700;
}

.rt-contact-note {
  background: var(--rt-white);
  border-radius: var(--rt-radius);
  border: 1px solid rgba(10, 10, 13, 0.06);
  padding: 16px;
  font-size: 13px;
}

/* FOOTER */

.rt-footer {
  padding: 14px 16px 18px;
  background: var(--rt-black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

/* ANIMATIONS */

.rt-fade-in,
.rt-slide-up {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.rt-slide-up {
  transform: translateY(14px);
}

.rt-animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .rt-nav-toggle {
    display: flex;
  }

  .rt-nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--rt-white);
    border-bottom: 1px solid rgba(10, 10, 13, 0.06);
    padding: 8px 16px 10px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .rt-nav-links.rt-open {
    display: flex;
  }

  .rt-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .rt-hero-right {
    justify-content: flex-start;
  }

  .rt-fleet {
    flex-direction: column;
    align-items: flex-start;
  }

  .rt-contact {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .rt-hero h1 {
    font-size: 28px;
  }

  section {
    padding: 36px 0;
  }
}


/* Social icons (Instagram & Facebook) */

.rt-social-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.rt-social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(10, 10, 13, 0.16);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  background: #ffffff;
  color: #111111;
}

.rt-social-pill:hover {
  border-color: #ff3b3b;
  color: #ff3b3b;
}

.rt-section-light .rt-social-pill-large {
  padding: 8px 18px;
  font-size: 13px;
}


/* SVG SOCIAL ICONS */
.rt-social-header {
  display:flex;
  align-items:center;
  gap:14px;
  margin-left:12px;
}

.rt-social-icon svg {
  transition:0.2s;
}
.rt-social-icon:hover svg {
  transform:scale(1.15);
}

.rt-social-icon-large {
  display:flex;
  flex-direction:column;
  align-items:center;
  text-decoration:none;
  color:#111;
  gap:4px;
  font-weight:600;
}
.rt-social-icon-large svg {
  transition:0.2s;
}
.rt-social-icon-large:hover svg {
  transform:scale(1.2);
}
