  :root {
    --waltrex-blue: #0041C2;
    --waltrex-blue-dark: #00339a;
    --waltrex-blue-soft: #e8efff;
    --ink: #0a0e1a;
    --muted: #5a6377;
    --line: #e6e9f0;
    --bg: #ffffff;
    --bg-alt: #f7f8fc;
    --whatsapp: #25D366;
    --whatsapp-dark: #1da851;
    --instagram-grad: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --radius: 14px;
    --radius-sm: 10px;
    --shadow-sm: 0 1px 2px rgba(10,14,26,.04), 0 2px 8px rgba(10,14,26,.04);
    --shadow-md: 0 8px 24px rgba(0,65,194,.08), 0 2px 6px rgba(10,14,26,.05);
    --shadow-lg: 0 20px 50px rgba(0,65,194,.18);
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  a { color: var(--waltrex-blue); text-decoration: none; }
  a:hover { text-decoration: underline; }

  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

  /* NAV */
 .navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 100%;
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px;
  max-width: 1600px;
}

.navbar-logo img {
  width: 150px; /* Adjust to your preference */
  height: auto; /* Keeps aspect ratio */
}

.navbar-container .navbar-menu {
  display: flex;
  text-align: center;
  gap: 1.3rem;
  list-style-type: none;
}

.navbar-container .navbar-menu li a {
  text-decoration: none;
  color: #0041c2;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 3px 20px;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.7s ease;
  white-space: nowrap;
}

.navbar-container
  .navbar-menu
  li
  a:hover
  .navbar-container
  .navbar-menu
  li
  a.active {
  background-color: #0041c2;
  color: #fff;
  border: 2px solid #0041c2;
}

.navbar-toggle {
  display: none;
  background: white;
  padding: 10px;
  border: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #0041c2;
  transition: all 0.3s ease-in-out;
}
  /* HERO */
  .contact-hero {
  padding: 80px 0 48px;
  text-align: center;      
  }
  .contact-hero .eyebrow {
    display: inline-block;
    color: var(--waltrex-blue); font-size: 13px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 6px 14px; border: 1px solid var(--waltrex-blue);
    border-radius: 999px; margin-bottom: 20px;
  }
  .contact-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800; line-height: 1.1;
    margin: 0 0 16px;
    letter-spacing: -.02em;
  }
  .contact-hero h1 span { color: var(--waltrex-blue); }
  .contact-hero p {
    font-size: 1.1rem; color: var(--muted);
    max-width: 620px; margin: 0 auto;
  }

  /* QUICK CONTACT CARDS */
  .quick-contact { padding: 56px 0 24px; }
  .quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .qc-card {
    position: relative;
    display: flex; flex-direction: column;
    padding: 32px 28px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    overflow: hidden;
  }
  .qc-card::after {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: var(--waltrex-blue);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .3s ease;
  }
  .qc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
  }
  .qc-card:hover::after { transform: scaleY(1); }

  .qc-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px;
    margin-bottom: 20px;
  }
  .qc-icon svg { width: 28px; height: 28px; }

  .qc-card.whatsapp .qc-icon { background: rgba(37,211,102,.12); color: var(--whatsapp); }
  .qc-card.call .qc-icon { background: var(--waltrex-blue-soft); color: var(--waltrex-blue); }
  .qc-card.instagram .qc-icon { background: var(--instagram-grad); color: #fff; }

  .qc-card h3 { margin: 0 0 6px; font-size: 1.25rem; font-weight: 700; }
  .qc-card .qc-sub { font-size: 14px; color: var(--muted); margin: 0 0 18px; }
  .qc-card .qc-detail { font-size: 15px; color: var(--ink); font-weight: 600; margin: 0 0 22px; }

  .qc-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600; font-size: 15px;
    color: #fff !important;
    margin-top: auto;
    transition: transform .15s ease, box-shadow .2s ease, background .2s;
  }
  .qc-btn:hover { text-decoration: none !important; transform: translateY(-1px); }
  .qc-btn.wa { background: var(--whatsapp); }
  .qc-btn.wa:hover { background: var(--whatsapp-dark); box-shadow: 0 8px 20px rgba(37,211,102,.3); }
  .qc-btn.tel { background: var(--waltrex-blue); }
  .qc-btn.tel:hover { background: var(--waltrex-blue-dark); box-shadow: 0 8px 20px rgba(0,65,194,.3); }
  .qc-btn.ig { background: var(--instagram-grad); }
  .qc-btn.ig:hover { box-shadow: 0 8px 20px rgba(220,39,67,.3); }

  /* MAIN: FORM + INFO */
  .contact-main { padding: 48px 0 80px; }
  .main-grid {
    display: flex;
   justify-content: center;
    gap: 48px;
    align-items: start;
  }

  .form-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
  }
  .form-card h2 { margin: 0 0 8px; font-size: 1.6rem; font-weight: 700; letter-spacing: -.01em; }
  .form-card .lede { margin: 0 0 28px; color: var(--muted); font-size: 15px; }

  .field { margin-bottom: 18px; }
  .field label {
    display: block; font-size: 13px; font-weight: 600;
    margin-bottom: 8px; color: var(--ink);
    text-transform: uppercase; letter-spacing: .04em;
  }
  .field input, .field select, .field textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-family: inherit; font-size: 15px;
    background: #fff; color: var(--ink);
    transition: border-color .15s, box-shadow .15s;
  }
  .field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--waltrex-blue);
    box-shadow: 0 0 0 3px rgba(0,65,194,.12);
  }
  .field textarea { resize: vertical; min-height: 130px; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .submit-btn {
    width: 100%;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 20px;
    background: var(--whatsapp);
    color: #fff;
    font-size: 16px; font-weight: 600;
    border: none; border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background .2s, transform .1s, box-shadow .2s;
    margin-top: 8px;
  }
  .submit-btn:hover { background: var(--whatsapp-dark); box-shadow: 0 10px 24px rgba(37,211,102,.3); }
  .submit-btn:active { transform: translateY(1px); }
  .submit-btn svg { width: 20px; height: 20px; }

  .form-note { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }

  /* INFO PANEL */
  .info-panel {
    background: var(--ink);
    color: #e8eaf2;
    border-radius: var(--radius);
    padding: 40px;
    position: sticky; top: 100px;
    overflow: hidden;
    isolation: isolate;
  }
  .info-panel::before {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(0,65,194,.4), transparent 70%);
    top: -100px; right: -100px;
    z-index: -1;
  }
  .info-panel h3 { margin: 0 0 24px; color: #fff; font-size: 1.3rem; font-weight: 700; }
  .info-row {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .info-row:last-of-type { border-bottom: none; }
  .info-row .ico {
    flex-shrink: 0;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,65,194,.25);
    border-radius: 8px;
    color: #9eb8ff;
  }
  .info-row .ico svg { width: 18px; height: 18px; }
  .info-row .label {
    font-size: 12px; text-transform: uppercase; letter-spacing: .08em;
    color: #9099b3; margin-bottom: 2px;
  }
  .info-row .val { color: #fff; font-size: 15px; }
  .info-row .val a { color: #fff; }
  .info-row .val a:hover { color: #9eb8ff; }

  /* FOOTER */
 .footer {
  display: flex;
  flex-direction: row;
  gap: 40px;
  background: #ffffff;
  padding: 3rem 2rem;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.footer-logo img {
  width: 160px;
  margin-bottom: 0.5rem;
}

.tagline {
  color: #0041c2;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.col-title {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 4px;
}

.footer-col a,
.footer-col p {
  font-size: 13px;
  color: #0c0c0c;
  text-decoration: none;
  line-height: 1.6;
}

.footer-col a:hover {
  color: #0073ff;
}

.footer-col i {
  color: #0041c2;
  margin-right: 8px;
}

.social-icons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 8px;
}

.social-icons a i {
  font-size: 22px;
  color: #0041c2;
}

.social-icons a i:hover {
  color: #1ba9f5;
}

.copyright {
  background: #0041c2;
  text-align: center;
  padding: 1rem;
  font-size: 12px;
  color: #ffffff;
  border-top: 0.5px solid #222;
}

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .quick-grid { grid-template-columns: 1fr; }
    .main-grid { grid-template-columns: 1fr; }
    .info-panel { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .form-card { padding: 28px; }
    .info-panel { padding: 28px; }
    .site-nav ul { display: none; }
  }
  @media (max-width: 540px) {
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-hero { padding: 56px 0 32px; }
  }

  .qc-card, .form-card, .info-panel { animation: rise .6s ease backwards; }
  .qc-card:nth-child(1) { animation-delay: .05s; }
  .qc-card:nth-child(2) { animation-delay: .15s; }
  .qc-card:nth-child(3) { animation-delay: .25s; }
  .form-card { animation-delay: .35s; }
  .info-panel { animation-delay: .45s; }
  @keyframes rise {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 880px) {
  .navbar-container .navbar-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.7rem !important;
    position: absolute;
    height: 100vh;
    width: 250px;
    top: 0;
    right: 0;
    padding: 5rem 1.5rem;
    background-color: white;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  }
  .navbar-container .navbar-menu.active {
    display: flex;
  }
  .navbar-toggle {
    display: block;
    z-index: 999;
  }

  .navbar-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .navbar-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .navbar-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Smaller screen */

@media (max-width: 480px) {
  .navbar-container {
    padding: 0 1rem;
  }

  .navbar-logo {
    font-size: 1.5rem;
  }
  .navbar-container .navbar-menu li a {
    font-size: 1.1rem;
    padding: 3px 15px;
  }
  .footer {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: #ffffff;
    padding: 3rem 2rem;
    align-items: flex-start;
  }
}