/* =============================================
   ROYAL GIVER — Website Stylesheet v2
   ============================================= */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #A6862E;
  --cream: #FAFAF7;
  --white: #FFFFFF;
  --heading: #111827;
  --charcoal: #374151;
  --gray: #6B7280;
  --light-gray: #F3F4F6;
  --border: #E5E7EB;
  --dark-bg: #141E30;
  --dark-bg2: #243B55;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.14);
  --spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

/* ══ TYPOGRAPHY ══ */
h1, h2 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--heading);
}

h3, h4 {
  font-family: var(--font-body);
  line-height: 1.3;
  color: var(--heading);
}

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

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--heading);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.75;
}

/* ══ LAYOUT ══ */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 100px 0; }

/* ══ BUTTONS ══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.3s var(--spring), box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn:hover::after { transform: translateX(100%); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  background-size: 200% 100%;
  color: #fff;
  box-shadow: 0 4px 18px rgba(201,168,76,0.35);
  animation: btn-shimmer 3s ease infinite;
}
.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 28px rgba(201,168,76,0.5);
}

@keyframes btn-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.88);
  border: 2px solid rgba(201,168,76,0.5);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: var(--heading);
  font-weight: 700;
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

/* ══ NAVBAR ══ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  transition: all 0.4s var(--ease-out);
}

#navbar.scrolled {
  padding: 0.75rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.1);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo {
  width: 96px;
  height: 66px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 6px;
}
.nav-logo img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin: -14px;
  transition: transform 0.3s var(--spring);
  flex-shrink: 0;
}
.nav-logo:hover img { transform: scale(1.06); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--spring);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--gold-dark); }

.nav-cta { margin-left: 1rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--charcoal); transition: all 0.3s; }

/* ── LANGUAGE SWITCH ── */
.lang-switch {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-left: 0.75rem;
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: none;
  padding: 0.28rem 0.52rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.06em;
  font-family: var(--font-body);
  line-height: 1;
}
.lang-btn.active {
  background: var(--gold);
  color: #fff;
}
.lang-btn:hover:not(.active) {
  background: var(--light-gray);
  color: var(--charcoal);
}

/* ══ HERO ══ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg2) 60%, #1a3040 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 65% 50%, rgba(201,168,76,0.13) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 90%, rgba(201,168,76,0.06) 0%, transparent 40%);
}

/* Animated orbs */
#hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px; right: -100px;
  animation: orb-pulse 6s ease-in-out infinite;
}

@keyframes orb-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Hero content — staggered load animations */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.8rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  opacity: 0;
  animation: hero-slide-up 0.7s var(--spring) 0.1s forwards;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #fff;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: hero-slide-up 0.8s var(--spring) 0.25s forwards;
}
.hero-title .accent { color: var(--gold-light); }

.hero-subtitle {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.75;
  opacity: 0;
  animation: hero-slide-up 0.8s var(--spring) 0.4s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  opacity: 0;
  animation: hero-slide-up 0.8s var(--spring) 0.55s forwards;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  opacity: 0;
  animation: hero-slide-up 0.8s var(--spring) 0.7s forwards;
}

@keyframes hero-slide-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.stat-item { text-align: left; }
.stat-number {
  font-size: 2.1rem;
  color: var(--gold-light);
  font-weight: 700;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; }

/* Hero visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.hero-visual-panel {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 24px;
  backdrop-filter: blur(14px);
  padding: 2.5rem 2rem;
  width: 320px;
  text-align: center;
  opacity: 0;
  animation: hero-card-in 0.9s var(--spring) 0.6s forwards, float-card 6s ease-in-out 1.5s infinite;
}

.hero-logo-wrap {
  width: 190px;
  height: 190px;
  margin: 0 auto 1.5rem;
  background: rgba(201,168,76,0.06);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.22);
  box-shadow: 0 0 40px rgba(201,168,76,0.18);
  overflow: hidden;
}
.hero-logo-wrap img {
  width: 240px;
  height: 240px;
  object-fit: contain;
  margin: -25px;
}

.hero-panel-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.4rem;
}
.hero-panel-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

.hero-panel-badges {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.hero-panel-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  text-align: left;
}
.hero-panel-badge i {
  color: var(--gold-light);
  font-size: 1rem;
  width: 18px;
}
.hero-panel-badge span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

@keyframes hero-card-in {
  from { opacity: 0; transform: scale(0.9) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ══ TRUSTED BY ══ */
#trusted {
  padding: 36px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trusted-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.trusted-label { font-size: 0.78rem; color: var(--gray); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
.trusted-divider { width: 1px; height: 24px; background: var(--border); }
.trusted-items { display: flex; gap: 2.5rem; align-items: center; flex-wrap: wrap; justify-content: center; }
.trusted-item { font-size: 0.95rem; font-weight: 500; color: #9CA3AF; }

/* ══ SERVICES ══ */
#services { background: var(--cream); }
.services-header { text-align: center; margin-bottom: 4rem; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.service-card {
  background: var(--white);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--spring), box-shadow 0.4s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--spring);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.28);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, rgba(201,168,76,0.13), rgba(201,168,76,0.04));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201,168,76,0.14);
  transition: transform 0.4s var(--spring);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-4deg); }

.service-card h3 { font-size: 1.3rem; color: var(--heading); margin-bottom: 0.75rem; }
.service-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.72; margin-bottom: 1.5rem; }

.service-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.service-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.875rem; color: var(--charcoal); }
.service-list li::before { content: '✓'; color: var(--gold); font-weight: 700; font-size: 0.82rem; }

/* ══ WHY ══ */
#why { background: var(--white); }

.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.why-visual { position: relative; }

.why-image-wrap {
  background: linear-gradient(135deg, var(--dark-bg), var(--dark-bg2));
  border-radius: 22px;
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.16) 0%, transparent 70%);
  animation: orb-pulse 4s ease-in-out infinite;
}

.why-logo-wrap {
  width: 240px;
  height: 240px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border-radius: 16px;
}
.why-logo {
  width: 300px;
  height: 300px;
  object-fit: contain;
  margin: -30px;
  filter: drop-shadow(0 4px 24px rgba(201,168,76,0.3));
}

.why-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
  animation: float-badge 4s ease-in-out infinite;
}
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.why-badge .number { font-size: 2rem; font-weight: 700; display: block; line-height: 1; }
.why-badge .label { font-size: 0.72rem; opacity: 0.9; text-transform: uppercase; letter-spacing: 0.05em; }

.why-content .section-subtitle { margin-bottom: 2.5rem; }

.why-points { display: flex; flex-direction: column; gap: 1.25rem; }

.why-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 12px;
  transition: background 0.3s ease, transform 0.3s var(--spring);
}
.why-point:hover { background: rgba(201,168,76,0.05); transform: translateX(6px); }

.why-point-icon {
  width: 46px; height: 46px; min-width: 46px;
  background: linear-gradient(135deg, rgba(201,168,76,0.13), rgba(201,168,76,0.05));
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  border: 1px solid rgba(201,168,76,0.14);
  transition: transform 0.3s var(--spring);
}
.why-point:hover .why-point-icon { transform: scale(1.1) rotate(-5deg); }

.why-point-text h4 { font-size: 1rem; color: var(--heading); margin-bottom: 0.2rem; font-weight: 600; }
.why-point-text p { font-size: 0.875rem; color: var(--gray); }

/* ══ PROCESS ══ */
#process { background: var(--cream); }
.process-header { text-align: center; margin-bottom: 4rem; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  opacity: 0.25;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--spring), box-shadow 0.4s ease, border-color 0.3s;
  position: relative;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(201,168,76,0.28);
}

.step-number {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 700;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(201,168,76,0.38);
  position: relative; z-index: 1;
  transition: transform 0.4s var(--spring), box-shadow 0.3s ease;
}
.step-card:hover .step-number {
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(201,168,76,0.5);
}

.step-card h3 { font-size: 1.05rem; color: var(--heading); margin-bottom: 0.5rem; }
.step-card p { font-size: 0.875rem; color: var(--gray); }

/* ══ CTA ══ */
#cta {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg2) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.1) 0%, transparent 70%);
  animation: orb-pulse 5s ease-in-out infinite;
}

.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-inner .section-label { color: var(--gold-light); }
.cta-title { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 1.25rem; }
.cta-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.68); max-width: 520px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.cta-note { font-size: 0.8rem; color: rgba(255,255,255,0.38); }

/* ══ CONTACT ══ */
#contact { background: var(--white); }

.contact-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }

.contact-info h2 { font-size: 2rem; color: var(--heading); margin-bottom: 1rem; }
.contact-info p { color: var(--gray); font-size: 0.95rem; margin-bottom: 2rem; line-height: 1.72; }

.contact-methods { display: flex; flex-direction: column; gap: 1rem; }

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--charcoal);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s var(--spring), background 0.3s;
}
.contact-method:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
  transform: translateX(6px);
}

.contact-method-icon {
  width: 46px; height: 46px; min-width: 46px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-method-info span { display: block; font-size: 0.72rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-method-info strong { font-size: 0.92rem; color: var(--charcoal); }

.contact-form-wrap {
  background: var(--cream);
  border-radius: 22px;
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.contact-form-wrap h3 { font-size: 1.4rem; color: var(--heading); margin-bottom: 0.5rem; }
.contact-form-wrap .form-sub { color: var(--gray); font-size: 0.9rem; margin-bottom: 1.75rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--heading); letter-spacing: 0.03em; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.78rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--heading);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem; }

.form-success {
  display: none;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  color: #166534;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ══ FOOTER ══ */
footer {
  background: var(--dark-bg);
  color: rgba(255,255,255,0.58);
  padding: 60px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand-logo {
  width: 110px;
  height: 76px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 8px;
}
.footer-brand-logo img {
  width: 145px;
  height: 145px;
  object-fit: contain;
  margin: -18px;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.72; max-width: 280px; margin-bottom: 1.5rem; }

.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: background 0.3s, transform 0.3s var(--spring);
}
.social-link:hover { background: var(--gold); color: #fff; transform: translateY(-3px) scale(1.1); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li a { text-decoration: none; color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
.footer-bottom a { color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ══ SCROLL TOP ══ */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 18px rgba(201,168,76,0.42);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.4s var(--spring);
  z-index: 100;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-3px); }

/* ══ ANIMATIONS (scroll-triggered) ══ */
[data-animate] {
  opacity: 0;
  will-change: opacity, transform;
}

[data-animate="fade-up"]    { transform: translateY(22px); }
[data-animate="fade-left"]  { transform: translateX(-28px); }
[data-animate="fade-right"] { transform: translateX(28px); }
[data-animate="scale-in"]   { transform: scale(0.95); }

[data-animate].animated {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s var(--spring), transform 0.6s var(--spring);
}

/* ══ COOKIE BANNER ══ */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dark-bg);
  border-top: 2px solid var(--gold);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
#cookieBanner.visible {
  transform: translateY(0);
}
.cookie-text {
  color: #d1d5db;
  font-size: 0.9rem;
  line-height: 1.6;
}
.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-text a:hover {
  color: var(--gold-light);
}
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-btn-accept,
.cookie-btn-decline {
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.cookie-btn-accept {
  background: var(--gold);
  color: #111;
}
.cookie-btn-accept:hover {
  background: var(--gold-light);
}
.cookie-btn-decline {
  background: transparent;
  color: #9ca3af;
  border: 1px solid #4b5563;
}
.cookie-btn-decline:hover {
  background: #1f2937;
  color: #d1d5db;
}
@media (max-width: 640px) {
  #cookieBanner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 1.25rem;
    gap: 1rem;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1;
    text-align: center;
  }
}

/* ══ NAV ACTIVE STATE ══ */
.nav-links a.active { color: var(--gold-dark); }
.nav-links a.active::after { transform: scaleX(1); }

/* ══ PAGE HERO (inner pages) ══ */
.page-hero {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg2) 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.1) 0%, transparent 65%);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: #fff;
  margin-bottom: 1rem;
}
.page-hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.68);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ══ SOCIAL MIX VISUAL ══ */
.social-mix-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 440px;
}
.social-mix-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--spring);
}
.social-mix-visual:hover .social-mix-bg { transform: scale(1.04); }

.social-mix-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(20,30,48,0.55) 0%, rgba(20,30,48,0.75) 100%);
}

.social-mix-platforms {
  position: absolute;
  inset: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2.5rem;
}

.smix-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 1.1rem 1.4rem;
  color: #fff;
  transition: transform 0.35s var(--spring), background 0.3s;
  cursor: default;
}
.smix-badge:hover {
  transform: translateY(-6px) scale(1.06);
  background: rgba(255,255,255,0.18);
}
.smix-badge i { font-size: 1.75rem; }
.smix-badge span { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; opacity: 0.9; }

/* Platform brand colors on hover */
.smix-instagram:hover { border-color: #E1306C; box-shadow: 0 8px 24px rgba(225,48,108,0.35); }
.smix-instagram i { color: #E1306C; }

.smix-facebook:hover { border-color: #1877F2; box-shadow: 0 8px 24px rgba(24,119,242,0.35); }
.smix-facebook i { color: #1877F2; }

.smix-tiktok:hover { border-color: #69C9D0; box-shadow: 0 8px 24px rgba(105,201,208,0.35); }
.smix-tiktok i { color: #fff; }

.smix-linkedin:hover { border-color: #0A66C2; box-shadow: 0 8px 24px rgba(10,102,194,0.35); }
.smix-linkedin i { color: #0A66C2; }

.smix-threads:hover { border-color: #aaa; box-shadow: 0 8px 24px rgba(200,200,200,0.25); }
.smix-threads i { color: #fff; }

.social-mix-label {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.social-mix-label i { font-size: 0.85rem; }

/* ══ REAL IMAGE WRAP ══ */
.real-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  line-height: 0;
}
.real-image-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--spring);
}
.real-image-wrap:hover img {
  transform: scale(1.03);
}

/* ══ SERVICE DETAIL PAGE ══ */
.service-detail { padding: 100px 0; background: var(--cream); }
.service-detail.alt-bg { background: var(--white); }

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }

.service-detail-content { }
.service-detail-content .section-subtitle { margin-bottom: 2rem; }

.detail-features { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.5rem; }

.detail-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: border-color 0.3s, transform 0.3s var(--spring);
}
.detail-feature:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateX(4px);
}
.detail-feature > i {
  font-size: 1.1rem;
  color: var(--gold);
  width: 22px;
  min-width: 22px;
  margin-top: 2px;
}
.detail-feature div { display: flex; flex-direction: column; gap: 0.15rem; }
.detail-feature strong { font-size: 0.9rem; color: var(--heading); }
.detail-feature span { font-size: 0.82rem; color: var(--gray); }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: gap 0.2s var(--spring);
}
.service-link:hover { gap: 0.7rem; }

/* Service visual cards */
.service-visual-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Website mockup */
.visual-mockup {
  background: #F8F9FA;
}
.mockup-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mockup-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #E5E7EB;
}
.mockup-bar span:nth-child(1) { background: #FC615D; }
.mockup-bar span:nth-child(2) { background: #FDBC40; }
.mockup-bar span:nth-child(3) { background: #34C749; }
.mockup-url {
  margin-left: 0.75rem;
  background: #F3F4F6;
  border-radius: 4px;
  padding: 0.2rem 0.75rem;
  font-size: 0.72rem;
  color: var(--gray);
  flex: 1;
}
.mockup-content { padding: 1.5rem; }
.mockup-hero-block {
  background: linear-gradient(135deg, var(--dark-bg), var(--dark-bg2));
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.mockup-logo-sm img { width: 56px; height: 56px; object-fit: contain; }
.mockup-headline { width: 70%; height: 10px; background: rgba(255,255,255,0.4); border-radius: 4px; }
.mockup-sub { width: 50%; height: 6px; background: rgba(255,255,255,0.2); border-radius: 4px; }
.mockup-btn { width: 100px; height: 28px; background: var(--gold); border-radius: 4px; margin-top: 0.25rem; }
.mockup-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem; }
.mockup-card { height: 60px; background: var(--white); border-radius: 8px; border: 1px solid var(--border); }

/* Social preview */
.social-preview { padding: 1.5rem; background: #FAFAFA; }
.social-post {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}
.social-post-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
}
.social-avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: contain; border: 1px solid var(--border); }
.social-post-header div { display: flex; flex-direction: column; }
.social-post-header strong { font-size: 0.82rem; color: var(--heading); }
.social-post-header span { font-size: 0.72rem; color: var(--gray); }
.social-post-img {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, var(--dark-bg), var(--dark-bg2));
  position: relative;
}
.social-post-img::after {
  content: '📸';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 2rem;
  opacity: 0.4;
}
.social-post-caption { padding: 0.875rem 1rem; }
.social-hook { display: block; font-size: 0.82rem; font-weight: 600; color: var(--heading); margin-bottom: 0.3rem; }
.social-cta { display: block; font-size: 0.78rem; color: var(--gold); }
.social-post-actions {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--gray);
}
.social-post-actions span { display: flex; align-items: center; gap: 0.3rem; cursor: pointer; }
.social-platforms {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  padding-top: 0.5rem;
}
.social-platforms span { font-size: 1.5rem; color: var(--gray); }
.social-platforms span:nth-child(1) { color: #E1306C; }
.social-platforms span:nth-child(2) { color: #1877F2; }
.social-platforms span:nth-child(3) { color: #0A66C2; }
.social-platforms span:nth-child(4) { color: #333; }

/* Branding preview */
.branding-preview { padding: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.brand-logo-display {
  background: linear-gradient(135deg, var(--dark-bg), var(--dark-bg2));
  border-radius: 14px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo-display img { width: 120px; height: 120px; object-fit: contain; }
.brand-colors { display: flex; gap: 0.6rem; }
.brand-color { flex: 1; height: 40px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.brand-type { display: flex; flex-direction: column; gap: 0.5rem; }

/* ══ VALUES GRID ══ */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 1rem; }

.value-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--spring), box-shadow 0.4s ease, border-color 0.3s;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.25);
}
.value-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(201,168,76,0.13), rgba(201,168,76,0.04));
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1rem;
  border: 1px solid rgba(201,168,76,0.14);
}
.value-card h3 { font-size: 1.1rem; color: var(--heading); margin-bottom: 0.6rem; }
.value-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.7; }

/* ══ STATS ROW ══ */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.big-stat { }
.big-stat-num {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.big-stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* ══ TIMELINE (aanpak page) ══ */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light), var(--gold));
  opacity: 0.25;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.timeline-item:last-child { border-bottom: none; }

.timeline-number {
  width: 72px;
  min-width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(201,168,76,0.38);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.timeline-number span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.timeline-content { flex: 1; padding-top: 0.5rem; }
.timeline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(201,168,76,0.15);
}
.timeline-content h3 { font-size: 1.4rem; color: var(--heading); margin-bottom: 0.75rem; }
.timeline-content p { color: var(--gray); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.25rem; }
.timeline-detail { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.timeline-detail span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--charcoal);
  background: rgba(201,168,76,0.07);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,0.15);
}
.timeline-detail i { color: var(--gold); font-size: 0.72rem; }

/* ══ FAQ ══ */
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 1rem; }

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question i {
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.4s var(--spring);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--spring);
}
.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.75;
}

.faq-item.open .faq-answer { max-height: 300px; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-item.open .faq-question { color: var(--gold-dark); }

/* ══ CONTACT PROMISE ══ */
.contact-promise {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 10px;
  padding: 0.875rem 1rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.contact-promise i { color: var(--gold); font-size: 1rem; }

/* ══ SERVICE CARD LINK ══ */
.service-card { display: flex; flex-direction: column; }
.service-card .service-list { flex: 1; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 3rem; }
  .service-detail-inner.reverse { direction: ltr; }
  .service-detail-visual { display: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .timeline::before { left: 28px; }
  .timeline-number { width: 56px; min-width: 56px; height: 56px; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    gap: 1.25rem;
  }
  .nav-cta { display: none; }
  .nav-links.open .nav-cta { display: list-item; }
  .nav-links.open .nav-cta a.btn { width: 100%; justify-content: center; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-stats { gap: 1.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .timeline-item { flex-direction: column; gap: 1rem; }
  .timeline::before { display: none; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .cta-actions { flex-direction: column; align-items: center; }
}
