/* ==========================================================================
   APIN SECURITY & MANAGEMENT SERVICES LLP
   Clean Corporate Landing — minimal, lightweight, professional
   ========================================================================== */

:root {
  --navy-dark: #0B1F3D;
  --navy:      #0F2A50;
  --navy-soft: #1A3A6B;
  --gold:      #C9A24B;
  --gold-soft: #F2E5C2;
  --gray-50:   #F7F9FC;
  --gray-100:  #EEF1F6;
  --gray-200:  #E2E7EE;
  --gray-300:  #CBD2DC;
  --gray-500:  #6B7280;
  --text:      #1F2937;
  --white:     #FFFFFF;
  --shadow-sm: 0 2px 6px rgba(15, 42, 80, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 42, 80, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 42, 80, 0.10);
  --radius:    12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 90px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 15.5px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

a { color: var(--navy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; display: block; }

.section { padding: 80px 0; }
.section-title { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section-eyebrow {
  display: inline-block; padding: 5px 14px; border-radius: 4px;
  background: var(--gold-soft); color: var(--navy);
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 12px; }
.section-title h2 .accent { color: var(--gold); }
.section-title p { color: var(--gray-500); font-size: 16px; margin: 0; }

/* ===== Buttons ===== */
.btn-apin {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 6px;
  font-weight: 600; font-size: 14.5px;
  border: 1.5px solid transparent;
  transition: all .2s ease;
  text-decoration: none;
  cursor: pointer;
}
.btn-navy    { background: var(--navy);  color: var(--white); }
.btn-navy:hover    { background: var(--navy-dark); color: var(--white); }
.btn-gold    { background: var(--gold);  color: var(--navy-dark); }
.btn-gold:hover    { background: #B8902C; color: var(--navy-dark); }
.btn-outline { background: transparent;  color: var(--navy); border-color: var(--gray-300); }
.btn-outline:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

/* ===== Top Header Bar ===== */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; justify-content: space-between; }
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--gold); }
.topbar .tb-left { display: flex; flex-wrap: wrap; gap: 18px; }
.topbar .tb-right { display: flex; align-items: center; gap: 14px; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 6px; }
.topbar .tb-item i { color: var(--gold); }
.topbar .gem-badge {
  font-size: 12px; padding: 3px 10px; border-radius: 4px;
  background: rgba(201,162,75,0.18); color: var(--gold);
  border: 1px solid rgba(201,162,75,0.3);
  font-weight: 600;
}
.topbar .socials { display: flex; gap: 4px; }
.topbar .socials a {
  width: 26px; height: 26px; border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.topbar .socials a:hover { background: var(--gold); color: var(--navy-dark); }

/* ===== Navbar ===== */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky; top: 0; z-index: 1000;
  transition: box-shadow .2s ease;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar .container { display: flex; align-items: center; gap: 12px; padding: 14px 12px; }
.navbar .brand { margin-right: auto; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 8px;
  background: var(--navy); color: var(--white);
  display: grid; place-items: center; font-size: 20px;
}
.brand-text .b-name { font-size: 16px; font-weight: 800; color: var(--navy); line-height: 1.1; }
.brand-text .b-name span { color: var(--gold); }
.brand-text .b-sub { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gray-500); margin-top: 2px; }

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; margin: 0; }
.nav-menu > li > a {
  padding: 10px 14px;
  color: var(--text);
  font-weight: 500; font-size: 14.5px;
  border-radius: 6px;
  position: relative;
}
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--navy); }
.nav-menu > li > a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
a.nav-cta {
  padding: 10px 20px; border-radius: 6px;
  background: var(--gold); color: var(--navy-dark);
  font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
  border: 1.5px solid var(--gold);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
a.nav-cta:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 6px;
  background: var(--gray-50); border: 1px solid var(--gray-200); color: var(--navy);
  align-items: center; justify-content: center; font-size: 20px;
}
@media (max-width: 991.98px) {
  .nav-menu, a.nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed; right: 0; top: 0; width: 300px; max-width: 85vw; height: 100vh;
  background: var(--white); z-index: 1100;
  transform: translateX(100%); transition: transform .3s ease;
  padding: 20px; overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0,0,0,0.15);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(11, 31, 61, 0.55); z-index: 1099;
  opacity: 0; visibility: hidden; transition: all .25s ease;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--gray-200); }
.drawer-close { background: var(--gray-50); border: 1px solid var(--gray-200); width: 36px; height: 36px; border-radius: 6px; color: var(--navy); font-size: 18px; }
.m-link {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px; border-radius: 8px; color: var(--text);
  font-weight: 500; margin-bottom: 4px;
}
.m-link:hover { background: var(--gray-50); color: var(--navy); }
.m-link i { color: var(--gold); }
.m-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: var(--navy-dark);
  padding: 12px 18px; border-radius: 6px; font-weight: 600;
  margin-top: 12px;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, #0F2A50 0%, #1A3A6B 100%);
  color: var(--white);
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(201, 162, 75, 0.08);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; bottom: -120px; left: -120px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--gold); }
.hero .lead {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 18px; }
.hero-meta .item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 13.5px; }
.hero-meta .item i { color: var(--gold); }

.hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--navy-dark);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Trust Strip ===== */
.trust-strip {
  background: var(--gray-50);
  padding: 30px 0;
  border-bottom: 1px solid var(--gray-100);
}
.trust-strip .row { row-gap: 18px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item .icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: var(--white); border: 1px solid var(--gray-200);
  color: var(--navy); display: grid; place-items: center; font-size: 18px;
  flex-shrink: 0;
}
.trust-item h6 { margin: 0; font-size: 14px; font-weight: 700; color: var(--navy); }
.trust-item span { font-size: 12.5px; color: var(--gray-500); }

/* ===== About ===== */
.about-section { background: var(--white); }
.about-img-wrap { position: relative; }
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: var(--navy-dark);
  padding: 16px 22px; border-radius: 10px;
  box-shadow: var(--shadow-md);
}
.about-badge .big { font-size: 26px; font-weight: 800; line-height: 1; }
.about-badge .sm { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }
.about-content h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 14px; }
.about-content h2 .accent { color: var(--gold); }
.about-content p { color: var(--gray-500); margin-bottom: 14px; }
.about-points { list-style: none; padding: 0; margin: 18px 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
.about-points li { display: flex; align-items: flex-start; gap: 8px; font-size: 14.5px; color: var(--text); }
.about-points li i { color: var(--gold); flex-shrink: 0; margin-top: 4px; font-size: 14px; }
.gem-card {
  margin-top: 26px;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 18px 20px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.gem-card .gi {
  width: 46px; height: 46px; border-radius: 8px;
  background: var(--gold); color: var(--navy-dark);
  display: grid; place-items: center; font-size: 20px; flex-shrink: 0;
}
.gem-card .gt { flex: 1; min-width: 180px; }
.gem-card .gt h6 { margin: 0 0 2px; font-size: 14px; color: var(--navy); }
.gem-card .gt span { font-size: 13px; color: var(--gray-500); }
.gem-card .gid {
  font-family: 'Inter', monospace; font-weight: 700; font-size: 14px;
  color: var(--navy); background: var(--white); border: 1px solid var(--gray-200);
  padding: 8px 14px; border-radius: 6px; letter-spacing: .02em;
}
@media (max-width: 575.98px) { .about-points { grid-template-columns: 1fr; } .about-badge { bottom: -14px; right: 14px; padding: 12px 16px; } }

/* ===== Services ===== */
.services-section { background: var(--gray-50); }
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 26px 22px;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}
.service-card .icon {
  width: 54px; height: 54px; border-radius: 10px;
  background: var(--gray-50); color: var(--navy);
  display: grid; place-items: center; font-size: 22px;
  margin-bottom: 18px;
  transition: background .2s ease, color .2s ease;
}
.service-card:hover .icon { background: var(--gold); color: var(--navy-dark); }
.service-card h4 { font-size: 17px; margin-bottom: 10px; }
.service-card p { color: var(--gray-500); font-size: 14px; margin-bottom: 14px; }
.service-card .read-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--navy); font-weight: 600; font-size: 13.5px;
}
.service-card .read-more:hover { color: var(--gold); }
.service-card .read-more i { transition: transform .2s ease; }
.service-card:hover .read-more i { transform: translateX(3px); }

/* ===== Why Choose Us ===== */
.why-section { background: var(--white); }
.why-list { list-style: none; padding: 0; margin: 0; }
.why-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}
.why-list li:last-child { border-bottom: none; }
.why-list .ic {
  width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0;
  background: var(--gold-soft); color: var(--gold);
  display: grid; place-items: center; font-size: 16px;
}
.why-list h6 { margin: 0 0 4px; font-size: 15.5px; color: var(--navy); }
.why-list p { margin: 0; font-size: 13.5px; color: var(--gray-500); }

/* Stats panel */
.stats-panel {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 30px 24px;
  color: var(--white);
}
.stats-panel .row { row-gap: 24px; }
.stat-item { text-align: center; padding: 8px 0; }
.stat-item .si {
  width: 44px; height: 44px; border-radius: 8px;
  background: rgba(201,162,75,0.18); color: var(--gold);
  display: grid; place-items: center; font-size: 20px;
  margin: 0 auto 10px;
}
.stat-item .num {
  font-size: 30px; font-weight: 800; color: var(--white); line-height: 1;
}
.stat-item .num span { color: var(--gold); }
.stat-item .lbl { color: rgba(255,255,255,0.78); font-size: 13px; margin-top: 6px; }

/* ===== Industries ===== */
.industries-section { background: var(--gray-50); }
.industry-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.industry-card .ic {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gray-50); color: var(--navy);
  display: grid; place-items: center; font-size: 24px;
  margin: 0 auto 12px;
  transition: background .2s ease, color .2s ease;
}
.industry-card:hover .ic { background: var(--navy); color: var(--white); }
.industry-card h6 { font-size: 14.5px; margin: 0 0 4px; }
.industry-card span { font-size: 12px; color: var(--gray-500); }

/* ===== Gallery / Certifications ===== */
.gallery-section { background: var(--white); }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease;
}
.gallery-item:hover { box-shadow: var(--shadow-md); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .gi-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(11,31,61,0.85) 100%);
  color: var(--white);
}
.gallery-item .gi-tag {
  display: inline-block; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; color: var(--gold);
  margin-bottom: 4px;
}
.gallery-item h6 { margin: 0; color: var(--white); font-size: 14.5px; }

.cert-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px; margin-top: 36px; }
.cert-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 18px 14px;
  text-align: center;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.cert-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.cert-card .ci {
  width: 46px; height: 46px; border-radius: 8px;
  background: var(--gold-soft); color: var(--gold);
  display: grid; place-items: center; font-size: 20px;
  margin: 0 auto 10px;
}
.cert-card h6 { margin: 0 0 2px; font-size: 13.5px; }
.cert-card span { font-size: 11.5px; color: var(--gray-500); }

/* ===== Careers ===== */
.careers-section { background: var(--navy); color: var(--white); padding: 60px 0; }
.careers-section h2 { color: var(--white); font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 10px; }
.careers-section p { color: rgba(255,255,255,0.8); margin-bottom: 20px; }

/* ===== Contact ===== */
.contact-section { background: var(--gray-50); }
.contact-info {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  height: 100%;
}
.contact-info h3 { color: var(--white); font-size: 20px; margin-bottom: 6px; }
.contact-info > p { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 22px; }
.ci-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.ci-item:last-of-type { border-bottom: none; }
.ci-item .icon {
  width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0;
  background: rgba(201,162,75,0.18); color: var(--gold);
  display: grid; place-items: center; font-size: 15px;
}
.ci-item h6 { margin: 0 0 2px; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--white); }
.ci-item p, .ci-item a { margin: 0; font-size: 14px; color: rgba(255,255,255,0.85); }
.ci-item a:hover { color: var(--gold); }
.ci-socials { display: flex; gap: 8px; margin-top: 18px; }
.ci-socials a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); color: var(--white);
  display: grid; place-items: center; font-size: 14px;
}
.ci-socials a:hover { background: var(--gold); color: var(--navy-dark); }

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.form-card h3 { font-size: 20px; margin-bottom: 6px; }
.form-card .sub { color: var(--gray-500); font-size: 14px; margin-bottom: 22px; }
.form-card label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-card .form-control, .form-card .form-select {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 14.5px; color: var(--text);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-card .form-control:focus, .form-card .form-select:focus {
  outline: none; border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15,42,80,0.08);
}
.form-card textarea.form-control { resize: vertical; min-height: 120px; }
.form-alert { display: none; padding: 10px 14px; border-radius: 8px; font-size: 14px; margin-bottom: 14px; }
.form-alert.success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.form-alert.error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.form-alert.show { display: block; }

.map-wrap {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 21/7;
  border: 1px solid var(--gray-200);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 767.98px) { .map-wrap { aspect-ratio: 4/3; } }

/* ===== Footer ===== */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer h5 { color: var(--white); font-size: 15px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .06em; }
.footer p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.7; }
.footer a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer a:hover { color: var(--gold); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { padding: 4px 0; }
.footer ul li a::before { content: "›"; color: var(--gold); margin-right: 6px; }
.footer .contact-line { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
.footer .contact-line i { color: var(--gold); margin-top: 4px; }
.footer .brand-text .b-sub { color: rgba(255,255,255,0.55); }
.foot-socials { display: flex; gap: 8px; margin-top: 16px; }
.foot-socials a {
  width: 34px; height: 34px; border-radius: 6px;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center; font-size: 14px;
}
.foot-socials a:hover { background: var(--gold); color: var(--navy-dark) !important; }

/* Newsletter */
.newsletter { margin-top: 20px; }
.nl-label {
  display: block; font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px; font-weight: 600;
  letter-spacing: .02em;
}
.nl-row { display: flex; gap: 8px; align-items: stretch; }
.nl-row input {
  flex: 1; min-width: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  padding: 11px 14px;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  font-family: inherit;
  transition: border-color .2s ease, background .2s ease;
}
.nl-row input::placeholder { color: rgba(255,255,255,0.45); }
.nl-row input:focus {
  background: rgba(255,255,255,0.10);
  border-color: var(--gold);
}
.nl-row button {
  background: var(--gold); color: var(--navy-dark);
  border: 0; padding: 0 18px; border-radius: 6px;
  font-size: 18px; font-weight: 700;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.nl-row button:hover { background: #B8902C; }
.nl-msg {
  display: block;
  font-size: 12px; color: var(--gold);
  margin-top: 8px;
  height: 16px;
  opacity: 0;
  transition: opacity .25s ease;
}
.nl-msg.show { opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 50px; padding: 18px 0;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; align-items: center;
}
.footer-bottom p { margin: 0; font-size: 13px; }
.footer-bottom .legal { display: flex; gap: 16px; }

/* ===== Floating utilities ===== */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: grid; place-items: center; font-size: 24px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.06); color: var(--white); }

.back-top {
  position: fixed; right: 20px; bottom: 86px; z-index: 998;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: grid; place-items: center; font-size: 14px;
  opacity: 0; visibility: hidden;
  transition: all .2s ease;
  box-shadow: var(--shadow-sm);
}
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--gold); color: var(--navy-dark); }

/* ===== Misc ===== */
[data-aos] { transition-duration: .6s !important; }

@media (max-width: 991.98px) {
  .section { padding: 60px 0; }
  .hero { padding: 60px 0; }
  .hero-img { margin-top: 40px; }
  .contact-info { margin-bottom: 24px; }
}
@media (max-width: 575.98px) {
  .section { padding: 50px 0; }
  .topbar .tb-left { gap: 12px; }
  .topbar .tb-item.email { display: none; }
}
