/* ==========================================================================
   Gopang IT Solution — Premium Design System
   Minimal · White · One accent · 8pt grid · Enterprise
   This file loads last and is the single source of truth for the visual system.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand */
  --gis-accent: #0f62fe;
  --gis-accent-hover: #0a4ed1;
  --gis-accent-soft: #eef3ff;

  /* Ink & text */
  --gis-ink: #0b0d12;          /* headings */
  --gis-text: #565d6b;         /* body */
  --gis-muted: #8a909c;        /* secondary / labels */

  /* Surfaces */
  --gis-bg: #ffffff;
  --gis-bg-subtle: #f7f8fa;    /* alternate sections — flat, no gradient */
  --gis-dark: #0b0d12;         /* dark accent blocks (footer, info card) */

  /* Lines & shadow */
  --gis-border: #e8eaee;
  --gis-border-strong: #d7dae0;
  --gis-shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.04);
  --gis-shadow: 0 6px 24px rgba(16, 24, 40, 0.06);
  --gis-shadow-lg: 0 18px 50px rgba(16, 24, 40, 0.09);

  /* Radius */
  --gis-r-xs: 8px;
  --gis-r-sm: 10px;
  --gis-r: 14px;
  --gis-r-lg: 20px;

  --gis-font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

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

body.body-wrapper,
body {
  font-family: var(--gis-font);
  color: var(--gis-text);
  background: var(--gis-bg) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.section-title h2 {
  font-family: var(--gis-font);
  color: var(--gis-ink);
  letter-spacing: -0.02em;
  font-weight: 700;
}

p { color: var(--gis-text); }

a { text-decoration: none; transition: color 0.18s ease; }

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

/* --------------------------------------------------------------------------
   Section rhythm + headings
   -------------------------------------------------------------------------- */
.gis-section { padding: 112px 0; }
.gis-section-alt { background: var(--gis-bg-subtle); }

.section-title { margin-bottom: 8px; }

.section-title span {
  display: inline-block;
  color: var(--gis-accent);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.section-title h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-title p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gis-text);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.theme-btn,
a.theme-btn,
button.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--gis-accent) !important;
  background-image: none !important;
  color: #fff !important;
  border: 1px solid var(--gis-accent);
  border-radius: var(--gis-r-sm) !important;
  font-weight: 600;
  font-size: 0.97rem;
  line-height: 1;
  padding: 15px 26px;
  box-shadow: none;
  transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.theme-btn::before,
.theme-btn::after { display: none !important; }

.theme-btn:hover,
a.theme-btn:hover,
button.theme-btn:hover {
  background: var(--gis-accent-hover) !important;
  border-color: var(--gis-accent-hover);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(15, 98, 254, 0.22);
}

.theme-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 26px;
  border-radius: var(--gis-r-sm);
  border: 1px solid var(--gis-border-strong);
  background: #fff;
  color: var(--gis-ink);
  font-weight: 600;
  font-size: 0.97rem;
  line-height: 1;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.theme-btn-outline:hover {
  background: var(--gis-bg-subtle);
  border-color: var(--gis-ink);
  color: var(--gis-ink);
  transform: translateY(-1px);
}

.theme-btn-outline i { color: #25d366; }

.gis-link {
  color: var(--gis-accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.gis-link i { transition: transform 0.18s ease; }
.gis-link:hover { color: var(--gis-accent-hover); }
.gis-link:hover i { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   Top utility bar — thin, light, minimal
   -------------------------------------------------------------------------- */
.top-bar-wrapper {
  background: var(--gis-bg-subtle) !important;
  border-bottom: 1px solid var(--gis-border);
  padding: 9px 0;
  font-size: 0.85rem;
}
.top-bar-wrapper a { color: var(--gis-text); }
.top-bar-wrapper a:hover { color: var(--gis-accent); }
.top-bar-wrapper .top-left a { margin-right: 22px; display: inline-flex; align-items: center; gap: 7px; }
.top-bar-wrapper .top-left a i,
.top-bar-wrapper .social-pages a i { color: var(--gis-accent); }
.top-bar-wrapper .social-pages a { margin-left: 14px; color: var(--gis-text); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
header.header-1.gis-main-header {
  background: #fff !important;
  border-bottom: 1px solid var(--gis-border);
  box-shadow: none;
  padding: 6px 0;
}
header.header-1.gis-sticky-header { position: sticky; top: 0; z-index: 999; transition: box-shadow 0.25s ease; }
header.header-1.gis-header-scrolled {
  box-shadow: 0 1px 0 var(--gis-border), 0 8px 24px rgba(16, 24, 40, 0.06);
  background: rgba(255, 255, 255, 0.92) !important;
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
}
header.header-1.gis-main-header .logo img { height: 42px; width: auto; }

header.header-1.gis-main-header .main-menu > ul > li > a {
  color: var(--gis-ink);
  font-weight: 500;
  font-size: 0.96rem;
  padding: 10px 14px;
  border-radius: var(--gis-r-xs);
  background: transparent !important;
  transition: color 0.18s ease;
}
header.header-1.gis-main-header .main-menu > ul > li:hover > a,
header.header-1.gis-main-header .main-menu > ul > li > a:hover {
  color: var(--gis-accent);
  background: transparent !important;
}
header.header-1.gis-main-header .main-menu > ul > li > a.gis-admin-nav-link {
  background: var(--gis-ink) !important;
  background-image: none !important;
  color: #fff !important;
  padding: 9px 18px;
  border-radius: var(--gis-r-xs);
  margin-left: 8px;
}
header.header-1.gis-main-header .main-menu > ul > li > a.gis-admin-nav-link:hover {
  background: #000 !important;
  color: #fff !important;
}

/* Dropdowns */
header.header-1 .main-menu ul li > ul,
header.header-1.gis-main-header .main-menu ul > li > ul {
  background: #fff;
  border: 1px solid var(--gis-border);
  border-radius: var(--gis-r);
  box-shadow: var(--gis-shadow-lg);
  padding: 8px;
}
header.header-1 .main-menu ul li > ul li a {
  border-radius: var(--gis-r-xs);
  padding: 9px 14px;
  color: var(--gis-text);
}
header.header-1 .main-menu ul li > ul li a:hover {
  background: var(--gis-bg-subtle);
  color: var(--gis-accent);
}

header.header-1.gis-main-header #hamburger {
  background: var(--gis-bg-subtle);
  border: 1px solid var(--gis-border);
  border-radius: var(--gis-r-xs);
  color: var(--gis-ink);
}

/* --------------------------------------------------------------------------
   Cards (services / why / generic)
   -------------------------------------------------------------------------- */
.gis-card {
  background: #fff;
  border: 1px solid var(--gis-border);
  border-radius: var(--gis-r);
  padding: 30px 28px;
  height: 100%;
  box-shadow: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.gis-card:hover {
  border-color: var(--gis-border-strong);
  box-shadow: var(--gis-shadow);
  transform: translateY(-4px);
}
.gis-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gis-accent-soft);
  margin-bottom: 22px;
}
.gis-card-icon img { width: 26px; height: 26px; }
.gis-card h3,
.gis-card h4 { font-size: 1.18rem; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.gis-card h3 a { color: var(--gis-ink); }
.gis-card h3 a:hover { color: var(--gis-accent); }
.gis-card p { margin-bottom: 18px; line-height: 1.65; font-size: 0.97rem; }

/* Why-choose item */
.gis-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.gis-why-item {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: var(--gis-r);
  background: #fff;
  border: 1px solid var(--gis-border);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.gis-why-item:hover { border-color: var(--gis-border-strong); box-shadow: var(--gis-shadow-sm); }
.gis-why-item h3 { font-size: 1.05rem; margin-bottom: 4px; }
.gis-why-item p { font-size: 0.92rem; margin: 0; }
.gis-why-num {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--gis-accent-soft);
  color: var(--gis-accent);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   Technologies
   -------------------------------------------------------------------------- */
.gis-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 14px;
}
.gis-tech-item {
  text-align: center;
  padding: 26px 16px;
  border-radius: var(--gis-r);
  background: #fff;
  border: 1px solid var(--gis-border);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.gis-tech-item:hover {
  border-color: var(--gis-border-strong);
  transform: translateY(-3px);
  box-shadow: var(--gis-shadow-sm);
}
.gis-tech-item i { font-size: 1.85rem; color: var(--gis-ink); margin-bottom: 12px; display: block; }
.gis-tech-item:hover i { color: var(--gis-accent); }
.gis-tech-item span { font-weight: 600; color: var(--gis-ink); font-size: 0.88rem; }

/* --------------------------------------------------------------------------
   Process timeline — flat, hairline connector
   -------------------------------------------------------------------------- */
.gis-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0;
  position: relative;
}
.gis-process-step { text-align: center; padding: 8px 16px; position: relative; }
.gis-process-step::after {
  content: '';
  position: absolute;
  top: 26px;
  right: -50%;
  width: 100%;
  height: 1px;
  background: var(--gis-border-strong);
}
.gis-process-step:last-child::after { display: none; }
.gis-process-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--gis-border-strong);
  color: var(--gis-ink);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  position: relative; z-index: 1;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.gis-process-step:hover .gis-process-num { border-color: var(--gis-accent); color: var(--gis-accent); }
.gis-process-step h4 { font-size: 1rem; margin-bottom: 6px; }
.gis-process-step p { font-size: 0.85rem; margin: 0; line-height: 1.55; }

/* --------------------------------------------------------------------------
   Industries (image cards — overlay kept only for text legibility)
   -------------------------------------------------------------------------- */
.gis-industry-card {
  position: relative;
  border-radius: var(--gis-r);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--gis-border);
}
.gis-industry-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11, 13, 18, 0.88) 0%, rgba(11, 13, 18, 0.18) 55%, transparent 100%);
  z-index: 1;
}
.gis-industry-card .content { position: relative; z-index: 2; padding: 22px; color: #fff; }
.gis-industry-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 4px; }
.gis-industry-card p { color: rgba(255, 255, 255, 0.82); font-size: 0.88rem; margin: 0; }

/* Portfolio cards reuse the template .single-project-card; keep clean */
.single-project-card {
  position: relative;
  border-radius: var(--gis-r);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--gis-border);
}
.single-project-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11, 13, 18, 0.9) 0%, rgba(11, 13, 18, 0.15) 60%, transparent 100%);
  z-index: 1;
  transition: opacity 0.25s ease;
}
.single-project-card .content { position: relative; z-index: 2; padding: 24px; color: #fff; }
.single-project-card .content h3 { color: #fff; font-size: 1.2rem; margin-bottom: 4px; }
.single-project-card .content p { color: rgba(255, 255, 255, 0.82); margin: 0; font-size: 0.9rem; }
.single-project-card:hover::before { opacity: 0.85; }

/* --------------------------------------------------------------------------
   Case studies
   -------------------------------------------------------------------------- */
.gis-case-card {
  border-radius: var(--gis-r);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gis-border);
  height: 100%;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.gis-case-card:hover { border-color: var(--gis-border-strong); box-shadow: var(--gis-shadow); transform: translateY(-4px); }
.gis-case-thumb { height: 210px; background-size: cover; background-position: center; }
.gis-case-body { padding: 26px; }
.gis-case-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--gis-accent-soft);
  color: var(--gis-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.gis-case-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.gis-case-body p { font-size: 0.95rem; }
.gis-case-metrics { display: flex; gap: 28px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--gis-border); }
.gis-case-metrics div strong { display: block; color: var(--gis-ink); font-size: 1.4rem; font-weight: 800; }
.gis-case-metrics div span { font-size: 0.8rem; color: var(--gis-muted); }

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.gis-pricing-card {
  border-radius: var(--gis-r);
  padding: 34px 30px;
  background: #fff;
  border: 1px solid var(--gis-border);
  height: 100%;
  position: relative;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.gis-pricing-card:hover { border-color: var(--gis-border-strong); box-shadow: var(--gis-shadow); }
.gis-pricing-card.featured { border-color: var(--gis-accent); box-shadow: var(--gis-shadow); }
.gis-pricing-card h3 { font-size: 1.2rem; margin-bottom: 14px; }
.gis-pricing-card .price { font-size: 2.4rem; font-weight: 800; color: var(--gis-ink); letter-spacing: -0.03em; }
.gis-pricing-card .price span { font-size: 0.95rem; font-weight: 500; color: var(--gis-muted); }
.gis-pricing-card > p { font-size: 0.95rem; margin-top: 6px; }
.gis-pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gis-accent); color: #fff;
  padding: 6px 16px; border-radius: 999px; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.04em;
}
.gis-pricing-list { list-style: none; padding: 0; margin: 22px 0; }
.gis-pricing-list li { padding: 9px 0; display: flex; align-items: flex-start; gap: 10px; font-size: 0.93rem; color: var(--gis-text); border-bottom: 1px solid var(--gis-border); }
.gis-pricing-list li:last-child { border-bottom: 0; }
.gis-pricing-list li i { color: var(--gis-accent); margin-top: 3px; font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Stats — clean white band with hairline dividers
   -------------------------------------------------------------------------- */
.gis-stats-bar {
  background: #fff !important;
  background-image: none !important;
  border-top: 1px solid var(--gis-border);
  border-bottom: 1px solid var(--gis-border);
  padding: 72px 0;
}
.gis-stats-bar .row > [class*="col-"] { position: relative; }
.gis-stats-bar .row > [class*="col-"]::after {
  content: '';
  position: absolute; top: 14%; right: 0; height: 72%; width: 1px;
  background: var(--gis-border);
}
.gis-stats-bar .row > [class*="col-"]:last-child::after,
.gis-stats-bar .row > [class*="col-"]:nth-child(2)::after { display: none; }
.gis-stat-item { text-align: center; color: var(--gis-ink); }
.gis-stat-item .num {
  font-size: clamp(2.2rem, 4.2vw, 3.1rem);
  font-weight: 800;
  color: var(--gis-ink);
  letter-spacing: -0.03em;
  display: block;
}
.gis-stat-item .label { color: var(--gis-muted); font-size: 0.92rem; margin-top: 8px; font-weight: 500; }

/* --------------------------------------------------------------------------
   Reviews / testimonials
   -------------------------------------------------------------------------- */
.gis-reviews-wrap {
  background: #fff;
  border: 1px solid var(--gis-border);
  border-radius: var(--gis-r-lg);
  padding: 40px;
}
.gis-google-header { display: flex; align-items: center; gap: 18px; margin-bottom: 30px; flex-wrap: wrap; }
.gis-google-score { font-size: 2.8rem; font-weight: 800; color: var(--gis-ink); line-height: 1; letter-spacing: -0.03em; }
.gis-stars { color: #f5a623; font-size: 1.05rem; letter-spacing: 1px; }
.gis-google-brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: var(--gis-ink); font-size: 0.95rem; }
.gis-google-brand svg { flex-shrink: 0; }
.gis-review-card {
  background: #fff;
  border-radius: var(--gis-r);
  padding: 28px;
  border: 1px solid var(--gis-border);
  height: 100%;
}
.gis-review-card p { font-size: 0.98rem; line-height: 1.7; color: var(--gis-text); }
.gis-review-card footer { margin-top: 14px; font-size: 0.92rem; color: var(--gis-muted); }
.gis-review-card footer strong { color: var(--gis-ink); }
.gis-review-card .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gis-accent-soft); color: var(--gis-accent);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem;
}
.gis-review-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.gis-review-meta strong { color: var(--gis-ink); display: block; font-size: 0.95rem; }
blockquote.gis-review-card { margin: 0; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.gis-contact-section { background: var(--gis-bg-subtle); }
.gis-contact-info-card {
  background: var(--gis-dark);
  background-image: none;
  border-radius: var(--gis-r-lg);
  padding: 40px 34px;
  color: #fff;
  height: 100%;
}
.gis-contact-info-card h3 { color: #fff; margin-bottom: 26px; font-size: 1.3rem; }
.gis-contact-item { display: flex; gap: 16px; margin-bottom: 22px; color: rgba(255, 255, 255, 0.8); }
.gis-contact-item strong { color: #fff; font-weight: 600; }
.gis-contact-item a { color: rgba(255, 255, 255, 0.85); }
.gis-contact-item a:hover { color: #fff; }
.gis-contact-item i {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.gis-contact-form-wrap {
  background: #fff;
  border: 1px solid var(--gis-border);
  border-radius: var(--gis-r-lg);
  padding: 38px 34px;
  box-shadow: var(--gis-shadow-sm);
}
.gis-contact-form .form-label { font-weight: 500; color: var(--gis-ink); font-size: 0.9rem; margin-bottom: 6px; }
.gis-contact-form .form-control,
.gis-contact-form .form-select {
  border-radius: var(--gis-r-sm);
  border: 1px solid var(--gis-border-strong);
  padding: 12px 15px;
  font-size: 0.95rem;
  color: var(--gis-ink);
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.gis-contact-form .form-control::placeholder { color: var(--gis-muted); }
.gis-contact-form .form-control:focus,
.gis-contact-form .form-select:focus {
  border-color: var(--gis-accent);
  box-shadow: 0 0 0 3px rgba(15, 98, 254, 0.12);
  outline: none;
}
.gis-form-feedback { margin-top: 16px; padding: 12px 16px; border-radius: var(--gis-r-sm); font-size: 0.9rem; }
.gis-form-success { background: rgba(16, 185, 129, 0.1); color: #047857; }

/* --------------------------------------------------------------------------
   CTA banner — light, framed, premium (no stacked dark before footer)
   -------------------------------------------------------------------------- */
.cta-banner-box {
  background: var(--gis-bg-subtle) !important;
  background-image: none !important;
  border: 1px solid var(--gis-border);
  border-radius: var(--gis-r-lg);
  overflow: hidden;
  position: relative;
  padding: 56px 48px;
}
.cta-banner-box::before { display: none !important; }
.cta-banner-box .section-title span { color: var(--gis-accent); }
.cta-banner-box .section-title h2,
.cta-banner-box .text-white { color: var(--gis-ink) !important; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer-1 .footer-widgets-wrapper {
  background: var(--gis-dark) !important;
  background-image: none !important;
  padding: 80px 0 56px;
}
.footer-1 .footer-widgets-wrapper p,
.footer-1 .footer-widgets-wrapper li a,
.footer-1 .footer-widgets-wrapper .contact-info span,
.footer-1 .footer-widgets-wrapper .contact-info a { color: rgba(255, 255, 255, 0.66); }
.footer-1 .footer-widgets-wrapper li a:hover,
.footer-1 .footer-widgets-wrapper .contact-info a:hover { color: #fff; }
.footer-1 .footer-widgets-wrapper .wid-title h3 { color: #fff; font-size: 1.05rem; margin-bottom: 22px; }
.footer-1 .single-footer-wid ul li { margin-bottom: 11px; }
.footer-1 .single-footer-wid ul { list-style: none; padding: 0; }
.footer-1 .single-contact-info { display: flex; gap: 12px; margin-bottom: 16px; align-items: center; }
.footer-1 .single-contact-info .icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0;
}
.footer-bottom {
  background: #07090d;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-bottom p { color: rgba(255, 255, 255, 0.6); margin: 0; }
.footer-bottom p strong { color: #fff; }
.footer-bottom .social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255, 255, 255, 0.08); color: #fff; margin-left: 8px;
  transition: background 0.18s ease;
}
.footer-bottom .social-links a:hover { background: var(--gis-accent); }

/* --------------------------------------------------------------------------
   WhatsApp float
   -------------------------------------------------------------------------- */
.gis-whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease;
}
.gis-whatsapp-float:hover { transform: scale(1.06); color: #fff; }
.gis-whatsapp-pulse { display: none; }

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */
.gis-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.gis-reveal.gis-visible { opacity: 1; transform: translateY(0); }

/* Generic template service boxes (inner pages) */
.single-service-box,
.single-service-left-icon {
  border-radius: var(--gis-r);
  border: 1px solid var(--gis-border);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.single-service-box:hover,
.single-service-left-icon:hover { transform: translateY(-3px); border-color: var(--gis-border-strong); box-shadow: var(--gis-shadow-sm); }

/* Preloader */
#preloader.loaded { opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease; }

/* Accessibility focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gis-accent);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .gis-section { padding: 80px 0; }
  .gis-process-step::after { display: none; }
  .gis-stats-bar .row > [class*="col-"]::after { display: none; }
}

@media (max-width: 575px) {
  .gis-section { padding: 60px 0; }
  .cta-banner-box { padding: 40px 24px; }
  .gis-reviews-wrap { padding: 26px; }
  .gis-contact-info-card,
  .gis-contact-form-wrap { padding: 28px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gis-reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

/* Active nav state (set by premium.js initActiveNav) */
header.header-1.gis-main-header .main-menu > ul > li > a.gis-nav-active {
  color: var(--gis-accent);
}
.mobile-nav .sidebar-nav .metismenu a.gis-nav-active {
  color: var(--gis-accent);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Mobile navigation — collapsible submenus (metisMenu)
   -------------------------------------------------------------------------- */
.mobile-nav .sidebar-nav .metismenu .gis-mm-arrow {
  float: right;
  margin-top: 4px;
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}
.mobile-nav .sidebar-nav .metismenu li.active > a > .gis-mm-arrow {
  transform: rotate(180deg);
}
/* Nested (collapsible) submenu items sit in a subtle inset panel */
.mobile-nav .sidebar-nav .metismenu ul {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  margin: 2px 0 6px;
  overflow: hidden;
}
.mobile-nav .sidebar-nav .metismenu ul a {
  font-size: 0.92rem;
}
/* Let the mobile drawer scroll if the menu is taller than the viewport */
.mobile-nav {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* --------------------------------------------------------------------------
   Global responsive safeguards + tuning
   -------------------------------------------------------------------------- */
html, body { overflow-x: hidden; }
img, svg, video { max-width: 100%; height: auto; }
.table-responsive, .gis-table-scroll { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }

@media (max-width: 1199px) {
  header.header-1.gis-main-header .main-menu > ul > li > a { padding: 10px 10px; font-size: 0.9rem; }
}

@media (max-width: 991px) {
  .gis-section-title, .gis-section h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .gis-hero-premium h1, h1 { font-size: clamp(1.9rem, 6vw, 2.6rem); line-height: 1.2; }
  .gis-hero-actions { flex-wrap: wrap; }
  .gis-hero-visual { margin-top: 40px; }
  .gis-stats-bar .row > [class*="col-"] { margin-bottom: 24px; }
  .mobile-nav { width: 300px; }
}

@media (max-width: 767px) {
  .gis-section { padding: 56px 0; }
  .gis-hero-premium { padding: 60px 0 40px; }
  .gis-hero-stats { gap: 20px; flex-wrap: wrap; }
  .gis-card { padding: 24px 20px; }
  .theme-btn, .theme-btn-outline { width: 100%; justify-content: center; text-align: center; }
  .gis-hero-actions .theme-btn,
  .gis-hero-actions .theme-btn-outline { width: auto; }
  .cta-banner-box .theme-btn { width: auto; }
}

@media (max-width: 480px) {
  .gis-hero-premium h1 { font-size: clamp(1.6rem, 8vw, 2rem); }
  .gis-hero-stat strong { font-size: 1.5rem; }
  .gis-hero-actions { flex-direction: column; align-items: stretch; }
  .gis-hero-actions .theme-btn,
  .gis-hero-actions .theme-btn-outline { width: 100%; justify-content: center; }
  .mobile-nav { width: 88vw; max-width: 320px; }
}
