@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ========== VARIABLES ========== */
:root {
  --blue-dark: #1B3A5C;
  --blue-mid: #244B6E;
  --blue-light: #B5D4E8;
  --blue-pale: #E8F1F8;
  --orange: #E8611A;
  --orange-hover: #D05515;
  --grey: #6D6E71;
  --grey-light: #F7F7F7;
  --white: #FFFFFF;
  --text: #2D3436;
  --text-light: #636E72;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --shadow-sm: 0 1px 3px rgba(27,58,92,0.08);
  --shadow-md: 0 4px 20px rgba(27,58,92,0.1);
  --shadow-lg: 0 12px 40px rgba(27,58,92,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }
ul { list-style: none; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(27,58,92,0.06);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-squares { display: flex; gap: 3px; }
.nav-logo-sq { width: 22px; height: 22px; border-radius: 4px; }
.nav-logo-sq.dkblue { background: var(--blue-dark); }
.nav-logo-sq.ltblue { background: var(--blue-light); position: relative; overflow: hidden; }
.nav-logo-sq.ltblue::after {
  content: ''; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-bottom: 7px solid rgba(27,58,92,0.2);
}
.nav-logo-sq.orange { background: var(--orange); }
.nav-logo-text {
  font-family: var(--font-body); font-weight: 700; font-size: 18px;
  color: var(--grey); letter-spacing: -0.5px;
}
.nav-logo-text .accent { color: var(--orange); }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 15px; font-weight: 500; color: var(--text-light);
  padding: 8px 16px; border-radius: 8px; transition: var(--transition);
  background: none; border: none; display: inline-block;
}
.nav-link:hover, .nav-link.active { color: var(--blue-dark); background: var(--blue-pale); }

/* Right side */
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-switch { display: flex; background: var(--grey-light); border-radius: 20px; padding: 3px; gap: 2px; }
.lang-btn {
  padding: 6px 14px; border-radius: 18px; border: none; font-size: 13px; font-weight: 600;
  transition: var(--transition); background: transparent; color: var(--text-light);
}
.lang-btn.active { background: var(--white); color: var(--blue-dark); box-shadow: var(--shadow-sm); }

.nav-cta {
  background: var(--orange); color: white; border: none; padding: 10px 22px;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  transition: var(--transition); display: inline-block;
}
.nav-cta:hover { background: var(--orange-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* Mobile menu */
.mobile-toggle { display: none; background: none; border: none; padding: 8px; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--blue-dark); margin: 5px 0; transition: var(--transition); border-radius: 2px; }

@media (max-width: 900px) {
  .mobile-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: white; flex-direction: column; padding: 16px 24px;
    box-shadow: var(--shadow-lg); gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-link { width: 100%; text-align: left; }
  .nav-cta-desk { display: none !important; }
}

/* ========== BUTTONS ========== */
.btn-primary {
  background: var(--orange); color: white; border: none; padding: 16px 32px;
  border-radius: 10px; font-size: 16px; font-weight: 600;
  transition: var(--transition); display: inline-block;
  box-shadow: 0 4px 15px rgba(232,97,26,0.3);
}
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 6px 25px rgba(232,97,26,0.4); }

.btn-secondary {
  background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.25);
  padding: 16px 32px; border-radius: 10px; font-size: 16px; font-weight: 500;
  transition: var(--transition); display: inline-block;
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }

.btn-white {
  background: white; color: var(--orange); border: none; padding: 16px 32px;
  border-radius: 10px; font-size: 16px; font-weight: 600;
  transition: var(--transition); display: inline-block;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-outline-white {
  background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4);
  padding: 14px 30px; border-radius: 10px; font-size: 16px; font-weight: 500;
  transition: var(--transition); display: inline-block;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* ========== HERO (Homepage) ========== */
.hero {
  min-height: 85vh; display: flex; align-items: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 60%, var(--blue-dark) 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(184,212,232,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(232,97,26,0.08) 0%, transparent 50%);
}
.hero-geo {
  position: absolute; width: 500px; height: 500px; right: -100px; top: -100px; opacity: 0.04;
  border: 60px solid white; border-radius: 50%; pointer-events: none;
}
.hero-geo2 {
  position: absolute; width: 300px; height: 300px; left: 10%; bottom: -50px; opacity: 0.03;
  border: 40px solid white; transform: rotate(45deg); pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 120px 24px 80px; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  padding: 8px 18px; border-radius: 30px; margin-bottom: 24px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px; text-transform: uppercase;
}
.hero-tag-dot {
  width: 8px; height: 8px; background: var(--orange); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.2); } }

.hero h1 {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 58px); font-weight: 600;
  color: white; line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.5px;
}
.hero .hero-subtitle { font-size: 18px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 36px; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 20px;
  padding: 40px; width: 100%; max-width: 400px;
}
.hero-card-stat { text-align: center; margin-bottom: 24px; }
.hero-card-stat .num { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--orange); }
.hero-card-stat .label { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 4px; }
.hero-card-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 20px 0; }
.hero-card-items { display: flex; flex-direction: column; gap: 16px; }
.hero-card-item { display: flex; align-items: center; gap: 12px; }
.hero-card-item .check {
  width: 28px; height: 28px; background: rgba(232,97,26,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; color: white;
}
.hero-card-item span { font-size: 15px; color: rgba(255,255,255,0.85); }

.hero-visual { display: flex; justify-content: center; align-items: center; }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
}

/* ========== SECTIONS ========== */
.section { padding: 100px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block; font-size: 13px; font-weight: 700; color: var(--orange);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 42px); font-weight: 600;
  color: var(--blue-dark); line-height: 1.2; margin-bottom: 20px; letter-spacing: -0.3px;
}
.section-subtitle { font-size: 17px; color: var(--text-light); max-width: 600px; line-height: 1.7; }
.section-center { text-align: center; }
.section-center .section-title { margin-left: auto; margin-right: auto; }

.bg-light { background: var(--grey-light); }
.bg-dark { background: var(--blue-dark); color: white; }
.bg-dark .section-title { color: white; }

/* ========== INTRO ========== */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 48px; }
.intro-image {
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--blue-light) 100%);
  border-radius: var(--radius); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.intro-image-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.5; }
.intro-image-inner .squares { display: flex; gap: 6px; }
.intro-image-inner .sq { width: 50px; height: 50px; border-radius: 8px; }
.intro-image-inner .sq.d { background: var(--blue-dark); }
.intro-image-inner .sq.l { background: rgba(255,255,255,0.6); }
.intro-image-inner .sq.o { background: var(--orange); }
.intro-image-inner .name { font-family: var(--font-body); font-size: 28px; font-weight: 700; color: var(--grey); margin-top: 4px; }
.intro-image-inner .name .accent { color: var(--orange); }

.intro-text p { font-size: 17px; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }
.intro-highlight {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--blue-pale); padding: 20px 24px; border-radius: var(--radius-sm);
  border-left: 4px solid var(--orange); margin-top: 24px;
}
.intro-highlight .icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.intro-highlight p { font-size: 15px; color: var(--blue-dark); font-weight: 500; margin: 0; }

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

/* ========== DIENSTEN CARDS ========== */
.diensten-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 48px; }
.dienst-card {
  background: var(--white); border: 1px solid rgba(27,58,92,0.08); border-radius: var(--radius);
  padding: 32px 24px; transition: var(--transition); position: relative; overflow: hidden;
}
.dienst-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.dienst-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.dienst-card:hover::before { transform: scaleX(1); }
.dienst-card .card-icon { font-size: 32px; margin-bottom: 16px; }
.dienst-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--blue-dark); margin-bottom: 10px; }
.dienst-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ========== USP ========== */
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 48px; }
.usp-card { text-align: center; }
.usp-icon {
  width: 64px; height: 64px; background: rgba(232,97,26,0.15); border-radius: 16px;
  display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 16px;
}
.usp-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: white; }
.usp-card p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }
@media (max-width: 768px) { .usp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .usp-grid { grid-template-columns: 1fr; } }

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #D05515 100%);
  border-radius: var(--radius); padding: 60px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px;
  background: rgba(255,255,255,0.08); border-radius: 50%;
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -80px; left: -40px; width: 250px; height: 250px;
  background: rgba(255,255,255,0.05); border-radius: 50%;
}
.cta-banner h2 { font-family: var(--font-display); font-size: 32px; font-weight: 600; color: white; margin-bottom: 12px; position: relative; z-index: 1; }
.cta-banner > p { font-size: 17px; color: rgba(255,255,255,0.9); margin-bottom: 32px; position: relative; z-index: 1; }
.cta-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  padding: 140px 24px 80px; text-align: center;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(232,97,26,0.08) 0%, transparent 60%);
}
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px);
  color: white; font-weight: 600; margin-bottom: 12px; position: relative;
}
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.75); position: relative; }

/* ========== FAQ ========== */
.faq-section { margin-top: 60px; }
.faq-item {
  border: 1px solid rgba(27,58,92,0.08); border-radius: var(--radius-sm);
  margin-bottom: 12px; overflow: hidden; transition: var(--transition);
}
.faq-item.open { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.faq-q {
  padding: 20px 24px; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  font-size: 16px; font-weight: 600; color: var(--blue-dark); background: none; border: none; width: 100%;
  text-align: left; font-family: var(--font-body); transition: var(--transition);
}
.faq-q:hover { background: var(--grey-light); }
.faq-arrow {
  font-size: 20px; color: var(--orange); transition: transform 0.3s ease; flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 15px; color: var(--text-light); line-height: 1.8; padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 24px 20px; }

/* ========== OVER ONS ========== */
.robert-section { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; margin-top: 48px; }
.robert-photo {
  aspect-ratio: 3/4; background: linear-gradient(135deg, var(--blue-pale), var(--blue-light));
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 80px; position: relative; overflow: hidden;
}
.robert-photo::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, rgba(27,58,92,0.3), transparent);
}
.robert-info h2 { font-family: var(--font-display); font-size: 36px; font-weight: 600; color: var(--blue-dark); margin-bottom: 4px; }
.robert-info .role { font-size: 16px; color: var(--orange); font-weight: 600; margin-bottom: 20px; display: block; }
.robert-info p { font-size: 16px; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
@media (max-width: 768px) { .robert-section { grid-template-columns: 1fr; } }

.werkwijze-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.werkwijze-card {
  background: var(--grey-light); border-radius: var(--radius); padding: 32px 24px;
  transition: var(--transition);
}
.werkwijze-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.werkwijze-step { font-family: var(--font-display); font-size: 42px; font-weight: 700; color: var(--blue-light); margin-bottom: 12px; }
.werkwijze-card h3 { font-size: 18px; font-weight: 600; color: var(--blue-dark); margin-bottom: 8px; }
.werkwijze-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
@media (max-width: 768px) { .werkwijze-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .werkwijze-grid { grid-template-columns: 1fr; } }

/* Diensten detail */
.dienst-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 32px; }
.dienst-detail-card {
  background: var(--grey-light); border-radius: var(--radius); padding: 32px;
  border-left: 4px solid var(--orange);
}
.dienst-detail-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--blue-dark); margin-bottom: 10px; }
.dienst-detail-card .intro-p { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.dienst-detail-card ul { padding: 0; }
.dienst-detail-card li { font-size: 14px; color: var(--text-light); padding: 6px 0 6px 20px; position: relative; }
.dienst-detail-card li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

.dienst-small-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.dienst-small-card {
  background: white; border: 1px solid rgba(27,58,92,0.08); border-radius: var(--radius-sm);
  padding: 24px; transition: var(--transition);
}
.dienst-small-card:hover { box-shadow: var(--shadow-sm); }
.dienst-small-card h4 { font-size: 17px; font-weight: 600; color: var(--blue-dark); margin-bottom: 8px; }
.dienst-small-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

.gegevens-box {
  margin-top: 48px; background: var(--blue-pale); border-radius: var(--radius-sm); padding: 24px 32px;
}
.gegevens-box h3 { font-size: 18px; font-weight: 600; color: var(--blue-dark); margin-bottom: 12px; }
.gegevens-box p { font-size: 15px; color: var(--text-light); line-height: 1.7; }

@media (max-width: 768px) { .dienst-detail-grid, .dienst-small-grid { grid-template-columns: 1fr; } }

/* ========== CONTACT ========== */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; margin-top: 48px; }
.contact-form { background: var(--grey-light); padding: 40px; border-radius: var(--radius); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--blue-dark); margin-bottom: 8px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 14px 18px; border: 1px solid rgba(27,58,92,0.15); border-radius: var(--radius-sm);
  font-size: 15px; font-family: var(--font-body); color: var(--text); background: white;
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,97,26,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px; }
.form-check input[type="checkbox"] { margin-top: 4px; accent-color: var(--orange); width: 18px; height: 18px; flex-shrink: 0; }
.form-check label { font-size: 14px; color: var(--text-light); cursor: pointer; }
.btn-submit {
  width: 100%; background: var(--orange); color: white; border: none; padding: 16px;
  border-radius: var(--radius-sm); font-size: 16px; font-weight: 600;
  transition: var(--transition);
}
.btn-submit:hover { background: var(--orange-hover); }

.contact-info h2 { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--blue-dark); margin-bottom: 16px; }
.contact-info > p { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 24px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.contact-detail .cd-icon {
  width: 44px; height: 44px; background: var(--blue-pale); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.contact-detail .cd-label { font-size: 13px; color: var(--text-light); }
.contact-detail .cd-value { font-size: 15px; font-weight: 600; color: var(--blue-dark); }
.contact-detail a { color: var(--blue-dark); text-decoration: none; transition: var(--transition); }
.contact-detail a:hover { color: var(--orange); }
.contact-hours {
  background: var(--blue-pale); border-radius: var(--radius-sm); padding: 20px 24px; margin-top: 24px;
}
.contact-hours h4 { font-size: 15px; font-weight: 600; color: var(--blue-dark); margin-bottom: 8px; }
.contact-hours p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.map-placeholder {
  margin-top: 32px; background: var(--grey-light); border-radius: var(--radius); height: 220px;
  display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 14px;
  border: 1px dashed rgba(27,58,92,0.15);
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ========== FOOTER ========== */
.footer { background: var(--blue-dark); color: white; padding: 60px 24px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-top: 16px; }
.footer h4 { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom a { font-size: 13px; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom a:hover { color: var(--orange); }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ========== ANIMATIONS ========== */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========== WHATSAPP FLOAT ========== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); font-size: 28px; color: white;
  transition: var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
