/* =========================================================
   True Line International — Theme
   ========================================================= */

:root {
  /* Logo-derived teal palette (replaces navy) */
  --navy: #0F5C5F;          /* deep teal — primary brand */
  --navy-deep: #093C3F;     /* darkest teal — footer / hero base */
  --navy-soft: #1A8E94;     /* mid teal — highlights / hover */
  --teal-bright: #2BBBC4;   /* bright teal — links / accents */
  --charcoal: #2D3741;      /* logo "T" charcoal — heading accents */
  --gold: #C9A24B;          /* gold — kept as complementary accent */
  --gold-soft: #E0C682;
  --steel: #7B8794;
  --bg: #F5F8F8;
  --white: #FFFFFF;
  --line: #DDE6E7;
  --text: #1A2E30;
  --muted: #6B7B7D;
  --shadow-sm: 0 4px 12px rgba(15,92,95,.07);
  --shadow-md: 0 10px 30px rgba(15,92,95,.12);
  --shadow-lg: 0 20px 50px rgba(15,92,95,.20);
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--navy); letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.bg-navy { background: var(--navy) !important; color: #fff; }
.bg-navy-deep { background: var(--navy-deep) !important; color: #fff; }
.bg-soft { background: var(--bg) !important; }

.section { padding: clamp(56px, 8vw, 110px) 0; }
.section-tight { padding: 60px 0; }
.section-title { margin-bottom: 16px; }
.section-eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: 3px; font-weight: 600; font-size: .8rem; margin-bottom: 12px; display: inline-block; }
.section-lead { color: var(--muted); max-width: 760px; }
.divider-gold { width: 60px; height: 3px; background: var(--gold); margin: 16px 0 24px; border-radius: 2px; }
.text-center .divider-gold { margin-left: auto; margin-right: auto; }

/* ---------------- Buttons ---------------- */
.btn { border-radius: 8px; font-weight: 600; padding: .65rem 1.4rem; transition: all .25s ease; }
.btn-tli-gold { background: var(--gold); color: var(--navy); border: 1px solid var(--gold); }
.btn-tli-gold:hover { background: var(--gold-soft); color: var(--navy-deep); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(201,162,75,.35); }
.btn-tli-navy { background: var(--navy); color: #fff; border: 1px solid var(--navy); }
.btn-tli-navy:hover { background: var(--navy-deep); color: #fff; transform: translateY(-1px); }
.btn-tli-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-tli-outline:hover { background: var(--navy); color: #fff; }
.btn-tli-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn-tli-outline-light:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ---------------- Topbar / Navbar ---------------- */
.topbar { background: var(--navy-deep); color: rgba(255,255,255,.85); padding: 8px 0; font-size: .85rem; }
.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: var(--gold); }
.topbar-social a { font-size: 1rem; }

.navbar-tli { background: rgba(255,255,255,.96); backdrop-filter: saturate(180%) blur(10px); padding: 14px 0; box-shadow: 0 2px 10px rgba(11,31,58,.06); }
.navbar-tli .navbar-brand { display: flex; align-items: center; padding: 0; }
.navbar-tli .brand-logo { height: 56px; width: auto; max-width: 280px; object-fit: contain; display: block; }
@media (max-width: 768px) {
  .navbar-tli .brand-logo { height: 44px; max-width: 200px; }
}
.navbar-tli .nav-link { color: var(--navy); font-weight: 500; padding: .5rem 1rem !important; position: relative; }
.navbar-tli .nav-link.active, .navbar-tli .nav-link:hover { color: var(--gold); }
.navbar-tli .nav-link.active::after { content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 24px; height: 2px; background: var(--gold); border-radius: 2px; }
.dropdown-menu-tli { border-radius: 10px; border: 1px solid var(--line); box-shadow: var(--shadow-md); padding: 8px; }
.dropdown-menu-tli .dropdown-item { border-radius: 6px; padding: 10px 14px; font-weight: 500; }
.dropdown-menu-tli .dropdown-item:hover { background: var(--bg); color: var(--gold); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-soft) 100%);
  color: #fff;
  padding: clamp(80px, 12vw, 160px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
}
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(80px); opacity: .35; z-index: 0;
}
.hero::before { width: 380px; height: 380px; background: var(--gold); top: -100px; right: -100px; }
.hero::after { width: 320px; height: 320px; background: #1a4d8f; bottom: -120px; left: -100px; }
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero p.lead { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 640px; }
.hero-eyebrow { color: var(--gold); letter-spacing: 4px; font-weight: 600; text-transform: uppercase; font-size: .85rem; margin-bottom: 18px; display: inline-block; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 40px; }
.hero-stats .stat strong { font-size: 2rem; color: var(--gold); display: block; line-height: 1; }
.hero-stats .stat span { font-size: .85rem; color: rgba(255,255,255,.7); }

.page-hero {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff; padding: 120px 0 70px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; right: -100px; top: -100px; width: 320px; height: 320px;
  background: var(--gold); border-radius: 50%; filter: blur(120px); opacity: .25;
}
.page-hero h1 { color: #fff; }
.page-hero .breadcrumb-tli { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 8px; }
.page-hero .breadcrumb-tli a { color: var(--gold); }

/* ---------------- Cards ---------------- */
.tli-card {
  background: #fff; border-radius: var(--radius); border: 1px solid var(--line);
  padding: 28px; box-shadow: var(--shadow-sm); transition: all .35s ease;
}
/* Use Bootstrap's .h-100 explicitly when equal-height cards are needed */
.tli-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.tli-card .icon-circle {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep)); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px;
  transition: transform .35s;
}
.tli-card:hover .icon-circle { transform: rotate(-6deg) scale(1.05); background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: var(--navy); }
.tli-card h5 { margin-bottom: 8px; }
.tli-card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* Division cards */
.division-card {
  position: relative; border-radius: 18px; overflow: hidden; min-height: 460px;
  background-size: cover; background-position: center; color: #fff;
  box-shadow: var(--shadow-md); transition: transform .5s ease;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 36px;
}
.division-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,58,.15) 0%, rgba(11,31,58,.55) 55%, rgba(6,21,43,.92) 100%);
  transition: background .4s;
}
.division-card:hover { transform: translateY(-10px); }
.division-card:hover::before {
  background: linear-gradient(180deg, rgba(11,31,58,.25) 0%, rgba(11,31,58,.6) 50%, rgba(201,162,75,.78) 100%);
}
.division-card > * { position: relative; z-index: 1; }
.division-card .card-icon {
  width: 56px; height: 56px; border-radius: 14px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--gold); margin-bottom: 18px;
  backdrop-filter: blur(10px);
}
.division-card h3 { color: #fff; margin-bottom: 10px; font-size: 1.6rem; }
.division-card p { color: rgba(255,255,255,.85); margin-bottom: 18px; }
.division-card .btn { align-self: flex-start; }
.division-card.it-elv { background-image: linear-gradient(135deg,#0a2247,#1a4d8f); }
.division-card.fabrication { background-image: linear-gradient(135deg,#1f2a3a,#3c4858); }
.division-card.trading { background-image: linear-gradient(135deg,#1e2c3e,#2c4263); }

/* Service cards */
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; height: 100%;
  transition: all .3s ease; position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; height: 3px; width: 0; background: var(--gold); transition: width .35s;
}
.service-card:hover { box-shadow: var(--shadow-md); border-color: transparent; transform: translateY(-4px); }
.service-card:hover::after { width: 100%; }
.service-card i { font-size: 2rem; color: var(--gold); margin-bottom: 14px; }
.service-card h6 { margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ---------------- Why choose ---------------- */
.why-card {
  background: #fff; border-radius: var(--radius); padding: 26px; border: 1px solid var(--line); height: 100%;
  transition: all .3s;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-card .badge-num {
  display: inline-block; width: 40px; height: 40px; line-height: 40px; text-align: center;
  border-radius: 10px; background: var(--bg); color: var(--gold); font-weight: 700; margin-bottom: 14px;
}

/* ---------------- Certifications strip ---------------- */
.cert-strip {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy)); color: #fff;
  border-radius: var(--radius); padding: 32px;
}
.cert-item { display: flex; align-items: center; gap: 14px; }
.cert-item .cert-icon {
  width: 54px; height: 54px; border-radius: 12px; background: rgba(201,162,75,.15);
  display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.5rem;
  border: 1px solid rgba(201,162,75,.3);
}
.cert-item strong { display: block; }
.cert-item span { color: rgba(255,255,255,.65); font-size: .85rem; }

/* Vendor badges */
.vendor-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.vendor-badge {
  background: #fff; border: 1px solid var(--line); border-radius: 30px;
  padding: 8px 18px; font-weight: 600; font-size: .9rem; color: var(--navy);
  box-shadow: var(--shadow-sm); display: inline-flex; align-items: center; gap: 8px;
}
.vendor-badge i { color: var(--gold); }

/* ---------------- Marquee (clients) ---------------- */
.marquee {
  overflow: hidden; padding: 30px 0; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  position: relative;
}
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, #fff, transparent); }
.marquee-track { display: flex; gap: 60px; animation: marquee 28s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  flex: 0 0 auto; height: 60px; display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--steel); padding: 0 18px; font-size: 1.1rem;
}
.marquee-item img { max-height: 56px; width: auto; filter: grayscale(1) opacity(.75); transition: filter .3s; }
.marquee-item img:hover { filter: none; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------- Gallery ---------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm); transition: transform .35s;
}
.gallery-item img, .gallery-item video {
  width: 100%; height: 100%; object-fit: cover; transition: transform .5s;
}
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(11,31,58,.85));
  color: #fff; padding: 16px; display: flex; flex-direction: column; justify-content: flex-end; opacity: 0; transition: opacity .35s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay strong { color: var(--gold); }

/* ---------------- Testimonials ---------------- */
.testimonial-card {
  background: #fff; border-radius: var(--radius); padding: 28px; border: 1px solid var(--line);
  height: 100%; position: relative; transition: all .3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '\201C'; font-family: 'Playfair Display', serif; position: absolute; top: -10px; right: 24px;
  font-size: 5rem; color: var(--gold); opacity: .25; line-height: 1;
}
.testimonial-card .stars { color: var(--gold); margin-bottom: 12px; }
.testimonial-card p { color: var(--muted); font-style: italic; margin-bottom: 18px; }
.testimonial-card .person { display: flex; align-items: center; gap: 12px; }
.testimonial-card .person img,
.testimonial-card .person .avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--bg);
  display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--navy);
}
.testimonial-card .person strong { display: block; color: var(--navy); }
.testimonial-card .person small { color: var(--muted); }

/* ---------------- Forms ---------------- */
.form-tli .form-control, .form-tli .form-select {
  border: 1px solid var(--line); border-radius: 8px; padding: .75rem 1rem; font-size: .95rem;
  transition: all .2s; background: #fff;
}
.form-tli .form-control:focus, .form-tli .form-select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,.15);
}
.form-tli label { font-weight: 600; color: var(--navy); margin-bottom: 6px; font-size: .92rem; }
.form-tli .form-help { color: var(--muted); font-size: .85rem; }

.form-card {
  background: #fff; border-radius: var(--radius); border: 1px solid var(--line);
  padding: 36px; box-shadow: var(--shadow-md);
}

.alert-tli-success { background: #ECFDF5; border: 1px solid #A7F3D0; color: #065F46; border-radius: 8px; padding: 14px; }
.alert-tli-danger  { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; border-radius: 8px; padding: 14px; }

/* ---------------- CTA strip ---------------- */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy)); color: #fff;
  border-radius: 18px; padding: 50px; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; right: -120px; top: -120px; width: 320px; height: 320px;
  background: var(--gold); border-radius: 50%; filter: blur(120px); opacity: .35;
}
.cta-strip h3 { color: #fff; margin-bottom: 8px; }
.cta-strip p { color: rgba(255,255,255,.8); margin: 0; }

/* ---------------- Product specifics ---------------- */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  padding: 10px 0 10px 32px; position: relative; border-bottom: 1px dashed var(--line); color: var(--text);
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list li::before {
  content: '\F26E'; font-family: 'bootstrap-icons'; position: absolute; left: 0; top: 10px; color: var(--gold);
}

/* ---------------- Footer ---------------- */
.tli-footer {
  background: var(--navy-deep); color: rgba(255,255,255,.75); padding: 70px 0 30px;
  border-top: 4px solid var(--gold);
}
.tli-footer h5 { color: #fff; }
.tli-footer .footer-logo {
  height: 64px; width: auto; max-width: 280px; background: #fff;
  padding: 8px 14px; border-radius: 10px; display: inline-block;
}
.tli-footer .footer-heading {
  color: #fff; text-transform: uppercase; letter-spacing: 1.5px; font-size: .8rem; font-weight: 700; margin-bottom: 16px;
}
.tli-footer .text-light-muted { color: rgba(255,255,255,.65); }
.tli-footer .footer-links li { margin-bottom: 8px; }
.tli-footer .footer-links a { color: rgba(255,255,255,.75); font-size: .92rem; }
.tli-footer .footer-links a:hover { color: var(--gold); padding-left: 4px; }
.tli-footer .footer-contact li { padding-left: 26px; position: relative; margin-bottom: 12px; font-size: .9rem; color: rgba(255,255,255,.8); }
.tli-footer .footer-contact i { position: absolute; left: 0; top: 4px; color: var(--gold); }
.tli-footer .footer-contact a { color: rgba(255,255,255,.85); }
.tli-footer .footer-social a {
  display: inline-flex; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); align-items: center; justify-content: center;
  color: #fff; margin-right: 6px; transition: all .25s;
}
.tli-footer .footer-social a:hover { background: var(--gold); color: var(--navy); }
.tli-footer .footer-divider { border-color: rgba(255,255,255,.08); margin: 36px 0 20px; }
.tli-footer .footer-cert-row {
  display: flex; align-items: center; gap: 10px; background: #fff;
  padding: 6px 12px; border-radius: 30px;
}
.tli-footer .footer-cert-row img { height: 24px; width: auto; }
.tli-footer .footer-cert-row small { color: #1F2A44; font-weight: 700; padding-right: 4px; }
.tli-footer .footer-newsletter .form-control { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: #fff; }
.tli-footer .footer-newsletter .form-control::placeholder { color: rgba(255,255,255,.55); }
.tli-footer .newsletter-msg { color: var(--gold-soft); }

/* ---------------- WhatsApp Floating ---------------- */
.floating-wa {
  position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
  box-shadow: 0 8px 22px rgba(37,211,102,.45); z-index: 999; transition: transform .25s;
}
.floating-wa:hover { transform: scale(1.08); color: #fff; }
.floating-wa-pulse {
  position: absolute; inset: -4px; border-radius: 50%; border: 3px solid #25D366; opacity: .6;
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(.95); opacity: .7; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---------------- Chatbot ---------------- */
.tli-chatbot { position: fixed; bottom: 24px; left: 24px; z-index: 999; }
.tli-chat-toggle {
  width: 56px; height: 56px; border-radius: 50%; border: none; background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: var(--gold); font-size: 1.6rem; box-shadow: 0 8px 22px rgba(11,31,58,.35); cursor: pointer; transition: transform .25s;
}
.tli-chat-toggle:hover { transform: scale(1.08); }
.tli-chat-panel {
  position: absolute; bottom: 70px; left: 0; width: 340px; max-width: calc(100vw - 32px); height: 480px;
  background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--line); animation: chatRise .3s ease;
}
@keyframes chatRise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.tli-chat-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep)); color: #fff;
  padding: 14px 16px; display: flex; justify-content: space-between; align-items: center;
}
.tli-chat-header small { color: rgba(255,255,255,.7); font-size: .75rem; }
.tli-chat-close { background: transparent; border: 0; color: #fff; font-size: 1.5rem; cursor: pointer; line-height: 1; }
.tli-chat-body {
  flex: 1; overflow-y: auto; padding: 14px; background: var(--bg); display: flex; flex-direction: column; gap: 10px;
}
.tli-chat-body .msg { max-width: 85%; padding: 10px 14px; border-radius: 14px; font-size: .9rem; line-height: 1.45; }
.tli-chat-body .msg.bot { background: #fff; border: 1px solid var(--line); align-self: flex-start; color: var(--text); }
.tli-chat-body .msg.user { background: var(--navy); color: #fff; align-self: flex-end; }
.tli-chat-body .msg a { color: var(--gold); }
.tli-chat-quick { padding: 8px 12px; background: #fff; display: flex; flex-wrap: wrap; gap: 6px; border-top: 1px solid var(--line); }
.tli-chat-quick button {
  background: var(--bg); border: 1px solid var(--line); border-radius: 16px; font-size: .78rem;
  padding: 6px 10px; cursor: pointer; color: var(--navy); transition: all .2s;
}
.tli-chat-quick button:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.tli-chat-input { display: flex; gap: 6px; padding: 10px; background: #fff; border-top: 1px solid var(--line); }
.tli-chat-input input { flex: 1; border: 1px solid var(--line); border-radius: 8px; padding: .55rem .85rem; font-size: .9rem; }
.tli-chat-input input:focus { outline: none; border-color: var(--gold); }
.tli-chat-input button { border: 0; background: var(--gold); color: var(--navy); width: 38px; border-radius: 8px; cursor: pointer; }

/* ---------------- Blog ---------------- */
.blog-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: all .3s; height: 100%;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card .blog-thumb { height: 200px; background-size: cover; background-position: center; background-color: var(--bg); }
.blog-card .blog-body { padding: 22px; }
.blog-card .blog-meta { color: var(--muted); font-size: .8rem; margin-bottom: 8px; }
.blog-card h5 { font-size: 1.1rem; margin-bottom: 8px; }
.blog-card p { color: var(--muted); font-size: .9rem; }
.blog-card a.read-more { color: var(--gold); font-weight: 600; }

/* ---------------- Contact info cards (sidebar) ---------------- */
.contact-info-stack { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; display: flex; gap: 16px; align-items: flex-start;
  transition: all .25s ease;
}
.contact-info-card:hover { box-shadow: var(--shadow-md); transform: translateX(3px); border-color: transparent; }
.contact-info-card h6 { color: var(--navy); font-weight: 700; }
.contact-info-card a { color: var(--navy); }
.contact-info-card a:hover { color: var(--gold); }
.contact-info-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep)); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.contact-wa-card {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px;
  border-radius: var(--radius); background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; box-shadow: 0 8px 22px rgba(37, 211, 102, .3); transition: transform .25s;
}
.contact-wa-card:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 12px 28px rgba(37, 211, 102, .4); }
.contact-wa-card .contact-wa-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.contact-wa-card p { color: rgba(255,255,255,.9); }
.contact-map-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.contact-map-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.contact-map-pin {
  position: absolute; bottom: 14px; left: 14px; background: var(--navy); color: var(--gold);
  padding: 8px 14px; border-radius: 20px; font-weight: 600; font-size: .85rem;
  box-shadow: 0 6px 14px rgba(11,31,58,.35);
}
.contact-map-pin i { color: var(--gold); margin-right: 6px; }

/* ---------------- Hero / page-hero background image overlay ---------------- */
.hero.has-bg, .page-hero.has-bg { background-blend-mode: multiply; background-size: cover; background-position: center; }
.hero.has-bg { background-image: linear-gradient(135deg, rgba(9,60,63,.92), rgba(15,92,95,.78)), var(--hero-bg); }
.page-hero.has-bg { background-image: linear-gradient(135deg, rgba(9,60,63,.88), rgba(15,92,95,.72) 60%, rgba(26,142,148,.55)), var(--hero-bg); }
.page-hero { padding-bottom: 80px; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero-tall { padding: 140px 0 100px; min-height: 460px; }
.page-hero-tall h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }

/* ---------------- Hero Banner Slider (3 division banners) ----------------
   Structure:
     .banner-slider          (auto height; wraps swiper + stats stacked)
       .swiper               (fixed height — the visual slide area)
         .swiper-slide       (flex; content vertically centered)
       .banner-stats         (block element BELOW the swiper — never overlaps content)
*/
.banner-slider { position: relative; }
.banner-slider .banner-swiper-wrap { position: relative; overflow: hidden; }
.banner-slider .swiper { width: 100%; height: clamp(520px, 78vh, 720px); /* taller, more attractive */ }
.banner-slider .swiper-wrapper { height: 100%; }
.banner-slider .swiper-slide {
  position: relative; display: flex; align-items: center;
  padding: 60px 0 130px; /* extra bottom for tagline overlay */
  background-size: cover; background-position: center;
}
/* Mask — color & opacity dynamically set per slider via --banner-mask CSS var */
.banner-slider .swiper-slide::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(1100px 700px at 75% 50%, rgba(43,134,255,.12) 0%, transparent 60%),
    var(--banner-mask, rgba(11,38,78,.82));
}
/* Animated tech grid (only when .has-grid is on slider) */
.banner-slider.has-grid .swiper-slide::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(120,180,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,180,255,.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 60% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 60% 50%, #000 30%, transparent 80%);
  animation: gridShift 14s linear infinite;
}
@keyframes gridShift { from { background-position: 0 0; } to { background-position: 64px 64px; } }

.banner-slide-content {
  position: relative; z-index: 3; color: #fff; max-width: 720px; padding: 0 24px;
}
.banner-slide-content .eyebrow {
  color: #6BB7FF; letter-spacing: 4px; font-weight: 700; text-transform: uppercase;
  font-size: .8rem; display: inline-block; padding: 6px 14px;
  background: rgba(43,134,255,.18); border: 1px solid rgba(120,180,255,.5); border-radius: 30px;
  backdrop-filter: blur(8px); margin-bottom: 18px;
}
.banner-slide-content h2 { color: #fff; font-size: clamp(1.6rem, 4vw, 3.2rem); margin-bottom: 14px; line-height: 1.18; text-shadow: 0 2px 24px rgba(0,0,0,.5); }
.banner-slide-content p { color: rgba(255,255,255,.9); font-size: clamp(.95rem, 1.3vw, 1.1rem); margin-bottom: 24px; max-width: 580px; text-shadow: 0 1px 12px rgba(0,0,0,.5); }
.banner-slide-content .btn { padding: .8rem 1.6rem; font-weight: 700; }

/* Tile transition (custom) */
.banner-slider .swiper-slide-active .banner-slide-content > * {
  animation: tileIn .9s cubic-bezier(.22,.61,.36,1) both;
}
.banner-slider .swiper-slide-active .banner-slide-content > *:nth-child(1) { animation-delay: .1s; }
.banner-slider .swiper-slide-active .banner-slide-content > *:nth-child(2) { animation-delay: .25s; }
.banner-slider .swiper-slide-active .banner-slide-content > *:nth-child(3) { animation-delay: .4s; }
.banner-slider .swiper-slide-active .banner-slide-content > *:nth-child(4) { animation-delay: .55s; }
@keyframes tileIn {
  from { opacity: 0; transform: translateY(30px) scale(.97); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
.banner-slider .swiper-pagination { bottom: 100px !important; z-index: 8; }
.banner-slider .banner-swiper-wrap:not(:has(.banner-tagline-overlay)) .swiper-pagination { bottom: 24px !important; }
.banner-slider .swiper-pagination-bullet { background: rgba(255,255,255,.5); opacity: 1; width: 10px; height: 10px; transition: all .3s; }
.banner-slider .swiper-pagination-bullet-active { background: var(--gold); width: 32px; border-radius: 5px; }
.banner-slider .swiper-button-prev, .banner-slider .swiper-button-next {
  color: #fff; background: rgba(0,0,0,.25); width: 50px; height: 50px; border-radius: 50%;
  backdrop-filter: blur(8px); transition: background .25s; z-index: 5;
}
.banner-slider .swiper-button-prev:hover, .banner-slider .swiper-button-next:hover {
  background: var(--gold); color: var(--navy);
}
.banner-slider .swiper-button-prev::after, .banner-slider .swiper-button-next::after { font-size: 1.2rem; font-weight: 700; }

.banner-stats {
  position: relative;
  background: linear-gradient(180deg, var(--banner-mask, rgba(7,21,49,.95)) 0%, #050E25 100%);
  padding: 28px 0;
  color: #fff;
  border-top: 1px solid rgba(107,183,255,.2);
}
/* Tagline as a banner-image overlay (sits at the bottom of the slider, above the stats strip) */
.banner-tagline-overlay {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 5;
  text-align: center; padding: 24px 16px 30px;
  background: linear-gradient(180deg, transparent 0%, rgba(7,21,49,.55) 50%, rgba(7,21,49,.92) 100%);
  pointer-events: none;
}
.banner-tagline-main {
  color: var(--gold); font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 0 0 6px;
  letter-spacing: -.01em; line-height: 1.2;
  text-shadow: 0 2px 24px rgba(0,0,0,.65), 0 0 30px rgba(201,162,75,.3);
}
.banner-tagline-sub {
  color: rgba(255,255,255,.95); font-size: .9rem; margin: 0;
  text-transform: uppercase; letter-spacing: 3px; font-weight: 700;
  text-shadow: 0 2px 16px rgba(0,0,0,.6);
}
.banner-tagline-sub i { color: var(--gold); }

/* Compact stats strip (tagline removed from this) */
.banner-stats-compact { padding: 16px 0 !important; }

.banner-stats .stat-row { display: flex; justify-content: center; flex-wrap: wrap; gap: clamp(16px, 4vw, 60px); }
.banner-stats .stat { text-align: center; min-width: 100px; }
.banner-stats .stat strong { color: var(--gold); font-size: clamp(1.4rem, 3vw, 2.2rem); display: block; line-height: 1.05; font-weight: 800; margin-bottom: 4px; }
.banner-stats .stat span { color: rgba(255,255,255,.75); font-size: .75rem; text-transform: uppercase; letter-spacing: 1.5px; }

/* ---- Mobile responsive: banner content + stats ---- */
@media (max-width: 768px) {
  .banner-slider .swiper { height: auto; min-height: 540px; }
  .banner-slider .swiper-slide { padding: 60px 16px 130px; align-items: flex-start; }
  .banner-tagline-overlay { padding: 16px 12px 22px; }
  .banner-tagline-main { font-size: 1.15rem !important; }
  .banner-tagline-sub { font-size: .7rem; letter-spacing: 2px; }
  .banner-stats-compact { padding: 12px 0 !important; }
  .banner-slide-content { padding: 0; }
  .banner-slide-content .eyebrow { font-size: .65rem; letter-spacing: 2px; padding: 4px 10px; margin-bottom: 12px; }
  .banner-slide-content h2 { font-size: 1.45rem !important; margin-bottom: 10px; line-height: 1.25; }
  .banner-slide-content p { font-size: .88rem !important; margin-bottom: 16px; }
  .banner-slide-content .btn { padding: .55rem 1.1rem; font-size: .85rem; }
  .banner-stats { padding: 18px 0 22px; }
  .banner-stats .stat-row { gap: 14px 22px; }
  .banner-stats .stat { min-width: 80px; }
  .banner-stats .stat strong { font-size: 1.1rem; }
  .banner-stats .stat span { font-size: .65rem; letter-spacing: 1px; }
  .banner-slider .swiper-button-prev,
  .banner-slider .swiper-button-next { display: none; }
  .banner-slider .swiper-pagination { bottom: 14px !important; }
}
@media (max-width: 480px) {
  .banner-slide-content h2 { font-size: 1.25rem !important; }
  .banner-slide-content p { font-size: .82rem !important; }
  .banner-stats .stat { min-width: 70px; }
  .banner-stats .stat-row { gap: 10px 18px; }
}

/* ===================================================================
   Hero Banner — Overlay Animation Library
   Each overlay sits inside `.digital-overlay` at z-index:2 above mask.
   =================================================================== */

/* ---------- 3) PARTICLES — many small floating particles ---------- */
.particles-overlay { position: absolute; inset: 0; pointer-events: none; z-index: 2; overflow: hidden; }
.particles-overlay::before, .particles-overlay::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(107,183,255,.8), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,.7), transparent),
    radial-gradient(2px 2px at 85% 15%, rgba(43,187,255,.7), transparent),
    radial-gradient(1px 1px at 30% 85%, rgba(201,162,75,.6), transparent),
    radial-gradient(2px 2px at 70% 40%, rgba(255,255,255,.6), transparent),
    radial-gradient(1px 1px at 15% 60%, rgba(107,183,255,.7), transparent),
    radial-gradient(2px 2px at 90% 80%, rgba(43,187,255,.5), transparent),
    radial-gradient(1px 1px at 50% 20%, rgba(201,162,75,.7), transparent),
    radial-gradient(1.5px 1.5px at 40% 50%, rgba(255,255,255,.5), transparent),
    radial-gradient(2px 2px at 75% 55%, rgba(107,183,255,.6), transparent);
  background-size: 100% 100%;
  animation: particlesDrift 30s linear infinite;
}
.particles-overlay::after { animation-duration: 50s; animation-direction: reverse; opacity: .6; }
@keyframes particlesDrift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(40px, -60px); }
}

/* ---------- 4) WAVES — animated waves at the bottom ---------- */
.waves-overlay { position: absolute; left: 0; right: 0; bottom: 0; height: 140px; z-index: 2; pointer-events: none; overflow: hidden; }
.waves-overlay svg { display: block; width: 200%; height: 100%; animation: waveSlide 18s linear infinite; }
.waves-overlay svg:nth-child(2) { position: absolute; top: 0; left: 0; opacity: .55; animation-duration: 14s; animation-direction: reverse; }
@keyframes waveSlide {
  from { transform: translateX(0); } to { transform: translateX(-50%); }
}

/* ---------- 5) CIRCUIT — circuit-board pattern with pulse ---------- */
.circuit-overlay { position: absolute; inset: 0; pointer-events: none; z-index: 2; opacity: .35; }
.circuit-overlay::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(0deg, transparent 49%, rgba(107,183,255,.5) 49%, rgba(107,183,255,.5) 51%, transparent 51%),
    linear-gradient(90deg, transparent 49%, rgba(107,183,255,.5) 49%, rgba(107,183,255,.5) 51%, transparent 51%);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at center, transparent 30%, #000 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at center, transparent 30%, #000 100%);
}
.circuit-overlay::after {
  content: ''; position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: #6BB7FF; box-shadow: 0 0 12px #6BB7FF, 0 0 24px #6BB7FF;
  top: 30%; left: 20%; animation: circuitPulse 4s ease-in-out infinite;
}
@keyframes circuitPulse {
  0%   { transform: translate(0, 0); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translate(400px, 200px); opacity: 0; }
}

/* ---------- 6) MATRIX — falling code rain ---------- */
.matrix-overlay { position: absolute; inset: 0; pointer-events: none; z-index: 2; overflow: hidden; opacity: .35; }
.matrix-overlay span {
  position: absolute; top: -100px; color: #6BFF9A; font-family: 'Courier New', monospace;
  font-size: 14px; font-weight: 700; line-height: 1.1; white-space: pre;
  text-shadow: 0 0 8px #6BFF9A; animation: matrixFall linear infinite;
}
.matrix-overlay span:nth-child(1)  { left: 5%;  animation-duration: 6s;  animation-delay: 0s;   }
.matrix-overlay span:nth-child(2)  { left: 15%; animation-duration: 8s;  animation-delay: 1s;   }
.matrix-overlay span:nth-child(3)  { left: 25%; animation-duration: 7s;  animation-delay: 2s;   }
.matrix-overlay span:nth-child(4)  { left: 35%; animation-duration: 9s;  animation-delay: .5s;  }
.matrix-overlay span:nth-child(5)  { left: 45%; animation-duration: 6.5s;animation-delay: 3s;   }
.matrix-overlay span:nth-child(6)  { left: 55%; animation-duration: 7.5s;animation-delay: 1.5s; }
.matrix-overlay span:nth-child(7)  { left: 65%; animation-duration: 8.5s;animation-delay: 2.5s; }
.matrix-overlay span:nth-child(8)  { left: 75%; animation-duration: 6s;  animation-delay: 4s;   }
.matrix-overlay span:nth-child(9)  { left: 85%; animation-duration: 7s;  animation-delay: 1.2s; }
.matrix-overlay span:nth-child(10) { left: 95%; animation-duration: 9s;  animation-delay: 3.5s; }
@keyframes matrixFall {
  0%   { top: -100px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 110%; opacity: 0; }
}

/* ---------- 7) AURORA — colored light beams ---------- */
.aurora-overlay { position: absolute; inset: 0; pointer-events: none; z-index: 2; overflow: hidden; opacity: .55; }
.aurora-overlay::before, .aurora-overlay::after {
  content: ''; position: absolute; width: 60%; height: 200%; top: -50%;
  background: linear-gradient(90deg, transparent, rgba(43,187,255,.5), rgba(107,255,218,.4), rgba(201,162,75,.3), transparent);
  filter: blur(40px); animation: auroraSwirl 20s ease-in-out infinite;
}
.aurora-overlay::before { left: -20%; transform: rotate(15deg); }
.aurora-overlay::after  { right: -20%; transform: rotate(-15deg); animation-duration: 28s; animation-direction: reverse; opacity: .7; }
@keyframes auroraSwirl {
  0%, 100% { transform: rotate(15deg) translateY(0); opacity: .4; }
  50%      { transform: rotate(20deg) translateY(-50px); opacity: .8; }
}

/* ---------- 8) LINES — diagonal speed lines ---------- */
.lines-overlay { position: absolute; inset: 0; pointer-events: none; z-index: 2; overflow: hidden; opacity: .45; }
.lines-overlay::before {
  content: ''; position: absolute; inset: -10%;
  background-image:
    repeating-linear-gradient(35deg, transparent 0, transparent 80px, rgba(107,183,255,.35) 80px, rgba(107,183,255,.35) 82px);
  animation: linesSlide 8s linear infinite;
}
@keyframes linesSlide {
  from { transform: translateX(0); } to { transform: translateX(-160px); }
}

/* ---------- KEN BURNS — slow zoom + pan on background image ---------- */
.banner-slider.ken-burns .swiper-slide-active {
  animation: kenBurns 18s ease-out forwards;
}
@keyframes kenBurns {
  0%   { background-size: 105%; background-position: center; }
  100% { background-size: 120%; background-position: 50% 40%; }
}

/* ===================================================================
   Text Entry Animations — applied to .banner-slide-content children
   when their slide becomes active. Activated via class on .banner-slider
   (e.g. .text-fade-up, .text-slide-left, etc.)
   =================================================================== */

/* Default = tile-in (already defined further up) */

.banner-slider.text-fade-up .swiper-slide-active .banner-slide-content > * {
  animation: txtFadeUp .9s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes txtFadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

.banner-slider.text-slide-left .swiper-slide-active .banner-slide-content > * {
  animation: txtSlideLeft 1s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes txtSlideLeft { from { opacity: 0; transform: translateX(-80px); } to { opacity: 1; transform: translateX(0); } }

.banner-slider.text-slide-right .swiper-slide-active .banner-slide-content > * {
  animation: txtSlideRight 1s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes txtSlideRight { from { opacity: 0; transform: translateX(80px); } to { opacity: 1; transform: translateX(0); } }

.banner-slider.text-zoom-in .swiper-slide-active .banner-slide-content > * {
  animation: txtZoomIn .9s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes txtZoomIn { from { opacity: 0; transform: scale(.7); } to { opacity: 1; transform: scale(1); } }

.banner-slider.text-reveal-mask .swiper-slide-active .banner-slide-content > * {
  animation: txtReveal 1.1s cubic-bezier(.77,0,.18,1) both;
  clip-path: inset(0 100% 0 0);
}
@keyframes txtReveal { from { clip-path: inset(0 100% 0 0); opacity: 0; } to { clip-path: inset(0 0 0 0); opacity: 1; } }

.banner-slider.text-flip-up .swiper-slide-active .banner-slide-content > * {
  animation: txtFlipUp 1s cubic-bezier(.22,.61,.36,1) both;
  transform-origin: bottom center; perspective: 800px;
}
@keyframes txtFlipUp { from { opacity: 0; transform: rotateX(-60deg); } to { opacity: 1; transform: rotateX(0); } }

.banner-slider.text-scale-bounce .swiper-slide-active .banner-slide-content > * {
  animation: txtScaleBounce 1s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes txtScaleBounce {
  0%   { opacity: 0; transform: scale(.5); }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}

.banner-slider.text-none .swiper-slide-active .banner-slide-content > * { animation: none; }

/* Stagger the children */
.banner-slider:not(.text-none) .swiper-slide-active .banner-slide-content > *:nth-child(1) { animation-delay: .1s; }
.banner-slider:not(.text-none) .swiper-slide-active .banner-slide-content > *:nth-child(2) { animation-delay: .25s; }
.banner-slider:not(.text-none) .swiper-slide-active .banner-slide-content > *:nth-child(3) { animation-delay: .4s; }
.banner-slider:not(.text-none) .swiper-slide-active .banner-slide-content > *:nth-child(4) { animation-delay: .55s; }

/* ---------------- Digital animation overlay (banner) — BLUE TECH ---------------- */
.digital-overlay {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 2;
}
.digital-overlay .dot {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: #6BB7FF; box-shadow: 0 0 14px #6BB7FF;
  opacity: .7; animation: floatDot 6s ease-in-out infinite;
}
.digital-overlay .d1 { top: 18%; left: 12%; animation-delay: 0s; }
.digital-overlay .d2 { top: 32%; left: 78%; animation-delay: .8s; background: var(--gold); box-shadow: 0 0 14px var(--gold); }
.digital-overlay .d3 { top: 60%; left: 18%; animation-delay: 1.6s; background: #2BBBFF; box-shadow: 0 0 14px #2BBBFF; }
.digital-overlay .d4 { top: 75%; left: 65%; animation-delay: 2.4s; }
.digital-overlay .d5 { top: 28%; left: 45%; animation-delay: 3.2s; background: var(--gold); box-shadow: 0 0 14px var(--gold); }
.digital-overlay .d6 { top: 80%; left: 88%; animation-delay: 4s; background: #2BBBFF; box-shadow: 0 0 14px #2BBBFF; }
@keyframes floatDot {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .4; }
  50%      { transform: translate(20px, -30px) scale(1.4); opacity: .9; }
}
.digital-overlay .scan-line {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(107,183,255,.85), transparent);
  animation: scanMove 6s linear infinite;
  box-shadow: 0 0 20px rgba(107,183,255,.6);
}
@keyframes scanMove {
  0%   { top: -10%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 110%; opacity: 0; }
}

/* CCTV AI detection boxes */
.cctv-box {
  position: absolute; border: 2px solid rgba(255,255,255,.0);
  pointer-events: none; animation: aiPulse 2.4s ease-in-out infinite;
}
.cctv-box-1 { top: 28%; right: 8%; width: 16%; height: 22%; animation-delay: 0s; }
.cctv-box-2 { top: 58%; right: 22%; width: 14%; height: 18%; animation-delay: .9s; }
@keyframes aiPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(43,187,196,.0); }
  50%      { box-shadow: 0 0 0 4px rgba(43,187,196,.15); }
}
.cctv-corner {
  position: absolute; width: 14px; height: 14px; border: 2px solid var(--teal-bright);
}
.cctv-corner.tl { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.cctv-corner.tr { top: -2px; right: -2px; border-left: 0; border-bottom: 0; }
.cctv-corner.bl { bottom: -2px; left: -2px; border-right: 0; border-top: 0; }
.cctv-corner.br { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }
.cctv-label {
  position: absolute; top: -28px; left: 0;
  background: var(--teal-bright); color: var(--navy-deep);
  font-size: .65rem; font-weight: 800; padding: 3px 8px; border-radius: 4px;
  letter-spacing: .5px; white-space: nowrap;
}

/* ---------------- Chatbot toggle highlight ---------------- */
.tli-chat-toggle {
  position: relative;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft)) !important;
  color: var(--navy-deep) !important;
  box-shadow: 0 8px 24px rgba(201,162,75,.5) !important;
}
.tli-chat-toggle::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 3px solid var(--gold); opacity: .55; animation: pulse 1.8s ease-out infinite;
}
.tli-chat-toggle::after {
  content: 'Chat'; position: absolute; top: -8px; right: -8px;
  background: #ef4444; color: #fff; font-size: .65rem; font-weight: 800;
  padding: 2px 6px; border-radius: 8px; letter-spacing: .5px;
  box-shadow: 0 2px 6px rgba(239,68,68,.5);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); }
}

/* ---------------- Vendor / Certification badges (logo style) ---------------- */
.vendor-strip {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  border-radius: 18px; padding: 36px 32px; color: #fff;
  position: relative; overflow: hidden;
}
.vendor-strip::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 280px; height: 280px;
  background: var(--gold); border-radius: 50%; filter: blur(140px); opacity: .25;
}
.vendor-strip > * { position: relative; z-index: 1; }

.vendor-badge-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; }
.vendor-logo-badge {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px; padding: 18px 14px; text-align: center; transition: all .3s ease;
  display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 110px;
  backdrop-filter: blur(8px);
}
.vendor-logo-badge:hover {
  background: rgba(201,162,75,.15); border-color: rgba(201,162,75,.5); transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.vendor-logo-badge .vlb-mark {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--navy-deep); display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem; letter-spacing: -.5px; margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
}
.vendor-logo-badge .vlb-name { color: #fff; font-weight: 700; font-size: .85rem; line-height: 1.2; }
.vendor-logo-badge .vlb-status { color: rgba(255,255,255,.55); font-size: .7rem; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

.cert-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.cert-pill {
  background: #fff; border-radius: 12px; padding: 10px 18px; display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.cert-pill img { height: 44px; width: auto; object-fit: contain; }
.cert-pill strong { color: var(--navy); font-size: .9rem; }
.cert-pill small { color: var(--muted); font-size: .75rem; display: block; }

/* ---------------- Client Logo Marquee (with stylized "logos") ---------------- */
.client-logo {
  height: 64px; min-width: 160px;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 0 22px; transition: all .3s; gap: 10px;
  box-shadow: 0 2px 6px rgba(15,92,95,.05);
}
.client-logo:hover { border-color: var(--navy-soft); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.client-logo .cl-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--gold); font-weight: 900; font-size: .9rem; letter-spacing: -.5px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.client-logo .cl-text { font-weight: 700; color: var(--navy); font-size: .95rem; line-height: 1.1; white-space: nowrap; }
.client-logo.alt-1 .cl-mark { background: linear-gradient(135deg, var(--navy-soft), var(--teal-bright)); color: #fff; }
.client-logo.alt-2 .cl-mark { background: linear-gradient(135deg, var(--charcoal), #4A5460); color: var(--gold); }
.client-logo.alt-3 .cl-mark { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: var(--navy); }

/* ---------------- Google Maps embed card ---------------- */
.contact-map-embed {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); height: 260px;
}
.contact-map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-map-embed .contact-map-pin {
  position: absolute; bottom: 14px; left: 14px; background: var(--navy); color: var(--gold);
  padding: 7px 14px; border-radius: 20px; font-weight: 600; font-size: .82rem;
  box-shadow: 0 6px 14px rgba(11,31,58,.35); pointer-events: none;
  max-width: calc(100% - 28px); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.contact-map-embed .contact-map-pin i { color: var(--gold); margin-right: 6px; }

/* ---------------- Quote Modal ---------------- */
.quote-modal-content { border: 0; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.quote-modal-header {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  padding: 24px 28px; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  position: relative; overflow: hidden;
}
.quote-modal-header::before {
  content: ''; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px;
  background: var(--gold); border-radius: 50%; filter: blur(80px); opacity: .25; pointer-events: none;
}
.quote-modal-header > * { position: relative; z-index: 1; }
.btn-close-modal {
  background: rgba(255,255,255,.12); border: 0; color: #fff; width: 36px; height: 36px;
  border-radius: 50%; font-size: 1.4rem; cursor: pointer; line-height: 1; transition: all .2s;
  flex-shrink: 0;
}
.btn-close-modal:hover { background: var(--gold); color: var(--navy); }
.quote-form .form-control, .quote-form .form-select {
  border: 1px solid var(--line); border-radius: 8px; padding: .7rem 1rem; font-size: .95rem;
}
.quote-form .form-control:focus, .quote-form .form-select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,.18); outline: 0;
}

/* ---------------- Misc ---------------- */
.shape-divider { display: block; height: 60px; background: var(--bg); }
.bg-pattern {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(11,31,58,.07) 1px, transparent 0);
  background-size: 24px 24px;
}
.glass {
  background: rgba(255,255,255,.06); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 18px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .navbar-tli .navbar-collapse { background: #fff; padding: 16px; border-radius: 12px; margin-top: 12px; box-shadow: var(--shadow-md); }
  .division-card { min-height: 380px; padding: 28px; }
  .cta-strip { padding: 32px 24px; }
  .hero { padding: 60px 0; }
  .hero-stats { gap: 20px; }
  .floating-wa { bottom: 16px; right: 16px; }
  .tli-chatbot { bottom: 16px; left: 16px; }
  .tli-chat-panel { width: calc(100vw - 32px); height: 70vh; }
}
