/* DE Maas — shared styles (matches React homepage) */
:root {
  --brand-950: #0f2744;
  --brand-900: #1e3a5f;
  --brand-700: #1d4ed8;
  --brand-600: #2563eb;
  --blue-300: #93c5fd;
  --blue-200: #bfdbfe;
  --white: #ffffff;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background: var(--brand-950);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

.font-podium {
  font-family: "Bebas Neue", sans-serif;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* ── Navbar ── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.25rem 1.5rem;
  transition: background 0.5s, box-shadow 0.5s, backdrop-filter 0.5s;
}

.site-header.scrolled {
  background: rgba(15, 39, 68, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(15, 39, 68, 0.3);
}

@media (min-width: 1024px) {
  .site-header { padding: 1.5rem 4rem; }
}

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

.brand-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(0.95rem, 2.2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.15;
  max-width: 11rem;
}

@media (min-width: 640px) {
  .brand-logo { max-width: none; font-size: clamp(1rem, 1.8vw, 1.5rem); }
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .nav-menu { display: flex; }
}

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
}

.btn-nav {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  transition: all 0.2s;
}

.btn-nav:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .btn-nav { display: inline-flex; }
}

.hamburger {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

@media (min-width: 768px) {
  .hamburger { display: none; }
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
}

.hamburger span:nth-child(1),
.hamburger span:nth-child(2) { width: 24px; }
.hamburger span:nth-child(3) { width: 16px; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 39, 68, 0.95);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
}

.mobile-menu-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.mobile-menu-links a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.25rem;
  text-transform: uppercase;
  color: var(--white);
}

@media (min-width: 640px) {
  .mobile-menu-links a { font-size: 3rem; }
}

/* ── Page hero with background image ── */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding: 8rem 1.5rem 4rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .page-hero { padding: 10rem 4rem 5rem; }
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 39, 68, 0.88) 0%, rgba(30, 58, 95, 0.72) 50%, rgba(15, 39, 68, 0.9) 100%);
}

.page-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(59, 130, 246, 0.18) 0%, transparent 55%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  width: 92%;
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(191, 219, 254, 0.8);
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.page-hero p {
  max-width: 65ch;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

@media (min-width: 640px) {
  .page-hero p { font-size: 1.0625rem; }
}

/* ── Sections ── */
.section {
  position: relative;
  padding: 4.5rem 0;
}

.section-dark {
  background: var(--brand-950);
}

.section-alt {
  background: linear-gradient(180deg, var(--brand-900) 0%, var(--brand-950) 100%);
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-intro {
  color: rgba(255, 255, 255, 0.65);
  max-width: 60ch;
  margin-bottom: 2.5rem;
}

/* ── Glass cards ── */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

.service-card {
  padding: 0;
  overflow: hidden;
}

.service-card-img {
  height: 10rem;
  background-size: cover;
  background-position: center;
}

.service-card-body {
  padding: 1.5rem;
}

.service-card-body h3 {
  margin-bottom: 0.75rem;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.4s, border-color 0.4s, background 0.4s;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

.glass-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.glass-card p,
.glass-card li {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
}

.glass-card ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin: 0.75rem 0 1.25rem;
}

.glass-card.featured {
  border-color: rgba(37, 99, 235, 0.6);
  background: rgba(37, 99, 235, 0.12);
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-300);
  margin: 0.5rem 0;
}

.price small {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-600);
  color: var(--white);
  padding: 0.875rem 1.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--brand-700);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 0.875rem 1.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

/* ── CTA band ── */
.cta-band {
  margin-top: 2.5rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cta-band h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.35rem;
}

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-box,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.contact-box h3,
.contact-form h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.contact-list li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.contact-list strong {
  color: var(--white);
}

.contact-list a {
  color: rgba(147, 197, 253, 0.9);
  transition: color 0.2s;
}

.contact-list a:hover {
  color: var(--white);
}

.faq-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1.125rem;
}

.faq-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.faq-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(15, 39, 68, 0.6);
  color: var(--white);
  font: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-600);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.25);
}

.form-group select option {
  background: var(--brand-950);
  color: var(--white);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.notice {
  padding: 0.875rem 1.125rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.notice.success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
}

.notice.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--brand-950);
  padding: 2.5rem 1.5rem;
}

@media (min-width: 1024px) {
  .site-footer { padding: 2.5rem 4rem; }
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
  }
}

.footer-brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.35rem;
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.footer-links li,
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1120px;
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* Floating contact widgets */
.contact-widgets {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-widget {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  color: var(--white);
  box-shadow: 0 10px 25px rgba(15, 39, 68, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-widget:hover {
  transform: scale(1.05);
}

.contact-widget-phone {
  background: var(--brand-600);
}

.contact-widget-phone:hover {
  background: var(--brand-700);
}

.contact-widget-whatsapp {
  background: #25d366;
}

.contact-widget-whatsapp:hover {
  background: #1ebe57;
}

.contact-widget svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-widget-whatsapp svg {
  width: 1.75rem;
  height: 1.75rem;
}
