/* =========================================================
   KGS INKJET SOLUTIONS — Core Stylesheet
   Brand: Dark Navy / Royal Blue / Magenta-Pink / White / Gray
   ========================================================= */

:root {
  --navy: #0a1440;
  --navy-2: #0f1e5c;
  --navy-3: #142a7a;
  --blue: #1652d6;
  --blue-light: #3b7bff;
  --pink: #e6007e;
  --pink-2: #ff2f92;
  --white: #ffffff;
  --gray-50: #f6f8fb;
  --gray-100: #eef1f7;
  --gray-200: #e2e6ee;
  --gray-400: #9aa3b5;
  --gray-600: #5b6479;
  --gray-800: #2b3244;
  --ink: #10152b;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 2px 10px rgba(10, 20, 64, 0.06);
  --shadow-md: 0 10px 30px rgba(10, 20, 64, 0.10);
  --shadow-lg: 0 20px 50px rgba(10, 20, 64, 0.16);
  --gradient-navy: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 55%, var(--blue) 100%);
  --gradient-pink: linear-gradient(135deg, var(--pink) 0%, var(--pink-2) 100%);
  --transition: all 0.25s ease;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}

p { color: var(--gray-600); line-height: 1.75; }

a { text-decoration: none; color: var(--blue); transition: var(--transition); }
a:hover { color: var(--pink); }

::selection { background: var(--pink); color: #fff; }

img { max-width: 100%; }

.text-navy { color: var(--navy) !important; }
.text-blue { color: var(--blue) !important; }
.text-pink { color: var(--pink) !important; }
.bg-navy { background-color: var(--navy) !important; }
.bg-gray-50 { background-color: var(--gray-50) !important; }

/* ---------- Section framework ---------- */
.section { padding: 90px 0; }
.section-sm { padding: 55px 0; }

@media (max-width: 767.98px) {
  .section { padding: 60px 0; }
  .section-sm { padding: 36px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--pink);
  display: inline-block;
}

.section-title {
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--gray-600);
  max-width: 680px;
  font-size: 1.05rem;
}

.section-head { margin-bottom: 48px; }
.section-head.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.divider-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink); display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-head);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0.7rem 1.6rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gradient-pink);
  border: none;
  color: #fff;
  box-shadow: 0 8px 20px rgba(230, 0, 126, 0.28);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--pink-2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(230, 0, 126, 0.35);
}

.btn-navy {
  background: var(--navy);
  border: none;
  color: #fff;
}
.btn-navy:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }

.btn-outline-light-custom {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #fff;
}
.btn-outline-light-custom:hover {
  background: #fff; color: var(--navy); border-color: #fff;
}

.btn-outline-navy {
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

.btn-sm-custom { padding: 0.5rem 1.1rem; font-size: 0.88rem; }
.btn-lg-custom { padding: 0.95rem 2.2rem; font-size: 1.02rem; }

/* ---------- Preloader / Splash ---------- */
#splash-screen {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: var(--gradient-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#splash-screen.splash-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
body.splash-active { overflow: hidden; height: 100vh; }

.splash-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 40%, #000 10%, transparent 72%);
}
.splash-glow {
  position: absolute;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(230,0,126,0.35) 0%, transparent 70%);
  top: -160px; right: -160px;
  border-radius: 50%;
  pointer-events: none;
}
.splash-glow.glow-2 {
  background: radial-gradient(circle, rgba(59,123,255,0.35) 0%, transparent 70%);
  top: auto; bottom: -220px; left: -200px; right: auto;
}

.splash-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  padding: 2rem 1.25rem;
  animation: splashIn 0.9s ease both;
}
@keyframes splashIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.splash-logo {
  width: 128px;
  height: 128px;
  object-fit: contain;
  background: #fff;
  border-radius: 22px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.75rem;
}

.splash-inner h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.splash-tagline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  margin-bottom: 1.4rem;
}
.splash-tech-line {
  font-family: var(--font-head);
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pink-2);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.splash-services-line {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}
.splash-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.2rem;
}
.splash-contact a { color: rgba(255,255,255,0.9); }
.splash-contact a:hover { color: var(--pink-2); }
.splash-contact span i { color: var(--pink-2); margin-right: 6px; }

.btn-enter {
  background: var(--gradient-pink);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 1rem 2.75rem;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(230, 0, 126, 0.4);
  transition: var(--transition);
}
.btn-enter:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(230, 0, 126, 0.5);
}
.btn-enter i { margin-left: 8px; transition: var(--transition); }
.btn-enter:hover i { transform: translateX(4px); }

/* ---------- Navbar ---------- */
#main-navbar {
  background: #fff;
  box-shadow: 0 1px 0 rgba(10,20,64,0.06);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  transition: var(--transition);
}
#main-navbar.navbar-scrolled {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  box-shadow: var(--shadow-md);
}
#main-navbar .navbar-brand img { height: 46px; transition: var(--transition); }
#main-navbar.navbar-scrolled .navbar-brand img { height: 40px; }
#main-navbar .navbar-brand .brand-text { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.05rem; line-height: 1.1; }
#main-navbar .navbar-brand .brand-text small { display:block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em; color: var(--pink); text-transform: uppercase; }

#main-navbar .nav-link {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--navy);
  padding: 0.6rem 0.9rem !important;
  position: relative;
}
#main-navbar .nav-link.active,
#main-navbar .nav-link:hover { color: var(--pink); }
#main-navbar .nav-link.active::after {
  content: '';
  position: absolute;
  left: 0.9rem; right: 0.9rem; bottom: 0.2rem;
  height: 2px;
  background: var(--gradient-pink);
  border-radius: 2px;
}

#main-navbar .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 0.6rem;
  margin-top: 0.5rem;
}
#main-navbar .dropdown-item {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
}
#main-navbar .dropdown-item:hover { background: var(--gray-50); color: var(--pink); }
#main-navbar .dropdown-item i { width: 20px; color: var(--pink); }

.nav-cta-btn { margin-left: 0.5rem; }

@media (max-width: 991.98px) {
  #main-navbar .navbar-collapse {
    background: #fff;
    padding: 1rem 0.5rem;
    margin-top: 0.75rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
  }
  .nav-cta-btn { margin: 0.5rem 0.5rem 0; display: inline-block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--gradient-navy);
  padding: 150px 0 110px;
  overflow: hidden;
  color: #fff;
}
.hero .splash-bg-grid { opacity: 0.7; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  padding: 0.45rem 1rem; border-radius: 50px; text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.hero-eyebrow i { color: var(--pink-2); }
.hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.18; margin-bottom: 1.2rem; }
.hero h1 span { color: var(--pink-2); }
.hero p.lead { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 560px; }
.hero .hero-actions { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 2.2rem; margin-top: 3rem; flex-wrap: wrap; }
.hero-stats .stat-num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: #fff; }
.hero-stats .stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.06em; }

/* Page header (interior pages) */
.page-header {
  position: relative;
  background: var(--gradient-navy);
  padding: 130px 0 60px;
  color: #fff;
  overflow: hidden;
}
.page-header h1 { color: #fff; font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 0.6rem; }
.page-header .breadcrumb { margin-bottom: 0; }
.page-header .breadcrumb a { color: rgba(255,255,255,0.75); }
.page-header .breadcrumb-item.active { color: var(--pink-2); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ---------- Graphic Panels (replace product photography) ---------- */
.graphic-panel {
  position: relative;
  border-radius: 20px;
  background: var(--gradient-navy);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.graphic-panel .splash-bg-grid { opacity: 0.5; }
.graphic-panel .gp-icon {
  position: relative; z-index: 2;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.2rem;
  color: #fff;
  backdrop-filter: blur(2px);
}
.graphic-panel .gp-chip {
  position: absolute;
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  border-radius: 8px;
  padding: 0.5rem 0.85rem;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  z-index: 3;
  display: flex; align-items: center; gap: 6px;
}
.graphic-panel .gp-chip i { color: var(--pink); }
.graphic-panel .gp-chip.chip-1 { top: 14%; left: 8%; }
.graphic-panel .gp-chip.chip-2 { bottom: 12%; right: 8%; }
.graphic-panel .gp-beam {
  position: absolute; z-index: 1;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,0,126,0.28), transparent 70%);
}

.card-graphic {
  height: 170px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--gradient-navy);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.card-graphic i {
  font-size: 2.6rem; color: #fff; position: relative; z-index: 2;
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
}
.card-graphic .cg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.18) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.6;
}

/* ---------- Product Category Cards ---------- */
.solution-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.solution-card .sc-body { padding: 1.6rem 1.5rem 1.8rem; }
.solution-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.solution-card p { font-size: 0.92rem; margin-bottom: 1.1rem; }
.solution-card .sc-link {
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  color: var(--navy); display: inline-flex; align-items: center; gap: 6px;
}
.solution-card .sc-link i { transition: var(--transition); font-size: 0.78rem; }
.solution-card:hover .sc-link { color: var(--pink); }
.solution-card:hover .sc-link i { transform: translateX(4px); }

/* ---------- Feature / Why-us blocks ---------- */
.feature-block { text-align: center; padding: 1.75rem 1.25rem; height: 100%; }
.feature-icon {
  width: 74px; height: 74px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(22,82,214,0.1), rgba(230,0,126,0.1));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  color: var(--blue);
  transition: var(--transition);
}
.feature-block:hover .feature-icon {
  background: var(--gradient-pink); color: #fff; transform: rotate(-6deg) scale(1.05);
}
.feature-block h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.feature-block p { font-size: 0.9rem; margin-bottom: 0; }

/* ---------- Service cards ---------- */
.service-card {
  background: #fff; border-radius: var(--radius); padding: 2rem 1.6rem;
  height: 100%; border: 1px solid var(--gray-100); transition: var(--transition);
  position: relative;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: transparent; }
.service-card .num { position: absolute; top: 1.4rem; right: 1.6rem; font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; color: var(--gray-200); }
.service-card .feature-icon { margin: 0 0 1.2rem; }
.service-card h3 { font-size: 1.1rem; }
.service-card p { font-size: 0.9rem; }

/* ---------- Industry chips ---------- */
.industry-card {
  background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius);
  padding: 1.7rem 1rem; text-align: center; height: 100%; transition: var(--transition);
}
.industry-card:hover { background: var(--gradient-navy); border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.industry-card i { font-size: 1.9rem; color: var(--blue); margin-bottom: 0.9rem; display: block; transition: var(--transition); }
.industry-card:hover i { color: var(--pink-2); }
.industry-card span { font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; color: var(--navy); transition: var(--transition); }
.industry-card:hover span { color: #fff; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--gradient-navy);
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 3.5rem;
  color: #fff;
}
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.cta-band p { color: rgba(255,255,255,0.8); margin-bottom: 0; }

/* ---------- Product page ---------- */
.product-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--gray-100); height: 100%; transition: var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.product-card .pc-body { padding: 1.4rem 1.35rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.product-card .pc-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
  background: rgba(230,0,126,0.08); color: var(--pink); padding: 0.28rem 0.65rem;
  border-radius: 50px; margin-bottom: 0.7rem; text-transform: uppercase; width: fit-content;
}
.product-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.product-card p { font-size: 0.87rem; }
.product-card ul.pc-features { list-style: none; padding: 0; margin: 0.6rem 0 1.1rem; font-size: 0.83rem; }
.product-card ul.pc-features li { padding-left: 1.3rem; position: relative; margin-bottom: 0.35rem; color: var(--gray-600); }
.product-card ul.pc-features li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  color: var(--pink); position: absolute; left: 0; font-size: 0.72rem; top: 0.2rem;
}
.product-card .pc-footer { margin-top: auto; }

.filter-pills .btn {
  border-radius: 50px; padding: 0.45rem 1.15rem; font-size: 0.85rem;
  border: 1.5px solid var(--gray-200); color: var(--navy); background: #fff; margin: 0.25rem;
}
.filter-pills .btn.active, .filter-pills .btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---------- About page ---------- */
.strength-list { list-style: none; padding: 0; margin: 0; }
.strength-list li {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 0.7rem 0; border-bottom: 1px dashed var(--gray-200);
  font-weight: 500; color: var(--navy); font-family: var(--font-head); font-size: 0.94rem;
}
.strength-list li:last-child { border-bottom: none; }
.strength-list li i { color: var(--pink); margin-top: 3px; }

.mv-card { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); height: 100%; border-top: 3px solid var(--pink); }
.mv-card i { font-size: 1.8rem; color: var(--blue); margin-bottom: 1rem; }
.mv-card h3 { font-size: 1.2rem; }

/* ---------- Forms ---------- */
.form-control, .form-select {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  font-size: 0.92rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--blue); box-shadow: 0 0 0 0.2rem rgba(22,82,214,0.12);
}
.form-label { font-family: var(--font-head); font-weight: 600; font-size: 0.86rem; color: var(--navy); margin-bottom: 0.4rem; }
.form-card { background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); padding: 2.2rem; }

#form-alert-box .alert { border-radius: var(--radius-sm); font-size: 0.9rem; }

.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); }

.contact-info-card {
  background: var(--gradient-navy); color: #fff; border-radius: 18px; padding: 2.2rem; position: relative; overflow: hidden;
}
.contact-info-card .ci-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.4rem; position: relative; z-index: 2; }
.contact-info-card .ci-item i {
  width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--pink-2);
}
.contact-info-card .ci-item a, .contact-info-card .ci-item span { color: rgba(255,255,255,0.85); font-size: 0.92rem; }
.contact-info-card .ci-item strong { display: block; color: #fff; font-family: var(--font-head); font-size: 0.92rem; margin-bottom: 0.2rem; }
.contact-info-card .social-row { display: flex; gap: 0.6rem; position: relative; z-index: 2; margin-top: 1.6rem; }
.contact-info-card .social-row a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; color: #fff; border: 1px solid rgba(255,255,255,0.2);
}
.contact-info-card .social-row a:hover { background: var(--gradient-pink); border-color: transparent; }

/* ---------- Modal ---------- */
.modal-content { border: none; border-radius: 16px; overflow: hidden; }
.modal-header { background: var(--gradient-navy); color: #fff; border: none; padding: 1.4rem 1.6rem; }
.modal-header .modal-title { font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; }
.modal-header .btn-close { filter: invert(1); }
.modal-body { padding: 1.6rem; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); position: relative; overflow: hidden; }
footer.site-footer .footer-top { padding: 70px 0 40px; position: relative; z-index: 2; }
footer.site-footer .footer-logo { height: 50px; background: #fff; border-radius: 10px; padding: 6px; margin-bottom: 1.2rem; }
footer.site-footer p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
footer.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1.3rem; font-family: var(--font-head); }
footer.site-footer h4::after { content: ''; display: block; width: 32px; height: 2px; background: var(--gradient-pink); margin-top: 0.7rem; }
footer.site-footer ul { list-style: none; padding: 0; margin: 0; }
footer.site-footer ul li { margin-bottom: 0.7rem; }
footer.site-footer ul li a { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
footer.site-footer ul li a:hover { color: var(--pink-2); padding-left: 4px; }
footer.site-footer .foot-contact-item { display: flex; gap: 0.7rem; margin-bottom: 1rem; font-size: 0.9rem; }
footer.site-footer .foot-contact-item i { color: var(--pink-2); margin-top: 3px; }
footer.site-footer .foot-contact-item a { color: rgba(255,255,255,0.7); }
footer.site-footer .social-row a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center; color: #fff; margin-right: 0.5rem;
  border: 1px solid rgba(255,255,255,0.14);
}
footer.site-footer .social-row a:hover { background: var(--gradient-pink); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; position: relative; z-index: 2; }
.footer-bottom p { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.6); }

/* ---------- Back to top ---------- */
#backToTop {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gradient-pink); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: var(--transition);
}
#backToTop.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- WhatsApp float ---------- */
#waFloat {
  position: fixed; bottom: 26px; left: 26px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: var(--shadow-md);
}
.brochure-btn { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.reveal-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Breadcrumb chips row (technology bar) ---------- */
.tech-bar { background: var(--gray-50); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); padding: 18px 0; }
.tech-bar .tb-item { font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--navy); display: flex; align-items: center; gap: 8px; }
.tech-bar .tb-item i { color: var(--pink); }

/* ---------- Utilities ---------- */
.shadow-soft { box-shadow: var(--shadow-md); }
.rounded-xl { border-radius: 18px; }
.badge-soft { background: rgba(22,82,214,0.08); color: var(--blue); font-weight: 600; font-size: 0.72rem; padding: 0.35rem 0.7rem; border-radius: 50px; }
.badge-soft-pink { background: rgba(230,0,126,0.08); color: var(--pink); font-weight: 600; font-size: 0.72rem; padding: 0.35rem 0.7rem; border-radius: 50px; }

@media (max-width: 575.98px) {
  .cta-band { padding: 2.2rem 1.4rem; }
  .hero { padding: 130px 0 70px; }
  .page-header { padding: 110px 0 46px; }
}
