/* =========================================================
   Right Hands Accounting & Advisory — Coming Soon
   Brand palette + layout on top of Bootstrap 5
   ========================================================= */

:root {
  --navy:        #14224e;
  --navy-deep:   #0d1836;
  --navy-soft:   #24356b;
  --gold:        #c1922e;
  --gold-light:  #d9ad4a;
  --ink:         #1c2540;
  --muted:       #5b6478;
  --bg:          #f6f8fc;
  --card:        #ffffff;
  --line:        #e6eaf2;
  --radius:      18px;
  --shadow-sm:   0 6px 18px rgba(20, 34, 78, .08);
  --shadow-md:   0 18px 45px rgba(20, 34, 78, .14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.page { position: relative; z-index: 1; }

h1, h2, h3, .section-title, .hero-title, .footer-title {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  letter-spacing: .2px;
}

.text-gold { color: var(--gold) !important; }

/* ---------- Decorative background ---------- */
.bg-accents { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .35; }
.blob--gold { width: 420px; height: 420px; background: var(--gold); top: -120px; right: -100px; }
.blob--navy { width: 520px; height: 520px; background: var(--navy); bottom: -220px; left: -160px; opacity: .18; }
.dots {
  position: absolute; bottom: 40px; right: 6%;
  width: 140px; height: 90px;
  background-image: radial-gradient(var(--gold) 2px, transparent 2px);
  background-size: 18px 18px; opacity: .25;
}

/* ---------- Buttons ---------- */
.btn-brand {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none; color: #fff; font-weight: 600;
  padding: .7rem 1.6rem; border-radius: 999px;
  box-shadow: 0 10px 24px rgba(193, 146, 46, .35);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn-brand:hover, .btn-brand:focus {
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(193, 146, 46, .45); filter: brightness(1.03);
}
.btn-outline-brand {
  border: 2px solid var(--navy); color: var(--navy);
  font-weight: 600; padding: .65rem 1.5rem; border-radius: 999px;
  background: transparent; transition: all .18s ease;
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
  background: var(--navy); color: #fff; transform: translateY(-2px);
}

/* ---------- Hero ---------- */
.hero { padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4rem); }

/* Logo floats on a soft glow — no hard card box */
.logo-card {
  position: relative; display: block;
  max-width: 340px; width: 74%;
  margin: 0 auto 1.6rem;
  animation: floaty 6s ease-in-out infinite;
}
.logo-card::before {
  content: ""; position: absolute; z-index: -1;
  inset: -14% -10% -6%;
  background: radial-gradient(closest-side, rgba(255,255,255,.9), rgba(255,255,255,0) 72%),
              radial-gradient(closest-side, rgba(193,146,46,.16), rgba(193,146,46,0) 70%);
  filter: blur(6px);
}
.logo-img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 14px 30px rgba(20, 34, 78, .20));
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Premium "launching soon" badge with animated shimmer */
.badge-soon {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: .55rem;
  background: #fff; color: var(--navy);
  border: 1px solid rgba(193, 146, 46, .45);
  font-weight: 600; font-size: .82rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: .55rem 1.25rem; border-radius: 999px; margin-bottom: 1.5rem;
  box-shadow: 0 8px 22px rgba(20, 34, 78, .10);
}
.badge-soon::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(193,146,46,.28), transparent);
  transform: skewX(-20deg); animation: shimmer 3.2s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { left: -60%; }
  55%  { left: 130%; }
  100% { left: 130%; }
}
.pulse {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold); flex: 0 0 auto;
  box-shadow: 0 0 0 0 rgba(193, 146, 46, .6); animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(193,146,46,.55); }
  70%  { box-shadow: 0 0 0 12px rgba(193,146,46,0); }
  100% { box-shadow: 0 0 0 0 rgba(193,146,46,0); }
}

.hero-title {
  font-size: clamp(1.75rem, 6vw, 3.6rem); font-weight: 700;
  line-height: 1.12; margin-bottom: 1rem;
  overflow-wrap: break-word;
}
.hero-lead {
  color: var(--muted); font-size: clamp(1rem, 2.4vw, 1.18rem);
  max-width: 640px; margin: 0 auto 2rem;
}
.hero-cta { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Section shared ---------- */
.eyebrow {
  color: var(--gold); font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; font-size: .8rem; margin-bottom: .4rem;
}
.section-title { font-size: clamp(1.5rem, 4vw, 2.3rem); font-weight: 700; }
.section-head { margin-bottom: 2.6rem; }

/* ---------- Services ---------- */
.services { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.service-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem 1.3rem;
  text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-md);
  border-color: rgba(193, 146, 46, .5);
}
.service-icon {
  width: 66px; height: 66px; margin: 0 auto 1rem;
  display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #fff; font-size: 1.7rem;
  box-shadow: 0 8px 20px rgba(20, 34, 78, .28);
}
.service-name { font-size: 1.2rem; font-weight: 700; margin-bottom: .5rem; }
.service-desc { color: var(--muted); font-size: .93rem; margin: 0; }

/* ---------- Notify ---------- */
.notify { padding: clamp(2rem, 5vw, 4rem) 0; }
.notify-card {
  max-width: 680px; background: linear-gradient(150deg, var(--navy), var(--navy-deep));
  color: #fff; border-radius: 26px; padding: clamp(2rem, 5vw, 3.2rem);
  box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.notify-card::after {
  content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: rgba(193, 146, 46, .16); top: -100px; right: -80px;
}
.notify-card .section-title { color: #fff; position: relative; }
.notify-icon {
  width: 68px; height: 68px; margin: 0 auto 1rem; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.8rem; color: var(--navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  position: relative;
}
.notify-lead { color: rgba(255,255,255,.82); position: relative; margin-bottom: 1.6rem; }
.notify-form { position: relative; max-width: 480px; margin: 0 auto; }
.notify-form .form-control {
  border: none; border-radius: 999px 0 0 999px; padding-left: 1.2rem;
}
.notify-form .form-control:focus { box-shadow: none; }
.notify-form .btn-brand { border-radius: 0 999px 999px 0; }
.notify-feedback { margin: .9rem 0 0; font-weight: 500; min-height: 1.2rem; }
.notify-feedback.is-success { color: var(--gold-light); }
.notify-feedback.is-error { color: #ff9a9a; }
.notify-fineprint {
  color: rgba(255,255,255,.55); font-size: .82rem; margin: 1rem 0 0; position: relative;
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  color: #fff; padding: clamp(2.5rem, 6vw, 4rem) 0 2rem;
  border-top: 4px solid var(--gold);
}
.footer-title { color: #fff; font-size: clamp(1.4rem, 3.4vw, 2rem); font-weight: 700; }
.footer-sub { color: rgba(255,255,255,.7); }
.contact-item {
  display: flex; align-items: center; gap: .9rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: .85rem 1rem; height: 100%;
  color: #fff; text-decoration: none; transition: all .18s ease;
}
.contact-item:hover:not(.contact-item--static) {
  background: rgba(193, 146, 46, .16); border-color: rgba(193, 146, 46, .5);
  color: #fff; transform: translateY(-2px);
}
.contact-item i {
  font-size: 1.3rem; color: var(--gold-light);
  width: 42px; height: 42px; flex: 0 0 42px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(255,255,255,.07);
}
.contact-item span { display: flex; flex-direction: column; line-height: 1.35; font-size: .95rem; }
.contact-item strong {
  font-size: .72rem; text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,.55); font-weight: 600;
}
.contact-item--static { cursor: default; }

.footer-divider { border-color: rgba(255,255,255,.12); margin: 2rem 0 1.4rem; }
.footer-bottom { color: rgba(255,255,255,.6); font-size: .85rem; }
.footer-bottom strong { color: #fff; }
.credit-link { color: var(--gold-light); text-decoration: none; transition: color .18s ease; }
.credit-link:hover { color: var(--gold); text-decoration: underline; }
.credit-link strong { color: inherit; }

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  font-size: 1.7rem; box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
  transition: transform .18s ease;
}
.whatsapp-float:hover { color: #fff; transform: scale(1.08); }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .pulse, .logo-card, .badge-soon::after { animation: none; }
  html { scroll-behavior: auto; }
}
