/* ═══════════════════════════════════════
   ATC – SHARED STYLESHEET
═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --teal:     #0E7C86;
  --teal-d:   #0a616a;
  --teal-l:   #e8f5f6;
  --teal-m:   #b3dde1;
  --navy:     #07202f;
  --navy-m:   #0A2A43;
  --navy-l:   #f0f4f8;
  --cyan:     #38b6cc;
  --white:    #ffffff;
  --off:      #f7f9fb;
  --text:     #0d1f2d;
  --muted:    #607d8e;
  --border:   #dde6ed;
  --r:        14px;
  --r-lg:     24px;
  --sh:       0 4px 32px rgba(7,32,47,.09);
  --sh-lg:    0 16px 56px rgba(7,32,47,.14);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.65; }
h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; line-height: 1.2; color: var(--navy); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── SCROLL REVEAL ── */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .65s ease,transform .65s ease; }
.reveal.visible { opacity:1; transform:none; }
.reveal-l { opacity:0; transform:translateX(-28px); transition:opacity .65s ease,transform .65s ease; }
.reveal-l.visible { opacity:1; transform:none; }
.reveal-r { opacity:0; transform:translateX(28px); transition:opacity .65s ease,transform .65s ease; }
.reveal-r.visible { opacity:1; transform:none; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--teal);
  margin-bottom: 14px;
}
.eyebrow::before { content:''; width:20px; height:2px; background:var(--teal); border-radius:1px; flex-shrink:0; }

/* ── SECTION HEADER ── */
.section-hd { text-align: center; margin-bottom: 60px; }
.section-hd h2 { font-size: clamp(26px,3.5vw,44px); font-weight: 800; color: var(--navy); margin-bottom: 14px; letter-spacing: -.5px; }
.section-hd p { font-size: clamp(14px,1.8vw,17px); color: var(--muted); max-width: 520px; margin: 0 auto; line-height: 1.8; }

/* ── PAGE BANNER ── */
.page-banner {
  background: linear-gradient(160deg, var(--navy) 0%, #0a2e44 60%, #0c3d50 100%);
  padding: 72px 24px 64px; text-align: center; position: relative; overflow: hidden;
}
.page-banner::before {
  content:''; position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size: 60px 60px;
}
.page-banner::after {
  content:''; position:absolute; right:-150px; top:-150px;
  width:500px; height:500px; border-radius:50%;
  border:1px solid rgba(14,124,134,.2);
}
.page-banner .inner { position:relative; z-index:1; }
.page-banner .breadcrumb { font-size:13px; color:rgba(255,255,255,.5); margin-bottom:16px; }
.page-banner .breadcrumb a { color:var(--cyan); }
.page-banner .breadcrumb a:hover { text-decoration:underline; }
.page-banner h1 { font-size:clamp(30px,5vw,52px); font-weight:900; color:#fff; letter-spacing:-.5px; margin-bottom:16px; }
.page-banner p { font-size:clamp(14px,1.8vw,18px); color:rgba(255,255,255,.68); max-width:540px; margin:0 auto; line-height:1.75; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px;
  padding: 13px 28px; border-radius: 10px;
  text-decoration: none; transition: all .22s; white-space: nowrap;
  min-height: 48px; cursor: pointer; border: none;
}
.btn-teal   { background:var(--teal); color:#fff; }
.btn-teal:hover { background:var(--teal-d); transform:translateY(-1px); box-shadow:0 8px 24px rgba(14,124,134,.3); }
.btn-navy   { background:var(--navy); color:#fff; }
.btn-navy:hover { background:#0d2f45; transform:translateY(-1px); }
.btn-outline { background:transparent; color:var(--teal); border:1.5px solid var(--teal); }
.btn-outline:hover { background:var(--teal); color:#fff; }
.btn-ghost  { background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.4); }
.btn-ghost:hover { border-color:#fff; background:rgba(255,255,255,.1); }
.btn-white  { background:#fff; color:var(--teal); }
.btn-white:hover { background:var(--navy); color:#fff; }
.btn-lg     { padding:16px 36px; font-size:15px; border-radius:12px; min-height:54px; }
.btn-full   { width:100%; justify-content:center; }

/* ── TOP BAR ── */
.topbar { background:var(--navy); padding:9px 0; font-size:12.5px; color:rgba(255,255,255,.65); }
.topbar .inner {
  max-width:1200px; margin:0 auto; padding:0 24px;
  display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap;
}
.topbar a { color:rgba(255,255,255,.65); transition:color .2s; }
.topbar a:hover { color:#fff; }
.topbar .tl,.topbar .tr { display:flex; align-items:center; gap:18px; flex-wrap:wrap; }

/* ── HEADER ── */
header {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky; top:0; z-index:200; transition:box-shadow .3s;
}
header.scrolled { box-shadow:0 4px 24px rgba(7,32,47,.1); }
.nav-wrap {
  max-width:1200px; margin:0 auto; padding:0 24px;
  display:flex; align-items:center; justify-content:space-between; height:70px; gap:20px;
}
.logo { display:flex; align-items:center; gap:12px; flex-shrink:0; }
.logo-div { width:1px; height:28px; background:var(--border); }
.logo-wm .brand { font-family:'Poppins',sans-serif; font-size:16px; font-weight:900; color:var(--navy); letter-spacing:.5px; }
.logo-wm .sub { font-size:9.5px; color:var(--muted); letter-spacing:.2px; line-height:1.3; max-width:160px; }

.nav-links { display:flex; align-items:center; gap:2px; list-style:none; }
.nav-links > li > a {
  font-family:'Poppins',sans-serif; font-size:13px; font-weight:500;
  color:var(--navy-m); padding:8px 13px; border-radius:8px;
  transition:all .2s; display:flex; align-items:center; gap:4px; white-space:nowrap;
}
.nav-links > li > a:hover { color:var(--teal); background:var(--teal-l); }
.nav-links > li > a.active { color:var(--teal); font-weight:700; }
.nav-cta { background:var(--teal) !important; color:#fff !important; border-radius:9px !important; padding:9px 20px !important; }
.nav-cta:hover { background:var(--teal-d) !important; }

/* Dropdown */
.drop-wrap { position:relative; }
.drop-panel {
  display:none; position:absolute; top:calc(100%+10px); left:0;
  background:#fff; border-radius:14px; box-shadow:var(--sh-lg);
  min-width:220px; padding:10px; z-index:400; border:1px solid var(--border);
}
.drop-wrap:hover .drop-panel, .drop-wrap:focus-within .drop-panel { display:block; }
.drop-panel a { display:flex; align-items:center; gap:10px; padding:11px 14px; border-radius:9px; font-size:13px; color:var(--text); transition:all .18s; }
.drop-panel a:hover { background:var(--teal-l); color:var(--teal); }
.drop-panel .dp-star { color:var(--teal); font-weight:700; }
.drop-sep { height:1px; background:var(--border); margin:6px 0; }

/* Hamburger */
.ham { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:9px; border-radius:9px; transition:background .2s; }
.ham:hover { background:var(--off); }
.ham span { display:block; width:22px; height:2px; background:var(--navy); border-radius:2px; transition:all .3s; }
.ham.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity:0; }
.ham.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mob-nav {
  display:none; position:fixed; top:70px; left:0; right:0; bottom:0;
  background:#fff; z-index:190; overflow-y:auto;
  flex-direction:column; padding:16px; gap:4px;
  border-top:1px solid var(--border);
}
.mob-nav.open { display:flex; }
.mob-nav a { display:flex; align-items:center; padding:14px 18px; font-family:'Poppins',sans-serif; font-size:15px; font-weight:500; color:var(--navy); border-radius:12px; transition:all .2s; gap:12px; }
.mob-nav a:hover { background:var(--off); }
.mob-nav a.active { color:var(--teal); }
.mob-sec { font-size:10.5px; font-weight:700; color:var(--muted); letter-spacing:1.5px; text-transform:uppercase; padding:14px 18px 4px; }
.mob-star { color:var(--teal) !important; font-weight:700 !important; }
.mob-cta { background:var(--teal) !important; color:#fff !important; margin-top:10px; border-radius:12px !important; justify-content:center; }
.mob-wa { background:#25D366 !important; color:#fff !important; border-radius:12px !important; justify-content:center; }
.mob-nav hr { border:none; border-top:1px solid var(--border); margin:6px 0; }

/* ── TRUST BAR ── */
.trust { background:linear-gradient(90deg,var(--teal) 0%,#0c6e78 100%); padding:0 24px; overflow:hidden; }
.trust-inner { max-width:1200px; margin:0 auto; display:flex; align-items:stretch; border-left:1px solid rgba(255,255,255,.15); overflow-x:auto; -webkit-overflow-scrolling:touch; }
.trust-inner::-webkit-scrollbar { display:none; }
.trust-item { flex:1; display:flex; align-items:center; gap:9px; padding:17px 22px; border-right:1px solid rgba(255,255,255,.15); color:#fff; font-family:'Poppins',sans-serif; font-size:13px; font-weight:600; white-space:nowrap; min-width:max-content; }

/* ── CTA BAND ── */
.cta-band {
  padding:90px 24px; text-align:center;
  background:linear-gradient(135deg,var(--teal) 0%,#0c6e78 50%,#0d5560 100%);
  position:relative; overflow:hidden;
}
.cta-band::before {
  content:''; position:absolute; inset:0;
  background-image:linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size:48px 48px;
}
.cta-band .inner { position:relative; z-index:1; }
.cta-band h2 { font-size:clamp(24px,4vw,44px); font-weight:800; color:#fff; margin-bottom:16px; letter-spacing:-.4px; }
.cta-band p { font-size:clamp(14px,2vw,17px); color:rgba(255,255,255,.78); margin-bottom:40px; max-width:520px; margin-left:auto; margin-right:auto; }
.cta-btns { display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }

/* ── FOOTER ── */
footer { background:var(--navy); color:rgba(255,255,255,.6); }
.foot-grid {
  max-width:1200px; margin:0 auto; padding:68px 24px 48px;
  display:grid; grid-template-columns:1.8fr 1fr 1fr 1fr; gap:48px;
}
.foot-brand p { font-size:13.5px; line-height:1.85; color:rgba(255,255,255,.5); margin:18px 0 24px; }
.foot-socials { display:flex; gap:8px; }
.fsoc { width:38px; height:38px; border-radius:10px; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:800; color:#fff; font-family:'Poppins',sans-serif; transition:background .2s; }
.fsoc:hover { background:var(--teal); }
.fcol h4 { font-family:'Poppins',sans-serif; font-size:13px; font-weight:700; color:#fff; margin-bottom:18px; letter-spacing:.3px; }
.fcol ul { list-style:none; }
.fcol li { margin-bottom:10px; }
.fcol a { font-size:13.5px; color:rgba(255,255,255,.52); transition:color .2s; }
.fcol a:hover { color:var(--cyan); }
.foot-bottom { border-top:1px solid rgba(255,255,255,.08); padding:20px 24px; text-align:center; font-size:12px; color:rgba(255,255,255,.3); }

/* ── WHATSAPP ── */
.wa-fab {
  position:fixed; bottom:28px; right:24px; z-index:999;
  width:56px; height:56px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 28px rgba(37,211,102,.45); font-size:26px; text-decoration:none;
  transition:transform .2s; animation:wap 2.8s infinite;
}
.wa-fab:hover { transform:scale(1.1); }
@keyframes wap {
  0%,100% { box-shadow:0 8px 28px rgba(37,211,102,.45); }
  50% { box-shadow:0 8px 28px rgba(37,211,102,.55),0 0 0 10px rgba(37,211,102,.12); }
}

/* ── FORM STYLES ── */
.form-2col { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.fg { margin-bottom:18px; }
.fg label { display:block; font-size:11.5px; font-weight:700; color:var(--text); margin-bottom:7px; text-transform:uppercase; letter-spacing:.5px; }
.fg input,.fg select,.fg textarea {
  width:100%; padding:13px 16px;
  border:1.5px solid var(--border); border-radius:10px;
  font-family:'DM Sans',sans-serif; font-size:14px; color:var(--text);
  background:var(--off); outline:none; transition:all .2s; min-height:48px;
}
.fg input:focus,.fg select:focus,.fg textarea:focus { border-color:var(--teal); background:#fff; box-shadow:0 0 0 3px rgba(14,124,134,.1); }
.fg textarea { height:130px; resize:vertical; }

/* ── RESPONSIVE ── */
@media(max-width:1080px) {
  .foot-grid { grid-template-columns:1fr 1fr; gap:36px; }
  .foot-brand { grid-column:1/-1; }
}
@media(max-width:768px) {
  .nav-links { display:none; }
  .ham { display:flex; }
  .topbar .tl { display:none; }
  .topbar .tr { width:100%; justify-content:center; }
  .form-2col { grid-template-columns:1fr; }
  .cta-btns { flex-direction:column; align-items:center; }
  .cta-btns .btn { width:100%; max-width:340px; }
}
@media(max-width:600px) {
  .foot-grid { grid-template-columns:1fr; gap:28px; }
  .page-banner { padding:52px 20px 44px; }
}

/* ── SHARED JS INIT HELPER ── */
