/*---------------------------------------
  RITSHURI - TOPBAR
-----------------------------------------*/
/* ================================
   ROOT VARIABLES
================================ */
:root {
  --rts-bg-dark: #020b14;
  --rts-bg-glass: rgba(2,11,20,0.95);
  --rts-border-soft: rgba(255,255,255,0.06);
  --rts-text-main: #e5f0f8;
  --rts-text-soft: #d6e6f2;
  --rts-accent: #22c55e;
  --rts-accent-dark: #16a34a;
  --rts-radius-sm: 6px;
  --rts-radius-md: 12px;
  --rts-radius-lg: 18px;
  --rts-font: "Inter", "Poppins", system-ui, sans-serif;
}

/*---------------------------------------
  RITSHURI - TOPBAR 
-----------------------------------------*/
.rts-topbar {
  position: none;
  top: 0;
  z-index: 999;
  background: linear-gradient(90deg, #020b14, #041c2d);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s ease;
  font-family: Inter, Poppins, sans-serif;
}

.rts-topbar.scrolled {
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

/* CONTAINER */
.rts-topbar-container {
  max-width: 1400px;
  margin: auto;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: #d6e6f2;
}

/* LEFT */
.rts-topbar-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
}

/* LIVE DOT */
.rts-live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  position: relative;
}

.rts-live-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(34,197,94,0.6);
  animation: pulse 1.8s infinite ease-out;
}

.rts-live-dot.offline {
  background: #ef4444;
}

.rts-live-dot.offline::after {
  background: rgba(239,68,68,0.6);
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(2.6); opacity: 0; }
  100% { opacity: 0; }
}

/* CENTER */
.rts-topbar-center {
  flex: 1;
  max-width: 520px;
  overflow: hidden;
}

.rts-service-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: scroll 22s linear infinite;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* RIGHT */
.rts-topbar-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.rts-contact,
.rts-whatsapp {
  color: #d6e6f2;
  text-decoration: none;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
}

.rts-whatsapp { color: #25d366; font-weight: 600; }

/* HOURS */
.rts-hours {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(34,197,94,0.15);
  color: #86efac;
}

.rts-hours.closed {
  background: rgba(239,68,68,0.15);
  color: #fecaca;
}

/* MOBILE SERVICES BUTTON */
.rts-services-toggle {
  display: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: none;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .rts-topbar-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .rts-topbar-center {
    width: 100%;
    display: none;
  }

  .rts-topbar-center.open {
    display: block;
  }

  .rts-service-track {
    animation: none;
    gap: 0.6rem;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .rts-service-track span {
    background: rgba(255,255,255,0.06);
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
  }

  .rts-topbar-right {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .rts-services-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
  }
}



/*---------------------------------------
  RITSHURI - NAVIGATION
-----------------------------------------*/
.rts-navbar {
  position: none;
  top: 42px;
  z-index: 998;
  background: var(--rts-bg-glass);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rts-border-soft);
}

.rts-nav-container {
  max-width: 1400px;
  margin: auto;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--rts-font);
  color: var(--rts-text-main);
}

/* ================================
   LOGO
================================ */
.rts-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}

.rts-logo-mark {
  background: linear-gradient(135deg, var(--rts-accent));
  color: #02131f;
  padding: 0.3rem 0.55rem;
  border-radius: var(--rts-radius-sm);
  font-size: 0.8rem;
}

.rts-logo-text {
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ================================
   DESKTOP NAV LINKS
================================ */
.rts-nav-links {
  display: flex;
  gap: 1.6rem;
}

.rts-nav-links a {
  position: relative;
  color: var(--rts-text-soft);
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.rts-nav-links a:hover {
  opacity: 1;
}

.rts-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--rts-accent);
  transition: width 0.3s ease;
}

.rts-nav-links a:hover::after,
.rts-nav-links a.active::after {
  width: 100%;
}

/* ================================
   DESKTOP CTA
================================ */
.rts-nav-cta .rts-quote-btn {
  background: linear-gradient(135deg, var(--rts-accent), var(--rts-accent-dark));
  color: #022c22;
  padding: 0.45rem 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ================================
   MOBILE COMMAND BUTTON
================================ */
.rts-mobile-command {
  display: none; /* default hidden on desktop */
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rts-accent), var(--rts-accent-dark));
  color: #fff;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 9999; /* above everything */
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 25px rgba(0,0,0,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rts-mobile-command:active {
  transform: scale(0.92);
}

.rts-mobile-command.active i {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

/* ================================
   MOBILE COMMAND DRAWER
================================ */
.rts-command-drawer {
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,0.88);
  backdrop-filter: blur(8px);
  pointer-events: none;
  opacity: 0;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s ease;
}

.rts-command-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

/* DRAWER PANEL */
.rts-command-drawer::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 78%;
  background: #020617;
  border-radius: 22px 22px 0 0;
}

/* HEADER */
.rts-command-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.4rem;
  color: var(--rts-text-main);
  font-weight: 600;
}

.rts-command-header button {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 1.4rem;
  cursor: pointer;
}

/* GRID */
.rts-command-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.2rem 1.4rem;
}

.rts-command-grid a {
  background: rgba(255,255,255,0.05);
  border-radius: var(--rts-radius-md);
  padding: 1rem 0.6rem;
  text-align: center;
  text-decoration: none;
  color: var(--rts-text-soft);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: background 0.25s ease, transform 0.25s ease;
}

.rts-command-grid a:hover {
  background: rgba(255,255,255,0.09);
}

.rts-command-grid a:active {
  transform: scale(0.95);
  background: rgba(34,197,94,0.18);
}

.rts-command-grid i {
  font-size: 1.2rem;
  color: var(--rts-accent);
}

.rts-command-grid span {
  font-size: 0.75rem;
}

/* MOBILE CTA */
.rts-command-cta {
  position: relative;
  z-index: 2;
  margin: 1rem 1.4rem 1.6rem;
  padding: 0.9rem;
  text-align: center;
  border-radius: var(--rts-radius-md);
  background: linear-gradient(135deg, var(--rts-accent), var(--rts-accent-dark));
  color: #020617;
  font-weight: 600;
  text-decoration: none;
}

/* ================================
   MOBILE BREAKPOINT
================================ */
@media (max-width: 900px) {
  .rts-nav-links,
  .rts-nav-cta {
    display: none;
  }

  .rts-mobile-command {
    display: flex;
  }
}

/* ================================
   RTS HERO – PREMIUM
================================ */
.rts-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 80px 1fr;
  background: #050b14;
  color: #eaf2ff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* LEFT SPINE */
.rts-hero-spine {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 3rem 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(to bottom, #050b14, #020617);
}

.rts-hero-spine span {
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: #22c55e;
}

.rts-hero-spine small {
  font-size: 0.6rem;
  opacity: 0.6;
}

/* BODY */
.rts-hero-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  padding: 6rem;
  gap: 4rem;
  align-items: center;
}

/* CONTENT */
.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #22c55e;
}

.rts-hero-content h1 {
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin: 1rem 0;
}

.rts-hero-content h1 span {
  color: #22c55e;
}

.rts-hero-content p {
  max-width: 520px;
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 2.5rem;
}

/* ACTIONS */
.rts-hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #02131f;
  padding: 0.9rem 1.6rem;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
}

.hero-secondary {
  color: #eaf2ff;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.85;
}

/* VISUAL SIDE */
.rts-hero-visual {
  position: relative;
  height: 100%;
}

.tech-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(34,197,94,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridMove 20s linear infinite;
}

.hero-glow {
  position: absolute;
  inset: 20% 10%;
  background: radial-gradient(circle, rgba(34,197,94,0.35), transparent 70%);
  filter: blur(80px);
}

/* GRID ANIMATION */
@keyframes gridMove {
  from { background-position: 0 0; }
  to { background-position: 200px 200px; }
}

/* SCROLL INDICATOR */
.rts-hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.6;
}

.rts-hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 2px;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0% { height: 20px; opacity: 0.3; }
  50% { height: 40px; opacity: 1; }
  100% { height: 20px; opacity: 0.3; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .rts-hero {
    grid-template-columns: 1fr;
  }

  .rts-hero-spine {
    display: none;
  }

  .rts-hero-body {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem;
  }

  .rts-hero-visual {
    height: 260px;
  }
}

/* ================================
   HERO BUTTONS FIX – REMOVE BLUE HOVER
================================ */

/* Remove default focus/outline/blue flash */
.hero-primary,
.hero-secondary {
  text-decoration: none;
  outline: none;
  box-shadow: none;
  color: inherit; /* keep original color */
}

/* Remove default hover color and maintain style */
.hero-primary:hover,
.hero-primary:focus {
  color: #02131f; /* same as normal */
  background: linear-gradient(135deg, #22c55e, #16a34a);
  outline: none;
  text-decoration: none;
  filter: brightness(1.05); /* subtle glow effect */
  transition: filter 0.3s ease;
}

.hero-secondary:hover,
.hero-secondary:focus {
  color: #eaf2ff; /* same as normal */
  opacity: 1;
  outline: none;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

/* Optional: cursor-magnetic pointer (for primary button) */
.hero-primary.magnetic {
  transition: transform 0.2s ease;
}

.hero-primary.magnetic:hover {
  transform: scale(1.05);
}

/* Prevent mobile devices from showing default highlight on tap */
.hero-primary:active,
.hero-secondary:active {
  background: inherit;
  color: inherit;
  outline: none;
}


/* ===============================
   LIVE TRUST STRIP
================================ */

.rts-live-trust {
  background: #020814;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

/* TOP ROW */
.rts-live-row {
  max-width: 1400px;
  margin: auto;
  padding: 26px 20px;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 18px;
}

/* LIVE DOT */
.rts-pulse-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 12px #22c55e;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: .4; }
  50% { opacity: 1; }
  100% { opacity: .4; }
}

/* LABEL */
.rts-live-label {
  font-size: 11px;
  letter-spacing: 3px;
  opacity: .6;
}

/* HEADLINE */
.rts-live-headline {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.rts-swap {
  color: #22c55e;
  font-weight: 700;
}

/* CTA — FEELS LIKE A CONTROL */
.rts-live-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 2px;
  cursor: pointer;
  opacity: .85;
  user-select: none;
}

.rts-live-cta:hover {
  opacity: 1;
}

.rts-live-cta .cta-arrow {
  transition: transform 0.25s ease;
}

.rts-live-cta:hover .cta-arrow {
  transform: translateX(6px);
}

/* TICKER */
.rts-live-ticker {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.rts-ticker-track {
  display: flex;
  gap: 60px;
  padding: 12px 0;
  animation: rts-scroll 18s linear infinite;
}

.rts-ticker-track span {
  font-size: 12px;
  letter-spacing: 4px;
  opacity: .55;
  white-space: nowrap;
}

@keyframes rts-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* MOBILE */
@media (max-width: 768px) {
  .rts-live-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .rts-live-headline {
    font-size: 22px;
  }

  .rts-live-cta {
    justify-content: center;
  }
}

/* ================================
   RTS SERVICES PREVIEW – PREMIUM
================================ */
.rts-services-preview {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  min-height: 100vh;
  background: linear-gradient(135deg, #020b14, #050d1c);
  color: #eaf2ff;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  padding: 3rem 0;
}

/* LEFT SPINE – Services (like hero spine) */
.rts-services-spine {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 3rem 1rem;        /* same as hero */
  display: flex;
  align-items: center;       /* centers content vertically */
  gap: 1.5rem;               /* same spacing as hero */
  background: linear-gradient(to bottom, #050b14, #020617);
}

.rts-services-spine span {
  font-size: 0.7rem;         /* same as hero */
  letter-spacing: 4px;
  color: #22c55e;
}

.rts-services-spine small {
  font-size: 0.6rem;         /* same as hero */
  opacity: 0.6;
  text-align: center;
}

.spine-line {
  width: 1px;
  height: 120px;
  background: rgba(255,255,255,0.15);
}

/* BODY */
.rts-services-body {
  position: relative;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* CARDS WRAPPER */
.rts-services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  z-index: 2;
  justify-content: flex-start;
  perspective: 1200px;
}

/* INDIVIDUAL CARD */
.rts-service-card {
  background: rgba(2,11,20,0.75);
  border-left: 3px solid #22c55e;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  width: 280px;
  cursor: pointer;
  transition: transform 0.6s ease, box-shadow 0.5s ease;
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: fadeInLeft 0.8s ease forwards;
  animation-delay: calc(var(--i) * 0.15s);
}

/* CARD HOVER EFFECT */
.rts-service-card:hover {
  transform: translateX(5px) rotateY(8deg) scale(1.05);
  box-shadow: 0 25px 50px rgba(34,197,94,0.4);
  border-left-color: #0ea5e9;
}

/* ICONS */
.rts-service-icon {
  font-size: 2.5rem;
  color: #22c55e;
  margin-bottom: 1rem;
  transition: transform 0.4s ease, color 0.4s ease;
}

.rts-service-card:hover .rts-service-icon {
  transform: rotate(25deg) scale(1.5);
  color: #0ea5e9;
  text-shadow: 0 0 12px #0ea5e9;
}

/* TEXT */
.rts-service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.rts-service-card p {
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.85;
}

/* CTA BUTTON */
.rts-view-services-btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #020617;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.3s ease;
}

.rts-view-services-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(34,197,94,0.5);
  filter: brightness(1.1);
}

/* ANIMATION KEYFRAMES */
@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .rts-services-preview {
    grid-template-columns: 1fr;
  }

  .rts-services-spine {
    display: none;
  }

  .rts-services-cards {
    justify-content: center;
  }
}

/* Price Tag */
.rts-price {
  display: inline-block;
  font-weight: 700;
  color: #0ea5e9;
  margin-top: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: 0.8rem;
  background: rgba(34,197,94,0.1);
  transition: background 0.3s ease, transform 0.3s ease;
  font-size: 0.9rem;
}

.rts-service-card:hover .rts-price {
  background: rgba(34,197,94,0.25);
  transform: scale(1.05);
}

/* Mobile Header Hidden on Desktop */
.rts-services-mobile-header {
  display: none;
  text-align: center;
  margin-bottom: 2rem;
}

.rts-services-mobile-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 0.5rem;
}

.rts-services-mobile-header p {
  font-size: 1rem;
  opacity: 0.85;
}

/* Show Only on Mobile */
@media (max-width: 900px) {
  .rts-services-mobile-header {
    display: block;
  }

  /* Adjust cards for mobile */
  .rts-services-cards {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .rts-service-card {
    width: 90%;
  }
}

/* ================================
   WHY CHOOSE RTS
================================ */
.rts-why-us {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  background: linear-gradient(135deg, #010913, #030b18);
  color: #eaf2ff;
  min-height: 100vh;
  overflow: hidden;
}

/* Spine */
.rts-why-spine {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 3rem 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(to bottom, #040b14, #020617);
}

.rts-why-spine span {
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: #22c55e;
}

.rts-why-spine small {
  font-size: 0.6rem;
  opacity: 0.6;
}

/* Body */
.rts-why-body {
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* Header */
.rts-why-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.rts-why-header p {
  max-width: 520px;
  opacity: 0.85;
  line-height: 1.6;
}

/* Grid */
.rts-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* Cards */
.rts-why-card {
  position: relative;
  background: rgba(2,11,20,0.75);
  border-radius: 1.2rem;
  padding: 2.2rem 1.8rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.rts-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(14,165,233,0.25);
}

/* Index Number */
.rts-why-index {
  position: absolute;
  top: -15px;
  right: 20px;
  color: #0ea5e9;
  font-size: 3rem;
  font-weight: 900;
  opacity: 0.08;
}

/* Text */
.rts-why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.rts-why-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
}

.rts-why-card em {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.85rem;
  color: #22c55e;
}

/* Responsive */
@media (max-width: 900px) {
  .rts-why-us {
    grid-template-columns: 1fr;
  }

  .rts-why-spine {
    display: none;
  }

  .rts-why-header {
    text-align: center;
  }
}

/* ================================
   RTS PROCESS X – UNIQUE FLOW
================================ */
.rts-process-x {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  background: radial-gradient(circle at top, #020c1a, #01060f);
  color: #eaf2ff;
  min-height: 100vh;
}

/* Spine */
.rts-process-spine {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 3rem 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(to bottom, #040b14, #020617);
}

.rts-process-spine span {
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: #22c55e;
}

.rts-process-spine small {
  font-size: 0.6rem;
  opacity: 0.6;
}

/* Body */
.rts-process-body {
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Header */
.rts-process-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.rts-process-header p {
  max-width: 540px;
  opacity: 0.85;
  line-height: 1.6;
}

/* Flow */
.rts-process-flow {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  position: relative;
}

/* Vertical progress line */
.rts-process-flow::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(34,197,94,0.6),
    rgba(14,165,233,0.6)
  );
}

/* Stage */
.rts-process-stage {
  position: relative;
  padding: 2rem 2rem 2rem 4.5rem;
  background: rgba(2,11,20,0.75);
  border-radius: 1.2rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.rts-process-stage:hover {
  transform: translateX(8px);
  box-shadow: 0 25px 45px rgba(34,197,94,0.25);
}

/* Stage number */
.stage-code {
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
  color: #020617;
  font-weight: 800;
  display: grid;
  place-items: center;
}

/* Text */
.rts-process-stage h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.rts-process-stage p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .rts-process-x {
    grid-template-columns: 1fr;
  }

  .rts-process-spine {
    display: none;
  }

  .rts-process-flow::before {
    left: 18px;
  }

  .stage-code {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}



/* ================================
   RTS PROJECTS – VERTICAL SPINE
================================ */

.rts-projects-spined {
  display: grid;
  grid-template-columns: 80px 1fr;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(34,197,94,0.08), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(14,165,233,0.08), transparent 45%),
    #020b14;
  color: #e6f1fa;
  font-family: var(--rts-font, 'Poppins', sans-serif);
  overflow: hidden;
}

/* Spine */
.rts-projects-spine {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 3rem 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(to bottom, #040b14, #020617);
}

.rts-projects-spine span {
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: #22c55e;
}

.rts-projects-spine small {
  font-size: 0.6rem;
  opacity: 0.6;
}

.spine-line {
  width: 1px;
  height: 120px;
  background: rgba(255,255,255,0.15);
}

/* Body */
.rts-projects-body {
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* Header */
.rts-projects-header {
  max-width: 720px;
}

.rts-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #22c55e;
}

.rts-projects-header h2 {
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  margin: 0.6rem 0;
}

.rts-projects-header p {
  color: rgba(234,242,255,0.75);
  max-width: 560px;
}

/* Grid */
.rts-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.2rem;
}

/* Cards */
.rts-project-card {
  position: relative;
  padding: 2.2rem;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.4s ease;
}

.rts-project-card:hover {
  transform: translateY(-14px) scale(1.04);
  box-shadow: 0 35px 90px rgba(0,0,0,0.75);
  border-color: rgba(34,197,94,0.35);
}

/* Glow */
.rts-project-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(34,197,94,0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.rts-project-card:hover .rts-project-glow {
  opacity: 1;
}

/* Meta */
.rts-project-meta {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.badge {
  font-size: 0.65rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge.live {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #022c22;
}

/* Text */
.rts-project-card h3 {
  margin: 0.4rem 0 0.7rem;
  font-size: 1.2rem;
}

.rts-project-card p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(234,242,255,0.75);
}

.rts-project-card a {
  display: inline-flex;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #22c55e;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.rts-project-card a:hover {
  transform: translateX(6px);
  color: #0ea5e9;
}

/* Responsive */
@media (max-width: 900px) {
  .rts-projects-spined {
    grid-template-columns: 1fr;
  }

  .rts-projects-spine {
    display: none;
  }

  .rts-projects-body {
    padding: 4rem 1.5rem;
  }

  .rts-projects-header {
    text-align: center;
  }
}


/* ================================
   TESTIMONIALS
================================ */
.rts-testimonials {
  padding: 6rem 1.4rem;
  background: radial-gradient(circle at top, #04141f, #020617);
  color: var(--rts-text-main);
}

.rts-testimonials-header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.rts-testimonials-header h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin: 0.6rem 0;
}

.rts-testimonials-header p {
  color: var(--rts-text-soft);
  font-size: 0.9rem;
}

/* ================================
   TRACK
================================ */
.rts-testimonial-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}

/* ================================
   CARD
================================ */
.rts-testimonial-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 2rem;
  opacity: 0.55;
  transform: scale(0.97);
  transition: all 0.6s ease;
}

.rts-testimonial-card.active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(34,197,94,0.3);
}

/* ================================
   SIGNAL DOT
================================ */
.rts-testimonial-signal {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 10px;
  height: 10px;
  background: var(--rts-accent);
  border-radius: 50%;
  animation: signalPulse 1.6s infinite;
}

@keyframes signalPulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* ================================
   TEXT
================================ */
.rts-testimonial-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--rts-text-soft);
}

/* ================================
   CLIENT
================================ */
.rts-client {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.rts-client strong {
  font-size: 0.85rem;
}

.rts-client span {
  font-size: 0.7rem;
  color: #9ca3af;
}

/* ================================
   MOBILE
================================ */
@media (max-width: 600px) {
  .rts-testimonials {
    padding: 4rem 1.2rem;
  }
}


/* ================================
   CTA SECTION
================================ */
.rts-cta {
  position: relative;
  padding: 6rem 1.4rem;
  background: linear-gradient(180deg, #020617, #04141f);
  overflow: hidden;
}

.rts-cta-glow {
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 300px;
  background: radial-gradient(circle, rgba(34,197,94,0.25), transparent 70%);
  filter: blur(80px);
}

/* ================================
   CONTAINER
================================ */
.rts-cta-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  color: var(--rts-text-main);
  font-family: var(--rts-font);
}

/* ================================
   CONTENT
================================ */
.rts-cta-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.rts-cta-content p {
  font-size: 0.95rem;
  color: var(--rts-text-soft);
  max-width: 520px;
}

/* ================================
   ACTION BUTTONS
================================ */
.rts-cta-actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.rts-cta-primary {
  background: linear-gradient(135deg, var(--rts-accent), var(--rts-accent-dark));
  color: #02131f;
  padding: 0.9rem 1.4rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
}

.rts-cta-secondary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  color: var(--rts-text-main);
  text-decoration: none;
}

.rts-cta-secondary i {
  color: #25D366;
  font-size: 1.1rem;
}

/* ================================
   FORM
================================ */
.rts-cta-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.rts-cta-form h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.rts-cta-form input,
.rts-cta-form textarea {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--rts-text-main);
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  font-family: var(--rts-font);
  font-size: 0.8rem;
}

.rts-cta-form button {
  margin-top: 0.5rem;
  background: var(--rts-accent);
  border: none;
  border-radius: 12px;
  padding: 0.85rem;
  font-weight: 600;
  color: #02131f;
  cursor: pointer;
}

/* ================================
   MOBILE
================================ */
@media (max-width: 900px) {
  .rts-cta-container {
    grid-template-columns: 1fr;
  }

  .rts-cta-form {
    margin-top: 2rem;
  }
}


/* ================================
   FOOTER
================================ */
.rts-footer {
  background: #020617;
  color: var(--rts-text-soft);
  padding: 5rem 1.4rem 2rem;
  font-family: var(--rts-font);
}

.rts-footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

/* ================================
   BRAND
================================ */
.rts-footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 1rem 0 1.2rem;
}

.rts-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
}

/* ================================
   SOCIALS
================================ */
.rts-footer-socials {
  display: flex;
  gap: 0.8rem;
}

.rts-footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--rts-text-main);
  transition: background 0.25s ease;
}

.rts-footer-socials a:hover {
  background: var(--rts-accent);
  color: #020617;
}

/* ================================
   LINKS
================================ */
.rts-footer-links h4,
.rts-footer-contact h4 {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: var(--rts-text-main);
}

.rts-footer-links a {
  display: block;
  text-decoration: none;
  color: var(--rts-text-soft);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.rts-footer-links a:hover {
  color: var(--rts-accent);
}

/* ================================
   CONTACT
================================ */
.rts-footer-contact p {
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.rts-footer-whatsapp {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: #25D366;
  color: #020617;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.75rem;
}

/* ================================
   BOTTOM
================================ */
.rts-footer-bottom {
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: #9ca3af;
}

/* ================================
   MOBILE
================================ */
@media (max-width: 900px) {
  .rts-footer-container {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .rts-footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ================================
   ANOTHER - PAGE (ABOUT)
================================ */
/* ================================
   RTS WHO WE ARE – PREMIUM SPLIT
================================ */

.rts-about-premium {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  background: #020b14;
  color: #eaf2ff;
  padding: 4rem 2rem;
}

.rts-about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

/* Left Photo */
.rts-about-photo {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: 0 20px 60px rgba(0,255,150,0.2);
  transform: perspective(1200px) rotateY(-5deg);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.rts-about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.rts-about-photo:hover img {
  transform: scale(1.05) rotateZ(1deg);
}

.rts-about-photo:hover {
  transform: perspective(1200px) rotateY(0deg);
  box-shadow: 0 35px 90px rgba(34,197,94,0.4);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(34,197,94,0.25), rgba(14,165,233,0.25));
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Right Content */
.rts-about-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Header */
.rts-about-header .rts-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 4px;
  color: #22c55e;
  text-transform: uppercase;
}

.rts-about-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.5rem 0 1rem;
}

.rts-about-header p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(234,242,255,0.85);
}

/* Cards */
.rts-about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.rts-about-card {
  background: rgba(2,11,20,0.7);
  border: 1px solid rgba(34,197,94,0.3);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  padding: 1.8rem;
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.4s ease;
}

.rts-about-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 70px rgba(34,197,94,0.4);
  border-color: #16a34a;
}

.rts-about-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.rts-about-card p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(234,242,255,0.8);
}

/* Responsive */
@media (max-width: 900px) {
  .rts-about-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .rts-about-photo {
    transform: perspective(1200px) rotateY(0deg);
  }
}


/* ================================
   AOS ANIMATION
================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.rts-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.rts-news-card {
  background: rgba(2,11,20,0.8);
  border-left: 3px solid #22c55e;
  border-radius: 1rem;
  padding: 2rem;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.rts-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(34,197,94,0.4);
}

/* Modal */
.rts-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.7);
}

.rts-modal-content {
  background: #010c1a;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 1rem;
  width: 90%;
  max-width: 600px;
  color: #eaf2ff;
  position: relative;
}

.rts-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #22c55e;
}

/* ================================
   RTS NEWS / BEST NEWS – PREMIUM
================================ */

/* News Section */
.rts-news {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #010c1a, #020617);
  color: #eaf2ff;
  font-family: 'Poppins', sans-serif;
}

.rts-news-header {
  text-align: center;
  margin-bottom: 3rem;
}

.rts-news-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #22c55e;
}

.rts-news-header p {
  font-size: 1rem;
  opacity: 0.8;
  max-width: 700px;
  margin: 0.5rem auto 0;
}

/* News Grid */
.rts-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Individual News Card */
.rts-news-card {
  background: rgba(2,11,20,0.85);
  border-left: 4px solid #22c55e;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rts-news-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(34,197,94,0.4);
  border-left-color: #0ea5e9;
}

/* Badges */
.rts-news-card .badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  background: #22c55e;
  color: #010c1a;
  text-transform: uppercase;
}

/* News Card Titles & Text */
.rts-news-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.rts-news-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.8;
}

/* ================================
   MODAL
================================ */
.rts-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: rgba(0,0,0,0.8);
  animation: fadeIn 0.3s ease forwards;
}

.rts-modal-content {
  background: #010c1a;
  margin: 7% auto;
  padding: 2rem;
  border-radius: 1rem;
  width: 90%;
  max-width: 600px;
  color: #eaf2ff;
  position: relative;
  box-shadow: 0 20px 40px rgba(34,197,94,0.4);
  animation: scaleIn 0.3s ease forwards;
}

.rts-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #22c55e;
  transition: color 0.2s ease;
}

.rts-modal-close:hover {
  color: #0ea5e9;
}

/* Modal Headings & Paragraphs */
.rts-modal-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.rts-modal-content p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes scaleIn {
  0% { transform: scale(0.95); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 900px) {
  .rts-news {
    padding: 3rem 1rem;
  }

  .rts-news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}



/* ================================
   RTS CONTACT X – PREMIUM
================================ */

.rts-contactx {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  min-height: 100vh;
  background: #050b14;
  color: #eaf2ff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* LEFT SPINE */
.rts-contactx-spine {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 3rem 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(to bottom, #050b14, #020617);
}

.rts-contactx-spine span {
  letter-spacing: 4px;
  font-size: 0.7rem;
  color: #22c55e;
}

.spine-line {
  width: 1px;
  height: 120px;
  background: rgba(255,255,255,0.15);
}

.rts-contactx-spine small {
  font-size: 0.6rem;
  opacity: 0.6;
}

/* BODY */
.rts-contactx-body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  padding: 5rem;
  gap: 4rem;
}

/* MESSAGE COLUMN */
.rts-contactx-message h2 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.rts-contactx-message p {
  max-width: 480px;
  opacity: 0.8;
  margin-bottom: 3rem;
}

/* FORM */
.rts-contactx-form .field {
  margin-bottom: 1.5rem;
}

.rts-contactx-form label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.4rem;
}

.rts-contactx-form input,
.rts-contactx-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 0.6rem 0;
  color: #fff;
  font-size: 0.95rem;
}

.rts-contactx-form input:focus,
.rts-contactx-form textarea:focus {
  outline: none;
  border-color: #22c55e;
}

.rts-contactx-form button {
  margin-top: 2rem;
  background: none;
  border: none;
  color: #22c55e;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.rts-contactx-form .arrow {
  transition: transform 0.3s ease;
}

.rts-contactx-form button:hover .arrow {
  transform: translateX(6px);
}

/* CONTACT CHANNELS */
.rts-contactx-channels {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}

.channel {
  padding-left: 1.5rem;
  border-left: 2px solid rgba(255,255,255,0.1);
}

.channel .tag {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: #22c55e;
}

.channel p {
  margin-top: 0.4rem;
  font-size: 0.95rem;
}

.channel.highlight {
  border-left-color: #22c55e;
}

.channel a {
  color: #22c55e;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .rts-contactx {
    grid-template-columns: 1fr;
  }

  .rts-contactx-spine {
    display: none;
  }

  .rts-contactx-body {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }
}


/* ================================
   REQUEST A QUOTE
================================ */
.rts-quote {
  padding: 7rem 1.5rem;
  background: radial-gradient(circle at top, #04141f, #020617);
  color: #e5f0ff;
  font-family: var(--rts-font);
}

.rts-quote-hero {
  max-width: 720px;
  margin: auto;
  text-align: center;
  margin-bottom: 4rem;
}

.quote-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rts-accent);
}

.rts-quote-hero h1 {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  margin: 0.8rem 0;
}

.rts-quote-hero p {
  opacity: 0.85;
  font-size: 0.95rem;
}

/* ================================
   FORM
================================ */
.rts-quote-form {
  max-width: 800px;
  margin: auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.rts-quote-form input,
.rts-quote-form select,
.rts-quote-form textarea {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  font-size: 0.85rem;
}

.rts-quote-form textarea {
  resize: none;
}

.quote-submit {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, var(--rts-accent), var(--rts-accent-dark));
  border: none;
  padding: 1rem;
  border-radius: 16px;
  font-weight: 700;
  color: #02131f;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* ================================
   TRUST
================================ */
.rts-quote-trust {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* ================================
   MOBILE
================================ */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .rts-quote-form {
    padding: 2rem;
  }
}

.rts-quote-success-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.rts-quote-success-modal .modal-content {
  background: linear-gradient(135deg, #22c55e);
  padding: 2rem 2.5rem;
  border-radius: 1.5rem;
  text-align: center;
  color: #fff;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 25px 80px rgba(34,197,94,0.5);
  transform: scale(0.9);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.rts-quote-success-modal.show {
  display: flex;
}

.rts-quote-success-modal .modal-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.rts-quote-success-modal .modal-content p {
  font-size: 1rem;
  line-height: 1.5;
}

.rts-quote-success-modal .close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
}

/* Success Modal */
.rts-contact-success-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.rts-contact-success-modal.show {
  display: flex;
}

.rts-contact-success-modal .modal-content {
  background: linear-gradient(135deg, #0ea5e9);
  padding: 2rem 2.5rem;
  border-radius: 1.5rem;
  text-align: center;
  color: #fff;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 25px 80px rgba(34,197,94,0.5);
}

.rts-contact-success-modal .modal-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.rts-contact-success-modal .modal-content p {
  font-size: 1rem;
}

.rts-contact-success-modal .close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}