/* MakelaarAI — Main Stylesheet */

:root {
  --navy: #0A1628;
  --navy-mid: #112240;
  --navy-light: #1a3a6b;
  --gold: #C9A84C;
  --gold-light: #e8c96a;
  --white: #ffffff;
  --off-white: #f4f6f9;
  --gray: #8892a4;
  --text: #2d3748;
  --border: #e2e8f0;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

/* Typography */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { color: var(--gray); line-height: 1.7; }

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

/* Layout */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }

/* Navigation */
nav {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--navy-light);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: 1100px; margin: 0 auto;
}
.logo {
  font-size: 1.4rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.5px;
}
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500; }
.nav-links a:hover { color: var(--white); }
.nav-links .cta-btn {
  background: var(--gold); color: var(--navy);
  padding: 8px 20px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.85rem;
}
.nav-links .cta-btn:hover { background: var(--gold-light); color: var(--navy); }

/* Language switcher */
.lang-switcher {
  display: flex; gap: 6px; align-items: center;
}
.lang-btn {
  background: transparent; border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6); padding: 4px 10px;
  border-radius: 4px; cursor: pointer; font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.5px; transition: all 0.2s;
}
.lang-btn:hover, .lang-btn.active {
  background: var(--gold); border-color: var(--gold);
  color: var(--navy);
}

/* Hero */
.hero {
  background: var(--navy);
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15); color: var(--gold);
  padding: 6px 16px; border-radius: 20px; font-size: 0.8rem;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 24px; border: 1px solid rgba(201,168,76,0.3);
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p { color: rgba(255,255,255,0.65); font-size: 1.15rem; margin-bottom: 36px; max-width: 560px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.95rem; border: none; cursor: pointer;
  transition: all 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--white);
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.2s; display: inline-block;
}
.btn-secondary:hover { border-color: var(--white); color: var(--white); }

/* Stats row */
.stats-row {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-light);
  border-bottom: 1px solid var(--navy-light);
  padding: 32px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat-number { font-size: 2rem; font-weight: 800; color: var(--gold); }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* Benefits */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.benefit-card {
  background: var(--white); padding: 32px;
  border-radius: 12px; border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 8px 40px rgba(10,22,40,0.15); }
.benefit-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.benefit-icon svg { width: 24px; height: 24px; fill: var(--gold); }
.benefit-card h3 { color: var(--navy); margin-bottom: 12px; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.service-card {
  background: var(--white); padding: 32px;
  border-radius: 12px; border: 1px solid var(--border);
  display: flex; gap: 20px; align-items: flex-start;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: var(--gold); }
.service-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--navy); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.service-card h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.05rem; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.pricing-card {
  background: var(--white); padding: 36px 28px;
  border-radius: 12px; border: 2px solid var(--border);
  text-align: center; position: relative;
  transition: all 0.2s;
}
.pricing-card.featured {
  border-color: var(--gold); background: var(--navy);
  transform: scale(1.03);
}
.pricing-card.featured h3 { color: var(--white); }
.pricing-card.featured p { color: rgba(255,255,255,0.6); }
.pricing-card.featured .price { color: var(--gold); }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.1); }
.featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  padding: 4px 16px; border-radius: 20px; font-size: 0.75rem; font-weight: 700;
}
.pricing-card h3 { color: var(--navy); margin-bottom: 8px; }
.price { font-size: 2rem; font-weight: 800; color: var(--navy); margin: 16px 0 4px; }
.price-sub { font-size: 0.85rem; color: var(--gray); margin-bottom: 24px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 28px; }
.pricing-features li {
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem; color: var(--text); display: flex; align-items: center; gap: 8px;
}
.pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* Section headers */
.section-header { text-align: center; max-width: 620px; margin: 0 auto 16px; }
.section-header h2 { color: var(--navy); }
.section-tag {
  display: inline-block; color: var(--gold); font-size: 0.8rem;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 12px;
}

/* CTA Section */
.cta-section {
  background: var(--navy); padding: 80px 0; text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.6); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; margin-top: 48px; }
.contact-info h3 { color: var(--navy); margin-bottom: 16px; }
.contact-detail { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 20px; }
.contact-detail-icon {
  width: 36px; height: 36px; background: rgba(201,168,76,0.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-icon svg { width: 16px; height: 16px; fill: var(--gold); }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--navy); margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 0.9rem; color: var(--text); transition: border-color 0.2s;
  font-family: inherit; background: var(--white);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Footer */
footer {
  background: var(--navy); border-top: 1px solid var(--navy-light);
  padding: 48px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.85rem; margin-top: 12px; max-width: 260px; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.45); font-size: 0.85rem; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--navy-light); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 4px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* About page */
.about-hero { background: var(--navy); padding: 80px 0; }
.about-hero h1 { color: var(--white); }
.about-hero p { color: rgba(255,255,255,0.6); max-width: 580px; margin-top: 16px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card { padding: 28px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; }
.value-card h3 { color: var(--navy); margin-bottom: 8px; }

/* Page hero (inner pages) */
.page-hero { background: var(--navy); padding: 64px 0; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.6); margin-top: 12px; max-width: 540px; }

/* Responsive */
@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--navy); padding: 24px; gap: 16px; border-top: 1px solid var(--navy-light); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
}
