/* ═══════════════════════════════════════════════
   NOFLEXXX AGENCY — SHARED STYLESHEET
   
   🎨 COLOUR GUIDE (change these 5 variables to retheme):
   
   --accent      → primary purple highlight colour
   --accent2     → secondary gradient endpoint (pink-ish)
   --accent3     → darker accent for glows/overlays
   --grad        → main gradient (accent → accent2)
   --grad2       → alt gradient (accent3 → accent)
   
   Popular alternatives to try:
   • Rose/Gold:  --accent:#f43f5e; --accent2:#fb923c; --accent3:#be123c
   • Cyan/Blue:  --accent:#22d3ee; --accent2:#818cf8; --accent3:#0891b2
   • Emerald:    --accent:#34d399; --accent2:#6ee7b7; --accent3:#059669
   ═══════════════════════════════════════════════ */

:root {
  /* ── BRAND COLOURS ── change here to retheme ── */
  --accent:  #c084fc;
  --accent2: #e879f9;
  --accent3: #7c3aed;
  --gold:    #f59e0b;
  --grad:    linear-gradient(135deg, #c084fc 0%, #e879f9 50%, #f472b6 100%);
  --grad2:   linear-gradient(135deg, #7c3aed 0%, #c084fc 100%);

  /* ── BACKGROUNDS ── */
  --bg:      #0a0a0f;
  --bg2:     #111118;
  --bg3:     #18181f;
  --surface: #1e1e28;

  /* ── TYPOGRAPHY & BORDERS ── */
  --text:    #f0eef8;
  --muted:   #8884a0;
  --border:  rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg); color: var(--text);
  overflow-x: hidden; font-size: 16px; line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.3rem;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px; text-decoration: none; flex-shrink: 0;
}
.nav-center { display: flex; gap: 1.75rem; align-items: center; }
.nav-center a {
  color: var(--muted); text-decoration: none; font-size: 0.88rem;
  transition: color 0.2s;
}
.nav-center a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }

/* Language switcher */
.lang-switcher {
  display: flex; gap: 0; border: 1px solid var(--border2);
  border-radius: 100px; overflow: hidden; flex-shrink: 0;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 0.75rem; font-weight: 500;
  padding: 0.35rem 0.7rem; font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, color 0.2s; letter-spacing: 0.04em;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active {
  background: rgba(192,132,252,0.18); color: var(--accent);
}
.nav-cta {
  background: var(--grad); color: white; text-decoration: none;
  padding: 0.5rem 1.25rem; border-radius: 100px;
  font-weight: 500; font-size: 0.85rem;
  transition: opacity 0.2s, transform 0.2s; white-space: nowrap;
  -webkit-text-fill-color: white;
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 8rem 2rem 5rem; text-align: center; position: relative; overflow: hidden;
}
.glow {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.22) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(232,121,249,0.1) 0%, transparent 70%);
  top: 15%; right: 8%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(192,132,252,0.1); border: 1px solid rgba(192,132,252,0.25);
  border-radius: 100px; padding: 0.4rem 1rem;
  font-size: 0.78rem; color: var(--accent); margin-bottom: 2rem;
  font-weight: 500; letter-spacing: 0.04em;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(0.75); }
}
.hero h1 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.05; letter-spacing: -2px; margin-bottom: 1.5rem;
}
.grad-text {
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  max-width: 520px; color: var(--muted);
  font-size: 1.05rem; font-weight: 300; line-height: 1.75; margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex; gap: 1rem; align-items: center;
  flex-wrap: wrap; justify-content: center;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--grad); color: white; -webkit-text-fill-color: white;
  text-decoration: none; padding: 0.85rem 2rem; border-radius: 100px;
  font-weight: 500; font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(192,132,252,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(192,132,252,0.45); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--muted); text-decoration: none;
  padding: 0.85rem 1.5rem; border-radius: 100px;
  font-size: 0.95rem; border: 1px solid var(--border2);
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { color: var(--text); border-color: rgba(255,255,255,0.25); }
.hero-stats {
  display: flex; gap: 3rem; margin-top: 4rem; padding-top: 3rem;
  border-top: 1px solid var(--border); flex-wrap: wrap; justify-content: center;
}
.stat-num {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 2rem;
  letter-spacing: -1px;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 0.75rem; color: var(--muted); margin-top: 0.2rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* ── MARQUEE ── */
.marquee-wrap {
  padding: 1.4rem 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg2); overflow: hidden;
}
.marquee-track {
  display: flex; gap: 3rem; width: max-content;
  animation: marquee 24s linear infinite;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-item {
  white-space: nowrap; font-size: 0.74rem; font-weight: 500;
  color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase;
  display: flex; align-items: center; gap: 1rem;
}
.marquee-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

/* ── LAYOUT ── */
.page-section { padding: 6rem 2rem; max-width: 1100px; margin: 0 auto; }
.alt-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.alt-inner { max-width: 1100px; margin: 0 auto; padding: 6rem 2rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.9rem;
}
.section-label::before {
  content: ''; display: block; width: 18px; height: 2px;
  background: var(--grad); border-radius: 2px;
}
h2 {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -1px; line-height: 1.15; margin-bottom: 0.9rem;
}
.section-desc { color: var(--muted); max-width: 480px; font-size: 0.95rem; font-weight: 300; line-height: 1.75; }

/* ── SERVICE GRID ── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.5px; margin-top: 3rem;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
}
.service-card {
  background: var(--bg); padding: 2rem;
  transition: background 0.3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,132,252,0.5), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { background: var(--bg3); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: rgba(192,132,252,0.1); border: 1px solid rgba(192,132,252,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 1.25rem;
}
.service-card h3 {
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: 1rem;
  letter-spacing: -0.2px; margin-bottom: 0.55rem;
}
.service-card p { color: var(--muted); font-size: 0.87rem; line-height: 1.65; font-weight: 300; }

/* ── STEPS ── */
.steps { display: flex; flex-direction: column; position: relative; }
.steps::before {
  content: ''; position: absolute; left: 23px; top: 44px; bottom: 44px;
  width: 1px; background: linear-gradient(to bottom, var(--accent), transparent);
}
.step { display: flex; gap: 1.5rem; padding: 1.4rem 0; align-items: flex-start; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg3); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.85rem;
  color: var(--accent); position: relative; z-index: 1;
}
.step:first-child .step-num { background: rgba(192,132,252,0.12); border-color: rgba(192,132,252,0.35); }
.step-body h3 {
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: 1rem;
  margin-bottom: 0.35rem; padding-top: 0.65rem;
}
.step-body p { color: var(--muted); font-size: 0.88rem; font-weight: 300; line-height: 1.65; }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.25rem; margin-top: 3rem;
}
.review-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.75rem;
  transition: border-color 0.3s;
}
.review-card:hover { border-color: rgba(192,132,252,0.3); }
.stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.stars span { color: var(--gold); font-size: 0.88rem; }
.review-text {
  color: rgba(240,238,248,0.82); font-size: 0.88rem; line-height: 1.75;
  font-style: italic; margin-bottom: 1.25rem; font-weight: 300;
}
.reviewer { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.78rem; color: white; flex-shrink: 0;
}
.reviewer-name { font-weight: 500; font-size: 0.87rem; }
.reviewer-role { font-size: 0.76rem; color: var(--muted); }

/* ── FAQ ── */
.faq-list {
  border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.35rem 1.75rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.93rem;
  color: var(--text); transition: background 0.2s;
}
.faq-q:hover { background: var(--bg3); }
.faq-icon { color: var(--muted); font-size: 1.3rem; transition: transform 0.3s; flex-shrink: 0; line-height: 1; }
.faq-q.open { color: var(--accent); }
.faq-q.open .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  padding: 0 1.75rem; color: var(--muted);
  font-size: 0.88rem; font-weight: 300; line-height: 1.7;
}
.faq-a.open { max-height: 300px; padding: 0 1.75rem 1.35rem; }

/* ── CTA ── */
.cta-section { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; text-align: center; }
.cta-card {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); padding: 5rem 3rem; position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.28) 0%, transparent 70%);
  pointer-events: none;
}
.cta-card h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 0.9rem; }
.cta-card p {
  color: var(--muted); margin-bottom: 2.5rem; font-size: 0.98rem;
  max-width: 400px; margin-left: auto; margin-right: auto; font-weight: 300;
}

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  max-width: 1100px; margin: 0 auto;
}
.footer-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--muted); font-size: 0.76rem; }

/* ── CONTACT SPECIFIC ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; margin-top: 3rem; align-items: start; }
.contact-method {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  margin-bottom: 1rem; transition: border-color 0.3s;
}
.contact-method:hover { border-color: rgba(192,132,252,0.3); }
.contact-method-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: rgba(192,132,252,0.1); border: 1px solid rgba(192,132,252,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.contact-method-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.contact-method-val { font-size: 0.92rem; font-weight: 500; color: var(--text); }
.contact-method-val a { color: var(--accent); text-decoration: none; }

.contact-form-wrap {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 2.5rem;
}
.contact-form-wrap h3 {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 1.3rem; margin-bottom: 1.75rem; letter-spacing: -0.5px;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.78rem; color: var(--muted); margin-bottom: 0.45rem; text-transform: uppercase; letter-spacing: 0.06em; }
.form-control {
  width: 100%; background: var(--bg3); border: 1px solid var(--border2);
  border-radius: var(--radius-sm); padding: 0.85rem 1rem;
  color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
  resize: none;
}
.form-control::placeholder { color: var(--muted); }
.form-control:focus {
  border-color: rgba(192,132,252,0.5);
  box-shadow: 0 0 0 3px rgba(192,132,252,0.1);
}
textarea.form-control { min-height: 140px; }
.form-consent { font-size: 0.75rem; color: var(--muted); margin-top: 0.75rem; line-height: 1.5; }
.form-consent a { color: var(--accent); text-decoration: none; }
.form-msg {
  margin-top: 1rem; padding: 0.9rem 1.1rem; border-radius: var(--radius-sm);
  font-size: 0.88rem; display: none;
}
.form-msg.success { background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.3); color: #34d399; display: block; }
.form-msg.error { background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.3); color: #f87171; display: block; }
.btn-form {
  width: 100%; background: var(--grad); border: none; cursor: pointer;
  color: white; padding: 0.9rem 2rem; border-radius: 100px;
  font-weight: 500; font-size: 0.95rem; font-family: 'DM Sans', sans-serif;
  transition: opacity 0.2s, transform 0.2s; margin-top: 0.5rem;
}
.btn-form:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-form:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ── LEGAL PAGE ── */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 9rem 2rem 6rem; }
.legal-wrap h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 0.4rem; }
.legal-updated { color: var(--muted); font-size: 0.82rem; margin-bottom: 3rem; }
.legal-section { margin-bottom: 2.5rem; }
.legal-section h3 {
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: 1.05rem;
  margin-bottom: 0.65rem; color: var(--text);
}
.legal-section p, .legal-section li {
  color: var(--muted); font-size: 0.9rem; line-height: 1.8; font-weight: 300;
}
.legal-section ul { padding-left: 1.5rem; }
.legal-section li { margin-bottom: 0.35rem; }
.legal-divider { height: 1px; background: var(--border); margin: 2rem 0; }

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 800px) {
  nav { padding: 1rem 1.25rem; }
  .nav-center { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stats { gap: 2rem; }
  .cta-card { padding: 3.5rem 2rem; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}
