/* ═══════════════════════════════════════════════════════════════
   index.css — Rupesh Technologies  ★ PREMIUM DARK EDITION v3
   Full Page CSS: Hero · About · Stats · CTA · Services · Team · Contact
   Mobile (320px) | Tablet (768px) | Desktop (1200px+) — Fully Responsive
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=DM+Mono:wght@400;500&display=swap');

/* ══════════════════════════════════════
   ROOT TOKENS
══════════════════════════════════════ */
:root {
  /* Fonts */
  --font-default:   "DM Sans",   system-ui, sans-serif;
  --font-primary:   "Sora",      sans-serif;
  --font-secondary: "DM Sans",   sans-serif;
  --font-mono:      "DM Mono",   monospace;

  /* AOS compat */
  --color-default:  #e2e8f0;
  --color-primary:  #6366f1;
  --color-secondary:#f59e0b;

  /* ── Surfaces (hsl base = 240 10% 3.9%) ── */
  --bg:          hsl(240 10% 3.9%);          /* #09090f  page bg   */
  --bg-2:        hsl(240 10% 6%);            /* #0e0e18  alt rows  */
  --bg-3:        hsl(240 10% 9%);            /* #141421  cards     */
  --bg-4:        hsl(240 10% 12%);           /* #1a1a2b  hover bg  */
  --bg-5:        hsl(240 10% 15%);           /* #212136  deep card */

  /* ── Accent palette ── */
  --gold:        #f5c400;
  --gold-dim:    rgba(245,196,0,0.13);
  --gold-glow:   rgba(245,196,0,0.32);
  --gold-ring:   rgba(245,196,0,0.20);

  --indigo:      #6366f1;
  --indigo-dim:  rgba(99,102,241,0.13);
  --indigo-glow: rgba(99,102,241,0.30);
  --indigo-ring: rgba(99,102,241,0.18);

  --cyan:        #22d3ee;
  --cyan-dim:    rgba(34,211,238,0.10);

  --violet:      #a78bfa;
  --violet-dim:  rgba(167,139,250,0.13);

  --emerald:     #10b981;
  --emerald-dim: rgba(16,185,129,0.13);

  --amber:       #f59e0b;
  --rose:        #f43f5e;

  /* ── Text ── */
  --tx-1:  #f1f5f9;
  --tx-2:  #94a3b8;
  --tx-3:  #475569;
  --tx-inv:#07090f;

  /* ── Borders ── */
  --bdr:   rgba(255,255,255,0.065);
  --bdr-2: rgba(255,255,255,0.11);
  --bdr-3: rgba(255,255,255,0.18);

  /* ── Radii ── */
  --r-xs:  6px;
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  22px;
  --r-xl:  32px;

  /* ── Shadows ── */
  --sh-sm:   0 2px 12px rgba(0,0,0,0.40);
  --sh-md:   0 6px 32px  rgba(0,0,0,0.50);
  --sh-lg:   0 16px 52px rgba(0,0,0,0.60);
  --sh-xl:   0 28px 80px rgba(0,0,0,0.70);
  --sh-gold: 0 8px 28px  var(--gold-glow);
  --sh-ind:  0 8px 28px  var(--indigo-glow);

  /* ── Easing ── */
  --ease:    cubic-bezier(.4,0,.2,1);
  --spring:  cubic-bezier(.34,1.56,.64,1);
  --ease-o:  cubic-bezier(0,0,.2,1);

  scroll-behavior: smooth;
}

/* ══════════════════════════════════════
   BASE RESET
══════════════════════════════════════ */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }

body {
  font-family: var(--font-default);
  color: var(--tx-1);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--indigo); text-decoration: none; }
a:hover { text-decoration: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-primary); }
img { max-width:100%; height:auto; display:block; }
button { font-family: var(--font-default); }

::selection { background: rgba(99,102,241,.28); color:#fff; }

::-webkit-scrollbar       { width:5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(99,102,241,.40); border-radius:3px; }
::-webkit-scrollbar-thumb:hover { background: var(--indigo); }

:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
  border-radius: 4px;
}


/* ══════════════════════════════════════
   SHARED UTILITIES
══════════════════════════════════════ */

/* Horizontal glow dividers between sections */
.rt-section-label span,
.rt-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--indigo-dim);
  color: var(--indigo);
  font-family: var(--font-primary);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 14px;
  border: 1px solid var(--indigo-ring);
}

.rt-section-title {
  font-family: var(--font-primary);
  font-size: clamp(1.75rem,4vw,2.65rem);
  font-weight: 800;
  color: var(--tx-1);
  line-height: 1.13;
  letter-spacing: -.6px;
  margin-bottom: 14px;
}
.rt-section-title .rt-highlight { color: var(--indigo); }

.rt-section-sub {
  font-size: .96rem;
  color: var(--tx-2);
  max-width: 560px;
  line-height: 1.85;
  margin: 0 auto 8px;
}

/* thin rainbow divider reusable */
.rt-glow-line {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--indigo) 30%,
    var(--cyan) 55%,
    var(--gold) 80%,
    transparent 100%);
  opacity: .45;
}


/* ══════════════════════════════════════
   1. HERO — Deep Dark Premium
══════════════════════════════════════ */
.hero {
  width: 100%;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 70% at 75% -10%,  rgba(99,102,241,.18) 0%, transparent 60%),
    radial-gradient(ellipse 55% 55% at  5%  90%,  rgba(245,196,0,.08)  0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 92%  82%,  rgba(34,211,238,.07) 0%, transparent 55%),
    linear-gradient(170deg, hsl(240 10% 2.5%) 0%, hsl(240 14% 5%) 55%, hsl(240 10% 3%) 100%);
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
}

/* grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

/* large top-right orb */
.hero::after {
  content: '';
  position: absolute;
  top: -180px; right: -140px;
  width: 750px; height: 750px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,.13) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero .container { position:relative; z-index:1; }

/* badge */
.hero-badge .badge {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  background: var(--gold-dim);
  border: 1px solid rgba(245,196,0,.35);
  color: var(--gold);
  padding: 7px 18px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* H1 */
.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2.1rem, 5.5vw, 3.65rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.06;
  margin-bottom: 22px;
  letter-spacing: -1.8px;
}
.hero-title .hero-title-grad {
  background: linear-gradient(135deg, var(--gold) 0%, #ff9f43 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* paragraph */
.hero-desc {
  color: rgba(255,255,255,.52);
  font-size: .97rem;
  line-height: 1.92;
  max-width: 500px;
  margin-bottom: 10px;
  font-weight: 300;
}

/* CTA — primary gold */
.hero .btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), #e8a800);
  color: var(--tx-inv);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: .93rem;
  padding: 14px 34px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .3s var(--spring), box-shadow .3s var(--ease);
  box-shadow: 0 4px 22px var(--gold-glow), 0 0 44px rgba(245,196,0,.10);
}
.hero .btn-primary-hero:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 34px var(--gold-glow), 0 0 64px rgba(245,196,0,.18);
  color: var(--tx-inv);
}

/* CTA — ghost */
.hero .btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.80);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: .93rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.13);
  cursor: pointer;
  text-decoration: none;
  transition: all .3s var(--ease);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero .btn-ghost-hero:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.26);
  color: #fff;
  transform: translateY(-2px);
}

/* hero image */
.hero-img {
  max-height: 420px;
  width: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.70));
  animation: hero-float 5s ease-in-out infinite;
}
@keyframes hero-float {
  0%,100% { transform: translateY(0)   rotate(0deg); }
  33%      { transform: translateY(-16px) rotate(.5deg); }
  66%      { transform: translateY(-9px)  rotate(-.3deg); }
}

/* stat cards */
.hero-stat {
  background: rgba(255,255,255,.038);
  border: 1px solid var(--bdr);
  border-radius: var(--r-md);
  padding: 18px 12px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background .3s, transform .3s var(--spring), border-color .3s;
}
.hero-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-stat:hover {
  background: rgba(255,255,255,.075);
  transform: translateY(-4px);
  border-color: var(--indigo-ring);
}
.hero-stat-num {
  display: block;
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), #ffb830);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -1px;
}
.hero-stat-label {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,.36);
  font-weight: 500;
  letter-spacing: .8px;
  text-transform: uppercase;
}

/* feature cards row */
.hero .icon-boxes {
  position: relative;
  z-index: 2;
  padding: 52px 0 0;
  margin-top: 24px;
}
.hero .icon-boxes::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 62%;
  background: var(--bg-2);
}

.rt-feature-card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px 22px;
  background: var(--bg-3);
  border-radius: var(--r-md);
  text-decoration: none;
  color: var(--tx-1);
  border: 1px solid var(--bdr);
  box-shadow: var(--sh-md);
  transition: transform .35s var(--spring), box-shadow .35s var(--ease), border-color .3s;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.rt-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--indigo);
  border-radius: var(--r-md) var(--r-md) 0 0;
  transition: height .3s var(--ease);
}
.rt-feature-card.rt-fc-2::before { background: var(--emerald); }
.rt-feature-card.rt-fc-3::before { background: var(--gold); }
.rt-feature-card.rt-fc-4::before { background: var(--rose); }
.rt-feature-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--sh-lg);
  border-color: var(--indigo-ring);
  color: var(--tx-1);
}
.rt-feature-card:hover::before { height: 3px; }

.rt-fc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--indigo-dim);
  color: var(--indigo);
  display: flex; align-items: center; justify-content: center;
  font-size: 23px;
  margin-bottom: 16px;
  transition: background .3s, color .3s, transform .3s var(--spring);
}
.rt-feature-card.rt-fc-2 .rt-fc-icon { background: var(--emerald-dim); color: var(--emerald); }
.rt-feature-card.rt-fc-3 .rt-fc-icon { background: var(--gold-dim);    color: var(--gold);    }
.rt-feature-card.rt-fc-4 .rt-fc-icon { background: rgba(244,63,94,.12); color: var(--rose);    }
.rt-feature-card:hover .rt-fc-icon {
  background: var(--gold-dim);
  color: var(--gold);
  transform: scale(1.09) rotate(-5deg);
}

.rt-fc-title {
  font-family: var(--font-primary);
  font-size: .96rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--tx-1);
  letter-spacing: -.2px;
}
.rt-fc-desc { font-size: 13px; color: var(--tx-2); line-height: 1.68; flex: 1; }

.rt-fc-arrow {
  margin-top: 16px;
  width: 32px; height: 32px;
  background: var(--indigo-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--indigo);
  font-size: 16px;
  transition: transform .3s var(--spring);
}
.rt-feature-card.rt-fc-2 .rt-fc-arrow { color: var(--emerald); background: var(--emerald-dim); }
.rt-feature-card.rt-fc-3 .rt-fc-arrow { color: var(--gold);    background: var(--gold-dim);    }
.rt-feature-card.rt-fc-4 .rt-fc-arrow { color: var(--rose);    background: rgba(244,63,94,.12); }
.rt-feature-card:hover .rt-fc-arrow { transform: translateX(5px); }

@media (max-width:991px) {
  .hero { padding:90px 0 0; min-height:auto; }
  .hero-img { max-height:310px; }
  .hero-title { font-size: clamp(1.85rem,6vw,2.8rem); }
}
@media (max-width:640px) {
  .hero { padding:80px 0 0; }
  .hero-title { font-size:1.9rem; letter-spacing:-.8px; }
  .hero-desc  { font-size:.92rem; }
  .hero-img   { max-height:220px; }
  .hero-stat-num { font-size:1.65rem; }
  .rt-feature-card { padding:22px 18px 18px; }
}


/* ══════════════════════════════════════
   2. GALLERY SECTION
══════════════════════════════════════ */
.rt-gallery-section {
  padding: 90px 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.rt-gallery-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--indigo), var(--cyan), transparent);
  opacity: .4;
}

.rt-gallery-heading {
  font-family: var(--font-primary);
  font-size: clamp(1.85rem,4vw,2.75rem);
  font-weight: 800;
  color: var(--tx-1);
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: -.6px;
}
.rt-gallery-heading span {
  color: var(--indigo);
  position: relative;
  display: inline-block;
}
.rt-gallery-heading span::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.rt-gallery-sub {
  text-align: center;
  color: var(--tx-2);
  font-size: .95rem;
  margin-bottom: 40px;
  line-height: 1.78;
}

.rt-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: repeat(2,220px);
  gap: 12px;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.rt-gi {
  background-size: cover;
  background-position: center;
  border-radius: var(--r-sm);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .35s var(--ease);
}
.rt-gi:nth-child(1) { grid-column: 1/3; }
.rt-gi:nth-child(5) { grid-column: 3/5; }
.rt-gi:hover        { transform: scale(1.025); }

.rt-gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(9,9,15,.80) 0%,
    rgba(9,9,15,.18) 55%,
    transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.rt-gi:hover .rt-gi-overlay { opacity: 1; }
.rt-gi-overlay span {
  background: var(--gold);
  color: var(--tx-inv);
  font-family: var(--font-primary);
  font-size: 11.5px;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 24px;
  letter-spacing: .8px;
  text-transform: uppercase;
  box-shadow: 0 4px 20px var(--gold-glow);
}

/* Lightbox */
.rt-lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,5,12,.97);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}
.rt-lb-overlay.open { display: flex; }
.rt-lb-overlay img {
  max-width: 88vw;
  max-height: 80vh;
  border-radius: var(--r-md);
  object-fit: contain;
  box-shadow: var(--sh-xl);
}
.rt-lb-close,.rt-lb-prev,.rt-lb-next {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--bdr-2);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  transition: background .25s, color .25s, transform .25s;
  position: absolute;
}
.rt-lb-close:hover,.rt-lb-prev:hover,.rt-lb-next:hover {
  background: var(--gold);
  color: var(--tx-inv);
  transform: scale(1.08);
}
.rt-lb-close { top:20px; right:20px; }
.rt-lb-prev  { left:20px;  top:50%; transform:translateY(-50%); font-size:26px; }
.rt-lb-next  { right:20px; top:50%; transform:translateY(-50%); font-size:26px; }
.rt-lb-prev:hover { transform: translateY(-50%) scale(1.08); }
.rt-lb-next:hover { transform: translateY(-50%) scale(1.08); }
.rt-lb-counter {
  position: absolute;
  bottom: 22px;
  color: rgba(255,255,255,.36);
  font-size: 12px;
  font-family: var(--font-mono);
}

@media (max-width:768px) {
  .rt-gallery-grid {
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(4,155px);
  }
  .rt-gi:nth-child(1) { grid-column: 1/2; }
  .rt-gi:nth-child(5) { grid-column: 2/3; }
}
@media (max-width:480px) {
  .rt-gallery-grid { grid-template-rows: repeat(4,125px); gap:8px; }
}


/* ══════════════════════════════════════
   3. ABOUT SECTION
══════════════════════════════════════ */
.rt-about-section {
  padding: 104px 0;
  background: var(--bg);
  position: relative;
}
.rt-about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,.28), transparent);
}

.rt-about-img-wrap { position: relative; }
.rt-about-img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,.60);
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.rt-about-img-wrap::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px; right: 12px; bottom: 12px;
  border: 1.5px solid rgba(99,102,241,.18);
  border-radius: calc(var(--r-lg) + 4px);
  z-index: 0;
}

/* floating badges */
.rt-about-badge,
.rt-about-badge2 {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-3);
  border-radius: var(--r-md);
  padding: 14px 20px;
  box-shadow: 0 10px 44px rgba(0,0,0,.55);
  z-index: 3;
  white-space: nowrap;
  border: 1px solid var(--bdr-2);
}
.rt-about-badge  { bottom:-20px; right:20px; }
.rt-about-badge2 { top:24px;     left:-20px; }
.rt-about-badge  i { font-size:26px; color:var(--gold);   flex-shrink:0; }
.rt-about-badge2 i { font-size:26px; color:var(--indigo); flex-shrink:0; }
.rt-about-badge strong,
.rt-about-badge2 strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 14px; font-weight: 700;
  color: var(--tx-1); line-height: 1.2;
}
.rt-about-badge span,
.rt-about-badge2 span {
  display: block; font-size: 11px;
  color: var(--tx-2); margin-top: 2px;
}

.rt-about-lead {
  font-size: 1rem;
  color: rgba(226,232,240,.72);
  line-height: 1.95;
  margin-bottom: 22px;
  font-weight: 300;
}

.rt-about-features { display:flex; flex-direction:column; gap:12px; margin-bottom:28px; }
.rt-af-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: var(--bg-3);
  border-radius: var(--r-sm);
  border: 1px solid var(--bdr);
  transition: border-color .25s, box-shadow .25s, transform .25s var(--ease);
}
.rt-af-item:hover {
  border-color: var(--indigo-ring);
  box-shadow: 0 4px 22px var(--indigo-glow);
  transform: translateX(4px);
}
.rt-af-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.rt-af-item strong {
  font-family: var(--font-primary);
  font-size: .92rem; color: var(--tx-1);
  display: block; margin-bottom: 4px; font-weight: 700;
}
.rt-af-item p { font-size:13px; color:var(--tx-2); margin:0; line-height:1.65; }

/* video block */
.rt-video-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 12px;
  box-shadow: var(--sh-md);
}
.rt-video-img {
  display: block; width: 100%; height: 340px;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.rt-video-wrap:hover .rt-video-img { transform: scale(1.03); }

.rt-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 76px; height: 76px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--tx-inv);
  text-decoration: none;
  box-shadow: 0 0 0 14px rgba(245,196,0,.18);
  transition: transform .3s var(--spring), box-shadow .3s var(--ease);
  z-index: 2;
}
.rt-play-btn:hover {
  transform: translate(-50%,-50%) scale(1.12);
  box-shadow: 0 0 0 24px rgba(245,196,0,.10);
  color: var(--tx-inv);
}
.rt-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,9,15,.62) 0%, transparent 55%);
  display: flex; align-items: flex-end;
  padding: 24px 28px;
}
.rt-video-overlay span {
  color: rgba(255,255,255,.88);
  font-size: 13.5px; font-weight: 600; letter-spacing: .4px;
}

.rt-about-section h3 {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  color: var(--indigo);
  margin: 20px 0 14px;
  font-weight: 700;
}

@media (max-width:991px) {
  .rt-about-section { padding:72px 0; }
  .rt-about-img-wrap::before { display:none; }
  .rt-about-badge2 { left:0; top:14px; }
  .rt-about-badge  { right:0; bottom:-14px; }
  .rt-video-img    { height:250px; }
}
@media (max-width:575px) {
  .rt-about-badge,.rt-about-badge2 { padding:10px 14px; }
  .rt-about-badge i,.rt-about-badge2 i { font-size:20px; }
  .rt-about-badge strong,.rt-about-badge2 strong { font-size:12.5px; }
  .rt-af-item { padding:13px 15px; gap:12px; }
}


/* ══════════════════════════════════════
   4. STATS / TESTIMONIALS
══════════════════════════════════════ */
.stats-counter {
  padding: 72px 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.stats-counter::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,.07) 0%, transparent 65%);
  pointer-events: none;
}
.stats-counter::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,196,0,.05) 0%, transparent 65%);
  pointer-events: none;
}

/* slideshow */
.slideshow-container {
  max-width: 680px;
  margin: 0 auto 32px;
  text-align: center;
}
.mySlides {
  display: none;
  padding: 40px 38px;
  background: var(--bg-3);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  border: 1px solid var(--bdr);
  border-left: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.mySlides::before {
  content: '\201C';
  position: absolute;
  top: 10px; right: 24px;
  font-family: Georgia,serif;
  font-size: 80px;
  color: var(--gold);
  opacity: .10;
  line-height: 1;
}
.mySlides:first-child { display: block; }

.textslider {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 14px;
}
.mySlides q {
  font-size: .96rem;
  color: rgba(226,232,240,.80);
  font-style: italic;
  line-height: 1.85;
  quotes: "\201C" "\201D";
}
.mySlides q::before {
  content: open-quote;
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -.45em;
  margin-right: 2px;
}
.mySlides .author {
  margin-top: 16px;
  font-size: .84rem;
  color: var(--tx-2);
  font-weight: 600;
}

.dot-container { text-align:center; margin-bottom:14px; }
.dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  margin: 0 4px;
  cursor: pointer;
  transition: background .25s, transform .25s, width .25s;
}
.dot.active, .dot:hover {
  background: var(--indigo);
  transform: scale(1.3);
  width: 20px;
  border-radius: 4px;
}

/* counter items */
.stats-counter .stats-item {
  display: flex;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--bdr);
}
.stats-counter .stats-item:last-child { border-bottom: none; }
.stats-counter .stats-item .purecounter { min-width:90px; padding-right:16px; }
.stats-counter .stats-item i {
  font-size: 44px;
  line-height: 0;
  margin-right: 16px;
  color: var(--color-primary);
}
.stats-counter .stats-item span {
  font-family: var(--font-primary);
  font-size: 42px;
  display: block;
  font-weight: 800;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -1.5px;
}
.stats-counter .stats-item p {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 14px;
  color: var(--tx-2);
  font-weight: 500;
}

@media (max-width:768px) {
  .mySlides { padding:26px 22px; }
  .stats-counter { padding:52px 0; }
}


/* ══════════════════════════════════════
   5. CALL TO ACTION
══════════════════════════════════════ */
.call-to-action {
  padding: 0 0 72px;
  background: var(--bg);
}
.call-to-action .container {
  background:
    linear-gradient(rgba(9,9,15,.70), rgba(9,9,15,.70)),
    url("../img/aboutme/dd.jpg") center center / cover no-repeat;
  padding: 64px 44px;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh-xl);
  border: 1px solid var(--bdr);
}
.call-to-action .container::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,196,0,.12) 0%, transparent 65%);
  pointer-events: none;
}
.call-to-action .container::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent, var(--gold), var(--indigo), transparent);
}

.call-to-action h3 {
  color: #fff;
  font-family: var(--font-primary);
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -.5px;
}
.call-to-action p {
  color: rgba(255,255,255,.62);
  margin-bottom: 24px;
  font-size: .97rem;
  line-height: 1.8;
}

.call-to-action .play-btn {
  width: 90px; height: 90px;
  margin-bottom: 22px;
  background: #FF0000;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  text-decoration: none;
  transition: transform .3s var(--spring);
  box-shadow: 0 4px 26px rgba(255,0,0,.40);
}
.call-to-action .play-btn:hover { transform: scale(1.08); }
.call-to-action .play-btn::before {
  content: "";
  position: absolute;
  width: 120px; height: 120px;
  animation: pulsate-btn 2s infinite;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255,255,255,.44);
  top: -15%; left: -15%;
}
.call-to-action .play-btn::after {
  content: "";
  position: absolute;
  left: 55%; top: 50%;
  transform: translateX(-50%) translateY(-50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid #fff;
  transition: all .3s;
}
.call-to-action .play-btn:hover::after { border-left-color: var(--gold); }

.call-to-action .cta-btn {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: .97rem;
  letter-spacing: .4px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  transition: all .3s var(--spring);
  margin: 8px;
  border: 1.5px solid rgba(255,255,255,.22);
  color: #fff;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.call-to-action .cta-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--tx-inv);
  transform: translateY(-3px);
  box-shadow: var(--sh-gold);
}

@keyframes pulsate-btn {
  0%   { transform:scale(.6); opacity:1; }
  100% { transform:scale(1.6); opacity:0; }
}

@media (max-width:640px) {
  .call-to-action .container { padding:42px 22px; border-radius:var(--r-lg); }
  .call-to-action h3 { font-size:1.3rem; }
  .call-to-action .cta-btn { padding:12px 28px; font-size:.9rem; }
}


/* ══════════════════════════════════════
   6. SERVICES
══════════════════════════════════════ */
#services {
  padding: 96px 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
#services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(99,102,241,.32), var(--cyan), rgba(99,102,241,.32), transparent);
  opacity: .5;
}
#services .text-center { margin-bottom:52px !important; }

.service-item {
  background: var(--bg-3);
  border-radius: var(--r-md) !important;
  padding: 30px 26px !important;
  transition: transform .35s var(--spring), box-shadow .35s var(--ease), border-color .25s;
  border: 1px solid var(--bdr) !important;
  position: relative;
  overflow: hidden;
}
/* shimmer top accent */
.service-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--indigo), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.service-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(99,102,241,.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.service-item:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-lg) !important;
  border-color: var(--indigo-ring) !important;
}
.service-item:hover::before { opacity: 1; }
.service-item:hover::after  { opacity: 1; }

.service-item .icon-box {
  width: 52px !important; height: 52px !important;
  border-radius: 14px !important;
  transition: background .3s, color .3s, transform .3s var(--spring);
  flex-shrink: 0;
}
.service-item:hover .icon-box { transform: scale(1.1) rotate(-5deg); }

.service-item h3 {
  font-family: var(--font-primary) !important;
  font-size: .97rem !important;
  font-weight: 700;
  color: var(--tx-1);
  margin-bottom: 10px;
  letter-spacing: -.2px;
}
.service-item p { font-size:13.5px; color:var(--tx-2); line-height:1.7; }

.service-item .readmore {
  font-family: var(--font-primary);
  font-size: 12.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .25s var(--ease), color .25s;
  letter-spacing: .3px;
  color: var(--indigo);
}
.service-item:hover .readmore { gap: 10px; }

/* area band */
.service-area-band {
  background: linear-gradient(135deg,
    rgba(99,102,241,.09) 0%,
    rgba(34,211,238,.05) 100%);
  border: 1px solid rgba(99,102,241,.18);
  border-radius: var(--r-lg);
  padding: 30px 36px;
  margin-top: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-area-band::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(99,102,241,.07);
  pointer-events: none;
}
.service-area-band h3 {
  font-family: var(--font-primary);
  font-size: 1.08rem;
  color: var(--indigo);
  margin-bottom: 10px;
  font-weight: 700;
}
.service-area-band p { color:var(--tx-2); font-size:.93rem; margin-bottom:20px; }

@media (max-width:768px) {
  #services { padding:72px 0; }
  .service-area-band { padding:24px 20px; }
}


/* ══════════════════════════════════════
   7. TEAM
══════════════════════════════════════ */
.rt-team-section {
  padding: 104px 0;
  background: var(--bg);
  position: relative;
}
.rt-team-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(245,196,0,.28), transparent);
}

.rt-team-header { text-align:center; margin-bottom:56px; }
.rt-team-title {
  font-family: var(--font-primary);
  font-size: clamp(1.9rem,4vw,2.75rem);
  font-weight: 900;
  color: var(--tx-1);
  letter-spacing: -.6px;
  margin-bottom: 12px;
  line-height: 1.13;
}
.rt-team-title em { font-style:normal; color:var(--indigo); }
.rt-team-sub {
  color: var(--tx-2);
  max-width: 520px;
  margin: 0 auto;
  font-size: .95rem;
  line-height: 1.85;
}

.rt-team-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 22px;
}

.rt-tm-card {
  background: var(--bg-3);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--bdr);
  transition: transform .35s var(--spring), box-shadow .35s var(--ease), border-color .3s;
}
.rt-tm-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--sh-xl);
  border-color: var(--indigo-ring);
}

/* photo wrap */
.rt-tm-photo-wrap {
  background: linear-gradient(145deg,
    rgba(99,102,241,.22), rgba(99,102,241,.06));
  padding: 28px 28px 0;
  position: relative;
  text-align: center;
}
.rt-ph-2 { background: linear-gradient(145deg, rgba(16,185,129,.20), rgba(16,185,129,.05)); }
.rt-ph-3 { background: linear-gradient(145deg, rgba(245,196,0,.18),  rgba(245,196,0,.04)); }
.rt-ph-4 { background: linear-gradient(145deg, rgba(167,139,250,.20), rgba(167,139,250,.05)); }

.rt-tm-photo {
  width: 100%; height: 196px;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px 12px 0 0;
  display: block;
  transition: transform .4s var(--ease);
}
.rt-tm-card:hover .rt-tm-photo { transform: scale(1.04); }

.rt-tm-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 56px;
  background: linear-gradient(to top, var(--bg-3), transparent);
}

/* info */
.rt-tm-info  { padding: 20px 22px 24px; }
.rt-tm-top   { display:flex; align-items:flex-start; justify-content:space-between; gap:8px; margin-bottom:10px; }
.rt-tm-name  {
  font-family: var(--font-primary);
  font-size: 1.03rem; font-weight: 800;
  color: var(--tx-1); margin-bottom: 5px; line-height: 1.2;
}
.rt-tm-role-tag {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 10px; font-weight: 700;
  background: var(--indigo-dim);
  color: var(--indigo);
  padding: 3px 11px;
  border-radius: 20px;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.rt-role-2 { background: var(--emerald-dim); color: var(--emerald); }
.rt-role-3 { background: var(--gold-dim);    color: var(--gold);    }
.rt-role-4 { background: var(--violet-dim);  color: var(--violet);  }

.rt-tm-socials { display:flex; gap:6px; flex-shrink:0; }
.rt-tm-socials a {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: rgba(255,255,255,.05);
  color: var(--tx-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid var(--bdr);
  transition: all .25s var(--spring);
}
.rt-tm-socials a:hover {
  background: var(--indigo);
  color: #fff;
  border-color: var(--indigo);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px var(--indigo-glow);
}

.rt-tm-desc { font-size:12.5px; color:var(--tx-2); line-height:1.75; margin-bottom:14px; }
.rt-tm-stat-row {
  display: flex; gap: 16px;
  border-top: 1px solid var(--bdr);
  padding-top: 14px;
}
.rt-tm-stat-row span   { font-size:12px; color:var(--tx-2); }
.rt-tm-stat-row strong { color:var(--tx-1); font-weight:700; }

@media (max-width:1100px) {
  .rt-team-grid { grid-template-columns:repeat(2,1fr); gap:20px; }
}
@media (max-width:600px) {
  .rt-team-grid { grid-template-columns:1fr; gap:18px; }
  .rt-team-section { padding:72px 0; }
  .rt-tm-photo { height:230px; }
}


/* ══════════════════════════════════════
   8. CONTACT
══════════════════════════════════════ */
.rt-contact-section {
  padding: 104px 0;
  background: var(--bg-2);
  position: relative;
}
.rt-contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, var(--indigo), var(--gold), transparent);
  opacity: .38;
}

.rt-contact-header { text-align:center; margin-bottom:60px; }
.rt-contact-title {
  font-family: var(--font-primary);
  font-size: clamp(1.9rem,4vw,2.75rem);
  font-weight: 900;
  color: var(--tx-1);
  line-height: 1.13;
  letter-spacing: -.6px;
  margin-bottom: 12px;
}
.rt-contact-title em { font-style:normal; color:var(--indigo); }
.rt-contact-sub { color:var(--tx-2); max-width:520px; margin:0 auto; font-size:.96rem; line-height:1.85; }

.rt-contact-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: start;
}

.rt-ci-stack { display:flex; flex-direction:column; gap:12px; }

.rt-ci-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-3);
  border: 1px solid var(--bdr);
  border-radius: var(--r-md);
  padding: 18px 20px;
  transition: border-color .25s, box-shadow .25s, transform .25s var(--ease);
}
.rt-ci-card:hover {
  border-color: var(--indigo-ring);
  box-shadow: 0 4px 22px var(--indigo-glow);
  transform: translateX(5px);
}
.rt-ci-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.rt-ci-label {
  font-size: 9.5px;
  color: var(--tx-3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 4px;
}
.rt-ci-val { font-size:13.5px; color:var(--tx-1); font-weight:600; line-height:1.5; }

/* WhatsApp */
.rt-ci-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  border-radius: var(--r-md);
  padding: 18px 20px;
  color: #fff;
  transition: transform .3s var(--spring), box-shadow .3s var(--ease);
  box-shadow: 0 4px 22px rgba(22,163,74,.28);
}
.rt-ci-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(22,163,74,.44);
}
.rt-ci-cta i { font-size:30px; flex-shrink:0; }
.rt-ci-cta strong { display:block; font-family:var(--font-primary); font-size:.92rem; font-weight:700; margin-bottom:2px; }
.rt-ci-cta span   { display:block; font-size:11px; opacity:.82; line-height:1.4; }
.rt-ci-cta-btn {
  margin-left: auto;
  background: rgba(255,255,255,.14);
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.28);
  padding: 9px 18px;
  border-radius: 10px;
  font-family: var(--font-primary);
  font-size: 12.5px; font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}
.rt-ci-cta-btn:hover { background: rgba(255,255,255,.26); }

/* form card */
.rt-form-wrap {
  background: var(--bg-3);
  border: 1px solid var(--bdr);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.rt-form-top {
  background: linear-gradient(135deg,
    hsl(240 20% 5%) 0%,
    hsl(245 40% 12%) 100%);
  padding: 30px 34px 26px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(99,102,241,.18);
}
.rt-form-top::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(245,196,0,.07);
  pointer-events: none;
}
.rt-form-top::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--indigo), transparent);
}
.rt-form-top h3 {
  font-family: var(--font-primary);
  font-size: 1.35rem; font-weight: 800;
  color: #fff; margin-bottom: 7px; letter-spacing: -.3px;
}
.rt-form-top p { font-size:.87rem; color:rgba(255,255,255,.46); margin:0; line-height:1.65; }

.rt-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 30px 34px 34px;
}
.rt-fg      { display:flex; flex-direction:column; gap:6px; }
.rt-fg-full { grid-column: 1/-1; }
.rt-fl      { font-size:12.5px; font-weight:600; color:var(--tx-2); letter-spacing:.2px; }

.rt-fi, .rt-ft {
  border: 1px solid var(--bdr);
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 14px;
  color: var(--tx-1);
  outline: none;
  width: 100%;
  font-family: var(--font-default);
  background: rgba(255,255,255,.038);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.rt-fi:focus, .rt-ft:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px var(--indigo-dim);
  background: rgba(99,102,241,.05);
}
.rt-fi::placeholder, .rt-ft::placeholder {
  color: rgba(255,255,255,.20);
  font-size: 13.5px;
}
.rt-ft { resize:vertical; min-height:124px; }

.rt-submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--indigo), #4f46e5);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 15px; font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  transition: all .3s var(--spring);
  letter-spacing: .2px;
  box-shadow: 0 4px 20px var(--indigo-glow);
}
.rt-submit-btn:hover {
  background: linear-gradient(135deg, var(--gold), #e8a800);
  color: var(--tx-inv);
  transform: translateY(-3px);
  box-shadow: var(--sh-gold);
}
.rt-submit-btn:active { transform: translateY(0); }

@media (max-width:960px) {
  .rt-contact-layout { grid-template-columns:1fr; }
  .rt-ci-card:hover  { transform:translateX(0); }
  .rt-contact-section { padding:72px 0; }
}
@media (max-width:560px) {
  .rt-form-grid { grid-template-columns:1fr; padding:22px 20px 26px; }
  .rt-form-top  { padding:24px 20px 20px; }
}


/* ══════════════════════════════════════
   GOOGLE MAP
══════════════════════════════════════ */
.mapping     { padding-bottom:22px; }
.mapouter    { position:relative; text-align:right; width:100%; height:300px; }
.gmap_canvas  { overflow:hidden; width:100%; height:300px; }
.gmap_iframe  {
  height: 300px !important;
  width: 100% !important;
  border: none;
  border-radius: var(--r-md);
  box-shadow: 0 4px 28px rgba(0,0,0,.50);
}


/* ══════════════════════════════════════
   UTILITY — WhatsApp float
══════════════════════════════════════ */
.rt-wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 27px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 22px rgba(37,211,102,.55);
  transition: transform .3s var(--spring), box-shadow .3s;
  animation: wa-pulse 2.8s ease-in-out infinite;
}
.rt-wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 32px rgba(37,211,102,.75);
  color: #fff;
}
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 22px rgba(37,211,102,.55); }
  50%      { box-shadow: 0 4px 38px rgba(37,211,102,.85); }
}

/* Scroll to top */
.rt-scroll-top {
  position: fixed;
  bottom: 92px; right: 28px;
  z-index: 900;
  width: 44px; height: 44px;
  background: var(--bg-3);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  text-decoration: none;
  box-shadow: var(--sh-md);
  opacity: 0;
  visibility: hidden;
  transition: all .3s var(--ease);
  border: 1px solid var(--bdr-2);
}
.rt-scroll-top.visible { opacity:1; visibility:visible; }
.rt-scroll-top:hover {
  background: var(--gold);
  color: var(--tx-inv);
  transform: translateY(-4px);
  box-shadow: var(--sh-gold);
}


/* ══════════════════════════════════════
   SCROLLBAR + SELECTION
══════════════════════════════════════ */
::selection { background: rgba(99,102,241,.28); color:#fff; }

::-webkit-scrollbar       { width:5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(99,102,241,.40); border-radius:3px; }
::-webkit-scrollbar-thumb:hover { background: var(--indigo); }

:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
  border-radius: 4px;
}