:root {
    --ink: #1a0b13;
    --ink-soft: #5c4550;
    --ivory: #fcf8f5;
    --ivory-deep: #f5eae1;
    --blush: #fbd9de;
    --rose: #e6395e;
    --amber: #f77e23;
    --gold: #d4af37;
    --grad: linear-gradient(135deg, var(--rose) 0%, var(--amber) 100%);
    --grad-soft: linear-gradient(135deg, rgba(230,57,94,.12), rgba(247,126,35,.12));
    --shadow: 0 20px 40px -15px rgba(26,11,19,.15);
    --shadow-hover: 0 30px 60px -20px rgba(230,57,94,.25);
    --radius: 24px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: 'Jost', sans-serif;
    color: var(--ink);
    background: var(--ivory);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    margin: 0 0 0.4em;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  h1 { font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 700; line-height: 1.1; text-shadow: 0 2px 4px rgba(0,0,0,0.25),0 8px 30px rgba(0,0,0,0.35); }
  h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.2; }
  h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); font-style: italic; font-weight: 600; }
  h4 { font-family: 'Jost', sans-serif; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.95rem; color: var(--rose); }
  p { margin: 0 0 1.2em; color: var(--ink-soft); font-size: 1.05rem; }
  a { text-decoration: none; color: inherit; transition: var(--transition); }
  ul { margin: 0; padding: 0; list-style: none; }
  img { max-width: 100%; display: block; border-radius: 12px; }
  
  .container { max-width: 1240px; margin: 0 auto; padding:  0 20px;}
  .hero h1 { color: #fff; }
.hero h1 .grad-text { -webkit-text-fill-color: unset; } /* keeps the rose→amber gradient as-is */

.hero-tagline { color: rgba(255,255,255,0.85); }

.hero-stats { border-top: 1px solid rgba(255,255,255,0.2); }
.hero-stats div strong { color: var(--amber); }
.hero-stats div span { color: rgba(255,255,255,0.65); }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 0.85rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--amber); font-weight: 600; margin-bottom: 20px;
  }
  .eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--grad); display: inline-block; border-radius: 2px; }
  
  .grad-text {
    background: var(--grad);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
    .section-label-center { text-align:center; }
  .section-label-center .eyebrow { justify-content:center; }
  .section-label-center h2 { max-width:760px; margin-left:auto; margin-right:auto; }
  .lead-center { text-align:center; max-width:660px; margin:0 auto; }


  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 10px 22px; border-radius: 100px; font-size: 0.9rem;
    letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
    cursor: pointer; border: none; transition: var(--transition);
  }
  .btn-primary { 
    background: var(--grad); color: #fff; 
    box-shadow: 0 10px 25px -10px rgba(230,57,94,0.6);
  }
  .btn-primary:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 20px 35px -10px rgba(230,57,94,0.8);
  }
  .btn-outline { 
    background: transparent; color: var(--ink); 
    border: 2px solid white; 
    color:#fcf8f5;
  }
  .btn-outline:hover { 
    border-color: var(--rose); color: var(--rose); transform: translateY(-4px); 
  }
  .btn-light { background: #fff; color: var(--rose); box-shadow: var(--shadow); }
  
  section { position: relative; padding: 55px 0; }
  .section-tight { padding: 80px 0; }
  .section-deep { background: var(--ink); color: #f4e9e2; }
  .section-deep p { color: #cfb9be; }
  .section-deep h2, .section-deep h3 { color: #fff; }
  .section-deep h4 { color: var(--amber); }
  /* =========================================
     HEADER (NAVBAR) — identical to home page
     (transparent over hero, glass after scroll)
     ========================================= */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 24px 0; transition: var(--transition);
  }
  header.scrolled {
    background: rgba(252, 248, 245, 0.85);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.5);
  }
  .nav-wrap { display: flex; align-items: center; justify-content: space-between; }
  .brand { display: flex; align-items: center; gap: 12px; font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.6rem; color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,0.35); }
  .brand img { width: 72px; height: 72px; border-radius: 50%; box-shadow: 0 8px 20px -6px rgba(230,57,94,.5); object-fit: cover; }
  header.scrolled .brand { color: var(--ink); text-shadow: none; }
  .nav-cta .btn-primary { padding: 10px 22px; font-size: 0.9rem; }
  nav ul { display: flex; gap: 30px; align-items: center; }
  nav a { font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; position: relative; padding: 8px 0; color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,0.35); }
  nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--grad); transition: width 0.3s ease; }
  nav a:hover::after, nav a.active::after { width: 100%; }
  nav a.active { color: var(--rose); text-shadow: none; }
  nav a:hover { color: #fff; }
  header.scrolled nav a { color: var(--ink); text-shadow: none; }
  header.scrolled nav a.active { color: var(--rose); }
  header.scrolled nav a:hover { color: var(--rose); }
  .nav-cta { display: flex; align-items: center; gap: 20px; }
  .burger { display: none; flex-direction: column; gap: 6px; cursor: pointer; background: none; border: none; padding: 5px; }
  .burger span { width: 28px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }
  header.scrolled .burger span { background: var(--ink); }

  /* ============================================================
     FOOTER — compact redesign
     ============================================================ */

  /* Footer */
  footer { background: var(--ink); color: #e7d6d0; padding: 10px 0 30px; }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 50px; margin-bottom: 60px; }
  footer h4 { color: var(--amber); font-size: 1.1rem; margin-bottom: 20px;}
  footer ul li { margin-bottom: 12px; font-size: 0.95rem; color: #cbb2ac; }
  footer ul li a:hover { color: var(--amber); padding-left: 5px;}
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; display: flex; justify-content: space-between; font-size: 0.9rem; color: #a98d87; }

     .ftm-footer{ background: var(--ink); color:#e7d6d0; }
 
  .ftm-top-strip{
    background:linear-gradient(135deg, rgba(230,57,94,.16), rgba(247,126,35,.10));
    border-bottom:1px solid rgba(255,255,255,.08);
  }
  .ftm-top-inner{
    display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px;
    padding:13px 0px;
  }
  .ftm-top-tag{ display:flex; align-items:center; gap:10px; font-size:.85rem; color:#f4e9e2; }
  .ftm-top-tag svg{ width:16px; height:16px; color:var(--amber); flex-shrink:0; }
  .ftm-top-call{ display:flex; align-items:center; gap:8px; font-size:.85rem; font-weight:700; color:var(--amber); }
  .ftm-top-call svg{ width:15px; height:15px; }
  .ftm-top-call:hover{ color:#fff; }
 
  /* main grid: brand | branches(switcher) | pages | book -- shorter columns overall */
  .ftm-grid{
    display:grid;
    grid-template-columns: 1.05fr 1.25fr 0.62fr 0.85fr;
    gap:44px;
    padding:46px 0 34px;
    align-items:start;
  }
  .ftm-col h4{
    color:var(--amber); font-size:.78rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
    margin:0 0 16px;
  }
 
  /* -- brand column -- */
  .ftm-brand{
    display:flex; align-items:center; gap:12px;
    font-family:'Cormorant Garamond',serif; font-weight:700; font-size:1.4rem; color:#fff;
    margin-bottom:13px;
  }
  .ftm-brand-mark{
    width:38px;height:38px;border-radius:50%;background:var(--grad);color:#fff;
    display:flex;align-items:center;justify-content:center;font-style:italic;font-size:1.1rem;
    flex-shrink:0; box-shadow:0 8px 18px -6px rgba(230,57,94,.6);
  }
  .ftm-col-brand p{ font-size:.86rem; color:#cbb2ac; line-height:1.65; margin:0 0 16px; }
  .ftm-cert{
    display:inline-flex; align-items:center; gap:7px; font-size:.7rem; font-weight:700; letter-spacing:.06em;
    color:var(--gold); border:1px solid rgba(212,175,55,.35); border-radius:100px; padding:6px 13px; margin-bottom:16px;
  }
  .ftm-cert svg{ width:12px; height:12px; }
  .ftm-social{ display:flex; gap:10px; }
  .ftm-social a{
    width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);
    display:flex;align-items:center;justify-content:center;color:#f4e9e2;transition:var(--transition);
  }
  .ftm-social a svg{ width:15px; height:15px; }
  .ftm-social a:hover{ background:var(--grad); border-color:transparent; color:#fff; transform:translateY(-3px); }
 
  /* -- BRANCHES: single-card tab switcher, replaces stacked cards -- */
  .ftm-branch-switch{
    background:rgba(255,255,255,.035); border:1px solid rgba(255,255,255,.08); border-radius:14px;
    overflow:hidden;
  }
  .ftm-branch-tabs{
    display:flex; border-bottom:1px solid rgba(255,255,255,.08);
  }
  .ftm-branch-tab{
    flex:1; text-align:center; padding:11px 6px; font-size:.76rem; font-weight:600; color:#a98d87;
    cursor:pointer; transition:var(--transition); border-bottom:2px solid transparent; background:none; border-top:none; border-left:none; border-right:none;
    font-family:'Jost',sans-serif; letter-spacing:.02em;
  }
  .ftm-branch-tab + .ftm-branch-tab{ border-left:1px solid rgba(255,255,255,.08); }
  .ftm-branch-tab:hover{ color:#f4e9e2; }
  .ftm-branch-tab.active{ color:var(--amber); border-bottom-color:var(--amber); background:rgba(230,57,94,.06); }
  .ftm-branch-panel{ display:none; padding:16px 18px 18px; }
  .ftm-branch-panel.active{ display:block; }
  .ftm-branch-address{
    display:flex; gap:8px; font-size:.82rem; color:#cbb2ac; line-height:1.55; margin:0 0 10px;
  }
  .ftm-branch-address svg{ width:14px; height:14px; color:var(--rose); flex-shrink:0; margin-top:3px; }
  .ftm-branch-hours{
    display:flex; align-items:center; gap:8px; font-size:.78rem; font-weight:600; color:var(--amber);
  }
  .ftm-branch-hours svg{ width:13px; height:13px; flex-shrink:0; }
  .ftm-map-link{
    display:inline-flex; align-items:center; gap:6px; font-size:.74rem; font-weight:600; color:#cbb2ac;
    margin-top:12px; padding-top:12px; border-top:1px dashed rgba(255,255,255,.1); width:100%;
  }
  .ftm-map-link svg{ width:12px; height:12px; color:var(--amber); }
  .ftm-map-link:hover{ color:var(--amber); }
 
  /* -- pages column -- */
  .ftm-links{ display:flex; flex-direction:column; gap:11px; }
  .ftm-links a{ font-size:.9rem; color:#cbb2ac; transition:var(--transition); }
  .ftm-links a:hover{ color:var(--amber); padding-left:5px; }
 
  /* -- get in touch + book column -- */
  .ftm-contact-list{ display:flex; flex-direction:column; gap:12px; margin-bottom:18px; }
  .ftm-contact-list li{ display:flex; align-items:flex-start; gap:10px; font-size:.85rem; color:#cbb2ac; line-height:1.5; list-style:none; }
  .ftm-contact-list li svg{ width:15px; height:15px; color:var(--amber); flex-shrink:0; margin-top:2px; }
  .ftm-contact-list li a{ color:#cbb2ac; }
  .ftm-contact-list li a:hover{ color:var(--amber); }
  .ftm-cta-btn{
    display:flex; align-items:center; justify-content:center; gap:8px; width:100%;
    background:var(--grad); color:#fff; font-size:.83rem; font-weight:700; letter-spacing:.04em;
    padding:12px 20px; border-radius:100px; box-shadow:0 12px 24px -8px rgba(230,57,94,.55);
    transition:var(--transition);
  }
  .ftm-cta-btn:hover{ transform:translateY(-3px); box-shadow:0 18px 32px -8px rgba(230,57,94,.7); }
 
  .ftm-bottom{ border-top:1px solid rgba(255,255,255,.08); }
  .ftm-bottom-inner{
    display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
    padding:16px 0; font-size:.78rem; color:#a98d87;
  }
  .ftm-bottom-inner a{ color:#a98d87; }
  .ftm-bottom-inner a:hover{ color:var(--amber); }
  .ftm-branch-contact {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-top: 10px;
}
.ftm-branch-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: var(--ink-soft); font-weight: 500;
}
.ftm-branch-phone svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--rose); }
.ftm-branch-phone a { color: var(--ink-soft); }
.ftm-branch-phone a:hover { color: var(--rose); }

.ftm-branch-insta {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--grad-soft); color: var(--rose); flex-shrink: 0;
  transition: var(--transition);
}
.ftm-branch-insta svg { width: 15px; height: 15px; }
.ftm-branch-insta:hover { background: var(--grad); color: #fff; }
 
  @media (max-width:1100px){
    .ftm-grid{ grid-template-columns: 1fr 1fr; row-gap:34px; }
  }
  @media (max-width:640px){
    .ftm-grid{ grid-template-columns: 1fr; padding:38px 0 28px; gap:32px; }
    .ftm-top-inner{ flex-direction:column; align-items:flex-start; }
    .ftm-bottom-inner{ flex-direction:column; text-align:center; }
    .ftm-branch-tab{ font-size:.7rem; padding:10px 4px; }
  }
/* =========================================
   MOBILE NAV DRAWER — burger toggle + slide-in panel
   (Base/fallback so every page works identically, even
   pages that don't define this inline in their own <style>)
   ========================================= */
@media (max-width: 1024px) {
  nav, .nav-cta .btn { display: none; }
  .burger { display: flex; }
}

.mobile-nav {
  position: fixed; inset: 0; left: 0; right: 0; width: 100%; max-width: 100%;
  background: var(--ivory); z-index: 2000 !important; padding: 100px 40px;
  transform: translateX(100%) !important; transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1);
  display: flex; flex-direction: column; gap: 30px;
  overflow-y: auto;
  pointer-events: none !important;
}
.mobile-nav.open {
  transform: translateX(0) !important;
  pointer-events: auto !important;
  z-index: 4000 !important;
}
  #mobileNav {
    width: 100%; max-width: 100%; z-index: 4000 !important; pointer-events: none !important;
    transform: translateX(100%) !important;
  }
  #mobileNav.open {
    transform: translateX(0) !important;
    pointer-events: auto !important;
    z-index: 4000 !important;
  }
.mobile-nav-toggle{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-toggle .mn-arrow{
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--rose);
  transition: transform 0.3s ease;
}
.mobile-nav-item.open .mobile-nav-toggle .mn-arrow{
  transform: rotate(180deg);
}
.mobile-nav-sub{
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1);
}
.mobile-nav-item.open .mobile-nav-sub{
  max-height: 480px;
  margin-top: 12px;
}
.mobile-nav-sub a{
  font-family: 'Jost', sans-serif !important;
  font-size: 1.02rem !important;
  font-weight: 500 !important;
  color: var(--ink-soft) !important;
  padding: 11px 0 11px 16px;
  border-left: 2px solid rgba(230,57,94,0.18);
}
.mobile-nav-sub a:hover,
.mobile-nav-sub a:active{
  color: var(--rose) !important;
  border-left-color: var(--rose);
}

/* ===== Services Dropdown ===== */
nav ul li.has-dropdown{
  position: relative;
  padding-bottom: 20px;
  margin-bottom: -20px;
}

.drop-arrow{
  display:inline-block; font-size:.7em; margin-left:4px;
  transition: transform .3s ease;
}

.dropdown-menu{
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 50px -14px rgba(26,11,19,0.25), 0 0 0 1px rgba(26,11,19,0.04);
  padding: 6px;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
  z-index: 999;
}

/* NEW — invisible bridge that fills the 18px gap so hover never breaks
   while the mouse travels from the nav link down to the menu */
nav ul li.has-dropdown::after{
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 240px;
  height: 38px;              /* covers the 20px padding-bottom + 18px gap */
  background: transparent;
}

/* Single source of truth for showing the menu: hover OR .open (mobile JS) */
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li{
  list-style:none;
  width: 100%;
}

.dropdown-menu li a{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  font-family: 'Jost', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  width: 100%;
  box-sizing: border-box;
  transition: background .25s ease, color .25s ease, padding-left .25s ease;
}

.dropdown-menu li a:hover{
  background: var(--grad-soft);
  color: var(--rose);
  padding-left: 20px;
}

.dropdown-menu li + li{
  margin-top: 0;
}

.drop-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--grad-soft);
  color: var(--rose);
  flex-shrink: 0;
  transition: var(--transition);
}
.drop-icon svg{ width: 17px; height: 17px; }

.dropdown-menu li a:hover .drop-icon{
  background: var(--grad);
  color: #fff;
  transform: scale(1.08);
}

.dropdown-menu::before{
  content:"";
  position:absolute;
  top:-6px; left:50%;
  transform:translateX(-50%) rotate(45deg);
  width:12px; height:12px;
  background:#fff;
  box-shadow: -2px -2px 6px -3px rgba(26,11,19,0.08);
}

@media (max-width: 1024px){
  .dropdown-menu{
    position: static; opacity:1; visibility:visible; pointer-events:auto; transform:none;
    box-shadow:none; margin-top:8px; padding-left:14px; background:transparent;
  }
  nav ul li.has-dropdown::after{ display:none; }
  .dropdown-menu::before{ display:none; }
  .dropdown-menu li a{ padding:10px 6px; color: var(--ink-soft); }
}

/* =========================================
   COMPARISON TABLES — wrapper + content centered
   ========================================= */
.cmp-wrap{
  overflow-x:auto;
  margin: 40px auto 0;       /* centers the whole table block */
  max-width: 900px;           /* adjust width as needed */
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
table.cmp-table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  min-width:640px;
}
table.cmp-table th{
  background:var(--ink);
  color:#fff;
  font-family:'Jost',sans-serif;
  font-size:.82rem;
  font-weight:600;
  letter-spacing:.03em;
  text-transform:uppercase;
  padding:18px 20px;
  text-align:center;          /* centers header text */
}
table.cmp-table td{
  padding:16px 20px;
  font-size:.92rem;
  color:var(--ink);
  border-bottom:1px solid rgba(26,11,19,.06);
  text-align:center;          /* centers cell text */
}
table.cmp-table tr:last-child td{ border-bottom:none; }
table.cmp-table tr:nth-child(even) td{ background:var(--ivory-deep); }
 /* FAQ — two-column masonry layout (no dead space when one item opens) */
  .faq-list {
    max-width: 1040px;
    margin: 60px auto 0;
    column-count: 2;
    column-gap: 28px;
  }
.faq-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 110px; 
  min-height: 110px;
  max-height: 110px; 
  margin-bottom: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,.045);
  overflow: hidden;
  transition: all 0.3s ease;
}

  @media (max-width: 820px) {
    .faq-list { column-count: 1; }
  }
  .faq-item summary {
    list-style:none; cursor:pointer; padding:24px 30px; display:flex; justify-content:space-between;
    align-items:center; font-weight:600; font-size:1.02rem; gap:20px; font-family:'Jost',sans-serif;
  }
  .faq-item summary::-webkit-details-marker { display:none; }
  .faq-item summary::after { content:"+"; font-size:1.5rem; color: var(--rose); flex-shrink:0; transition: var(--transition); }
.faq-item[open] {
  height: auto;
  max-height: 700px;
}
  .faq-item .faq-a { padding:0 30px 26px; color: var(--ink-soft); font-size:0.95rem; line-height:1.75; }

 
  /* ============ FLOATING WHATSAPP WIDGET ============ */
.wa-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  width: auto;
  height: auto;
}

.wa-float-btn {
  width: 62px; height: 62px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -6px rgba(37,211,102,0.6);
  transition: var(--transition); border: none; cursor: pointer;
  animation: waPulse 2.4s ease-in-out infinite;
  pointer-events: auto;
}
.wa-float-btn:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 16px 34px -6px rgba(37,211,102,0.75); }
.wa-float-btn svg { width: 34px; height: 34px; fill: #fff; }
.wa-float-btn .wa-close-icon { display: none; width: 24px; height: 24px; }
.wa-widget.open .wa-float-btn .wa-chat-icon { display: none; }
.wa-widget.open .wa-float-btn .wa-close-icon { display: block; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 26px -6px rgba(37,211,102,0.6), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 10px 26px -6px rgba(37,211,102,0.6), 0 0 0 12px rgba(37,211,102,0); }
}
.wa-widget.open .wa-float-btn { animation: none; }

/* ---- Chat Card ---- */
.wa-card {
  position: absolute;
  bottom: 82px;
  right: 0;
  width: 320px;
  max-width: calc(100vw - 40px);
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 50px -12px rgba(26,11,19,0.35);
  border: 1px solid rgba(26,11,19,0.06);
  opacity: 0; transform: translateY(16px) scale(0.96);
  pointer-events: none; transition: all 0.28s cubic-bezier(0.16,1,0.3,1);
}
.wa-widget.open .wa-card { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.wa-card-head {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; padding: 20px 22px; display: flex; align-items: center; gap: 12px;
}
.wa-card-head .wa-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wa-card-head .wa-avatar svg { width: 22px; height: 22px; fill: #fff; }
.wa-card-head h5 { margin: 0; font-family: 'Jost', sans-serif; font-size: 0.98rem; font-weight: 600; }
.wa-card-head span { font-size: 0.76rem; opacity: 0.9; display: flex; align-items: center; gap: 5px; }
.wa-card-head span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #baffc9; display: inline-block; }

.wa-card-body { padding: 18px 20px; background: #eef2ee; }
.wa-greeting {
  background: #fff; border-radius: 14px 14px 14px 2px; padding: 12px 16px;
  font-size: 0.86rem; color: var(--ink); line-height: 1.5; box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  margin-bottom: 14px;
}
.wa-prompt { font-size: 0.78rem; font-weight: 600; color: var(--ink-soft); margin: 0 0 10px 2px; text-transform: uppercase; letter-spacing: 0.03em; }

.wa-branch-list { display: flex; flex-direction: column; gap: 8px; }
.wa-branch-btn {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid rgba(26,11,19,0.08); border-radius: 12px;
  padding: 12px 14px; font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 600;
  color: var(--ink); cursor: pointer; transition: var(--transition); text-align: left;
}
.wa-branch-btn:hover { border-color: #25D366; background: #f3fff6; transform: translateX(3px); }
.wa-branch-btn svg { width: 16px; height: 16px; color: var(--rose); flex-shrink: 0; }

@media (max-width: 600px) {
  .wa-widget { bottom: 18px; right: 18px; }
  .wa-float-btn { width: 54px; height: 54px; }
  .wa-float-btn svg { width: 26px; height: 26px; }
}