:root {
    --navy: #0a243d;
    --navy-deep: #061626;
    --navy-soft: #1a3a55;
    --navy-rgb: 10,36,61;

    --gold: #c5a059;
    --gold-soft: #d9b878;
    --gold-deep: #9c7e3f;
    --gold-rgb: 197,160,89;

    --teal: #4ecdc4;
    --teal-soft: #8de0d9;
    --teal-deep: #2fa39a;
    --teal-rgb: 78,205,196;

    --white: #ffffff;
    --bg-faint: #fafbfc;
    --bg-soft: #f5f7fa;
    --line: #e6e9ef;
    --ink: #2d3748;
    --ink-soft: #5a6478;
    --wa: #25d366;

    --radius: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 4px 20px rgba(var(--navy-rgb),0.06);
    --shadow-md: 0 12px 40px rgba(var(--navy-rgb),0.12);
    --shadow-lg: 0 24px 60px rgba(var(--navy-rgb),0.18);

    --font-display: 'Montserrat', system-ui, sans-serif;
    --font-body: 'Open Sans', system-ui, sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    font-size: 16px;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--navy);
    line-height: 1.2;
    margin: 0 0 0.5em;
    letter-spacing: -0.01em;
    text-wrap: balance;
  }
  h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700; }
  h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; }
  h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); font-weight: 600; }
  p { margin: 0 0 1em; text-wrap: pretty; }

  .container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ===================== HEADER ===================== */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }
  .site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.04em;
  }
  .logo-mark {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: grid; place-items: center;
    font-weight: 800;
    flex-shrink: 0;
  }
  .logo-text { display: flex; flex-direction: column; line-height: 1; }
  .logo-text span:last-child {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    opacity: 0.7;
    margin-top: 4px;
  }
  .nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
    padding: 0; margin: 0;
    font-size: 0.92rem;
    font-weight: 500;
  }
  .nav a {
    position: relative;
    padding: 4px 0;
    color: var(--navy);
  }
  .nav a.is-active { color: var(--gold-deep); }
  .nav a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }
  .nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
  .header-actions { display: flex; align-items: center; gap: 16px; }
  .lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--navy);
  }
  .lang-switcher button { color: inherit; opacity: 0.5; padding: 4px 6px; transition: opacity 0.2s; }
  .lang-switcher button.active { opacity: 1; color: var(--gold-deep); }
  .lang-switcher button:hover { opacity: 1; }
  .lang-divider { opacity: 0.3; }

  /* ===================== BUTTONS ===================== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.92rem;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 6px 18px rgba(var(--gold-rgb),0.3);
  }
  .btn-primary:hover {
    transform: translateY(-3px);
    background: var(--gold-soft);
    box-shadow: 0 12px 26px rgba(var(--gold-rgb),0.42);
  }
  .btn-wa {
    background: var(--wa);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(37,211,102,0.35);
  }
  .btn-wa:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(37,211,102,0.45); }
  .btn-lg { padding: 16px 30px; font-size: 1rem; }

  /* ===================== HERO ===================== */
  .contact-hero {
    background: var(--navy);
    color: var(--white);
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
  }
  .contact-hero::before {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(var(--gold-rgb),0.14) 0%, transparent 70%);
    pointer-events: none;
  }
  .contact-hero::after {
    content: '';
    position: absolute;
    bottom: -40%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(var(--teal-rgb),0.1) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
  }
  .crumbs {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
  }
  .crumbs a { transition: color 0.2s; }
  .crumbs a:hover { color: var(--gold); }
  .crumbs svg { width: 10px; height: 10px; opacity: 0.5; }
  .crumbs .here { color: var(--white); font-weight: 600; }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 20px;
  }
  .eyebrow::before, .eyebrow::after {
    content: '';
    width: 28px; height: 1px;
    background: var(--teal);
    opacity: 0.6;
  }
  .contact-hero h1 {
    color: var(--white);
    margin-bottom: 20px;
  }
  .contact-hero h1 .accent { color: var(--gold); font-style: italic; font-weight: 500; }
  .contact-hero .sub {
    color: rgba(255,255,255,0.82);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    margin: 0 0 36px;
    max-width: 600px;
    line-height: 1.55;
  }
  .quick-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  /* ===================== METHODS GRID (over-flowing hero) ===================== */
  .methods-wrap {
    margin-top: -72px;
    position: relative;
    z-index: 5;
    padding-bottom: 80px;
  }
  .methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .method-card {
    background: var(--white);
    border-radius: 14px;
    padding: 28px 22px;
    box-shadow: var(--shadow-md);
    border: 1px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: inherit;
  }
  .method-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
  }
  .method-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(var(--teal-rgb),0.14);
    color: var(--teal-deep);
    display: grid; place-items: center;
    margin-bottom: 4px;
  }
  .method-card.wa .method-icon { background: rgba(37,211,102,0.14); color: var(--wa); }
  .method-card.gold .method-icon { background: rgba(var(--gold-rgb),0.16); color: var(--gold-deep); }
  .method-icon svg { width: 22px; height: 22px; }
  .method-card h3 {
    font-size: 1.05rem;
    margin: 0;
  }
  .method-card .value {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
    font-size: 1.05rem;
    line-height: 1.35;
    margin: 0;
    word-break: break-word;
  }
  .method-card .hint {
    font-size: 0.85rem;
    color: var(--ink-soft);
    margin: 0;
  }
  .method-card .pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 8px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold-deep);
    letter-spacing: 0.04em;
  }
  .method-card .pill svg { width: 12px; height: 12px; transition: transform 0.25s; }
  .method-card:hover .pill svg { transform: translateX(4px); }
  .method-card.wa .pill { color: var(--wa); }

  /* ===================== MAIN GRID ===================== */
  .contact-main {
    padding: 0 0 80px;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 48px;
    align-items: start;
  }

  /* ===================== FORM ===================== */
  .form-card,
  .form-wrapper {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
  }
  .form-card h2,
  .form-wrapper h2 {
    font-size: clamp(1.4rem, 2.4vw, 1.8rem);
    margin-bottom: 8px;
  }
  .form-card .lead,
  .form-wrapper .lead {
    color: var(--ink-soft);
    font-size: 0.98rem;
    margin: 0 0 8px;
  }
  .response-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0 32px;
    padding: 8px 14px;
    background: rgba(var(--teal-rgb),0.12);
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal-deep);
    letter-spacing: 0.02em;
  }
  .response-note .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 0 rgba(var(--teal-rgb),0.6);
    animation: ping 1.8s ease-out infinite;
  }
  @keyframes ping {
    0% { box-shadow: 0 0 0 0 rgba(var(--teal-rgb),0.5); }
    80%, 100% { box-shadow: 0 0 0 10px rgba(var(--teal-rgb),0); }
  }

  /* Service type chips */
  .service-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 28px;
  }
  .service-chip {
    position: relative;
    padding: 14px 14px;
    border-radius: 10px;
    border: 1.5px solid var(--line);
    background: var(--white);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.88rem;
    text-align: center;
    transition: all 0.22s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .service-chip svg {
    width: 20px; height: 20px;
    color: var(--teal-deep);
    transition: color 0.22s;
  }
  .service-chip:hover { border-color: var(--gold); transform: translateY(-2px); }
  .service-chip.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
  }
  .service-chip.active svg { color: var(--teal); }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .field { display: flex; flex-direction: column; }
  .field.full { grid-column: 1 / -1; }
  .field label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--navy);
    letter-spacing: 0.04em;
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  .field label .req { color: var(--gold-deep); margin-left: 2px; }
  .field label .opt { color: var(--ink-soft); font-weight: 500; font-size: 0.72rem; letter-spacing: 0; text-transform: lowercase; }
  .input-wrap {
    position: relative;
    display: flex;
    align-items: center;
  }
  .input-wrap svg.field-icon {
    position: absolute;
    left: 14px;
    width: 16px; height: 16px;
    color: var(--ink-soft);
    pointer-events: none;
    transition: color 0.2s;
  }
  .field input,
  .field select,
  .field textarea {
    width: 100%;
    font-family: inherit;
    font-size: 0.95rem;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--bg-faint);
    color: var(--ink);
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    appearance: none;
  }
  .input-wrap.has-icon input { padding-left: 40px; }
  .field input:focus,
  .field select:focus,
  .field textarea:focus,
  .input-wrap:focus-within input {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(var(--gold-rgb),0.1);
  }
  .input-wrap:focus-within svg.field-icon { color: var(--gold-deep); }
  .field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6478' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    padding-right: 38px;
  }
  .field textarea { resize: vertical; min-height: 110px; }
  .field input::placeholder, .field textarea::placeholder { color: var(--ink-soft); }

  .lang-pref {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .lang-pref label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border: 1.5px solid var(--line);
    border-radius: 100px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--navy);
    transition: all 0.2s;
    margin: 0;
  }
  .lang-pref label:hover { border-color: var(--gold); }
  .lang-pref input[type="checkbox"] { display: none; }
  .lang-pref input[type="checkbox"]:checked + .label-content {
    color: var(--navy);
  }
  .lang-pref label:has(input:checked) {
    background: rgba(var(--gold-rgb),0.1);
    border-color: var(--gold);
    color: var(--gold-deep);
    font-weight: 600;
  }
  .lang-pref .flag {
    font-size: 1rem;
    line-height: 1;
  }

  .consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 22px 0;
    font-size: 0.85rem;
    color: var(--ink-soft);
    line-height: 1.5;
  }
  .consent input[type="checkbox"] {
    width: 18px; height: 18px;
    accent-color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
  }
  .consent a { color: var(--gold-deep); text-decoration: underline; }
  .consent a:hover { color: var(--gold); }

  .submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 8px;
    border-top: 1px solid var(--bg-soft);
    margin-top: 12px;
  }
  .submit-row .fine {
    font-size: 0.78rem;
    color: var(--ink-soft);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .submit-row .fine svg { width: 14px; height: 14px; color: var(--teal-deep); }
  .form-submit {
    background: var(--gold);
    color: var(--navy);
    padding: 15px 32px;
    border-radius: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.98rem;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(var(--gold-rgb),0.3);
  }
  .form-submit:hover {
    background: var(--gold-soft);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(var(--gold-rgb),0.4);
  }
  .form-submit svg { width: 18px; height: 18px; }

  /* Success state */
  .form-success {
    display: none;
    text-align: center;
    padding: 32px 12px;
  }
  .form-success.show { display: block; }
  .form-success .check-circle {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(var(--teal-rgb),0.15);
    color: var(--teal);
    display: grid; place-items: center;
    margin: 0 auto 20px;
  }
  .form-success .check-circle svg { width: 40px; height: 40px; }
  .form-success h3 { font-size: 1.6rem; margin-bottom: 10px; }
  .form-success p { color: var(--ink-soft); max-width: 380px; margin: 0 auto 24px; }

  /* ===================== SIDEBAR (info column) ===================== */
  .info-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 96px;
  }
  .info-card {
    background: var(--white);
    border: 1px solid var(--bg-soft);
    border-radius: 14px;
    padding: 28px;
  }
  .info-card h3 {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .info-card h3::before {
    content: '';
    width: 20px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
  }

  /* Hours table */
  .hours-list { margin: 0; padding: 0; list-style: none; }
  .hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--bg-soft);
    font-size: 0.92rem;
  }
  .hours-list li:last-child { border-bottom: none; }
  .hours-list .day { color: var(--navy); font-weight: 600; }
  .hours-list .time { color: var(--ink-soft); font-family: var(--font-display); font-weight: 500; }
  .hours-list .time.always {
    color: var(--teal-deep);
    background: rgba(var(--teal-rgb),0.12);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.78rem;
  }
  .open-now {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal-deep);
  }
  .open-now .dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 0 rgba(var(--teal-rgb),0.6);
    animation: ping 1.8s ease-out infinite;
  }

  /* Address / map */
  .address-card .map-thumb {
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    overflow: hidden;
    margin: -8px 0 18px;
    position: relative;
    background: var(--navy);
  }
  .address-card .map-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(var(--navy-rgb),0.1) 0%, rgba(var(--navy-rgb),0.45) 100%),
      repeating-linear-gradient(35deg, #2a4a6f 0px, #2a4a6f 14px, #354f78 14px, #354f78 28px),
      repeating-linear-gradient(125deg, transparent 0px, transparent 28px, rgba(255,255,255,0.06) 28px, rgba(255,255,255,0.06) 30px);
  }
  /* "Streets" grid overlay */
  .map-thumb .grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
      linear-gradient(0deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .map-pin {
    position: absolute;
    top: 45%; left: 52%;
    transform: translate(-50%, -100%);
    color: var(--gold);
    z-index: 2;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4));
  }
  .map-pin svg { width: 38px; height: 38px; }
  .map-pin::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px; height: 6px;
    border-radius: 50%;
    background: rgba(0,0,0,0.35);
    filter: blur(3px);
  }
  .map-label {
    position: absolute;
    bottom: 12px; left: 12px;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.35);
    padding: 5px 10px;
    border-radius: 6px;
    text-transform: uppercase;
  }
  .address-block {
    font-style: normal;
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 14px;
    font-size: 0.95rem;
  }
  .address-block strong { color: var(--navy); }
  .map-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-deep);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.25s, color 0.25s;
  }
  .map-cta:hover { gap: 12px; color: var(--gold); }
  .map-cta svg { width: 14px; height: 14px; }

  /* Social list */
  .social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .social-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--bg-soft);
    border-radius: 10px;
    transition: all 0.2s;
  }
  .social-item:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
  }
  .social-item .ic {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: grid; place-items: center;
    color: var(--white);
    flex-shrink: 0;
  }
  .social-item .ic svg { width: 18px; height: 18px; }
  .social-item.ig .ic { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
  .social-item.fb .ic { background: #1877f2; }
  .social-item.in .ic { background: #0a66c2; }
  .social-item.yt .ic { background: #ff0000; }
  .social-item .meta { line-height: 1.35; min-width: 0; }
  .social-item .name {
    display: block;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
  }
  .social-item .handle {
    font-size: 0.75rem;
    color: var(--ink-soft);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* CTA card (WhatsApp emphasis) */
  .info-cta {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
    color: var(--white);
    padding: 32px 28px;
    text-align: center;
    border-radius: 14px;
    border: none;
    position: relative;
    overflow: hidden;
  }
  .info-cta::before {
    content: '';
    position: absolute;
    top: -40%; right: -30%;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(37,211,102,0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .info-cta > * { position: relative; z-index: 1; }
  .info-cta .wa-ring {
    width: 72px; height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--wa);
    color: var(--white);
    display: grid; place-items: center;
    box-shadow: 0 8px 24px rgba(37,211,102,0.45);
    position: relative;
  }
  .info-cta .wa-ring::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.5);
    animation: expandRing 2s ease-out infinite;
  }
  @keyframes expandRing {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.4); }
  }
  .info-cta .wa-ring svg { width: 34px; height: 34px; }
  .info-cta h3 {
    color: var(--white);
    font-size: 1.2rem;
    text-transform: none;
    letter-spacing: -0.005em;
    margin: 0 0 10px;
    display: block;
    font-weight: 700;
  }
  .info-cta h3::before { display: none; }
  .info-cta p {
    color: rgba(255,255,255,0.78);
    font-size: 0.93rem;
    margin: 0 0 22px;
  }
  .info-cta .btn { width: 100%; }

  /* ===================== FAQ ===================== */
  .faq-sec {
    background: var(--bg-soft);
    padding: 80px 0;
  }
  .faq-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
  }
  .faq-head .eyebrow { color: var(--teal-deep); }
  .faq-head .eyebrow::before, .faq-head .eyebrow::after { background: var(--teal); }
  .faq-head p { color: var(--ink-soft); font-size: 1.02rem; }

  .faq-grid {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
  }
  .faq-item.open {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
  }
  .faq-q {
    width: 100%;
    text-align: left;
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
    transition: color 0.2s;
  }
  .faq-q:hover { color: var(--teal-deep); }
  .faq-toggle {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--bg-soft);
    display: grid; place-items: center;
    flex-shrink: 0;
    transition: background 0.25s, transform 0.25s;
  }
  .faq-item.open .faq-toggle {
    background: var(--gold);
    transform: rotate(45deg);
  }
  .faq-toggle svg { width: 14px; height: 14px; color: var(--navy); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
  .faq-a-inner {
    padding: 0 26px 22px;
    color: var(--ink-soft);
    font-size: 0.96rem;
    line-height: 1.65;
  }
  .faq-foot {
    text-align: center;
    margin-top: 36px;
    font-size: 0.95rem;
    color: var(--ink-soft);
  }
  .faq-foot a {
    color: var(--gold-deep);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .faq-foot a:hover { color: var(--gold); }

  /* ===================== FOOTER ===================== */
  .site-footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.65);
    padding: 64px 0 28px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }
  .footer-brand .logo { color: var(--white); margin-bottom: 16px; }
  .footer-brand p {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    max-width: 320px;
  }
  .footer-col h5 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 16px;
  }
  .footer-col ul {
    list-style: none;
    padding: 0; margin: 0;
    display: grid;
    gap: 10px;
  }
  .footer-col a {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
  }
  .footer-bottom a:hover { color: var(--gold); }
  .footer-bottom-links { display: flex; gap: 22px; }

  /* ===================== FLOATING ===================== */
  .wa-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--wa);
    color: var(--white);
    display: grid; place-items: center;
    z-index: 100;
    box-shadow: 0 12px 32px rgba(37,211,102,0.4);
    transition: transform 0.25s;
    animation: pulse 2.5s ease-in-out infinite;
  }
  .wa-float:hover { transform: scale(1.08); animation-play-state: paused; }
  .wa-float svg { width: 28px; height: 28px; }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 12px 32px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
    50% { box-shadow: 0 12px 32px rgba(37,211,102,0.4), 0 0 0 16px rgba(37,211,102,0); }
  }

  /* Toast */
  .toast {
    position: fixed;
    bottom: 30px; left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--navy);
    color: var(--white);
    padding: 12px 22px;
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .toast svg { width: 16px; height: 16px; color: var(--teal); }
  .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

  /* ===================== RESPONSIVE ===================== */
  @media (max-width: 1024px) {
    .methods-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .info-col { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .nav, .lang-switcher, .header-actions .btn { display: none; }
    .contact-hero { padding: 56px 0 96px; }
    .methods-wrap { margin-top: -60px; padding-bottom: 56px; }
    .methods-grid { grid-template-columns: 1fr; gap: 14px; }
    .form-card { padding: 0; }
    .form-grid { grid-template-columns: 1fr; }
    .service-types { grid-template-columns: 1fr 1fr; }
    .social-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .submit-row { flex-direction: column; align-items: stretch; }
    .submit-row .form-submit { width: 100%; justify-content: center; }
    .faq-q { padding: 18px 20px; font-size: 0.95rem; }
    .faq-a-inner { padding: 0 20px 18px; }
  }
