/* ===== BRAND COLORS ===== */
:root {
  --bs-primary: #1771B8;
  --bs-primary-rgb: 23, 113, 184;
  --bs-warning: #F89C1E;
  --bs-warning-rgb: 248, 156, 30;
}

.text-warning { color: #F89C1E !important; }
.bg-warning {
  background-color: rgba(248, 156, 30, var(--bs-bg-opacity, 1)) !important;
}
.btn-warning {
  background-color: #F89C1E !important;
  border-color: #F89C1E !important;
  color: #fff !important;
}
.btn-warning:hover {
  background-color: #df8a14 !important;
  border-color: #df8a14 !important;
  color: #fff !important;
}
.btn-outline-warning {
  color: #F89C1E !important;
  border-color: #F89C1E !important;
}
.btn-outline-warning:hover {
  background-color: #F89C1E !important;
  color: #fff !important;
}
.border-warning { border-color: #F89C1E !important; }
.text-primary { color: #1771B8 !important; }
.bg-primary {
  background-color: rgba(23, 113, 184, var(--bs-bg-opacity, 1)) !important;
}
.btn-primary {
  background-color: #1771B8 !important;
  border-color: #1771B8 !important;
}
.btn-primary:hover {
  background-color: #125d94 !important;
  border-color: #125d94 !important;
}
.border-primary { border-color: #1771B8 !important; }

/* ===== BASE ===== */
html {
  font-size: 14px;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #1771B8;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  margin-bottom: 0;
  overflow-x: hidden;
}

/* ===== TOP BAR ===== */
.gz-topbar {
  background: #0b385b;
  padding: 0.4rem 0;
  font-size: 0.78rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1031;
}

.gz-topbar-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.gz-topbar-links a:hover {
  color: #F89C1E;
}

.gz-topbar-divider {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.7rem;
}

.gz-topbar-info {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
}

.gz-topbar-social a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  margin-left: 0.6rem;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.gz-topbar-social a:hover {
  color: #F89C1E;
}

/* ===== NAVBAR ===== */
.gz-navbar {
  padding: 0.6rem 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background: #fff !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  top: 0;
}

@media (min-width: 992px) {
  .gz-navbar {
    top: 32px;
  }
}

.gz-brand-logo {
  height: 60px;
  width: auto;
}

.gz-navbar .nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s ease;
  letter-spacing: 0.3px;
  color: #212529 !important;
}

.gz-navbar .nav-link:hover {
  color: #1771B8 !important;
}

.gz-navbar .navbar-toggler {
  border: 1px solid #dee2e6;
  color: #212529;
}

/* ===== HERO ===== */
.gz-hero {
  position: relative;
  min-height: 60vh;
  background: url('../hero.png') center/cover no-repeat;
  overflow: visible;
  padding-top: 140px;
  padding-bottom: 6rem;
}

.gz-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 56, 91, 0.5) 0%,
    rgba(11, 56, 91, 0.6) 60%,
    rgba(11, 56, 91, 0.95) 100%
  );
  pointer-events: none;
}

.gz-hero-title {
  font-family: 'Inter', sans-serif;
  line-height: 1.15;
}

.gz-hero-divider {
  width: 50px;
  height: 3px;
  background: #F89C1E;
  border-radius: 2px;
}

.opacity-85 {
  opacity: 0.85 !important;
}

.fw-800 {
  font-weight: 800;
}

.min-vh-75 {
  min-height: 75vh;
}

.gz-hero-graphic {
  position: relative;
}

.gz-hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gz-hero-highlights li {
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.07);
  border-left: 3px solid #F89C1E;
  border-radius: 0 0.75rem 0.75rem 0;
  margin-bottom: 0.75rem;
  backdrop-filter: blur(6px);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.3s ease;
}

.gz-hero-highlights li:hover {
  background: rgba(255, 255, 255, 0.12);
}

.gz-hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.gz-hero-stat {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.gz-hero-stat:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
}

.gz-hero-stat .gz-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #F89C1E;
  line-height: 1.2;
}

.gz-hero-stat .gz-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

/* ===== STATS ===== */
.gz-stats {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 2;
  margin-top: -2rem;
}

.gz-stat-item {
  padding: 1rem;
}

/* ===== AREA OF FOCUS ===== */
.gz-focus {
  background: linear-gradient(135deg, #0b385b 0%, #1771B8 100%);
  position: relative;
  z-index: 2;
  margin-top: -5rem;
  padding-top: 5rem;
  overflow: hidden;
}

.gz-focus::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(248, 156, 30, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.gz-focus .ls-wide {
  letter-spacing: 0.2em;
}

.gz-focus-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.gz-focus-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.gz-focus-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F79D1A, #D98815);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(248, 156, 30, 0.35);
}

.gz-focus-icon i {
  font-size: 2rem;
  color: #fff;
}

/* ===== SERVICE CARDS ===== */
.gz-service-card .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gz-service-card .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1) !important;
}

.gz-service-accent {
  min-width: 80px;
}

.gz-service-accent-warning { background: linear-gradient(180deg, #F89C1E, #df8a14); }
.gz-service-accent-danger  { background: linear-gradient(180deg, #dc3545, #b02a37); }
.gz-service-accent-success { background: linear-gradient(180deg, #198754, #146c43); }
.gz-service-accent-primary { background: linear-gradient(180deg, #1771B8, #125d94); }
.gz-service-accent-teal    { background: linear-gradient(180deg, #0dcaf0, #0aa2c0); }

.gz-service-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #e9ecef;
  line-height: 1;
}

.gz-value-badge {
  background: #f8f9fa;
  border-left: 3px solid #F89C1E;
  padding: 0.75rem 1rem;
  border-radius: 0 0.5rem 0.5rem 0;
}

/* ===== TEAM CARDS ===== */
.gz-team-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gz-team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12) !important;
}

.gz-team-header-1 { background: linear-gradient(135deg, #1771B8, #0b385b); }
.gz-team-header-2 { background: linear-gradient(135deg, #125d94, #1771B8); }
.gz-team-header-3 { background: linear-gradient(135deg, #0b385b, #125d94); }
.gz-team-header-4 { background: linear-gradient(135deg, #1771B8, #125d94); }
.gz-team-header-5 { background: linear-gradient(135deg, #0b385b, #1771B8); }

.gz-team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 3px solid rgba(248, 156, 30, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== CTA ===== */
.gz-cta {
  background: linear-gradient(135deg, #0b385b 0%, #1771B8 100%);
}

/* ===== READ MORE TOGGLE ===== */
.gz-read-more-btn {
  font-size: 0.82rem;
  transition: all 0.2s ease;
}

/* ===== PAGE HEADER (inner pages) ===== */
.gz-page-header {
  background: linear-gradient(135deg, #0b385b 0%, #125d94 40%, #1771B8 100%);
  padding-top: 150px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.gz-page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(248, 156, 30, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== OVERVIEW CARDS (Home) ===== */
.gz-overview-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gz-overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1) !important;
}

.gz-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== TEAM AVATAR LARGE (Team page) ===== */
.gz-team-avatar-lg {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 3px solid rgba(248, 156, 30, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== TEAM COVER IMAGE (Team page — full panel) ===== */
.gz-team-cover {
  height: 420px;
  overflow: hidden;
}

.gz-team-cover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.gz-team-cover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 56, 91, 0.9) 0%, rgba(11, 56, 91, 0.3) 50%, transparent 100%);
  z-index: 1;
}

/* ===== TEAM PREVIEW IMAGE (Index page cards) ===== */
.gz-team-preview-cover {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.gz-team-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.gz-team-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(248, 156, 30, 0.6);
  display: block;
}

.gz-footer-logo {
  height: 45px;
  width: auto;
}

/* ===== FOOTER ===== */
.gz-footer {
  background: #111827;
}

.gz-footer a:hover {
  color: #F89C1E !important;
  opacity: 1 !important;
}

/* ===== FAQ ACCORDION ===== */
.gz-accordion .accordion-button {
  background: #fff;
  font-size: 0.95rem;
  border-radius: 0.75rem !important;
}

.gz-accordion .accordion-button:not(.collapsed) {
  background: #f8f9fa;
  color: #1771B8;
  box-shadow: none;
}

.gz-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.gz-accordion .accordion-button::after {
  filter: none;
}

.gz-accordion .accordion-body {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .gz-hero {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 5rem;
  }

  .gz-hero-title {
    font-size: 1.8rem;
  }

  .gz-hero-title .fs-2 {
    font-size: 1.1rem !important;
  }

  .gz-service-accent {
    display: none !important;
  }

  .gz-team-cover {
    height: 320px;
  }

  .gz-hero-stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .gz-hero-title {
    font-size: 1.75rem;
  }

  .gz-service-number {
    font-size: 1.8rem;
  }
}