    :root {
      --red:       #C8102E;
      --red-dark:  #a00c24;
      --navy:      #1B2A4A;
      --navy-deep: #111d35;
      --blue:      #2F5FA8;
      --green:     #1E8E5A;
      --bg:        #F7F8FA;
      --text:      #3D4756;
      --white:     #ffffff;
      --grey-lt:   #eef0f5;
      --grey-mid:  #9aa1ae;
      --font-head: 'Poppins', sans-serif;
      --font-body: 'Inter', sans-serif;
      --radius-sm: 6px;
      --radius-md: 14px;
      --radius-lg: 24px;
      --shadow-card: 0 4px 24px rgba(27,42,74,.10);
      --shadow-btn: 0 4px 16px rgba(200,16,46,.30);
      --tr: .25s ease;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    .container { width: 90%; max-width: 1200px; margin: 0 auto; }
    .eyebrow { display: inline-block; font-family: var(--font-head); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
    .section-title { font-family: var(--font-head); font-size: clamp(1.7rem,3vw,2.4rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
    .section-sub { font-size: 1.05rem; color: var(--grey-mid); line-height: 1.75; margin-bottom: 40px; max-width: 600px; }
    .btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: .95rem; padding: 14px 32px; border-radius: var(--radius-sm); border: none; cursor: pointer; box-shadow: var(--shadow-btn); transition: background var(--tr), transform var(--tr); width: 100%; justify-content: center; }
    .btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
    .btn-wa { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: .95rem; padding: 14px 32px; border-radius: var(--radius-sm); border: none; cursor: pointer; box-shadow: 0 4px 16px rgba(37,211,102,.35); transition: background var(--tr), transform var(--tr); width: 100%; justify-content: center; }
    .btn-wa:hover { background: #1ebe5a; transform: translateY(-2px); }
    .btn-outline-white { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: .92rem; padding: 13px 28px; border-radius: var(--radius-sm); border: 2px solid rgba(255,255,255,.45); cursor: pointer; transition: border-color var(--tr), background var(--tr); }
    .btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

    /* ── NAVBAR ── */
    .navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 5%; background: rgba(17,29,53,.97); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; justify-content: space-between; height: 68px; }
    .nav-brand { display: flex; align-items: center; gap: 12px; }
    .nav-logo-mark { width: 42px; height: 42px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; color: var(--white); font-size: 1rem; flex-shrink: 0; }
    .nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
    .nav-brand-name { font-family: var(--font-head); font-weight: 800; font-size: .95rem; color: var(--white); }
    .nav-brand-tagline { font-size: .68rem; color: rgba(255,255,255,.5); letter-spacing: .06em; }
    .nav-links { display: flex; align-items: center; gap: 32px; }
    .nav-links a { font-family: var(--font-head); font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.75); transition: color var(--tr); position: relative; }
    .nav-links a:hover, .nav-links a.active { color: var(--white); }
    .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transition: transform var(--tr); transform-origin: left; }
    .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
    .nav-cta { background: var(--red) !important; color: var(--white) !important; padding: 9px 22px !important; border-radius: var(--radius-sm); font-weight: 700 !important; box-shadow: var(--shadow-btn); }
    .nav-cta:hover { background: var(--red-dark) !important; }
    .nav-cta::after { display: none !important; }
    .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
    .nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }
    .mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--navy-deep); padding: 24px 5%; z-index: 99; flex-direction: column; gap: 4px; border-top: 1px solid rgba(255,255,255,.08); }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: rgba(255,255,255,.8); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); transition: color var(--tr); }
    .mobile-menu a:hover { color: var(--white); }

    /* ── BREADCRUMB ── */
    .breadcrumb-bar { margin-top: 68px; background: var(--navy-deep); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
    .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: rgba(255,255,255,.45); font-family: var(--font-head); font-weight: 500; }
    .breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--tr); }
    .breadcrumb a:hover { color: var(--white); }
    .breadcrumb-sep { opacity: .4; }
    .breadcrumb-current { color: rgba(255,255,255,.8); }

    /* ── PAGE HERO ── */
    .page-hero { background: var(--navy-deep); padding: 64px 0 80px; position: relative; overflow: hidden; }
    .page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.02) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.02) 1px,transparent 1px); background-size: 60px 60px; pointer-events: none; }
    .page-hero::after { content: ''; position: absolute; right: -60px; top: -60px; width: 480px; height: 480px; border-radius: 50%; border: 70px solid rgba(200,16,46,.07); pointer-events: none; }
    .page-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
    .page-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,16,46,.15); border: 1px solid rgba(200,16,46,.3); border-radius: 50px; padding: 5px 14px 5px 8px; margin-bottom: 20px; }
    .page-hero-badge-dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
    .page-hero-badge span { font-family: var(--font-head); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #ff6b7a; }
    .page-hero h1 { font-family: var(--font-head); font-size: clamp(2rem,4.5vw,3.2rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 16px; }
    .page-hero h1 em { font-style: normal; color: var(--red); }
    .page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.65); max-width: 560px; line-height: 1.75; }
    /* Quick contact pills in hero */
    .hero-quick-contacts { display: flex; flex-direction: column; gap: 12px; }
    .hero-contact-pill { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); padding: 14px 18px; min-width: 240px; transition: background var(--tr); }
    .hero-contact-pill:hover { background: rgba(255,255,255,.12); }
    .hero-contact-pill-icon { width: 38px; height: 38px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; color: var(--white); }
    .hero-contact-pill-label { font-size: .68rem; color: rgba(255,255,255,.45); font-family: var(--font-head); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2px; }
    .hero-contact-pill-value { font-family: var(--font-head); font-size: .88rem; font-weight: 700; color: var(--white); }

    /* ── MAIN CONTACT SECTION ── */
    .contact-main { padding: 80px 0; background: var(--bg); }
    .contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }

    /* ── CONTACT INFO PANEL ── */
    .contact-info { display: flex; flex-direction: column; gap: 20px; }
    .contact-info-intro { font-size: .97rem; color: var(--text); line-height: 1.8; margin-bottom: 8px; }

    .contact-card { background: var(--white); border: 1px solid var(--grey-lt); border-radius: var(--radius-md); padding: 20px 22px; display: flex; align-items: flex-start; gap: 16px; transition: box-shadow var(--tr), transform var(--tr), border-color var(--tr); }
    .contact-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); border-color: rgba(200,16,46,.2); }
    .contact-card-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; color: var(--white); }
    .contact-card-label { font-family: var(--font-head); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-mid); margin-bottom: 4px; }
    .contact-card-value { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
    .contact-card-value a { color: var(--navy); transition: color var(--tr); }
    .contact-card-value a:hover { color: var(--red); }
    .contact-card-sub { font-size: .8rem; color: var(--grey-mid); line-height: 1.5; }

    /* Quick-action buttons */
    .quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px; }
    .qa-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 16px; border-radius: var(--radius-sm); font-family: var(--font-head); font-size: .82rem; font-weight: 700; transition: background var(--tr), color var(--tr), transform var(--tr); border: none; cursor: pointer; }
    .qa-btn:hover { transform: translateY(-2px); }
    .qa-call  { background: var(--navy); color: var(--white); }
    .qa-call:hover { background: var(--navy-deep); }
    .qa-wa    { background: #25D366; color: var(--white); box-shadow: 0 3px 12px rgba(37,211,102,.3); }
    .qa-wa:hover { background: #1ebe5a; }
    .qa-email { background: var(--blue); color: var(--white); }
    .qa-email:hover { background: #2651a0; }
    .qa-map   { background: var(--grey-lt); color: var(--navy); }
    .qa-map:hover   { background: #dde0e8; }

    /* Office hours */
    .hours-card { background: var(--navy); border-radius: var(--radius-md); padding: 22px 24px; color: var(--white); }
    .hours-title { font-family: var(--font-head); font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
    .hours-title i { color: var(--red); }
    .hours-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: .85rem; }
    .hours-row:last-child { border-bottom: none; }
    .hours-day { color: rgba(255,255,255,.65); }
    .hours-time { font-family: var(--font-head); font-weight: 600; color: var(--white); }
    .hours-time.available { color: #4eca7a; }
    .hours-time.limited { color: var(--red); }

    /* ── CONTACT FORM ── */
    .contact-form-wrap { background: var(--white); border: 1px solid var(--grey-lt); border-radius: var(--radius-lg); padding: 40px 36px; box-shadow: var(--shadow-card); }
    .form-title { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
    .form-sub { font-size: .88rem; color: var(--grey-mid); margin-bottom: 28px; line-height: 1.5; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
    .form-group label { font-family: var(--font-head); font-size: .78rem; font-weight: 700; color: var(--navy); letter-spacing: .04em; }
    .form-group label .req { color: var(--red); margin-left: 2px; }
    .form-control { width: 100%; padding: 12px 14px; background: var(--bg); border: 1.5px solid var(--grey-lt); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .9rem; color: var(--text); outline: none; transition: border-color var(--tr), background var(--tr), box-shadow var(--tr); }
    .form-control:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px rgba(47,95,168,.1); }
    .form-control::placeholder { color: var(--grey-mid); }
    select.form-control { cursor: pointer; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239aa1ae' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
    textarea.form-control { resize: vertical; min-height: 120px; }
    .form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px; }
    .form-check input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: var(--red); cursor: pointer; }
    .form-check label { font-size: .82rem; color: var(--grey-mid); line-height: 1.5; cursor: pointer; }
    .form-check label a { color: var(--blue); }
    .form-check label a:hover { color: var(--navy); text-decoration: underline; }
    /* Character count */
    .char-count { font-size: .72rem; color: var(--grey-mid); text-align: right; margin-top: -14px; margin-bottom: 18px; }
    /* Success / error states */
    .form-status { display: none; border-radius: var(--radius-sm); padding: 14px 16px; font-size: .88rem; font-family: var(--font-head); font-weight: 600; margin-bottom: 16px; align-items: center; gap: 10px; }
    .form-status.success { display: flex; background: rgba(30,142,90,.1); border: 1px solid rgba(30,142,90,.3); color: var(--green); }
    .form-status.error   { display: flex; background: rgba(200,16,46,.08); border: 1px solid rgba(200,16,46,.25); color: var(--red); }
    .btn-submit { width: 100%; }
    /* ─── DYNAMIC SUBMIT BUTTON ──────────────────────────────────── */
.btn-submit-dynamic {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 22px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-head);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.btn-submit-dynamic:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn-submit-dynamic:active { transform: translateY(0); }
.btn-submit-dynamic:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

/* Email variant */
.btn-submit-dynamic.email-mode {
  background: var(--red);
}
.btn-submit-dynamic.email-mode:hover {
  background: var(--red-dark);
  box-shadow: 0 8px 24px rgba(200,16,46,.3);
}

/* Icon bubble */
.submit-btn-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: background var(--transition);
}
.btn-submit-dynamic:hover .submit-btn-icon { background: rgba(255,255,255,.3); }

/* Text stack */
.submit-btn-content { flex: 1; display: flex; flex-direction: column; gap: 2px; }
#submit-label { font-size: .95rem; font-weight: 700; letter-spacing: .01em; }
#submit-sublabel { font-size: .72rem; opacity: .8; font-weight: 500; }

/* Arrow */
.submit-btn-arrow { font-size: 1.1rem; opacity: .7; margin-left: auto; flex-shrink: 0; }

/* Loading shimmer */
.btn-submit-dynamic.loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.15) 50%, transparent 100%);
  animation: shimmer 1.2s infinite;
}
@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

    /* ── MAP SECTION ── */
    .map-section { padding: 0 0 80px; background: var(--bg); }
    .map-header { padding: 56px 0 32px; }
    .map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); position: relative; }
    .map-wrapper iframe { width: 100%; height: 420px; border: none; display: block; filter: grayscale(15%); }
    /* Map overlay label */
    .map-label { position: absolute; top: 20px; left: 20px; background: var(--white); border-radius: var(--radius-md); padding: 14px 18px; box-shadow: 0 4px 20px rgba(27,42,74,.15); display: flex; align-items: center; gap: 12px; z-index: 1; }
    .map-label-icon { width: 36px; height: 36px; background: var(--red); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--white); flex-shrink: 0; }
    .map-label strong { display: block; font-family: var(--font-head); font-size: .85rem; font-weight: 800; color: var(--navy); }
    .map-label span { font-size: .75rem; color: var(--grey-mid); }

    /* ── ALTERNATE REACH CHANNELS ── */
    .channels-section { padding: 56px 0 80px; background: var(--white); }
    .channels-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 8px; }
    .channel-card { border-radius: var(--radius-md); padding: 32px 26px; text-align: center; border: 1px solid var(--grey-lt); transition: box-shadow var(--tr), transform var(--tr); display: flex; flex-direction: column; align-items: center; gap: 14px; }
    .channel-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
    .channel-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--white); }
    .channel-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: var(--navy); }
    .channel-card p { font-size: .85rem; color: var(--grey-mid); line-height: 1.6; flex: 1; }
    .channel-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-size: .83rem; font-weight: 700; padding: 10px 22px; border-radius: var(--radius-sm); color: var(--white); transition: opacity var(--tr), transform var(--tr); }
    .channel-link:hover { opacity: .88; transform: translateY(-1px); }

    /* ── FAQ STRIP ── */
    .faq-section { padding: 72px 0; background: var(--bg); }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
    .faq-item { background: var(--white); border: 1px solid var(--grey-lt); border-radius: var(--radius-md); overflow: hidden; }
    .faq-q { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; cursor: pointer; gap: 12px; }
    .faq-q span { font-family: var(--font-head); font-size: .88rem; font-weight: 700; color: var(--navy); line-height: 1.4; }
    .faq-icon { font-size: 1rem; color: var(--red); flex-shrink: 0; transition: transform var(--tr); }
    .faq-item.open .faq-icon { transform: rotate(45deg); }
    .faq-a { display: none; padding: 0 20px 18px; font-size: .86rem; color: var(--text); line-height: 1.7; border-top: 1px solid var(--grey-lt); padding-top: 14px; }
    .faq-item.open .faq-a { display: block; }

    /* ── CTA BAND ── */
    .cta-band { padding: 72px 0; background: var(--navy-deep); text-align: center; position: relative; overflow: hidden; }
    .cta-band::after { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle,rgba(200,16,46,.1) 0%,transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
    .cta-band h2 { position: relative; z-index: 1; font-family: var(--font-head); font-size: clamp(1.5rem,3vw,2rem); font-weight: 800; color: var(--white); margin-bottom: 12px; }
    .cta-band > p { position: relative; z-index: 1; color: rgba(255,255,255,.6); font-size: 1rem; margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
    .cta-actions { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px; }

    /* ── FOOTER ── */
    footer { background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,.08); padding: 56px 0 0; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 48px; }
    .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
    .footer-logo-mark { width: 44px; height: 44px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; color: var(--white); font-size: 1rem; flex-shrink: 0; }
    .footer-brand-name { font-family: var(--font-head); font-weight: 800; font-size: .95rem; color: var(--white); line-height: 1.2; }
    .footer-brand-tagline { font-size: .7rem; color: var(--red); font-style: italic; font-weight: 500; }
    .footer-desc { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 20px; }
    .footer-socials { display: flex; gap: 10px; }
    .footer-social { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); font-size: 1rem; transition: background var(--tr), color var(--tr); }
    .footer-social:hover { background: var(--red); color: var(--white); }
    .footer-col h4 { font-family: var(--font-head); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 18px; }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul a { font-size: .85rem; color: rgba(255,255,255,.6); transition: color var(--tr); }
    .footer-col ul a:hover { color: var(--white); }
    .footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
    .footer-contact-icon { width: 30px; height: 30px; background: rgba(200,16,46,.15); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: .85rem; color: var(--red); flex-shrink: 0; margin-top: 1px; }
    .footer-contact-text { font-size: .83rem; color: rgba(255,255,255,.6); line-height: 1.5; }
    .footer-contact-text a { color: rgba(255,255,255,.6); transition: color var(--tr); }
    .footer-contact-text a:hover { color: var(--white); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
    .footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.35); }
    .footer-bottom a { color: rgba(255,255,255,.5); transition: color var(--tr); }
    .footer-bottom a:hover { color: var(--white); }
    .footer-legal { display: flex; gap: 20px; }
    .footer-legal a { font-size: .78rem; color: rgba(255,255,255,.35); transition: color var(--tr); }
    .footer-legal a:hover { color: rgba(255,255,255,.7); }

    /* ── WHATSAPP ── */
    .whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 200; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform var(--tr), box-shadow var(--tr); }
    .whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
    .whatsapp-float i { font-size: 1.6rem; color: white; }

    /* ── REVEAL ── */
    .reveal   { opacity: 0; transform: translateY(28px);  transition: opacity .6s ease, transform .6s ease; }
    .reveal-l { opacity: 0; transform: translateX(-28px); transition: opacity .65s ease, transform .65s ease; }
    .reveal-r { opacity: 0; transform: translateX(28px);  transition: opacity .65s ease, transform .65s ease; }
    .reveal.visible, .reveal-l.visible, .reveal-r.visible { opacity: 1; transform: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .contact-layout { grid-template-columns: 1fr; }
      .channels-grid  { grid-template-columns: 1fr 1fr; }
      .footer-grid    { grid-template-columns: 1fr 1fr; }
      .faq-grid       { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .page-hero-inner { grid-template-columns: 1fr; }
      .hero-quick-contacts { display: none; }
      .form-row { grid-template-columns: 1fr; }
      .channels-grid { grid-template-columns: 1fr; }
      .quick-actions { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .footer-legal { justify-content: center; }
    }
    @media (max-width: 480px) {
      .contact-form-wrap { padding: 28px 20px; }
      .quick-actions { grid-template-columns: 1fr; }
      .cta-actions { flex-direction: column; }
    }
    @media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }
