/* ============================================
   ICONET — app.css
   Professioneel Webdesign & Development Studio
   ============================================ */

:root {
  --navy: #0f1e35;
  --navy-mid: #1a2f4a;
  --navy-light: #243d5e;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-light: #dbeafe;
  --white: #ffffff;
  --off-white: #f8fafc;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(15,30,53,0.08);
  --shadow-lg: 0 16px 48px rgba(15,30,53,0.14);
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

/* ---- UTILITIES ---- */
.section-pad { padding: 96px 0; }
.bg-light-custom { background: var(--off-white); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-body {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 300;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-header { margin-bottom: 16px; }

/* ---- BUTTONS ---- */
.btn-primary-custom {
  background: var(--accent);
  color: var(--white) !important;
  border: 2px solid var(--accent);
  border-radius: 8px;
  padding: 12px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
}
.btn-primary-custom:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.3);
}

.btn-outline-custom {
  background: transparent;
  color: var(--navy) !important;
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 12px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
}
.btn-outline-custom:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
}

.btn-cta-white {
  background: var(--white);
  color: var(--navy) !important;
  border: 2px solid var(--white);
  border-radius: 8px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  text-decoration: none;
  transition: var(--transition);
}
.btn-cta-white:hover {
  background: transparent;
  color: var(--white) !important;
}

/* ---- NAVBAR ---- */
#mainNav {
  background: rgba(15,30,53,0.97);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
#mainNav .navbar-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white) !important;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.brand-icon {
  color: var(--accent);
  margin-right: 4px;
}
#mainNav .nav-link {
  color: rgba(255,255,255,0.75) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: var(--white) !important;
  background: rgba(255,255,255,0.08);
}
#mainNav .navbar-toggler {
  border-color: rgba(255,255,255,0.2);
  filter: invert(1);
}

/* ---- HERO ---- */
.hero-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.min-vh-hero { min-height: 80vh; }
.hero-bg-shape {
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-text { animation: fadeUp 0.8s ease both; }
.badge-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  border: 1px solid rgba(219,234,254,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title em { color: var(--accent); font-style: normal; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.stat strong { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--white); }
.stat span { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* Hero visual */
.hero-visual { display: flex; justify-content: flex-end; align-items: center; animation: fadeUp 0.8s 0.2s ease both; }
.hero-card-stack { position: relative; width: 380px; max-width: 100%; }
.hero-card { border-radius: var(--radius-lg); overflow: hidden; }
.card-main {
  background: #fff;
  box-shadow: var(--shadow-lg);
  padding: 0;
}
.card-browser-bar {
  background: #f1f3f5;
  padding: 10px 16px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.card-browser-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
}
.card-browser-bar span:first-child { background: #fc5c65; }
.card-browser-bar span:nth-child(2) { background: #fed330; }
.card-browser-bar span:nth-child(3) { background: #26de81; }
.card-content-mock { padding: 20px; }
.mock-nav { height: 12px; background: var(--border); border-radius: 6px; margin-bottom: 20px; }
.mock-hero-block { background: var(--navy); border-radius: 10px; padding: 24px; margin-bottom: 16px; }
.mock-title { height: 14px; background: rgba(255,255,255,0.3); border-radius: 4px; margin-bottom: 10px; width: 70%; }
.mock-sub { height: 10px; background: rgba(255,255,255,0.15); border-radius: 4px; margin-bottom: 16px; width: 90%; }
.mock-btn { height: 28px; width: 100px; background: var(--accent); border-radius: 6px; }
.mock-cards-row { display: flex; gap: 10px; }
.mock-card { flex: 1; height: 60px; background: var(--off-white); border-radius: 8px; border: 1px solid var(--border); }

.card-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.card-float i { color: var(--accent); font-size: 1rem; }
.card-float-1 { bottom: -24px; left: -32px; }
.card-float-2 { top: -24px; right: -24px; }

/* ---- LOGO BANNER ---- */
.logo-banner {
  background: var(--navy-mid);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.logo-banner-label {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.logo-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.logo-row span {
  font-family: var(--font-display);
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.logo-row span:hover { color: rgba(255,255,255,0.7); }

/* ---- ABOUT VISUAL ---- */
.about-visual { display: flex; justify-content: center; }
.about-img-block { position: relative; display: inline-block; }
.about-img-placeholder {
  width: 380px; height: 320px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.about-img-placeholder.large { width: 420px; height: 360px; }
.about-icon-ring {
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 3px solid rgba(37,99,235,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; color: var(--accent);
  box-shadow: 0 0 40px rgba(37,99,235,0.2);
}
.about-icon-ring.large { width: 120px; height: 120px; font-size: 3rem; }
.about-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge-float strong { display: block; font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; }
.about-badge-float span { font-size: 0.78rem; opacity: 0.85; }

/* Pillars */
.pillars { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.pillar {
  display: flex; align-items: center; gap: 8px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.9rem; font-weight: 500;
}
.pillar i { color: var(--accent); }

/* ---- SERVICE CARDS (homepage) ---- */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--accent);
  margin-bottom: 20px;
}
.service-card h4 {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--navy);
}
.service-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ---- PROCESS ---- */
.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  height: 100%;
  position: relative;
  transition: var(--transition);
}
.process-step:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h5 { font-size: 1.05rem; margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ---- PORTFOLIO CARDS (homepage preview) ---- */
.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.portfolio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.portfolio-img { height: 200px; }
.portfolio-info { padding: 20px; background: var(--white); }
.portfolio-tag {
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-light);
  padding: 3px 10px; border-radius: 100px;
  display: inline-block; margin-bottom: 8px;
}
.portfolio-info h5 { font-size: 1rem; margin-bottom: 4px; }
.portfolio-info p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
}
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; }
.testimonial-card p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 24px; font-style: italic; }
.client-info { display: flex; align-items: center; gap: 12px; }
.client-avatar {
  width: 42px; height: 42px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  font-family: var(--font-display);
}
.client-info strong { display: block; font-size: 0.9rem; font-weight: 700; }
.client-info span { font-size: 0.78rem; color: var(--text-muted); }

/* ---- CTA SECTION ---- */
.cta-section { padding: 80px 0; }
.cta-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  padding: 60px 56px;
}
.cta-box h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--white); margin-bottom: 12px; }
.cta-box p { color: rgba(255,255,255,0.65); font-size: 1rem; margin: 0; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.65);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-links a:hover { background: var(--accent); color: var(--white); }
.site-footer h6 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.footer-contact i { color: var(--accent); margin-top: 3px; min-width: 14px; }
.footer-bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.85rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--navy);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-shape {
  position: absolute;
  top: -100px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  font-weight: 300;
}

/* ---- SERVICE DETAIL ---- */
.service-detail-visual { display: flex; justify-content: center; align-items: center; }
.svc-icon-block {
  width: 200px; height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--accent);
  box-shadow: 0 0 60px rgba(37,99,235,0.15);
}
.service-list { list-style: none; padding: 0; margin: 24px 0 0; }
.service-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.service-list li:last-child { border-bottom: none; }
.service-list i { color: var(--accent); margin-top: 3px; }

/* ---- PORTFOLIO (full page) ---- */
.filter-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.filter-btn {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  border-radius: 8px;
  padding: 8px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.portfolio-card-full {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.portfolio-card-full:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-img-full {
  height: 240px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(15,30,53,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.portfolio-card-full:hover .portfolio-overlay { opacity: 1; }
.portfolio-link {
  width: 48px; height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1rem; text-decoration: none;
  transition: var(--transition);
}
.portfolio-link:hover { background: var(--accent); color: var(--white); }
.portfolio-mock { position: absolute; inset: 16px; background: rgba(255,255,255,0.06); border-radius: 8px; padding: 12px; }
.pm-nav { height: 8px; background: rgba(255,255,255,0.15); border-radius: 4px; margin-bottom: 12px; }
.pm-hero { height: 60px; background: rgba(255,255,255,0.08); border-radius: 6px; margin-bottom: 10px; }
.pm-row { display: flex; gap: 6px; }
.pm-row div { flex: 1; height: 36px; background: rgba(255,255,255,0.06); border-radius: 4px; }
.portfolio-info-full { padding: 20px; background: var(--white); }
.portfolio-info-full h5 { font-size: 1.05rem; margin-bottom: 6px; margin-top: 8px; }
.portfolio-info-full p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* Stats */
.stat-block { padding: 32px; }
.stat-block strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 800;
  color: var(--accent); margin-bottom: 6px;
}
.stat-block span { font-size: 0.9rem; color: var(--text-muted); }

/* ---- ABOUT PAGE ---- */
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
}
.value-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.value-icon {
  width: 56px; height: 56px;
  background: var(--accent-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--accent);
  margin: 0 auto 20px;
}
.value-card h5 { margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
}
.team-card:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 72px; height: 72px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  margin: 0 auto 16px;
}
.team-role {
  display: block;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.team-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 20px; }
.team-socials { display: flex; justify-content: center; gap: 8px; }
.team-socials a {
  width: 34px; height: 34px;
  background: var(--off-white);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.8rem;
  text-decoration: none; transition: var(--transition);
}
.team-socials a:hover { background: var(--accent); color: var(--white); }

/* ---- CONTACT PAGE ---- */
.contact-info-blocks { margin-top: 32px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--accent);
  flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.contact-info-item span { font-size: 0.88rem; color: var(--text-muted); }
.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-box h3 { margin-bottom: 28px; }
.contact-form label { font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; display: block; color: var(--navy); }
.custom-input {
  border: 1.5px solid var(--border) !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  color: var(--text) !important;
  transition: var(--transition) !important;
  background: var(--white) !important;
}
.custom-input:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12) !important;
  outline: none !important;
}
.form-check-label { font-size: 0.88rem; color: var(--text-muted); }
.form-check-label a { color: var(--accent); }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .hero-visual { margin-top: 48px; justify-content: center; }
  .hero-card-stack { width: 320px; }
  .card-float-1 { left: -12px; }
  .card-float-2 { right: -12px; }
  .cta-box { padding: 40px 28px; }
  .about-img-placeholder { width: 300px; height: 260px; }
}
@media (max-width: 576px) {
  .section-pad { padding: 64px 0; }
  .hero-stats { gap: 16px; }
  .filter-tabs { gap: 8px; }
  .contact-form-box { padding: 24px; }
}
