/* ═══════════════════════════════════════════════════════════
   WAMTECH — Global Redesign Stylesheet
   Brand: Dark #0f0f0f | Accent #c8f535 | White #ffffff
   ═══════════════════════════════════════════════════════════ */

:root {
  --accent:      #c8f535;
  --accent-dark: #a8d420;
  --dark:        #0f0f0f;
  --dark2:       #1a1a1a;
  --dark3:       #252525;
  --mid:         #3a3a3a;
  --light:       #f7f7f7;
  --white:       #ffffff;
  --text-muted:  #aaaaaa;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 8px 32px rgba(0,0,0,.35);
  --shadow-sm:   0 2px 12px rgba(0,0,0,.18);
  --transition:  all .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
.lead { font-size: 1.15rem; line-height: 1.8; }
.accent { color: var(--accent); }

/* ── Section helpers ── */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-dark { background: var(--dark); }
.section-dark2 { background: var(--dark2); }
.section-dark3 { background: var(--dark3); }
.section-light { background: var(--light); color: var(--dark); }

.section-label {
  display: inline-block;
  background: rgba(200,245,53,.12);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(200,245,53,.25);
}
.section-title { margin-bottom: 1rem; }
.section-sub { color: var(--text-muted); max-width: 600px; }
.divider {
  width: 60px; height: 4px;
  background: var(--accent);
  border-radius: 4px;
  margin: 1rem 0 2rem;
}

/* ── Navbar ── */
.wam-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,15,15,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: .9rem 0;
  transition: var(--transition);
}
.wam-nav.scrolled {
  background: rgba(15,15,15,.98);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.wam-brand {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--white) !important;
}
.wam-brand span { color: var(--accent); }
.wam-nav .nav-link {
  color: rgba(255,255,255,.8) !important;
  font-weight: 500;
  font-size: .9rem;
  padding: .4rem .9rem !important;
  border-radius: 6px;
  transition: var(--transition);
}
.wam-nav .nav-link:hover,
.wam-nav .nav-link.active {
  color: var(--accent) !important;
  background: rgba(200,245,53,.08);
}
.wam-nav .btn-nav {
  background: var(--accent);
  color: var(--dark) !important;
  font-weight: 700;
  padding: .45rem 1.3rem !important;
  border-radius: 8px;
  transition: var(--transition);
}
.wam-nav .btn-nav:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}
.navbar-toggler {
  border: 1px solid rgba(200,245,53,.4) !important;
  padding: .4rem .6rem;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(200,245,53,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ── Buttons ── */
.btn-accent {
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  padding: .8rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  font-size: 1rem;
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,245,53,.25);
  color: var(--dark);
}
.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  font-weight: 700;
  padding: .78rem 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  font-size: 1rem;
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ── Cards ── */
.wam-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
}
.wam-card:hover {
  border-color: rgba(200,245,53,.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(200,245,53,.08);
}
.wam-card .icon-box {
  width: 56px; height: 56px;
  background: rgba(200,245,53,.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--accent);
}
.wam-card h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.wam-card p  { color: var(--text-muted); font-size: .92rem; margin: 0; }

/* ── Stats bar ── */
.stats-bar { background: var(--dark3); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.stat-item { text-align: center; padding: 2rem 1rem; }
.stat-number { font-size: 2.4rem; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-label  { color: var(--text-muted); font-size: .85rem; margin-top: .3rem; }

/* ── Hero ── */
.wam-hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex; align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.wam-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,245,53,.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: .85rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: ''; display: inline-block;
  width: 30px; height: 2px;
  background: var(--accent);
}
.hero-title { margin-bottom: 1.25rem; }
.hero-title em { font-style: normal; color: var(--accent); }
.hero-sub { color: rgba(255,255,255,.65); font-size: 1.1rem; max-width: 480px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-graphic {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-graphic-bg {
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,245,53,.12) 0%, transparent 70%);
  display: flex; align-items: center; justify-content: center;
}
.hero-graphic-inner {
  width: 320px; height: 320px;
  border: 2px dashed rgba(200,245,53,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: spin 18s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-orb {
  position: absolute;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2.5s ease-in-out infinite alternate;
}
@keyframes pulse {
  from { transform: scale(1); opacity: .7; }
  to   { transform: scale(1.15); opacity: 1; }
}

/* ── Lead Form (inline hero) ── */
.lead-form-card {
  background: var(--dark2);
  border: 1px solid rgba(200,245,53,.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.lead-form-card h4 { color: var(--accent); margin-bottom: 1.5rem; font-size: 1.1rem; }
.wam-input {
  width: 100%;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: .75rem 1rem;
  color: var(--white);
  font-size: .95rem;
  transition: var(--transition);
  margin-bottom: .85rem;
}
.wam-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,245,53,.12);
}
.wam-input::placeholder { color: rgba(255,255,255,.35); }
.wam-checkbox-group label {
  display: flex; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.75); font-size: .9rem;
  margin-bottom: .5rem; cursor: pointer;
}
.wam-checkbox-group input[type=checkbox] {
  accent-color: var(--accent);
  width: 16px; height: 16px; flex-shrink: 0;
}
.form-submit-btn {
  width: 100%;
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  padding: .85rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: .75rem;
  transition: var(--transition);
}
.form-submit-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}
.form-alert {
  padding: .75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: .9rem;
  display: none;
}
.form-alert.success { background: rgba(200,245,53,.15); color: var(--accent); border: 1px solid rgba(200,245,53,.3); }
.form-alert.error   { background: rgba(255,70,70,.1); color: #ff6b6b; border: 1px solid rgba(255,70,70,.25); }

/* ── Service page cards ── */
.service-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(200,245,53,.3);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.service-card-header {
  background: linear-gradient(135deg, var(--dark3), var(--mid));
  padding: 2rem;
  position: relative;
}
.service-card-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: .75rem;
}
.service-card-body { padding: 1.5rem 2rem 2rem; }
.service-card-body p { color: var(--text-muted); margin-bottom: 1rem; }
.service-list li {
  padding: .4rem 0;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  display: flex; align-items: center; gap: .5rem;
}
.service-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Blog cards ── */
.blog-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.blog-card:hover {
  border-color: rgba(200,245,53,.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--dark3), var(--mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.blog-card-body { padding: 1.5rem; }
.blog-category {
  display: inline-block;
  background: rgba(200,245,53,.1);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: .6rem; line-height: 1.4; }
.blog-card-body p  { color: var(--text-muted); font-size: .88rem; margin-bottom: 1rem; }
.blog-meta { font-size: .8rem; color: var(--text-muted); display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Testimonials ── */
.testimonial-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 1rem; right: 1.5rem;
  font-size: 5rem; color: rgba(200,245,53,.1);
  font-family: Georgia, serif; line-height: 1;
}
.testimonial-stars { color: var(--accent); margin-bottom: .75rem; letter-spacing: .1em; }
.testimonial-text  { color: rgba(255,255,255,.8); font-size: .95rem; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--dark); font-size: 1rem; flex-shrink: 0;
}
.author-name  { font-weight: 700; font-size: .9rem; }
.author-title { color: var(--text-muted); font-size: .8rem; }

/* ── Process steps ── */
.process-step {
  display: flex; gap: 1.25rem; margin-bottom: 2rem;
  align-items: flex-start;
}
.step-number {
  width: 48px; height: 48px;
  background: rgba(200,245,53,.1);
  border: 2px solid rgba(200,245,53,.3);
  color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
  flex-shrink: 0;
}
.step-content h4 { margin-bottom: .3rem; font-size: 1.05rem; }
.step-content p  { color: var(--text-muted); font-size: .9rem; margin: 0; }

/* ── Contact page ── */
.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(200,245,53,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.25rem; flex-shrink: 0;
}
.contact-info-item h5 { font-size: .85rem; color: var(--text-muted); margin-bottom: .2rem; text-transform: uppercase; letter-spacing: .06em; }
.contact-info-item p  { margin: 0; font-size: .95rem; }

/* ── Footer ── */
.wam-footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 60px 0 30px;
}
.footer-brand { font-size: 1.6rem; font-weight: 900; margin-bottom: .5rem; }
.footer-brand span { color: var(--accent); }
.footer-tagline { color: var(--text-muted); font-size: .9rem; margin-bottom: 1.5rem; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  color: var(--text-muted);
  margin-right: .5rem;
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-heading { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: 1rem; }
.footer-links a {
  display: block; color: rgba(255,255,255,.6); font-size: .9rem;
  padding: .3rem 0; transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); padding-left: .4rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 2rem; padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
  font-size: .82rem; color: var(--text-muted);
}

/* ── Floating WhatsApp ── */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
  animation: wab 2s ease-in-out infinite;
}
.whatsapp-fab:hover { transform: scale(1.1); color: white; }
@keyframes wab {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 6px 30px rgba(37,211,102,.7); }
}

/* ── Utilities ── */
.text-accent   { color: var(--accent) !important; }
.bg-accent     { background: var(--accent) !important; }
.bg-dark2      { background: var(--dark2) !important; }
.rounded-xl    { border-radius: var(--radius-lg) !important; }
.badge-accent  { background: rgba(200,245,53,.12); color: var(--accent); font-size: .75rem; font-weight: 700; padding: .3rem .8rem; border-radius: 50px; border: 1px solid rgba(200,245,53,.2); }

/* ── Responsive ── */
@media (max-width: 991px) {
  .wam-hero { padding-top: 100px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-graphic { margin-top: 3rem; }
  .hero-graphic-bg { width: 300px; height: 300px; }
  .hero-graphic-inner { width: 230px; height: 230px; }
  .section { padding: 60px 0; }
}
@media (max-width: 575px) {
  h1 { font-size: 2rem; }
  .stat-number { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-accent, .btn-outline-accent { width: 100%; text-align: center; }
}
