:root{
  --navy:#16243A;
  --navy-deep:#0D1626;
  --white:#FFFFFF;
  --offwhite:#F5F7FA;
  --panel:#FFFFFF;
  --ink:#1E2530;
  --ink-soft:#5C6673;
  --red:#C13A2E;
  --red-dark:#9A2C22;
  --steel:#3D5A73;
  --line:#E4E8EE;
  --shadow: 0 8px 24px -14px rgba(15,23,42,0.25);
  --shadow-lg: 0 20px 44px -20px rgba(15,23,42,0.35);
  --tabbar-h: 66px;
  --radius: 14px;
}
*{box-sizing:border-box; -webkit-tap-highlight-color:transparent;}
html,body{margin:0;padding:0;}
body{
  font-family:'Inter',sans-serif;
  color:var(--ink);
  background:var(--offwhite);
  min-height:100vh;
  padding-bottom: var(--tabbar-h);
}
h1,h2,h3,h4{font-family:'Poppins',sans-serif; margin:0; font-weight:700; letter-spacing:-0.01em;}
p{margin:0;}
a{color:inherit; text-decoration:none;}
img,svg{max-width:100%;}
::selection{background:var(--red); color:#fff;}

.container{max-width:1140px; margin:0 auto; padding:0 20px;}

/* ---------- HEADER ---------- */
.site-header{
  position:sticky; top:0; z-index:50; background:var(--white);
  border-bottom:1px solid var(--line); box-shadow:0 2px 12px -8px rgba(15,23,42,.15);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 20px;}
.brand{display:flex; align-items:center; gap:10px;}
.crest{
  width:36px; height:36px; border-radius:8px; flex-shrink:0;
  background:linear-gradient(150deg, var(--navy), var(--navy-deep));
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-family:'Poppins',sans-serif; font-weight:700; font-size:15px;
}
.logo-img{ width:36px; height:36px; object-fit:contain; border-radius:8px; flex-shrink:0; display:block; }
.site-footer .logo-img{ width:34px; height:34px; }
.brand-name{font-family:'Poppins',sans-serif; font-weight:700; font-size:17px; color:var(--navy);}
.brand-name span{display:block; font-family:'Inter',sans-serif; font-size:9.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--ink-soft); font-weight:600;}
.top-nav{display:none; gap:28px; align-items:center;}
.top-nav a{font-weight:600; font-size:13.5px; color:var(--ink-soft); position:relative; padding:6px 0;}
.top-nav a.active, .top-nav a:hover{color:var(--red);}
.top-nav a.active::after{content:''; position:absolute; left:0; right:0; bottom:0; height:2px; background:var(--red); border-radius:2px;}
.header-cta{display:none;}

@media (min-width:900px){
  .top-nav{display:flex;}
  .header-cta{display:inline-flex;}
}

/* ---------- BUTTONS / CHIPS ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:6px;
  padding:13px 22px; border-radius:8px; font-family:'Inter',sans-serif; font-weight:700; font-size:13.5px;
  border:1.5px solid transparent; cursor:pointer; text-decoration:none; transition:transform .15s ease, background .15s ease; white-space:nowrap;
}
.btn:active{transform:scale(.97);}
.btn-primary{background:var(--red); color:#fff; box-shadow:0 10px 20px -10px rgba(193,58,46,.55);}
.btn-primary:hover{background:var(--red-dark);}
.btn-outline{background:transparent; border-color:#fff; color:#fff;}
.btn-outline.on-light{border-color:var(--navy); color:var(--navy);}
.btn-dark{background:var(--navy); color:#fff;}
.btn-block{width:100%;}
.btn-small{padding:9px 16px; font-size:12.5px;}
.btn[disabled]{opacity:.6; cursor:not-allowed;}

.chip-row{display:flex; gap:8px; overflow-x:auto; padding:2px 0 8px; -ms-overflow-style:none; scrollbar-width:none;}
.chip-row::-webkit-scrollbar{display:none;}
.chip{
  flex-shrink:0; padding:9px 15px; border-radius:8px; border:1.5px solid var(--line);
  background:var(--white); font-size:12.5px; font-weight:600; color:var(--ink-soft); cursor:pointer;
  transition:.15s ease;
}
.chip.active{background:var(--navy); border-color:var(--navy); color:#fff;}

/* ---------- CARDS ---------- */
.card{ background:var(--panel); border:1px solid var(--line); border-radius:var(--radius); padding:20px; box-shadow:var(--shadow); }

.eyebrow{
  font-size:11.5px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--red);
  display:flex; align-items:center; gap:6px; margin-bottom:8px;
}
.eyebrow::before{content:''; width:16px; height:2px; background:var(--red); display:inline-block; border-radius:2px;}
.eyebrow.on-dark{color:#f0b8ab;}
.eyebrow.on-dark::before{background:#f0b8ab;}

/* ---------- FULL-BLEED HERO ---------- */
.photo-hero{
  position:relative; width:100%; min-height:340px; display:flex; align-items:flex-end;
  background-size:cover; background-position:center; overflow:hidden;
}
.photo-hero::before{
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(13,22,38,.55) 0%, rgba(13,22,38,.35) 40%, rgba(13,22,38,.88) 100%);
}
.photo-hero-inner{position:relative; z-index:2; padding:44px 20px 34px; color:#fff; width:100%;}
.photo-hero h1{font-size:26px; line-height:1.18; color:#fff; max-width:640px;}
.photo-hero p{font-size:13.5px; color:rgba(255,255,255,.88); margin-top:10px; max-width:540px; line-height:1.6;}
.photo-hero-actions{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap;}
@media (min-width:900px){
  .photo-hero{min-height:460px;}
  .photo-hero h1{font-size:40px;}
  .photo-hero-inner{padding:60px 40px 46px;}
}

.floating-card{
  position:relative; z-index:3; margin:-46px 20px 0; background:var(--panel); border-radius:var(--radius);
  box-shadow:var(--shadow-lg); padding:18px; border:1px solid var(--line);
}
@media (min-width:900px){ .floating-card{ margin:-56px auto 0; max-width:1100px; padding:22px 26px; } }

/* ---------- STATS ---------- */
.stat-row{display:flex; gap:12px; overflow-x:auto; padding:2px 0; -ms-overflow-style:none; scrollbar-width:none;}
.stat-row::-webkit-scrollbar{display:none;}
.stat-card{flex-shrink:0; min-width:110px; text-align:center; padding:6px 10px;}
.stat-card .num{font-family:'Poppins',sans-serif; font-size:24px; font-weight:700; color:var(--red);}
.stat-card .lbl{font-size:10px; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-soft); font-weight:700; margin-top:2px;}
@media (min-width:700px){ .stat-row{justify-content:space-around; flex-wrap:wrap; overflow:visible;} }

/* ---------- QUICKLINKS ---------- */
.quicklinks{display:grid; grid-template-columns:1fr 1fr; gap:12px;}
.qlink{ background:var(--panel); border:1px solid var(--line); border-radius:var(--radius); padding:16px; display:flex; flex-direction:column; gap:9px; cursor:pointer; transition:transform .15s ease, box-shadow .15s ease; box-shadow:var(--shadow);}
.qlink:hover{transform:translateY(-3px); box-shadow:var(--shadow-lg);}
.qlink .qicon{width:32px; height:32px;}
.qlink .qtitle{font-weight:700; font-size:14px; font-family:'Poppins',sans-serif;}
.qlink .qsub{font-size:11.5px; color:var(--ink-soft);}
@media (min-width:700px){ .quicklinks{grid-template-columns:repeat(4,1fr);} }

/* ---------- SECTIONS ---------- */
.section{padding:34px 0;}
.section-head{max-width:640px; margin-bottom:20px;}
.section-head h2{font-size:23px; line-height:1.2; color:var(--navy);}
.section-head p{font-size:13.5px; color:var(--ink-soft); margin-top:8px; line-height:1.55;}

/* ---------- TIMELINE ---------- */
.tl-item{display:flex; gap:14px; padding-bottom:24px; position:relative;}
.tl-item:last-child{padding-bottom:0;}
.tl-item::before{
  content:''; position:absolute; left:5px; top:18px; bottom:-6px; width:2px;
  background-image:linear-gradient(var(--line) 60%, transparent 0%); background-size:2px 8px; background-repeat:repeat-y;
}
.tl-item:last-child::before{display:none;}
.tl-dot{width:13px; height:13px; border-radius:50%; background:var(--red); margin-top:4px; flex-shrink:0; box-shadow:0 0 0 4px #f3dbd7;}
.tl-year{font-family:'Poppins',sans-serif; font-weight:700; color:var(--navy); font-size:14px;}
.tl-item p{font-size:13px; color:var(--ink-soft); margin-top:4px; line-height:1.55;}

/* ---------- TEAM ---------- */
.team-grid{display:grid; grid-template-columns:1fr; gap:18px;}
.team-card{background:var(--panel); border:1px solid var(--line); border-radius:var(--radius); padding:22px 20px; box-shadow:var(--shadow); text-align:center;}
.avatar-photo{ width:84px; height:84px; border-radius:50%; overflow:hidden; flex-shrink:0; box-shadow:0 0 0 3px var(--white), 0 0 0 4px var(--line); margin:0 auto;}
.avatar-photo img{width:100%; height:100%; object-fit:cover; display:block;}
.team-card .avatar-photo{width:128px; height:128px; box-shadow:0 0 0 4px var(--white), 0 0 0 6px var(--line);}
.team-card .tname{font-weight:700; font-size:15px; margin-top:16px; font-family:'Poppins',sans-serif; color:var(--navy);}
.team-card .trole{font-size:11px; color:var(--red); font-weight:700; margin:3px 0 10px; text-transform:uppercase; letter-spacing:.04em;}
.team-card .tbio{font-size:12.5px; color:var(--ink-soft); line-height:1.55;}
.team-card .temail{ display:inline-block; margin-top:10px; font-size:12px; font-weight:700; color:var(--navy); border-top:1px solid var(--line); padding-top:10px; width:100%; }
.team-card .temail:hover{ color:var(--red); }
@media (min-width:700px){ .team-grid{grid-template-columns:repeat(4,1fr);} }
@media (min-width:1020px){ .team-card .avatar-photo{width:140px; height:140px;} }

/* ---------- PORTFOLIO GRID ---------- */
.portfolio-grid{display:grid; grid-template-columns:1fr; gap:18px;}
@media (min-width:680px){ .portfolio-grid{grid-template-columns:repeat(2,1fr);} }
@media (min-width:1020px){ .portfolio-grid{grid-template-columns:repeat(3,1fr);} }

.proj-card{
  background:var(--panel); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow);
  cursor:pointer; transition:transform .18s ease, box-shadow .18s ease; display:block;
}
.proj-card:hover{transform:translateY(-4px); box-shadow:var(--shadow-lg);}
.proj-thumb{height:170px; position:relative; overflow:hidden;}
.proj-thumb img{width:100%; height:100%; object-fit:cover; display:block;}
.proj-body{padding:16px 17px;}
.proj-tag{font-size:10px; text-transform:uppercase; letter-spacing:.07em; font-weight:700; color:var(--red);}
.proj-title{font-family:'Poppins',sans-serif; font-weight:700; font-size:16px; margin-top:4px; color:var(--navy);}
.proj-desc{font-size:12.5px; color:var(--ink-soft); margin-top:6px; line-height:1.5;}
.proj-meta{display:flex; justify-content:space-between; align-items:center; margin-top:12px; font-size:11.5px; color:var(--ink-soft); padding-top:10px; border-top:1px solid var(--line);}

/* ---------- FULL-BLEED PROJECT / AIRPORT BANNER ---------- */
.detail-banner{ width:100%; height:260px; overflow:hidden; }
.detail-banner img{ width:100%; height:100%; object-fit:cover; display:block; }
@media (min-width:900px){ .detail-banner{height:420px;} }

/* ---------- PROJECT DETAIL ---------- */
.back-row{display:flex; align-items:center; gap:10px; padding:16px 0 6px;}
.icon-btn{width:36px; height:36px; border-radius:50%; background:var(--white); display:flex; align-items:center; justify-content:center; border:1px solid var(--line); cursor:pointer; flex-shrink:0; box-shadow:var(--shadow);}
.facts-grid{display:grid; grid-template-columns:1fr 1fr; gap:14px; font-size:13px;}
.facts-grid .flabel{color:var(--ink-soft); font-size:10.5px; font-weight:700; text-transform:uppercase; letter-spacing:.04em;}
.facts-grid .fval{font-weight:700; margin-top:3px; color:var(--navy);}
.design-moves{margin-top:10px; display:flex; flex-direction:column; gap:10px;}
.design-moves .dm{display:flex; gap:9px; font-size:13px; color:var(--ink-soft); line-height:1.55;}
.design-moves .dm b{color:var(--red); font-weight:700;}
.detail-layout{display:flex; flex-direction:column; gap:24px;}
@media (min-width:900px){ .detail-layout{flex-direction:row; align-items:flex-start;} .detail-main{flex:2;} .detail-side{flex:1; position:sticky; top:90px;} }

.gallery-row{display:flex; gap:12px; overflow-x:auto; padding:4px 0 8px; -ms-overflow-style:none; scrollbar-width:none;}
.gallery-row::-webkit-scrollbar{display:none;}
.gthumb{flex-shrink:0; width:150px; height:110px; border-radius:10px; overflow:hidden; box-shadow:var(--shadow);}
.gthumb img{width:100%; height:100%; object-fit:cover; display:block;}

.related-projects{display:grid; grid-template-columns:1fr; gap:16px; margin-top:10px;}
@media (min-width:700px){ .related-projects{grid-template-columns:repeat(3,1fr);} }

/* ---------- AIRPORT HUB ---------- */
.airport-grid{display:grid; grid-template-columns:1fr; gap:18px;}
@media (min-width:700px){ .airport-grid{grid-template-columns:repeat(3,1fr);} }

/* ---------- CONTACT ---------- */
.contact-layout{display:flex; flex-direction:column; gap:24px;}
@media (min-width:900px){ .contact-layout{flex-direction:row;} .contact-form-col{flex:1.3;} .contact-info-col{flex:1;} }

.contact-dark{ background:var(--navy); color:#fff; border-radius:var(--radius); padding:22px; box-shadow:var(--shadow);}
.contact-row{display:flex; align-items:center; gap:12px; padding:11px 0; border-bottom:1px solid rgba(255,255,255,.14);}
.contact-row:last-child{border-bottom:none;}
.contact-row .ci{width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,.12); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.contact-row .clabel{font-size:10.5px; text-transform:uppercase; letter-spacing:.08em; opacity:.7; font-weight:700;}
.contact-row .cval{font-size:14px; font-weight:700;}

.field{margin-bottom:14px;}
.field label{font-size:11.5px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; color:var(--ink-soft); margin-bottom:6px; display:block;}
.field input, .field textarea, .field select{
  width:100%; border:1.5px solid var(--line); background:var(--white); border-radius:8px; padding:12px 13px;
  font-family:'Inter',sans-serif; font-size:13.5px; color:var(--ink); resize:none;
}
.field input:focus, .field textarea:focus, .field select:focus{outline:2px solid var(--red); outline-offset:1px;}
.field-row{display:flex; gap:12px; flex-wrap:wrap;}
.field-row .field{flex:1; min-width:180px;}
.form-msg{font-size:12.5px; padding:10px 14px; border-radius:8px; margin-bottom:14px; display:none;}
.form-msg.show{display:block;}
.form-msg.ok{background:#e5f2e6; color:#2b6a35;}
.form-msg.err{background:#fbe6e2; color:var(--red-dark);}
.honeypot{position:absolute; left:-9999px; opacity:0; height:0;}

/* ---------- FAQ ---------- */
.faq-item{border-bottom:1px solid var(--line); padding:14px 0;}
.faq-q{display:flex; align-items:center; justify-content:space-between; cursor:pointer; font-weight:700; font-size:13.5px; color:var(--navy);}
.faq-plus{width:19px; height:19px; flex-shrink:0; transition:transform .25s ease;}
.faq-item.open .faq-plus{transform:rotate(45deg);}
.faq-a{max-height:0; overflow:hidden; transition:max-height .3s ease; font-size:13px; color:var(--ink-soft); line-height:1.55;}
.faq-item.open .faq-a{max-height:220px; margin-top:9px;}

/* ---------- FOOTER ---------- */
.site-footer{background:var(--navy-deep); color:#e7ebf1; padding:44px 0 18px; margin-top:40px;}
.site-footer a{display:block; color:#c7d0dc; opacity:.9; font-size:13px; margin-bottom:9px;}
.site-footer a:hover{opacity:1; color:#fff;}
.footer-grid{display:grid; grid-template-columns:1fr; gap:28px;}
.footer-heading{font-size:11px; text-transform:uppercase; letter-spacing:.1em; font-weight:700; color:#f0b8ab; margin-bottom:12px;}
.footer-bottom{margin-top:26px; padding-top:18px; border-top:1px solid rgba(255,255,255,.1); font-size:11.5px; opacity:.6;}
@media (min-width:700px){ .footer-grid{grid-template-columns:1.4fr 1fr 1fr 1fr;} }

/* ---------- NAV DROPDOWN (Airport Projects) ---------- */
.nav-dropdown{position:relative;}
.nav-dropdown > span{cursor:pointer; display:inline-flex; align-items:center; gap:4px;}
.nav-dropdown-menu{
  display:none; position:absolute; top:calc(100% + 14px); left:50%; transform:translateX(-50%);
  background:var(--white); border:1px solid var(--line); border-radius:12px; box-shadow:var(--shadow-lg);
  padding:10px; min-width:220px; z-index:70;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu{display:block;}
.nav-dropdown-menu a{display:block; padding:9px 12px; border-radius:8px; font-size:13px; font-weight:600; color:var(--ink);}
.nav-dropdown-menu a:hover{background:var(--offwhite); color:var(--red);}

/* ---------- MOBILE TAB BAR ---------- */
.mobile-tabbar{
  position:fixed; left:0; right:0; bottom:0; z-index:60; display:flex; justify-content:space-around; align-items:center;
  padding:9px 2px calc(10px + env(safe-area-inset-bottom)); background:rgba(255,255,255,.98); backdrop-filter:blur(6px);
  border-top:1px solid var(--line); height:var(--tabbar-h);
}
.navbtn{ display:flex; flex-direction:column; align-items:center; gap:3px; padding:6px 8px; border-radius:10px; color:var(--ink-soft); transition:.2s ease; flex:1; max-width:78px;}
.navbtn svg{width:19px; height:19px;}
.navbtn span{font-size:8.8px; font-weight:700;}
.navbtn.active{color:var(--red); background:#fbe6e2; transform:translateY(-2px);}
@media (min-width:900px){ .mobile-tabbar{display:none;} body{padding-bottom:0;} }

/* ---------- TOAST ---------- */
.toast{
  position:fixed; left:20px; right:20px; bottom:calc(var(--tabbar-h) + 84px); max-width:360px; margin:0 auto;
  background:var(--navy); color:#fff; padding:13px 18px; border-radius:10px; font-size:13px; font-weight:600;
  box-shadow:var(--shadow-lg); display:flex; align-items:center; gap:8px; z-index:80; opacity:0; pointer-events:none;
  transform:translateY(10px); transition:.3s ease;
}
.toast.show{opacity:1; transform:translateY(0);}
@media (min-width:900px){ .toast{bottom:96px;} }


/* ---------- HOME: ABOUT TEASER ---------- */
.about-teaser{
  display:flex; flex-direction:column; gap:18px; background:var(--panel); border:1px solid var(--line);
  border-radius:var(--radius); box-shadow:var(--shadow); overflow:hidden; text-decoration:none;
}
.about-teaser-media{ width:100%; aspect-ratio:16/10; overflow:hidden; }
.about-teaser-media img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .4s ease; }
.about-teaser:hover .about-teaser-media img{ transform:scale(1.04); }
.about-teaser-body{ padding:22px 22px 26px; }
.about-teaser-body h2{ font-size:20px; color:var(--navy); line-height:1.2; margin-top:2px; }
.about-teaser-body p{ font-size:13.5px; color:var(--ink-soft); margin-top:10px; line-height:1.6; max-width:520px; }
.about-teaser-points{ display:flex; flex-wrap:wrap; gap:10px 22px; margin-top:16px; }
.about-teaser-point{ display:flex; align-items:center; gap:8px; font-size:12.5px; font-weight:700; color:var(--navy); }
.about-teaser-point svg{ width:18px; height:18px; flex-shrink:0; }
.about-teaser-cta{ margin-top:20px; }

@media (min-width:900px){
  .about-teaser{ flex-direction:row; align-items:stretch; }
  .about-teaser-media{ width:44%; aspect-ratio:auto; flex-shrink:0; }
  .about-teaser-body{ padding:40px 44px; display:flex; flex-direction:column; justify-content:center; }
  .about-teaser-body h2{ font-size:28px; }
  .about-teaser-body p{ font-size:14.5px; }
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-row{ display:flex; gap:16px; overflow-x:auto; padding:4px 2px 14px; -ms-overflow-style:none; scrollbar-width:none; scroll-snap-type:x proximity; }
.testimonial-row::-webkit-scrollbar{display:none;}
.testimonial-card{
  flex-shrink:0; width:280px; scroll-snap-align:start; background:var(--panel); border:1px solid var(--line);
  border-radius:var(--radius); padding:22px; box-shadow:var(--shadow); display:flex; flex-direction:column;
}
.testimonial-stars{ color:var(--red); font-size:13px; letter-spacing:2px; margin-bottom:10px; }
.testimonial-quote{ font-size:13.5px; color:var(--ink); line-height:1.6; flex:1; }
.testimonial-quote::before{ content:'\\201C'; font-family:'Poppins',sans-serif; font-size:32px; color:var(--red); display:block; line-height:1; margin-bottom:2px; }
.testimonial-name{ font-weight:700; font-size:13px; color:var(--navy); margin-top:16px; font-family:'Poppins',sans-serif; }
.testimonial-role{ font-size:11.5px; color:var(--ink-soft); margin-top:2px; }
@media (min-width:900px){ .testimonial-card{width:320px;} }

/* ---------- TRUSTED PARTNERS MARQUEE ---------- */
.partners-marquee{ position:relative; overflow:hidden; padding:6px 0; -webkit-mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.partners-track{ display:flex; gap:36px; width:max-content; animation:partners-scroll 22s linear infinite; align-items:center; }
.partners-marquee:hover .partners-track{ animation-play-state:paused; }
.partner-logo{ flex-shrink:0; height:56px; display:flex; align-items:center; opacity:.85; transition:opacity .2s ease; }
.partner-logo:hover{ opacity:1; }
.partner-logo img{ height:100%; width:auto; display:block; border-radius:8px; }
@keyframes partners-scroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ---------- WHATSAPP FLOATING WIDGET ---------- */
.wa-widget{ position:fixed; right:16px; bottom:calc(var(--tabbar-h) + 16px); z-index:90; display:flex; flex-direction:column; align-items:flex-end; gap:12px; }
@media (min-width:900px){ .wa-widget{ bottom:24px; right:24px; } }

.social-fab{
  width:56px; height:56px; border-radius:50%; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-lg);
  color:#fff; transition:transform .15s ease; text-decoration:none;
}
.social-fab:hover{ transform:scale(1.06); }
.social-fab svg{ width:28px; height:28px; }
.wa-fab{ background:#25D366; }
.ig-fab{ background:radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); width:48px; height:48px; }
.ig-fab svg{ width:24px; height:24px; }

.wa-panel{
  width:280px; max-width:calc(100vw - 32px); background:var(--panel); border:1px solid var(--line); border-radius:16px;
  box-shadow:var(--shadow-lg); overflow:hidden; transform:translateY(14px) scale(.96); opacity:0;
  pointer-events:none; transition:transform .18s ease, opacity .18s ease;
}
.wa-panel.open{ transform:translateY(0) scale(1); opacity:1; pointer-events:auto; }
.wa-panel-head{ background:#25D366; color:#fff; padding:14px 40px 14px 16px; display:flex; align-items:center; gap:10px; position:relative; }
.wa-avatar{ width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.25); display:flex; align-items:center; justify-content:center; font-weight:700; font-family:'Poppins',sans-serif; flex-shrink:0; }
.wa-name{ font-weight:700; font-size:13px; }
.wa-status{ font-size:10.5px; opacity:.9; margin-top:1px; }
.wa-close{ position:absolute; top:6px; right:8px; background:none; border:none; color:#fff; font-size:22px; line-height:1; cursor:pointer; padding:6px; }
.wa-panel-body{ padding:16px; }
.wa-panel-body p{ font-size:12.5px; color:var(--ink-soft); line-height:1.55; margin-bottom:14px; }

/* ---------- LEGAL PAGES ---------- */
.legal-p{ font-size:13.5px; color:var(--ink-soft); line-height:1.7; margin:10px 0 20px; }
