/* ==========================================================================
   NAMIN VENTURES — Brand Stylesheet
   Colors: Black (#0A0A0A) primary, Gold (#F5B324) accent
   Fonts: Baloo 2 (headlines, geometric-rounded), Manrope (body)
   ========================================================================== */

:root {
  --ink: #0a0a0a;
  --ink-soft: #141414;
  --ink-card: #171717;
  --gold: #f5b324;
  --gold-deep: #d99a12;
  --gold-soft: #ffd57a;
  --cream: #fdf6e6;
  --white: #ffffff;
  --muted: #b8b3a8;
  --border-soft: rgba(245, 179, 36, 0.18);

  --font-head: "Baloo 2", "Segoe UI Rounded", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow--center {
  display: block;
  text-align: center;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--gold);
  line-height: 1.08;
  margin-bottom: 20px;
}

.section-title--center {
  text-align: center;
}

.section-lede {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(245, 179, 36, 0.25);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245, 179, 36, 0.4);
  background: var(--gold-soft);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: rgba(245, 179, 36, 0.1);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.3s ease;
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 0.03em;
}

.nav-logo-text em {
  font-style: normal;
  font-weight: 500;
  color: var(--white);
  font-size: 0.7em;
  margin-left: 4px;
  letter-spacing: 0.15em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--white);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--gold-soft);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink-soft);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    border-bottom: 1px solid var(--border-soft);
  }
  .nav-links.open {
    max-height: 420px;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    padding: 16px 24px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav-cta {
    margin: 16px 24px;
    display: inline-block;
    width: calc(100% - 48px);
    text-align: center;
  }
}

/* ==========================================================================
   DECORATIVE SHAPES (shared)
   ========================================================================== */

.deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.deco-grid {
  inset: 0;
  background-image: linear-gradient(rgba(245, 179, 36, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 179, 36, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 40%, transparent 85%);
}

.deco-circle--tl {
  top: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold), transparent 70%);
  opacity: 0.5;
}

.deco-dots--tr {
  top: 40px;
  right: 40px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(var(--gold) 2.5px, transparent 2.6px);
  background-size: 16px 16px;
  opacity: 0.55;
  border-radius: 50%;
  mask-image: radial-gradient(circle, black 60%, transparent 100%);
}

.deco-sunburst--br {
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0.35;
}

.deco-sunburst--br::before,
.deco-sunburst--br::after {
  content: "";
  position: absolute;
  inset: 30px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.deco-sunburst--br::after {
  inset: 60px;
}

.deco-ring--bl {
  bottom: 30px;
  left: 30px;
  width: 90px;
  height: 90px;
  border: 10px solid var(--gold);
  border-radius: 50%;
  opacity: 0.6;
}

.deco-ring--bl::after {
  content: "";
  position: absolute;
  inset: 22px;
  background: var(--ink);
  border-radius: 50%;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 140px 24px 80px;
  background: radial-gradient(ellipse 90% 60% at 50% 0%, rgba(245, 179, 36, 0.08), transparent 60%), var(--ink);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-logo {
  width: 130px;
  margin: 0 auto 28px;
  filter: drop-shadow(0 0 30px rgba(245, 179, 36, 0.25));
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  color: var(--gold);
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--white);
  opacity: 0.88;
  margin-bottom: 40px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.hero-footer {
  font-family: var(--font-head);
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  opacity: 0.7;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */

.about-section {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  background: var(--ink-soft);
}

.deco-ribbon--top {
  top: -20%;
  left: -10%;
  width: 70%;
  height: 60%;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  border-radius: 0 0 60% 40% / 0 0 80% 50%;
  opacity: 0.22;
  filter: blur(2px);
}

.deco-arches {
  top: 0;
  right: 5%;
  width: 260px;
  height: 140px;
  border: 2px solid var(--border-soft);
  border-radius: 50% 50% 0 0;
  opacity: 0.6;
}

.deco-arches::before,
.deco-arches::after {
  content: "";
  position: absolute;
  border: 2px solid var(--border-soft);
  border-radius: 50% 50% 0 0;
}

.deco-arches::before {
  inset: 20px 40px 0;
}

.deco-arches::after {
  inset: 40px 80px 0;
}

.deco-sunburst--about {
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--gold), transparent 70%);
  opacity: 0.35;
}

.about-inner {
  max-width: 760px;
}

.about-body {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--white);
  font-weight: 500;
  margin-bottom: 20px;
}

.about-support {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 44px;
  max-width: 620px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ink-card);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 0.88rem;
  font-weight: 600;
}

.chip i {
  color: var(--gold);
}

/* ==========================================================================
   MISSION & VISION
   ========================================================================== */

.mv-section {
  padding: 100px 0;
  background: var(--ink);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mv-card {
  border-radius: var(--radius);
  padding: 48px 40px;
  position: relative;
}

.mv-card--dark {
  background: var(--ink-card);
  border: 1px solid var(--border-soft);
}

.mv-card--gold {
  background: linear-gradient(145deg, var(--gold), var(--gold-deep));
  color: var(--ink);
}

.mv-eyebrow {
  display: block;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 18px;
  opacity: 0.75;
}

.mv-card--dark .mv-eyebrow {
  color: var(--gold);
}

.mv-card h3 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 16px;
  line-height: 1.2;
}

.mv-card--dark h3 {
  color: var(--white);
}

.mv-card p {
  font-size: 1rem;
  opacity: 0.9;
}

@media (max-width: 780px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SERVICES
   ========================================================================== */

.services-section {
  position: relative;
  padding: 110px 0;
  background: var(--ink-soft);
  overflow: hidden;
}

.deco-dots--services {
  top: 10%;
  left: -60px;
  width: 180px;
  height: 400px;
  background-image: radial-gradient(var(--gold) 2px, transparent 2.2px);
  background-size: 20px 20px;
  opacity: 0.25;
  mask-image: radial-gradient(ellipse 60% 100% at 0% 50%, black 40%, transparent 90%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--ink-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px 22px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.service-card--hero {
  border: 2px solid var(--gold);
  background: linear-gradient(160deg, rgba(245, 179, 36, 0.12), var(--ink-card));
}

.service-num {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 14px;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(245, 179, 36, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
}

@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card--hero {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card--hero {
    grid-column: span 1;
  }
}

/* ==========================================================================
   WHY US
   ========================================================================== */

.why-section {
  position: relative;
  padding: 110px 0;
  background: var(--ink);
  overflow: hidden;
}

.deco-ring--why {
  top: 60px;
  right: -80px;
  width: 260px;
  height: 260px;
  border: 24px solid var(--border-soft);
  border-radius: 50%;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-item {
  background: var(--ink-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px;
}

.why-item--full {
  grid-column: span 2;
  background: linear-gradient(120deg, var(--gold), var(--gold-deep));
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 24px;
}

.why-item--full .why-num {
  color: var(--ink);
  opacity: 0.5;
}

.why-item--full h4,
.why-item--full p {
  margin: 0;
}

.why-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}

.why-item h4 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.why-item--full h4 {
  color: var(--ink);
}

.why-item p {
  color: var(--muted);
  font-size: 0.92rem;
}

.why-item--full p {
  color: var(--ink);
  opacity: 0.8;
}

@media (max-width: 780px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-item--full {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   PROCESS
   ========================================================================== */

.process-section {
  padding: 110px 0;
  background: var(--ink-soft);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border-soft) 0, var(--border-soft) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-node {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--ink-soft);
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.1rem;
}

.process-node--final {
  background: var(--gold);
  color: var(--ink);
}

.process-step h4 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 200px;
  margin: 0 auto;
}

@media (max-width: 780px) {
  .process-track {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .process-track::before {
    display: none;
  }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact-section {
  position: relative;
  padding: 110px 0;
  background: var(--ink);
  overflow: hidden;
}

.deco-waves {
  top: 0;
  left: 0;
  bottom: 0;
  width: 45%;
  background-image: repeating-linear-gradient(
    100deg,
    var(--border-soft) 0px,
    var(--border-soft) 1px,
    transparent 1px,
    transparent 14px
  );
  opacity: 0.5;
  mask-image: linear-gradient(to right, black 0%, transparent 100%);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-logo {
  width: 64px;
  margin-bottom: 24px;
}

.contact-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 14px;
}

.contact-lede {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}

.contact-list i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 179, 36, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-list a:hover {
  color: var(--gold);
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink-card);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  padding: 16px 26px;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.cta-pill:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

.contact-form {
  background: var(--ink-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 36px;
}

.contact-form h3 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 22px;
}

.form-row {
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: vertical;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-status {
  margin-top: 14px;
  font-size: 0.88rem;
  min-height: 20px;
}

.form-status.success {
  color: #6be08a;
}

.form-status.error {
  color: #ff8080;
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: var(--ink-soft);
  border-top: 1px solid var(--border-soft);
  padding: 44px 24px;
  text-align: center;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-brand img {
  height: 30px;
}

.footer-brand span {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.03em;
}

.footer-brand em {
  font-style: normal;
  font-weight: 500;
  color: var(--white);
  font-size: 0.75em;
  margin-left: 4px;
  letter-spacing: 0.15em;
}

.footer-tagline {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 22px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border-soft);
  background: var(--ink-card);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.social-icon:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-copy {
  color: var(--muted);
  font-size: 0.78rem;
  opacity: 0.7;
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  z-index: 95;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: whatsapp-pulse 2.4s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
}

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* When back-to-top is also visible, stack it above the WhatsApp button */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(245, 179, 36, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 560px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .back-to-top {
    bottom: 82px;
    right: 20px;
  }
}

/* ==========================================================================
   SCROLL REVEAL (JS-driven)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
