/* ===================================================
   GÜNCEL LOJİSTİK - Modern Theme
   Dark / Light mode via [data-theme="dark"] on <html>
=================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

/* ---------- CSS Variables ---------- */
:root,
html.theme-light {
  --bg-primary: #ffffff;
  --bg-secondary: #f4f7fb;
  --bg-card: #ffffff;
  --bg-navbar: rgba(255, 255, 255, 0.92);
  --bg-topbar: #0a1e3d;
  --text-primary: #0d1b2e;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --text-invert: #ffffff;
  --accent: #D8631D;
  --accent-hover: #b8521a;
  --accent-light: #fde8d8;
  --gold: #f59e0b;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .1);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .14);
  --navbar-shadow: 0 2px 20px rgba(0, 0, 0, .08);
  --footer-bg: #0a1e3d;
  --footer-text: #94a3b8;
  --slider-overlay: rgba(10, 30, 61, .55);
  --section-divider: #e2e8f0;
  --input-bg: #f8fafc;
  --input-border: #cbd5e0;
  --card-hover-shadow: 0 16px 48px rgba(216, 99, 29, .2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

html.theme-dark {
  --bg-primary: #0d1117;
  --bg-secondary: #161b22;
  --bg-card: #1c2333;
  --bg-navbar: rgba(13, 17, 23, 0.95);
  --bg-topbar: #010409;
  --text-primary: #e6edf3;
  --text-secondary: #8b949e;
  --text-muted: #6e7681;
  --text-invert: #0d1117;
  --accent: #e8783c;
  --accent-hover: #f09060;
  --accent-light: #3d1e0a;
  --gold: #f59e0b;
  --border: #30363d;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .4);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .5);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .6);
  --navbar-shadow: 0 2px 20px rgba(0, 0, 0, .5);
  --footer-bg: #010409;
  --footer-text: #6e7681;
  --slider-overlay: rgba(0, 0, 0, .65);
  --section-divider: #30363d;
  --input-bg: #161b22;
  --input-border: #30363d;
  --card-hover-shadow: 0 16px 48px rgba(232, 120, 60, .2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  transition: background .3s, color .3s;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  line-height: 1.25;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------- Top Header Bar ---------- */
.gl-topbar {
  background: var(--bg-topbar);
  color: #94a3b8;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.gl-topbar a {
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.gl-topbar a:hover {
  color: #fff;
}

.gl-topbar i {
  color: var(--accent);
  font-size: 12px;
}

.gl-topbar .topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.gl-topbar .topbar-contacts {
  display: flex;
  gap: 24px;
}

/* ---------- Navbar ---------- */
.gl-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-navbar);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--navbar-shadow);
  transition: var(--transition);
}

.gl-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}

.gl-navbar .navbar-logo img {
  height: 40px;
  width: auto;
}

.gl-nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
  margin: 0;
}

.gl-nav-links>li {
  position: relative;
}

.gl-nav-links>li>a {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.gl-nav-links>li>a:hover,
.gl-nav-links>li>a.active {
  color: var(--accent);
  background: var(--accent-light);
}

/* Dropdown */
.gl-nav-links .gl-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 8px;
  padding-top: 16px;
  margin-top: 0;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: var(--transition);
  z-index: 999;
}

.gl-nav-links .gl-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.gl-nav-links li:hover>.gl-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.gl-dropdown li a {
  display: block;
  padding: 8px 12px;
  color: var(--text-secondary);
  font-size: 13.5px;
  border-radius: 8px;
}

.gl-dropdown li a:hover {
  background: var(--accent-light);
  color: var(--accent);
}

/* Lang dropdown right-aligned */
.gl-nav-links .lang-item .gl-dropdown {
  left: auto;
  right: 0;
  min-width: 140px;
}

/* Hover alanını genişlet - dropdown kapanmasın */
.gl-nav-links>li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

/* Navbar right controls */
.gl-nav-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Dark mode toggle */
.gl-theme-toggle {
  width: 44px;
  height: 24px;
  background: var(--border);
  border-radius: 99px;
  position: relative;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
  flex-shrink: 0;
}

.gl-theme-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  transition: var(--transition);
}

html.theme-dark .gl-theme-toggle {
  background: var(--accent);
}

html.theme-dark .gl-theme-toggle::after {
  left: calc(100% - 21px);
  background: #fff;
}

.gl-theme-icon {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Mobile toggle */
.gl-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.gl-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.gl-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 12px 16px 20px;
  gap: 4px;
}

.gl-mobile-menu.open {
  display: flex;
}

.gl-mobile-menu a {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gl-mobile-menu a:hover {
  background: var(--accent-light);
  color: var(--accent);
}

.gl-mobile-menu .mobile-sub {
  padding-left: 28px;
  font-size: 13px;
}

.gl-mobile-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 0;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.gl-mobile-controls .gl-theme-icon {
  font-size: 14px;
}

/* ---------- Hero Slider ---------- */
.gl-hero {
  position: relative;
  overflow: hidden;
}

.gl-hero .owl-carousel .owl-stage-outer {
  overflow: hidden;
}

.gl-hero-slide {
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.gl-hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--slider-overlay);
}

.gl-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 620px;
}

.gl-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .3);
}

.gl-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* Owl nav override */
.gl-hero .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .15) !important;
  border: 1px solid rgba(255, 255, 255, .3) !important;
  color: #fff !important;
  width: 48px;
  height: 48px;
  border-radius: 50% !important;
  font-size: 16px;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}

.gl-hero .owl-nav button:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}

.gl-hero .owl-nav .owl-prev {
  left: 20px;
}

.gl-hero .owl-nav .owl-next {
  right: 20px;
}

/* ---------- Buttons ---------- */
.gl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.gl-btn-primary {
  background: var(--accent);
  color: #fff;
}

.gl-btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(216, 99, 29, .35);
}

.gl-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .7);
}

.gl-btn-outline:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border-color: #fff;
}

/* ---------- Section Commons ---------- */
.gl-section {
  padding: 90px 0;
}

.gl-section-sm {
  padding: 60px 0;
}

.gl-section-alt {
  background: var(--bg-secondary);
}

.gl-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.gl-section-header .gl-label {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.gl-section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-primary);
}

.gl-section-header p {
  color: var(--text-secondary);
  margin-top: 12px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Quote / Offer Card ---------- */
.gl-quote-section {
  background: var(--bg-secondary);
  padding: 80px 0;
}

.gl-quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.gl-quote-tabs {
  display: flex;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.gl-quote-tab {
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}

.gl-quote-tab.active,
.gl-quote-tab:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
  background: var(--bg-card);
}

.gl-quote-body {
  padding: 36px;
}

.gl-tab-pane {
  display: none;
}

.gl-tab-pane.active {
  display: block;
}

/* Form styling */
.gl-form-group {
  margin-bottom: 18px;
}

.gl-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.gl-form-control {
  width: 100%;
  padding: 11px 14px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}

.gl-form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(216, 99, 29, .12);
  background: var(--bg-card);
}

.gl-form-control::placeholder {
  color: var(--text-muted);
}

select.gl-form-control {
  cursor: pointer;
}

textarea.gl-form-control {
  resize: vertical;
  min-height: 90px;
}

.gl-form-section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gl-form-section-title i {
  color: var(--accent);
}

.gl-check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-secondary);
  user-select: none;
  padding: 10px 0;
}

.gl-check-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

.gl-alert {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gl-alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.gl-alert-danger {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

html.theme-dark .gl-alert-success {
  background: #064e3b;
  color: #6ee7b7;
  border-color: #065f46;
}

html.theme-dark .gl-alert-danger {
  background: #450a0a;
  color: #fca5a5;
  border-color: #991b1b;
}

.gl-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 5px;
}

.gl-hint-danger {
  color: #ef4444;
}

/* CBM table */
.gl-cbm-intro {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  padding: 12px 16px;
  border-radius: 6px;
}

.gl-cbm-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.gl-cbm-row .gl-form-control {
  flex: 1;
  min-width: 80px;
}

.gl-cbm-equals {
  color: var(--text-muted);
  font-weight: 600;
  padding: 0 4px;
}

.gl-cbm-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  flex-wrap: wrap;
  gap: 10px;
}

.gl-add-row-btn {
  background: none;
  border: 1px dashed var(--border);
  color: var(--accent);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.gl-add-row-btn:hover {
  background: var(--accent-light);
  border-color: var(--accent);
}

.gl-clear-btn {
  background: #fee2e2;
  color: #991b1b;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.gl-clear-btn:hover {
  background: #fecaca;
}

html.theme-dark .gl-clear-btn {
  background: #450a0a;
  color: #fca5a5;
}

.gl-cbm-total {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
}

.gl-cbm-total .gl-form-control {
  width: 120px;
}

/* ---------- About Section ---------- */
.gl-about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.gl-about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.gl-about-quote-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-md);
}

.gl-about-content {
  padding: 20px 0 20px 40px;
}

.gl-about-content h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  margin-bottom: 18px;
}

.gl-about-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 15px;
}

/* ---------- Transport Strip ---------- */
.gl-transport-strip {
  background: var(--bg-topbar);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.gl-transport-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: gl-scroll-ltr 28s linear infinite;
}

.gl-transport-strip:hover .gl-transport-track {
  animation-play-state: paused;
}

.gl-transport-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.gl-transport-item i {
  font-size: 22px;
  color: var(--accent);
}

.gl-transport-item::after {
  content: '·';
  margin-left: 48px;
  color: rgba(255, 255, 255, .2);
  font-size: 20px;
}

@keyframes gl-scroll-ltr {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ---------- Services Cards ---------- */
.gl-service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.gl-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
}

.gl-service-card-active {
  border-color: var(--accent) !important;
  box-shadow: var(--card-hover-shadow);
}

.gl-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-hover-shadow);
  border-color: var(--accent);
}

.gl-service-card:hover::before {
  opacity: .04;
}

.gl-service-icon {
  width: 72px;
  height: 72px;
  background: var(--accent-light);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  overflow: hidden;
}

.gl-service-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.gl-service-card:hover .gl-service-icon {
  background: var(--accent);
}

.gl-service-card:hover .gl-service-icon img {
  filter: brightness(10);
}

.gl-service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.gl-service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  flex: 1;
}

.gl-service-arrow {
  width: 36px;
  height: 36px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
  text-decoration: none;
  margin-top: auto;
}

.gl-service-card:hover .gl-service-arrow {
  background: var(--accent);
  color: #fff;
}

/* ---------- Why Choose Us ---------- */
.gl-why-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 360px;
}

.gl-why-img-bg {
  width: 100%;
  height: 100%;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
}

.gl-why-content {
  padding: 20px 0 20px 40px;
}

.gl-why-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 16px;
}

.gl-why-content .gl-lead {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.gl-why-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 15px;
}

.gl-feature-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gl-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.gl-feature-list li i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ---------- Map & Office ---------- */
.gl-map-section {
  position: relative;
  padding-bottom: 80px;
}

.gl-map-section iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}

.gl-office-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  margin-top: -100px;
  position: relative;
  z-index: 2;
}

.gl-office-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gl-office-card h3 i {
  color: var(--accent);
}

.gl-office-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gl-office-card ul li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- Page Title Banner ---------- */
.gl-page-banner {
  min-height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.gl-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--slider-overlay);
}

.gl-page-banner-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.gl-page-banner-content h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: #fff;
  margin-bottom: 10px;
}

.gl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 14px;
}

.gl-breadcrumb li {
  color: rgba(255, 255, 255, .7);
}

.gl-breadcrumb li a {
  color: rgba(255, 255, 255, .85);
}

.gl-breadcrumb li a:hover {
  color: #fff;
}

.gl-breadcrumb li+li::before {
  content: '/';
  margin-right: 8px;
  opacity: .6;
}

/* ---------- Footer ---------- */
.gl-footer-top {
  background: var(--footer-bg);
  padding: 70px 0 40px;
  color: var(--footer-text);
}

.gl-footer-top h4 {
  font-size: 15px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.gl-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gl-footer-links a {
  color: var(--footer-text);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.gl-footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.gl-footer-links a i {
  color: var(--accent);
  font-size: 12px;
  width: 12px;
}

.gl-footer-bottom {
  background: rgba(0, 0, 0, .25);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.gl-footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.gl-footer-copy {
  font-size: 13px;
  color: #64748b;
}

.gl-footer-copy a {
  color: #94a3b8;
}

.gl-footer-copy a:hover {
  color: #fff;
}

.gl-social-links {
  display: flex;
  gap: 10px;
}

.gl-social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .08);
  color: #94a3b8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, .06);
}

.gl-social-links a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ---------- Go Top ---------- */
.gl-go-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(216, 99, 29, .4);
  z-index: 999;
  border: none;
}

.gl-go-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.gl-go-top:hover {
  transform: translateY(-3px);
}

/* ---------- Sidebar Modal ---------- */
.gl-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  backdrop-filter: blur(2px);
}

.gl-sidebar-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.gl-sidebar {
  position: fixed;
  top: 0;
  right: -360px;
  width: 320px;
  height: 100vh;
  background: var(--bg-card);
  z-index: 1200;
  padding: 0;
  transition: right .35s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.gl-sidebar.open {
  right: 0;
}

.gl-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.gl-sidebar-header img {
  height: 34px;
}

.gl-sidebar-close {
  background: var(--bg-secondary);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gl-sidebar-close:hover {
  background: var(--accent-light);
  color: var(--accent);
}

.gl-sidebar-body {
  padding: 24px;
  flex: 1;
}

.gl-sidebar-section {
  margin-bottom: 28px;
}

.gl-sidebar-section h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.gl-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gl-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.gl-contact-list li i {
  color: var(--accent);
  width: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.gl-contact-list li a {
  color: var(--text-secondary);
}

.gl-contact-list li a:hover {
  color: var(--accent);
}

.gl-contact-list li strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

/* ---------- Contact Page ---------- */
.gl-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 14px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.gl-contact-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.gl-contact-card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}

.gl-contact-card h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.gl-contact-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.gl-contact-card p a {
  color: var(--text-secondary);
}

.gl-contact-card p a:hover {
  color: var(--accent);
}

.gl-contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.gl-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

@media (max-width: 767px) {
  .gl-contact-form-card {
    padding: 24px 18px;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {

  .gl-nav-links,
  .gl-nav-controls .gl-theme-toggle,
  .gl-nav-controls .gl-theme-icon {
    display: none;
  }

  .gl-hamburger {
    display: flex;
  }

  .gl-about-content,
  .gl-why-content {
    padding-left: 0;
    margin-top: 32px;
  }

  .gl-office-card {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .gl-section {
    padding: 60px 0;
  }

  .gl-hero-slide {
    min-height: 420px;
  }

  .gl-quote-body {
    padding: 24px 16px;
  }

  .gl-about-img-wrap img {
    height: 280px;
  }

  .gl-topbar .topbar-contacts {
    gap: 12px;
  }

  .gl-footer-top {
    padding: 50px 0 30px;
  }
}

@media (max-width: 575px) {
  .gl-cbm-row {
    flex-direction: column;
  }

  .gl-cbm-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}