/* ═══════════════════════════════════════════
   TIMS NEDERLAND – SHARED STYLESHEET
   ═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

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

:root {
  --navy:   #0a1628;
  --blue:   #1a3a6b;
  --mid:    #2557a7;
  --accent: #4a9eff;
  --steel:  #8faac8;
  --light:  #e8f0fb;
  --white:  #f7f9fc;
  --text:   #c8d8ee;
  --muted:  #6a85a8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: 0.4;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5vw;
  background: rgba(10,22,40,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(74,158,255,0.1);
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.5rem;
  color: var(--white); text-decoration: none;
  letter-spacing: -0.03em;
}
.logo span { color: var(--accent); }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--steel); text-decoration: none; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--accent) !important; color: var(--navy) !important;
  padding: 0.55rem 1.3rem !important; border-radius: 6px; font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: #6eb3ff !important; transform: translateY(-1px); }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: var(--steel); transition: all 0.3s; display: block; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 9rem 5vw 5rem;
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(74,158,255,0.1);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74,158,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,158,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,87,167,0.3) 0%, transparent 70%);
  top: -150px; right: -100px;
  animation: pulse 8s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.1);opacity:0.7} }

.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.section-label {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1rem;
  display: block;
}
.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -0.04em; margin-bottom: 1.2rem;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { font-size: 1.1rem; color: var(--steel); line-height: 1.75; max-width: 540px; }

/* ─── CONTENT SECTIONS ─── */
.content-section { padding: 5rem 5vw; position: relative; }
.content-section + .content-section { border-top: 1px solid rgba(74,158,255,0.07); }
.content-section.alt { background: rgba(255,255,255,0.02); }

h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.15;
  margin-bottom: 1.2rem;
}
h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

p { line-height: 1.8; color: var(--text); }
.lead { font-size: 1.08rem; color: var(--steel); line-height: 1.8; }

/* ─── FEATURE LIST ─── */
.feature-list { list-style: none; margin-top: 1.5rem; }
.feature-list li {
  display: flex; gap: 0.9rem; align-items: flex-start;
  padding: 0.85rem 0; border-bottom: 1px solid rgba(74,158,255,0.08);
  font-size: 0.95rem; color: var(--text);
}
.feature-list li::before {
  content: '→'; color: var(--accent); font-size: 0.85rem;
  margin-top: 0.15rem; flex-shrink: 0;
}

/* ─── CARD GRID ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  background: rgba(74,158,255,0.07);
  border: 1px solid rgba(74,158,255,0.07);
  border-radius: 16px; overflow: hidden;
  margin-top: 3rem;
}
.card {
  background: var(--navy); padding: 2rem;
  transition: background 0.3s; position: relative;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.card:hover { background: rgba(37,87,167,0.12); }
.card:hover::before { opacity: 1; }
.card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(74,158,255,0.1); border: 1px solid rgba(74,158,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.2rem;
}
.card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-top: 0.4rem; }

/* ─── TWO COL ─── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}

/* ─── HIGHLIGHT BOX ─── */
.highlight-box {
  background: rgba(74,158,255,0.07);
  border: 1px solid rgba(74,158,255,0.15);
  border-radius: 14px; padding: 2rem 2.5rem; margin-top: 2rem;
}
.highlight-box h3 { color: var(--accent); margin-bottom: 0.6rem; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--accent); color: var(--navy);
  padding: 0.85rem 2rem; border-radius: 8px;
  font-size: 0.95rem; font-weight: 600; text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(74,158,255,0.25);
  margin-top: 1.5rem; margin-right: 0.8rem;
}
.btn-primary:hover { background: #6eb3ff; transform: translateY(-2px); box-shadow: 0 0 50px rgba(74,158,255,0.4); }

.btn-secondary {
  display: inline-block;
  border: 1px solid rgba(74,158,255,0.3); color: var(--accent);
  padding: 0.85rem 2rem; border-radius: 8px;
  font-size: 0.95rem; font-weight: 500; text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  margin-top: 1.5rem;
}
.btn-secondary:hover { border-color: var(--accent); background: rgba(74,158,255,0.08); transform: translateY(-2px); }

/* ─── CONTACT STRIP ─── */
.contact-strip {
  background: linear-gradient(135deg, rgba(26,58,107,0.4), rgba(10,22,40,0.1));
  border-top: 1px solid rgba(74,158,255,0.1);
  border-bottom: 1px solid rgba(74,158,255,0.1);
  padding: 4rem 5vw; text-align: center;
}
.contact-strip h2 { margin-bottom: 0.8rem; }
.contact-strip p { color: var(--muted); margin-bottom: 0.3rem; }

/* ─── FORM ─── */
.form-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(74,158,255,0.12);
  border-radius: 16px; padding: 2.5rem; max-width: 700px; margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.2rem; }
.field label {
  display: block; font-size: 0.78rem; font-weight: 500;
  color: var(--steel); margin-bottom: 0.5rem;
  text-transform: uppercase; letter-spacing: 0.07em;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(74,158,255,0.15);
  border-radius: 8px; padding: 0.85rem 1rem;
  color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  outline: none; transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent); background: rgba(74,158,255,0.06);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field textarea { resize: vertical; min-height: 130px; }
.field select option { background: var(--navy); }
.form-submit {
  width: 100%; background: var(--accent); color: var(--navy);
  border: none; border-radius: 8px; padding: 1rem;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(74,158,255,0.25); margin-top: 0.5rem;
}
.form-submit:hover { background: #6eb3ff; transform: translateY(-2px); }
.form-note { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 0.8rem; }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid rgba(74,158,255,0.1);
  padding: 2.5rem 5vw;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  position: relative;
}
footer p {
  position: absolute; left: 50%; transform: translateX(-50%);
}
footer p { font-size: 0.82rem; color: var(--muted); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.82rem; color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--accent); }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0;
    flex-direction: column; background: rgba(10,22,40,0.98); padding: 2rem;
    gap: 1.2rem; border-bottom: 1px solid rgba(74,158,255,0.1); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  footer { flex-direction: column; text-align: center; }
  .page-hero h1, h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); word-break: break-word; overflow-wrap: break-word; hyphens: auto; }
  .page-hero { padding: 7rem 4vw 3rem; overflow: hidden; }
  body { overflow-x: hidden; }
  section, .content-section { overflow-x: hidden; }
  .page-hero-content { max-width: 100%; }
}

/* ─── LOGO IMAGE ─── */
.logo-img { display: flex; align-items: center; text-decoration: none; }
.logo-img img { height: 40px; width: auto; filter: brightness(0) invert(1); transition: opacity 0.2s; }
.logo-img img:hover { opacity: 0.8; }