/* ============================================================
   GBTL — Main Stylesheet
   Premium International Corporate Theme
   ============================================================ */

@import url("variables.css");

/* ------------------------------------------------------------
   Base / Reset
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--gbtl-text);
  background-color: var(--gbtl-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gbtl-link);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover,
a:focus-visible {
  color: var(--gbtl-link-hover);
}

:focus-visible {
  outline: 2px solid var(--gbtl-blue);
  outline-offset: 3px;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--gbtl-navy);
  margin-bottom: var(--space-4);
}

h1, .h1 { font-size: var(--fs-hero); }
h2, .h2 { font-size: clamp(1.75rem, 3.5vw, var(--fs-3xl)); }
h3, .h3 { font-size: clamp(1.25rem, 2.5vw, var(--fs-xl)); }
h4, .h4 { font-size: var(--fs-lg); }

p {
  margin-bottom: var(--space-4);
  color: var(--gbtl-text-muted);
}

ul, ol {
  padding-left: 1.25rem;
}

.section {
  padding: var(--section-padding) 0;
}

.section-alt {
  background-color: var(--gbtl-bg-alt);
}

.container-narrow {
  max-width: 760px;
  margin-inline: auto;
}

/* ------------------------------------------------------------
   Page Loader
   ------------------------------------------------------------ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: var(--z-loader);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--gbtl-navy-dark), var(--gbtl-navy));
  transition: opacity var(--duration-slow) var(--ease-out),
              visibility var(--duration-slow) var(--ease-out);
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  color: var(--gbtl-white);
}

.loader-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--gbtl-red);
  border-radius: 50%;
  animation: gbtl-spin 0.8s linear infinite;
}

.loader-brand {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xl);
  letter-spacing: 0.08em;
}

@keyframes gbtl-spin {
  to { transform: rotate(360deg); }
}

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */
.btn {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  letter-spacing: 0.02em;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary,
.btn-gbtl {
  background-color: var(--gbtl-navy);
  border-color: var(--gbtl-navy);
  color: var(--gbtl-white);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-gbtl:hover,
.btn-gbtl:focus {
  background-color: var(--gbtl-red);
  border-color: var(--gbtl-red);
  color: var(--gbtl-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--gbtl-white);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background: var(--gbtl-white);
  border-color: var(--gbtl-white);
  color: var(--gbtl-navy);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  border-color: var(--gbtl-navy);
  color: var(--gbtl-navy);
}

.btn-outline-navy:hover,
.btn-outline-navy:focus {
  background: var(--gbtl-navy);
  color: var(--gbtl-white);
  transform: translateY(-2px);
}

.btn-red {
  background-color: var(--gbtl-red);
  border-color: var(--gbtl-red);
  color: var(--gbtl-white);
}

.btn-red:hover,
.btn-red:focus {
  background-color: var(--gbtl-red-dark);
  border-color: var(--gbtl-red-dark);
  color: var(--gbtl-white);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: var(--fs-base);
}

.btn-ripple::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.45s ease, height 0.45s ease, opacity 0.45s ease;
  opacity: 0;
  z-index: -1;
}

.btn-ripple:active::after {
  width: 220%;
  height: 220%;
  opacity: 1;
  transition: 0s;
}

/* ------------------------------------------------------------
   Section Headers
   ------------------------------------------------------------ */
.section-header {
  margin-bottom: var(--space-8);
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gbtl-red);
  margin-bottom: var(--space-3);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 0;
  font-size: var(--fs-md);
}

.section-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gbtl-red), var(--gbtl-blue));
  margin: var(--space-4) auto 0;
  border: none;
  border-radius: var(--radius-full);
}

/* ------------------------------------------------------------
   Navigation
   ------------------------------------------------------------ */
.gbtl-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  height: var(--nav-height);
  background: transparent;
  transition: background var(--duration-base) var(--ease-out),
              height var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}

.gbtl-navbar.is-scrolled,
.gbtl-navbar.is-solid {
  height: var(--nav-height-scrolled);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.gbtl-navbar .navbar {
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

.gbtl-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none !important;
}

.gbtl-logo {
  height: 52px;
  width: auto;
  display: block;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  object-fit: contain;
  background: #fff;
  padding: 3px;
  box-shadow: 0 1px 4px rgba(10, 25, 47, 0.18);
  transition: height var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}

.gbtl-navbar.is-scrolled .gbtl-logo,
.gbtl-navbar.is-solid .gbtl-logo {
  height: 46px;
  box-shadow: 0 0 0 1px rgba(10, 25, 47, 0.08);
}

.gbtl-logo-footer {
  height: 88px;
  border-radius: var(--radius-md);
  padding: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.gbtl-brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gbtl-navy), var(--gbtl-blue));
  color: var(--gbtl-white);
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  font-size: var(--fs-sm);
  border-radius: var(--radius-md);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.footer-website {
  margin-top: var(--space-3);
  margin-bottom: 0;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
}

.footer-website a {
  color: var(--gbtl-red-light);
}

.footer-website a:hover {
  color: var(--gbtl-white);
}

.gbtl-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.gbtl-brand-name {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 1.35rem;
  color: var(--gbtl-white);
  transition: color var(--duration-base) var(--ease-out);
}

.gbtl-brand-tag {
  font-size: 0.65rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--duration-base) var(--ease-out);
}

.gbtl-navbar.is-scrolled .gbtl-brand-name,
.gbtl-navbar.is-solid .gbtl-brand-name {
  color: var(--gbtl-navy);
}

.gbtl-navbar.is-scrolled .gbtl-brand-tag,
.gbtl-navbar.is-solid .gbtl-brand-tag {
  color: var(--gbtl-gray-500);
}

.gbtl-nav .nav-link {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 0.5rem 0.9rem !important;
  position: relative;
  transition: color var(--duration-fast) var(--ease-out);
}

.gbtl-navbar.is-scrolled .gbtl-nav .nav-link,
.gbtl-navbar.is-solid .gbtl-nav .nav-link {
  color: var(--gbtl-dark) !important;
}

.gbtl-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--gbtl-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-out);
}

.gbtl-nav .nav-link:hover::after,
.gbtl-nav .nav-link.active::after {
  transform: scaleX(1);
}

.gbtl-nav .nav-link:hover,
.gbtl-nav .nav-link.active {
  color: var(--gbtl-white) !important;
}

.gbtl-navbar.is-scrolled .gbtl-nav .nav-link:hover,
.gbtl-navbar.is-scrolled .gbtl-nav .nav-link.active,
.gbtl-navbar.is-solid .gbtl-nav .nav-link:hover,
.gbtl-navbar.is-solid .gbtl-nav .nav-link.active {
  color: var(--gbtl-navy) !important;
}

.nav-cta {
  margin-left: var(--space-3);
}

.navbar-toggler {
  border: none;
  padding: 0.35rem;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  width: 1.5rem;
  height: 1.5rem;
  background-image: none;
  position: relative;
}

.gbtl-toggler-bar,
.gbtl-toggler-bar::before,
.gbtl-toggler-bar::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gbtl-white);
  border-radius: 2px;
  transition: var(--transition);
}

.gbtl-navbar.is-scrolled .gbtl-toggler-bar,
.gbtl-navbar.is-scrolled .gbtl-toggler-bar::before,
.gbtl-navbar.is-scrolled .gbtl-toggler-bar::after,
.gbtl-navbar.is-solid .gbtl-toggler-bar,
.gbtl-navbar.is-solid .gbtl-toggler-bar::before,
.gbtl-navbar.is-solid .gbtl-toggler-bar::after {
  background: var(--gbtl-navy);
}

.gbtl-toggler-bar::before,
.gbtl-toggler-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.gbtl-toggler-bar::before { top: -7px; }
.gbtl-toggler-bar::after { top: 7px; }

/* Mega Menu */
.mega-dropdown {
  position: static;
}

.mega-menu {
  width: 100%;
  left: 0 !important;
  right: 0 !important;
  padding: var(--space-6) 0;
  margin-top: 0 !important;
  border: none;
  border-radius: 0;
  background: var(--gbtl-white);
  box-shadow: var(--shadow-lg);
}

.mega-menu .mega-title {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gbtl-navy);
  margin-bottom: var(--space-4);
}

.mega-link {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  color: var(--gbtl-dark);
  transition: var(--transition);
}

.mega-link:hover {
  background: var(--gbtl-light);
  color: var(--gbtl-navy);
  transform: translateX(4px);
}

.mega-link i {
  font-size: 1.25rem;
  color: var(--gbtl-blue);
  margin-top: 2px;
}

.mega-link strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: 2px;
}

.mega-link span {
  display: block;
  font-size: var(--fs-xs);
  color: var(--gbtl-gray-500);
  line-height: var(--lh-snug);
}

.mega-promo {
  background: linear-gradient(145deg, var(--gbtl-navy), var(--gbtl-blue));
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  color: var(--gbtl-white);
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.mega-promo h4 {
  color: var(--gbtl-white);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-3);
}

.mega-promo p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-4);
}

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  color: var(--gbtl-white);
  background: var(--gbtl-navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg-map {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  mix-blend-mode: luminosity;
}

.hero-bg-map {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(30, 78, 168, 0.45), transparent 55%),
    radial-gradient(ellipse at 70% 60%, rgba(215, 38, 61, 0.15), transparent 50%),
    linear-gradient(160deg, #071E54 0%, #0B2C78 45%, #143A94 100%);
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 30, 84, 0.92) 0%, rgba(11, 44, 120, 0.78) 48%, rgba(11, 44, 120, 0.45) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-10) 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.4rem 0.9rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.hero h1 {
  color: var(--gbtl-white);
  font-weight: var(--fw-extrabold);
  margin-bottom: var(--space-5);
  max-width: 16ch;
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 36ch;
  margin-bottom: var(--space-7);
  line-height: var(--lh-relaxed);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero-modes {
  position: relative;
  z-index: 2;
  display: grid;
  gap: var(--space-4);
}

.hero-mode-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-xl);
  color: var(--gbtl-white);
  transition: var(--transition);
}

.hero-mode-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-6px);
}

.hero-mode-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: rgba(215, 38, 61, 0.2);
  border-radius: var(--radius-lg);
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}

.hero-mode-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  margin-bottom: 2px;
}

.hero-mode-card span {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  animation: gbtl-float 2.4s ease-in-out infinite;
}

@keyframes gbtl-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ------------------------------------------------------------
   Stats
   ------------------------------------------------------------ */
.stats-bar {
  position: relative;
  z-index: 3;
  margin-top: -3.5rem;
}

.stats-panel {
  background: var(--gbtl-white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-6) var(--space-4);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.stat-item {
  text-align: center;
  padding: var(--space-3);
  border-right: 1px solid var(--gbtl-border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--fw-extrabold);
  color: var(--gbtl-navy);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-number .suffix {
  color: var(--gbtl-red);
}

.stat-label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--gbtl-gray-500);
  letter-spacing: 0.02em;
}

/* ------------------------------------------------------------
   Why Choose / Feature Cards
   ------------------------------------------------------------ */
.feature-card {
  height: 100%;
  padding: var(--space-7) var(--space-5);
  background: var(--gbtl-white);
  border: 1px solid var(--gbtl-border);
  border-radius: var(--radius-xl);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gbtl-navy), var(--gbtl-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: var(--gbtl-light);
  color: var(--gbtl-navy);
  border-radius: var(--radius-lg);
  font-size: 1.6rem;
  margin-bottom: var(--space-5);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gbtl-navy);
  color: var(--gbtl-white);
}

.feature-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-3);
}

.feature-card p {
  margin-bottom: 0;
  font-size: var(--fs-sm);
}

/* ------------------------------------------------------------
   Industry Cards
   ------------------------------------------------------------ */
.industry-card {
  position: relative;
  display: block;
  height: 280px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  color: var(--gbtl-white) !important;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.industry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(7, 30, 84, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-5);
  transition: var(--transition);
}

.industry-card:hover img {
  transform: scale(1.08);
}

.industry-card:hover .industry-card-overlay {
  background: linear-gradient(180deg, rgba(215, 38, 61, 0.15) 0%, rgba(7, 30, 84, 0.95) 100%);
}

.industry-card i {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
  opacity: 0.9;
}

.industry-card h3 {
  color: var(--gbtl-white);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-2);
}

.industry-card span {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.75);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.industry-card:hover span {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------
   Service Cards — 4-up home grid
   ------------------------------------------------------------ */
.services-grid .service-card {
  display: flex;
  flex-direction: column;
}

.service-card {
  height: 100%;
  background: var(--gbtl-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gbtl-border);
  overflow: hidden;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card-media {
  position: relative;
  height: 140px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gbtl-navy), var(--gbtl-blue));
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform var(--duration-slow) var(--ease-out);
}

.service-card:hover .service-card-media img {
  transform: scale(1.06);
}

.service-card-icon {
  position: absolute;
  bottom: -18px;
  left: var(--space-4);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--gbtl-white);
  color: var(--gbtl-navy);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-size: 1.1rem;
}

.service-card-body {
  padding: calc(var(--space-5) + 6px) var(--space-4) var(--space-4);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card h3 {
  font-size: var(--fs-md);
  line-height: var(--lh-snug);
  margin-bottom: var(--space-2);
}

.service-card p {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-3);
  flex: 1;
}

.service-card .stretched-link-text {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--gbtl-navy);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: auto;
}

.service-card:hover .stretched-link-text {
  color: var(--gbtl-red);
}

/* ------------------------------------------------------------
   Process Timeline
   ------------------------------------------------------------ */
.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--gbtl-navy), var(--gbtl-blue), var(--gbtl-red));
  opacity: 0.25;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-5);
  display: grid;
  place-items: center;
  background: var(--gbtl-white);
  border: 2px solid var(--gbtl-border);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  color: var(--gbtl-navy);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.process-step:hover .process-number {
  background: var(--gbtl-navy);
  border-color: var(--gbtl-navy);
  color: var(--gbtl-white);
  transform: scale(1.06);
}

.process-step h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-3);
}

.process-step p {
  font-size: var(--fs-sm);
  margin-bottom: 0;
  max-width: 220px;
  margin-inline: auto;
}

/* ------------------------------------------------------------
   Global Presence
   ------------------------------------------------------------ */
.presence-section {
  background:
    linear-gradient(160deg, var(--gbtl-navy-dark) 0%, var(--gbtl-navy) 60%, var(--gbtl-blue) 100%);
  color: var(--gbtl-white);
  overflow: hidden;
}

.presence-section .section-eyebrow {
  color: var(--gbtl-red-light);
}

.presence-section h2,
.presence-section .section-header p {
  color: var(--gbtl-white);
}

.presence-section .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

.presence-map {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(circle at 55% 45%, rgba(255, 255, 255, 0.08), transparent 40%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400'%3E%3Cpath fill='none' stroke='rgba(255,255,255,0.15)' stroke-width='1' d='M80 180 Q200 80 320 160 T560 140 T720 200'/%3E%3Cpath fill='rgba(255,255,255,0.06)' d='M120 200c40-60 100-80 160-40s100 40 160-20 120-20 180 40v140H120z'/%3E%3Cpath fill='rgba(255,255,255,0.05)' d='M480 120c30-40 80-50 120-10s70 30 100 0v180H480z'/%3E%3C/svg%3E") center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.map-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transform: translate(-50%, -100%);
  background: none;
  border: none;
  padding: 0;
  color: inherit;
}

.map-pin-dot {
  width: 14px;
  height: 14px;
  background: var(--gbtl-red);
  border: 2px solid var(--gbtl-white);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(215, 38, 61, 0.5);
  animation: gbtl-pulse 2s ease-out infinite;
}

.map-pin-label {
  margin-top: var(--space-2);
  padding: 0.25rem 0.6rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  white-space: nowrap;
}

.map-pin[data-region="india"] { top: 52%; left: 68%; }
.map-pin[data-region="uk"] { top: 32%; left: 46%; }
.map-pin[data-region="europe"] { top: 35%; left: 50%; }
.map-pin[data-region="me"] { top: 48%; left: 58%; }
.map-pin[data-region="africa"] { top: 62%; left: 50%; }

@keyframes gbtl-pulse {
  0% { box-shadow: 0 0 0 0 rgba(215, 38, 61, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(215, 38, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(215, 38, 61, 0); }
}

.region-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.region-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  margin-bottom: var(--space-3);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.region-list li:hover,
.region-list li.is-active {
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(6px);
}

.region-list i {
  color: var(--gbtl-red-light);
  font-size: 1.25rem;
}

.region-list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
}

.region-list span {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.65);
}

/* ------------------------------------------------------------
   Testimonials
   ------------------------------------------------------------ */
.testimonial-card {
  background: var(--gbtl-white);
  border: 1px solid var(--gbtl-border);
  border-radius: var(--radius-xl);
  padding: var(--space-7) var(--space-6);
  height: 100%;
}

.testimonial-quote {
  font-size: var(--fs-lg);
  color: var(--gbtl-dark);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-6);
  position: relative;
}

.testimonial-quote::before {
  content: "\201C";
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gbtl-red);
  opacity: 0.25;
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gbtl-navy), var(--gbtl-blue));
  color: var(--gbtl-white);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  color: var(--gbtl-navy);
}

.testimonial-author span {
  font-size: var(--fs-xs);
  color: var(--gbtl-gray-500);
}

.swiper-testimonials .swiper-pagination-bullet {
  background: var(--gbtl-gray-300);
  opacity: 1;
}

.swiper-testimonials .swiper-pagination-bullet-active {
  background: var(--gbtl-red);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ------------------------------------------------------------
   Blog / Insights
   ------------------------------------------------------------ */
.insight-card {
  height: 100%;
  background: var(--gbtl-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gbtl-border);
  transition: var(--transition);
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.insight-media {
  height: 200px;
  overflow: hidden;
  background: var(--gbtl-navy);
}

.insight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.insight-card:hover .insight-media img {
  transform: scale(1.05);
}

.insight-body {
  padding: var(--space-5);
}

.insight-meta {
  font-size: var(--fs-xs);
  color: var(--gbtl-gray-500);
  margin-bottom: var(--space-3);
  display: flex;
  gap: var(--space-3);
  align-items: center;
}

.insight-meta .tag {
  color: var(--gbtl-red);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.insight-body h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-3);
}

.insight-body h3 a {
  color: var(--gbtl-navy);
}

.insight-body h3 a:hover {
  color: var(--gbtl-red);
}

.insight-body p {
  font-size: var(--fs-sm);
  margin-bottom: 0;
}

/* ------------------------------------------------------------
   CTA Banner
   ------------------------------------------------------------ */
.cta-banner {
  position: relative;
  padding: var(--space-10) 0;
  background:
    linear-gradient(120deg, rgba(7, 30, 84, 0.94), rgba(30, 78, 168, 0.88)),
    linear-gradient(135deg, var(--gbtl-navy), var(--gbtl-blue));
  color: var(--gbtl-white);
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(215, 38, 61, 0.12);
  top: -120px;
  right: -80px;
}

.cta-banner h2 {
  color: var(--gbtl-white);
  margin-bottom: var(--space-4);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-md);
  margin-bottom: var(--space-6);
  max-width: 520px;
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.gbtl-footer {
  background: var(--gbtl-navy);
  color: rgba(255, 255, 255, 0.8);
  padding-top: var(--space-10);
}

.gbtl-footer a {
  color: rgba(255, 255, 255, 0.75);
}

.gbtl-footer a:hover {
  color: var(--gbtl-white);
}

.footer-brand .gbtl-brand-name {
  color: var(--gbtl-white);
}

.footer-brand .gbtl-brand-tag {
  color: rgba(255, 255, 255, 0.6);
}

.footer-about {
  margin-top: var(--space-4);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.7);
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gbtl-white);
  margin-bottom: var(--space-5);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a {
  font-size: var(--fs-sm);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-links a:hover {
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: var(--fs-sm);
}

.footer-contact-item i {
  color: var(--gbtl-red-light);
  margin-top: 3px;
}

.footer-newsletter .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--gbtl-white);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
}

.footer-newsletter .form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.footer-newsletter .form-control:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gbtl-red);
  box-shadow: none;
  color: var(--gbtl-white);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--gbtl-white);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gbtl-red);
  border-color: var(--gbtl-red);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: var(--space-8);
  padding: var(--space-5) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: var(--fs-sm);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: flex-end;
}

/* ------------------------------------------------------------
   Floating Widgets
   ------------------------------------------------------------ */
.back-to-top,
.whatsapp-float {
  position: fixed;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  z-index: var(--z-backtop);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.back-to-top {
  right: 24px;
  bottom: 24px;
  background: var(--gbtl-navy);
  color: var(--gbtl-white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  border: none;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gbtl-red);
  color: var(--gbtl-white);
}

.whatsapp-float {
  right: 24px;
  bottom: 88px;
  background: #25D366;
  color: var(--gbtl-white);
  font-size: 1.5rem;
  z-index: var(--z-whatsapp);
}

.whatsapp-float:hover {
  background: #1ebe57;
  color: var(--gbtl-white);
  transform: scale(1.08);
}

/* ------------------------------------------------------------
   Breadcrumb
   ------------------------------------------------------------ */
.page-breadcrumb {
  padding: calc(var(--nav-height) + var(--space-6)) 0 var(--space-6);
  background: linear-gradient(135deg, var(--gbtl-navy-dark), var(--gbtl-navy));
  color: var(--gbtl-white);
}

.page-breadcrumb h1 {
  color: var(--gbtl-white);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: var(--space-3);
}

.breadcrumb {
  margin-bottom: 0;
  background: transparent;
  padding: 0;
}

.breadcrumb-item,
.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-sm);
}

.breadcrumb-item.active {
  color: var(--gbtl-white);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.45);
}

/* ------------------------------------------------------------
   About Page
   ------------------------------------------------------------ */
.about-overview-media {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  min-height: 420px;
  background: var(--gbtl-navy-dark);
}

.about-overview-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.about-logo-badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  padding: var(--space-3);
  background: rgba(0, 0, 0, 0.85);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
}

.about-logo-badge img {
  height: 96px;
  width: auto;
  min-height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

.about-stats-inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--gbtl-border);
}

.about-stats-inline .stat-number {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-1);
}

.mission-card,
.vision-card {
  height: 100%;
  padding: var(--space-7) var(--space-6);
  border-radius: var(--radius-2xl);
  position: relative;
  overflow: hidden;
}

.mission-card {
  background: linear-gradient(145deg, var(--gbtl-navy-dark), var(--gbtl-navy));
  color: var(--gbtl-white);
}

.vision-card {
  background: var(--gbtl-white);
  border: 1px solid var(--gbtl-border);
  box-shadow: var(--shadow-sm);
}

.mission-card h3,
.vision-card h3 {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.mission-card h3 {
  color: var(--gbtl-white);
}

.mission-card p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
}

.vision-card p {
  margin-bottom: 0;
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
}

.mv-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  font-size: 1.35rem;
  flex-shrink: 0;
}

.mission-card .mv-icon {
  background: rgba(215, 38, 61, 0.25);
  color: #fff;
}

.vision-card .mv-icon {
  background: var(--gbtl-light);
  color: var(--gbtl-navy);
}

.value-card {
  height: 100%;
  text-align: center;
  padding: var(--space-6) var(--space-5);
  background: var(--gbtl-white);
  border: 1px solid var(--gbtl-border);
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.value-card .value-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-5);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gbtl-light);
  color: var(--gbtl-navy);
  font-size: 1.75rem;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background: var(--gbtl-navy);
  color: var(--gbtl-white);
}

.value-card h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-3);
}

.value-card p {
  font-size: var(--fs-sm);
  margin-bottom: 0;
}

.journey-timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gbtl-navy), var(--gbtl-blue), var(--gbtl-red));
  opacity: 0.35;
}

.journey-item {
  position: relative;
  padding-left: 64px;
  padding-bottom: var(--space-7);
}

.journey-item:last-child {
  padding-bottom: 0;
}

.journey-dot {
  position: absolute;
  left: 8px;
  top: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gbtl-white);
  border: 3px solid var(--gbtl-navy);
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(11, 44, 120, 0.1);
}

.journey-item:nth-child(even) .journey-dot {
  border-color: var(--gbtl-red);
}

.journey-year {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gbtl-red);
  margin-bottom: var(--space-2);
}

.journey-item h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-2);
}

.journey-item p {
  margin-bottom: 0;
  font-size: var(--fs-sm);
}

.leader-card {
  height: 100%;
  text-align: center;
  background: var(--gbtl-white);
  border: 1px solid var(--gbtl-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-5);
  transition: var(--transition);
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.leader-avatar {
  width: 112px;
  height: 112px;
  margin: 0 auto var(--space-5);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gbtl-navy), var(--gbtl-blue));
  color: var(--gbtl-white);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-2xl);
  position: relative;
}

.leader-avatar::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gbtl-red);
  opacity: 0.35;
}

.leader-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-1);
}

.leader-role {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--gbtl-red);
  margin-bottom: var(--space-3);
}

.leader-card p {
  font-size: var(--fs-sm);
  margin-bottom: 0;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
}

.network-card {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  color: var(--gbtl-white);
  transition: var(--transition);
}

.network-card:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-6px);
}

.network-card i {
  font-size: 1.75rem;
  color: var(--gbtl-red-light);
  margin-bottom: var(--space-3);
  display: block;
}

.network-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-2);
}

.network-card span {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.65);
}

.about-heritage {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--gbtl-light);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--gbtl-red);
}

.about-heritage i {
  font-size: 2rem;
  color: var(--gbtl-navy);
}

.about-heritage p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--gbtl-dark);
}

/* ------------------------------------------------------------
   Services Page
   ------------------------------------------------------------ */
.service-jump {
  position: sticky;
  top: var(--nav-height-scrolled);
  z-index: 1010;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gbtl-border);
  padding: var(--space-3) 0;
}

.service-jump-list {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-2);
  overflow-x: auto;
  padding: 0 0 2px;
  margin: 0;
  list-style: none;
  scrollbar-width: thin;
}

.service-jump-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--gbtl-dark);
  background: var(--gbtl-light);
  border: 1px solid transparent;
  transition: var(--transition);
}

.service-jump-list a:hover,
.service-jump-list a:focus-visible {
  color: var(--gbtl-white);
  background: var(--gbtl-navy);
  border-color: var(--gbtl-navy);
}

.service-detail {
  scroll-margin-top: calc(var(--nav-height-scrolled) + 64px);
}

.service-detail-block {
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--gbtl-border);
}

.service-detail-block:last-of-type {
  border-bottom: none;
}

.service-detail-media {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  min-height: 360px;
  background: var(--gbtl-navy);
  box-shadow: var(--shadow-md);
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.service-detail-icon {
  position: absolute;
  top: var(--space-5);
  left: var(--space-5);
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--gbtl-white);
  color: var(--gbtl-navy);
  border-radius: var(--radius-lg);
  font-size: 1.4rem;
  box-shadow: var(--shadow-md);
}

.service-detail-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: var(--space-4);
}

.service-detail-content > p {
  font-size: var(--fs-md);
  margin-bottom: var(--space-5);
}

.service-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
}

.service-benefits li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--gbtl-border);
  font-size: var(--fs-sm);
  color: var(--gbtl-dark);
}

.service-benefits li:last-child {
  border-bottom: none;
}

.service-benefits i {
  color: var(--gbtl-red);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   Industries Page
   ------------------------------------------------------------ */
.industry-category-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.industry-category-card {
  display: block;
  height: 100%;
  padding: var(--space-6) var(--space-5);
  background: var(--gbtl-white);
  border: 1px solid var(--gbtl-border);
  border-radius: var(--radius-xl);
  color: inherit;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.industry-category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gbtl-navy);
  transition: var(--transition);
}

.industry-category-card:nth-child(2)::before {
  background: var(--gbtl-blue);
}

.industry-category-card:nth-child(3)::before {
  background: var(--gbtl-red);
}

.industry-category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  color: inherit;
}

.industry-category-card .cat-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  background: var(--gbtl-light);
  color: var(--gbtl-navy);
  font-size: 1.4rem;
  margin-bottom: var(--space-4);
}

.industry-category-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-3);
}

.industry-category-card p {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-4);
}

.industry-category-card .cat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
  padding: 0;
  margin: 0;
}

.industry-category-card .cat-tags li {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
  background: var(--gbtl-light);
  color: var(--gbtl-navy);
}

.industry-category-section {
  scroll-margin-top: calc(var(--nav-height-scrolled) + 24px);
  padding: var(--space-9) 0;
}

.industry-category-section:nth-child(even) {
  background: var(--gbtl-bg-alt);
}

.industry-category-header {
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--gbtl-border);
}

.industry-category-header .cat-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  background: var(--gbtl-navy);
  color: var(--gbtl-white);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.industry-category-section:nth-child(even) .industry-category-header .cat-badge {
  background: var(--gbtl-blue);
}

.industry-entry {
  scroll-margin-top: calc(var(--nav-height-scrolled) + 72px);
  background: var(--gbtl-white);
  border: 1px solid var(--gbtl-border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.industry-entry:last-child {
  margin-bottom: 0;
}

.industry-entry:hover {
  box-shadow: var(--shadow-md);
}

.industry-entry-media {
  position: relative;
  min-height: 280px;
  height: 100%;
  background: var(--gbtl-navy);
}

.industry-entry-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.industry-entry-body {
  padding: var(--space-6) var(--space-5);
}

.industry-entry-body h3 {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.industry-entry-body h3 i {
  color: var(--gbtl-red);
  font-size: 1.25rem;
}

.industry-entry-body > p {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-5);
}

.industry-subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

.industry-subbox h4 {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-3);
  color: var(--gbtl-navy);
}

.industry-subbox ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.industry-subbox li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding: 0.35rem 0;
  font-size: var(--fs-sm);
  color: var(--gbtl-dark);
}

.industry-subbox li i {
  color: var(--gbtl-blue);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.industry-category-header p,
.industry-lead {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--gbtl-gray-500);
}

.industry-note {
  font-size: 0.75rem;
  color: var(--gbtl-gray-500);
  margin-bottom: var(--space-3);
}

/* ------------------------------------------------------------
   Products Page
   ------------------------------------------------------------ */
.products-filter-bar {
  background: var(--gbtl-white);
  border: 1px solid var(--gbtl-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-7);
}

.products-filter-bar label {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gbtl-navy);
  margin-bottom: var(--space-2);
  display: block;
}

.products-filter-bar .form-select {
  border-radius: var(--radius-md);
  border-color: var(--gbtl-border);
  padding: 0.75rem 1rem;
  font-size: var(--fs-sm);
  color: var(--gbtl-dark);
}

.products-filter-bar .form-select:focus {
  border-color: var(--gbtl-blue);
  box-shadow: 0 0 0 0.2rem rgba(30, 78, 168, 0.15);
}

.product-category-accordion .accordion-item {
  border: 1px solid var(--gbtl-border);
  border-radius: var(--radius-xl) !important;
  overflow: hidden;
  margin-bottom: var(--space-4);
  background: var(--gbtl-white);
}

.product-category-accordion .accordion-button {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-lg);
  color: var(--gbtl-navy);
  background: var(--gbtl-white);
  padding: var(--space-5) var(--space-5);
  box-shadow: none !important;
}

.product-category-accordion .accordion-button:not(.collapsed) {
  color: var(--gbtl-white);
  background: linear-gradient(135deg, var(--gbtl-navy), var(--gbtl-blue));
}

.product-category-accordion .accordion-button::after {
  filter: none;
}

.product-category-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.product-category-accordion .accordion-button .cat-meta {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-regular);
  letter-spacing: 0;
  text-transform: none;
  color: var(--gbtl-gray-500);
  margin-top: 0.35rem;
}

.product-category-accordion .accordion-button:not(.collapsed) .cat-meta {
  color: rgba(255, 255, 255, 0.75);
}

.product-category-accordion .accordion-body {
  padding: var(--space-6) var(--space-5);
  background: var(--gbtl-bg-alt);
}

.product-industry-group {
  margin-bottom: var(--space-7);
}

.product-industry-group:last-child {
  margin-bottom: 0;
}

.product-industry-title {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-md);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--gbtl-border);
}

.product-industry-title i {
  color: var(--gbtl-red);
}

.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--gbtl-white);
  border: 1px solid var(--gbtl-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card-media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--gbtl-navy);
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.product-card:hover .product-card-media img {
  transform: scale(1.06);
}

.product-card-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(11, 44, 120, 0.9);
  color: var(--gbtl-white);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card-body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-code {
  font-size: var(--fs-xs);
  color: var(--gbtl-gray-500);
  margin-bottom: var(--space-2);
  font-weight: var(--fw-medium);
}

.product-card-body h4 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-3);
}

.product-card-body > p {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-4);
  flex: 1;
}

.product-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4);
  border-top: 1px solid var(--gbtl-border);
  padding-top: var(--space-3);
}

.product-specs li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 0.3rem 0;
  font-size: var(--fs-xs);
  color: var(--gbtl-dark);
}

.product-specs li span:first-child {
  color: var(--gbtl-gray-500);
}

.product-specs li span:last-child {
  font-weight: var(--fw-semibold);
  text-align: right;
}

.product-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: auto;
}

.product-card.is-hidden {
  display: none;
}

.product-industry-group.is-hidden,
.accordion-item.is-hidden-filter {
  display: none;
}

.products-empty {
  display: none;
  text-align: center;
  padding: var(--space-8);
  color: var(--gbtl-gray-500);
}

.products-empty.is-visible {
  display: block;
}

/* ------------------------------------------------------------
   Gallery Page
   ------------------------------------------------------------ */
.gallery-filter-bar {
  background: var(--gbtl-white);
  border: 1px solid var(--gbtl-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-6);
}

.gallery-filter-bar label {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gbtl-navy);
  margin-bottom: var(--space-2);
  display: block;
}

.gallery-filter-bar .form-select {
  border-radius: var(--radius-md);
  border-color: var(--gbtl-border);
  padding: 0.75rem 1rem;
  font-size: var(--fs-sm);
}

.gallery-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-7);
  list-style: none;
  padding: 0;
}

.gallery-chips button {
  border: 1px solid var(--gbtl-border);
  background: var(--gbtl-white);
  color: var(--gbtl-dark);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.gallery-chips button:hover,
.gallery-chips button.is-active {
  background: var(--gbtl-navy);
  border-color: var(--gbtl-navy);
  color: var(--gbtl-white);
}

.gallery-section {
  scroll-margin-top: calc(var(--nav-height-scrolled) + 24px);
  margin-bottom: var(--space-9);
}

.gallery-section.is-hidden {
  display: none;
}

.gallery-section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--gbtl-border);
}

.gallery-section-header h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: var(--space-2);
}

.gallery-section-header p {
  margin: 0;
  font-size: var(--fs-sm);
  max-width: 520px;
}

.gallery-count {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gbtl-red);
}

.gallery-industry-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--gbtl-navy);
  margin: var(--space-5) 0 var(--space-4);
}

.gallery-industry-label i {
  color: var(--gbtl-red);
}

.gallery-industry-block.is-hidden {
  display: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--gbtl-navy);
  cursor: pointer;
  border: none;
  padding: 0;
  display: block;
  width: 100%;
  text-align: left;
  transition: var(--transition);
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(7, 30, 84, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-4);
  color: var(--gbtl-white);
  opacity: 0.95;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 2;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(215, 38, 61, 0.92);
  color: var(--gbtl-white);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-item-zoom {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--gbtl-navy);
  opacity: 0;
  transform: scale(0.85);
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-zoom,
.gallery-item:focus-visible .gallery-item-zoom {
  opacity: 1;
  transform: scale(1);
}

.gallery-item-overlay strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  margin-bottom: 2px;
}

.gallery-item-overlay span {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.75);
}

.gallery-lightbox .modal-content {
  background: transparent;
  border: none;
}

.gallery-lightbox .modal-body {
  padding: 0;
  position: relative;
}

.gallery-lightbox-frame {
  background: var(--gbtl-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.gallery-lightbox-frame img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #0a0a0a;
}

.gallery-lightbox-meta {
  padding: var(--space-5);
}

.gallery-lightbox-meta .sku {
  font-size: var(--fs-xs);
  color: var(--gbtl-gray-500);
  margin-bottom: var(--space-2);
}

.gallery-lightbox-meta h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-2);
}

.gallery-lightbox-meta p {
  margin-bottom: var(--space-4);
  font-size: var(--fs-sm);
}

.gallery-lightbox-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: var(--gbtl-navy);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  z-index: 5;
  transition: var(--transition);
}

.gallery-lightbox-nav:hover {
  background: var(--gbtl-red);
  color: var(--gbtl-white);
}

.gallery-lightbox-prev { left: 12px; }
.gallery-lightbox-next { right: 12px; }

.gallery-lightbox .btn-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 6;
  background-color: #fff;
  opacity: 1;
  border-radius: 50%;
  padding: 0.75rem;
}

.gallery-empty {
  display: none;
  text-align: center;
  padding: var(--space-8);
  color: var(--gbtl-gray-500);
}

.gallery-empty.is-visible {
  display: block;
}

/* ------------------------------------------------------------
   Contact Page
   ------------------------------------------------------------ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.contact-info-card {
  height: 100%;
  padding: var(--space-5);
  background: var(--gbtl-white);
  border: 1px solid var(--gbtl-border);
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  background: var(--gbtl-light);
  color: var(--gbtl-navy);
  font-size: 1.25rem;
  margin-bottom: var(--space-4);
}

.contact-info-card.whatsapp .contact-info-icon {
  background: rgba(37, 211, 102, 0.15);
  color: #128C7E;
}

.contact-info-card h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-2);
}

.contact-info-card p,
.contact-info-card a {
  font-size: var(--fs-sm);
  color: var(--gbtl-gray-500);
  margin-bottom: 0;
}

.contact-info-card a:hover {
  color: var(--gbtl-navy);
}

.contact-panel {
  background: var(--gbtl-white);
  border: 1px solid var(--gbtl-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  height: auto;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}

/* Only the main quote form panel may stretch in the left column */
.contact-panel.contact-panel-form {
  height: 100%;
}

#quote {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

#quote .row {
  align-items: flex-start;
}

#quote .contact-aside {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 0;
}

#quote .contact-aside .contact-panel {
  flex: 0 0 auto;
  height: auto !important;
  max-height: none;
}

.contact-panel h2 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  margin-bottom: var(--space-3);
}

.contact-panel > .panel-lead {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-5);
}

.contact-form .form-label {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gbtl-navy);
  margin-bottom: var(--space-2);
}

.contact-form .form-control,
.contact-form .form-select {
  border-radius: var(--radius-md);
  border-color: var(--gbtl-border);
  padding: 0.75rem 1rem;
  font-size: var(--fs-sm);
  color: var(--gbtl-dark);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--gbtl-blue);
  box-shadow: 0 0 0 0.2rem rgba(30, 78, 168, 0.15);
}

.contact-form textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.contact-form .form-check-label {
  font-size: var(--fs-sm);
  color: var(--gbtl-gray-500);
}

.contact-form-success {
  display: none;
  padding: var(--space-5);
  border-radius: var(--radius-xl);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #047857;
  font-size: var(--fs-sm);
  margin-bottom: var(--space-4);
}

.contact-form-success.is-visible {
  display: block;
}

.contact-hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-5);
}

.contact-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--gbtl-border);
  font-size: var(--fs-sm);
}

.contact-hours-list li:last-child {
  border-bottom: none;
}

.contact-hours-list strong {
  color: var(--gbtl-navy);
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
}

.contact-hours-list span {
  color: var(--gbtl-gray-500);
}

.office-card {
  height: 100%;
  padding: var(--space-5);
  background: var(--gbtl-white);
  border: 1px solid var(--gbtl-border);
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.office-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.office-card .office-flag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gbtl-red);
  margin-bottom: var(--space-3);
}

.office-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-3);
}

.office-card address {
  font-style: normal;
  font-size: var(--fs-sm);
  color: var(--gbtl-gray-500);
  margin-bottom: var(--space-4);
  line-height: var(--lh-relaxed);
}

.office-card .office-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.office-card .office-links li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-2);
}

.office-card.text-center .office-links {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.office-card.text-center .office-links.justify-content-center {
  margin-inline: auto;
}

.contact-map-wrap {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--gbtl-border);
  box-shadow: var(--shadow-md);
  min-height: 420px;
  background: var(--gbtl-light);
}

.contact-map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.contact-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.contact-dept-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-dept-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--gbtl-border);
  font-size: var(--fs-sm);
}

.contact-dept-list li:last-child {
  border-bottom: none;
}

.contact-dept-list strong {
  color: var(--gbtl-navy);
  font-family: var(--font-heading);
}

/* ------------------------------------------------------------
   Careers Page
   ------------------------------------------------------------ */
.career-apply-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  background: var(--gbtl-navy);
  color: var(--gbtl-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-5) var(--space-6);
  margin-top: var(--space-2);
}

.career-apply-strip strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffb4bd;
  margin-bottom: var(--space-2);
}

.career-apply-strip p,
.career-apply-strip a {
  color: rgba(255, 255, 255, 0.88);
}

.career-apply-strip a:hover {
  color: var(--gbtl-white);
}

.career-apply-strip .btn-red {
  flex-shrink: 0;
}

.career-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.career-toolbar h2 {
  margin-bottom: 0;
}

.career-count {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  color: var(--gbtl-navy);
  white-space: nowrap;
}

.career-count span:first-child {
  color: var(--gbtl-red);
}

.career-job-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-4);
}

.career-job-card {
  background: var(--gbtl-white);
  border: 1px solid var(--gbtl-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.career-job-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gbtl-navy);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--duration-base) var(--ease-out);
}

.career-job-card:hover,
.career-job-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  outline: none;
}

.career-job-card.is-active {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.career-job-card.is-active::before,
.career-job-card:hover::before {
  transform: scaleY(1);
}

.career-job-card.is-active::before {
  background: var(--gbtl-red);
}

.career-job-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.career-job-dept {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gbtl-blue);
}

.career-job-featured {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gbtl-white);
  background: var(--gbtl-red);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.65rem;
}

.career-job-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-3);
}

.career-job-summary {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.career-job-card-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
}

.career-job-card-meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--fs-xs);
  color: var(--gbtl-text-muted);
}

.career-job-card-meta i {
  color: var(--gbtl-red);
}

.career-job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: var(--space-4);
}

.career-job-tag {
  font-size: 0.7rem;
  font-weight: var(--fw-medium);
  color: var(--gbtl-navy);
  background: var(--gbtl-light);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.65rem;
}

.career-job-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: auto;
}

.career-empty {
  text-align: center;
  padding: var(--space-9) var(--space-5);
  background: var(--gbtl-white);
  border: 1px dashed var(--gbtl-border);
  border-radius: var(--radius-2xl);
}

.career-empty i {
  font-size: 2rem;
  color: var(--gbtl-red);
  margin-bottom: var(--space-3);
  display: block;
}

.career-noscript {
  margin-top: var(--space-5);
  font-size: var(--fs-sm);
}

.career-detail-section {
  scroll-margin-top: calc(var(--nav-height-scrolled) + 1rem);
}

.career-detail-header {
  margin-bottom: var(--space-6);
}

.career-detail-header h2 {
  margin-bottom: var(--space-3);
}

.career-detail-company {
  color: var(--gbtl-text-muted);
  font-size: var(--fs-md);
  margin-bottom: 0;
}

.career-block {
  background: var(--gbtl-white);
  border: 1px solid var(--gbtl-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  margin-bottom: var(--space-5);
  box-shadow: var(--shadow-xs);
}

.career-block h3 {
  margin-bottom: var(--space-4);
}

.career-emphasis {
  background: var(--gbtl-light);
  border-left: 3px solid var(--gbtl-red);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-4) var(--space-5);
  color: var(--gbtl-navy);
  font-weight: var(--fw-medium);
}

.career-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.career-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.85rem;
  color: var(--gbtl-text-muted);
  border-bottom: 1px solid var(--gbtl-gray-100);
}

.career-list li:last-child {
  border-bottom: none;
}

.career-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--gbtl-red);
  box-shadow: 0 0 0 4px rgba(215, 38, 61, 0.12);
}

.career-quote {
  background: linear-gradient(135deg, var(--gbtl-navy-dark), var(--gbtl-navy));
  color: var(--gbtl-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  margin-bottom: var(--space-5);
}

.career-quote p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}

.career-quote-kicker {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffb4bd !important;
  margin-bottom: var(--space-3) !important;
}

.career-quote-line {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--fw-bold);
  color: var(--gbtl-white) !important;
  margin-bottom: var(--space-4) !important;
  line-height: var(--lh-tight);
}

.career-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.career-metric {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--gbtl-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}

.career-metric i {
  color: var(--gbtl-red);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.career-metric strong {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--gbtl-navy);
}

.career-fit {
  background: var(--gbtl-white);
  border: 1px solid var(--gbtl-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  margin-bottom: var(--space-5);
  position: relative;
}

.career-fit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gbtl-navy), var(--gbtl-red));
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.career-fit-quote {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  color: var(--gbtl-navy);
  font-size: var(--fs-md);
}

.career-apply-card {
  background: var(--gbtl-white);
  border: 1px solid var(--gbtl-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--nav-height-scrolled) + 1.25rem);
}

.career-apply-card h3 {
  margin-bottom: var(--space-3);
}

.career-apply-card > p a {
  font-weight: var(--fw-semibold);
  color: var(--gbtl-navy);
}

.career-apply-hint {
  font-size: var(--fs-xs);
  margin-top: var(--space-3);
  margin-bottom: var(--space-5);
}

.career-facts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.career-facts li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-3);
  padding: 0.7rem 0;
  border-top: 1px solid var(--gbtl-border);
  font-size: var(--fs-sm);
}

.career-facts span {
  color: var(--gbtl-text-muted);
}

.career-facts strong {
  color: var(--gbtl-navy);
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  text-align: right;
}

.career-facts a {
  color: var(--gbtl-navy);
}

/* ------------------------------------------------------------
   Utility
   ------------------------------------------------------------ */
.hover-lift {
  transition: var(--transition);
}

.hover-lift:hover {
  transform: translateY(-6px);
}

.text-navy { color: var(--gbtl-navy) !important; }
.text-red { color: var(--gbtl-red) !important; }
.bg-navy { background-color: var(--gbtl-navy) !important; }
.bg-light-gbtl { background-color: var(--gbtl-light) !important; }

.glass-panel {
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-xl);
}

.page-transition {
  animation: gbtl-page-in 0.45s var(--ease-out) both;
}

@keyframes gbtl-page-in {
  from {
    opacity: 0.96;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------------------------------------
   AOS visibility failsafe
   Prevents blank pages when AOS CSS loads but JS does not run
   ------------------------------------------------------------ */
html:not(.aos-initialized) [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
}

html.aos-fallback [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}
