body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  color: #1f2933;
  background: #f7f9fb;
  scroll-padding-top: 100px;

html {
  scroll-behavior: smooth;
}

:root {
  --primary: #1f4fd8;      /* example – use your real brand color */
  --primary-dark: #163aa6;
  --text-dark: #1a1a1a;
  --text-muted: #6b7280;
}

a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}


.header-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.logo {
  height: 90px;
  width: auto;
}

@media (max-width: 768px) {
  .logo {
    height: 56px;
  }
}


nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #374151;
  font-weight: 600;
}

.hero {
  margin-top: 20px;	
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  color: #4b5563;
}

.section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

.service {
  margin-bottom: 24px;
}

.service h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.section.alt {
  background: #ffffff;
  padding: 60px 20px;
}

ol li, ul li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer {
  background: #111827;
  color: #e5e7eb;
  text-align: center;
  padding: 30px 20px;
}
.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  opacity: 0.85;
  display: block;
}
.service h3 {
  margin-top: 8px;
}
a:focus {
  outline: 2px solid #005fcc;
  outline-offset: 3px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 34px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;

  color: #ffffff;
  background: linear-gradient(
    135deg,
    #0f3d3e 0%,
    #145f5c 100%
  );

  border-radius: 999px;
  border: none;

  box-shadow:
    0 10px 25px rgba(20, 95, 92, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

/* Hover: subtle confidence boost */
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(20, 95, 92, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);

  background: linear-gradient(
    135deg,
    #145f5c 0%,
    #1b7a76 100%
  );
}

/* Active: pressed, not jumpy */
.btn-primary:active {
  transform: translateY(0);
  box-shadow:
    0 6px 14px rgba(20, 95, 92, 0.35),
    inset 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* Keyboard accessibility */
.btn-primary:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(27, 122, 118, 0.4),
    0 10px 25px rgba(20, 95, 92, 0.25);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0;
}

.lang-switch img {
  width: 30px;
  height: auto;
  border-radius: 2px;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lang-switch a img:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.lang-switch .inactive {
  opacity: 0.4;
  filter: grayscale(100%);
  cursor: default;
}

.lang-switch .sep {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin: 0 2px;
}
/* ---------- HAMBURGER ---------- */
.hamburger,
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger,
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #1f2933;
  margin: 6px 0;
  transition: 0.3s;
}

/* ---------- NAV WRAPPER ---------- */
.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ---------- MOBILE ---------- */
@media (max-width: 900px) {

  .hamburger,
  .menu-toggle {
    display: block;
  }

  .nav-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    display: none;
  }

  .nav-wrapper.open {
    display: flex;
  }

  nav {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  nav a {
    margin: 12px 0;
    font-size: 18px;
  }

  .lang-switch {
    margin-top: 16px;
  }
}
.header nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.25s ease;
}

.header nav a:hover::after {
  width: 100%;
}

.header nav a:hover {
  color: var(--primary);
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lang-switch a:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.cta a:not(.btn-primary) {
  color: white;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.cta a:hover {
  opacity: 0.9;
}

section[id] {
  scroll-margin-top: 90px;
}

/* fallback bulletproof */
section[id]::before {
  content: "";
  display: block;
  height: 90px;
  margin-top: -90px;
  visibility: hidden;
}
/* === Consultation Overlay === */

.consultation-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.75);
  backdrop-filter: blur(3px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.consultation-overlay.active {
  display: flex;
}

.consultation-modal {
  background: #ffffff;
  width: 100%;
  max-width: 520px;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  position: relative;
}

.consultation-modal h2 {
  margin-top: 0;
  font-size: 24px;
}

.consultation-intro {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 24px;
}

.consultation-modal label {
  display: block;
  font-weight: 600;
  margin-bottom: 14px;
}

.consultation-modal input,
.consultation-modal textarea {
  width: 100%;
  margin-top: 6px;
  padding: 2px 0px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-family: inherit;
  font-size: 20px;
}

.consultation-modal input:focus,
.consultation-modal textarea:focus {
  outline: none;
  border-color: #145f5c;
}

.overlay-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #6b7280;
}

.overlay-close:hover {
  color: #111827;
}

.form-status {
  margin-top: 14px;
  font-size: 14px;
  color: #145f5c;
}

/* Mobile */
@media (max-width: 480px) {
  .consultation-modal {
    border-radius: 0;
    height: 100%;
    max-width: none;
  }
}
input[name="company_website"] {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
}
/* make sure hamburger is visible and clickable */
.hamburger,
.menu-toggle {
  position: relative;
  z-index: 2000;
}

/* if you use spans for hamburger lines */
.hamburger span,
.menu-toggle span {
  display: block;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;

  width: 40px;
  height: 40px;

  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);

  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: background 0.2s ease, transform 0.15s ease;
  z-index: 3001;
}

.modal-close:hover {
  background: rgba(0,0,0,0.85);
  transform: scale(1.1);
}
.form-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;

  background: rgba(0,0,0,0.7);
  display: none;
}
.form-modal {
  position: relative;
}
.cta-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 100%;
}

.img-cta {
  max-width: 480px;
  width: 100%;
  height: auto;
}
@media (max-width: 480px) {
  .consultation-modal {
    width: 100%;
    height: 80vh;       /* full viewport height */
    max-width: none;
    margin: 0;
    border-radius: 0;
    padding: 20px;       /* reduce padding to fit content */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* pushes submit button to bottom */
    overflow-y: auto;     /* allow scrolling if content still overflows */
  }

  .consultation-modal h2,
  .consultation-modal p,
  .consultation-modal form {
    flex-shrink: 0;
  }

  .overlay-close {
    top: 20px;
    right: 12px;         /* adjust for smaller screen */
  }
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
