/* ==========================================================================
   Yurt Dışı Uçak Kargo — Premium Theme Styles
   ========================================================================== */

:root {
  --gwc-navy: #0a1628;
  --gwc-navy-mid: #0f2744;
  --gwc-navy-light: #1a3a5c;
  --gwc-gold: #c9a227;
  --gwc-gold-light: #e8c547;
  --gwc-gold-soft: #c4a574;
  --gwc-gold-muted: #d4b896;
  --gwc-gold-border: rgba(196, 165, 116, 0.42);
  --gwc-gold-glow: rgba(196, 165, 116, 0.22);
  --gwc-ease-premium: cubic-bezier(0.4, 0, 0.2, 1);
  --gwc-cyan: #00b4d8;
  --gwc-white: #ffffff;
  --gwc-bg: #f4f7fb;
  --gwc-bg-alt: #e8eef5;
  --gwc-text: #1e293b;
  --gwc-text-muted: #64748b;
  --gwc-border: rgba(15, 39, 68, 0.1);
  --gwc-radius: 20px;
  --gwc-radius-sm: 12px;
  --gwc-shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
  --gwc-shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.15);
  --gwc-header-h: 76px;
  --gwc-topbar-h: 46px;
  --gwc-font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --gwc-transition: 0.25s ease;
  --gwc-container-max: 1280px;
  --gwc-icon-sm: 16px;
  --gwc-icon-md: 24px;
  --gwc-icon-lg: 32px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--gwc-topbar-h) + var(--gwc-header-h) + 16px);
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--gwc-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gwc-text);
  background: var(--gwc-white);
  -webkit-font-smoothing: antialiased;
}

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

/* Global anti-overflow guards */
iframe,
video,
canvas,
svg,
table {
  max-width: 100%;
}

pre {
  max-width: 100%;
  overflow: auto;
}

* {
  min-width: 0;
}

/* Inline / UI icons — never full-width */
.gwc-icon,
svg.gwc-icon,
.contact-icon,
.footer-icon,
.info-icon,
.gwc-home-contact__icon {
  flex-shrink: 0;
  vertical-align: middle;
}

.gwc-icon,
svg.gwc-icon,
.contact-icon,
.footer-icon,
.info-icon {
  width: var(--gwc-icon-sm);
  height: var(--gwc-icon-sm);
  max-width: var(--gwc-icon-md);
  max-height: var(--gwc-icon-md);
}

.gwc-icon--sm,
.contact-icon--sm,
.info-icon--sm {
  width: var(--gwc-icon-sm);
  height: var(--gwc-icon-sm);
  max-width: var(--gwc-icon-sm);
  max-height: var(--gwc-icon-sm);
}

.gwc-icon--md,
.contact-icon--md,
.info-icon--md {
  width: var(--gwc-icon-md);
  height: var(--gwc-icon-md);
  max-width: var(--gwc-icon-md);
  max-height: var(--gwc-icon-md);
}

.gwc-icon--lg,
.contact-icon--lg,
.info-icon--lg {
  width: var(--gwc-icon-lg);
  height: var(--gwc-icon-lg);
  max-width: var(--gwc-icon-lg);
  max-height: var(--gwc-icon-lg);
}

.gwc-topbar__item svg,
.gwc-topbar svg.gwc-icon {
  width: var(--gwc-icon-sm);
  height: var(--gwc-icon-sm);
  max-width: var(--gwc-icon-sm);
  max-height: var(--gwc-icon-sm);
  display: block;
}

a {
  color: var(--gwc-navy-mid);
  text-decoration: none;
  transition: color var(--gwc-transition);
}

a:hover {
  color: var(--gwc-gold);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em;
  line-height: 1.25;
  color: var(--gwc-navy);
  font-weight: 700;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gwc-container {
  width: 100%;
  max-width: var(--gwc-container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 28px);
}

.gwc-page-layout {
  width: 100%;
}

.gwc-text-center {
  text-align: center;
}

/* Top bar — luxury corporate strip */
.gwc-topbar {
  background: linear-gradient(180deg, #0c1a30 0%, var(--gwc-navy) 100%);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  min-height: var(--gwc-topbar-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(196, 165, 116, 0.1);
}

.gwc-topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  width: 100%;
}

.gwc-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 clamp(14px, 2.5vw, 28px);
  min-height: var(--gwc-topbar-h);
  line-height: 1.2;
}

.gwc-topbar__item + .gwc-topbar__item {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.gwc-topbar__item svg {
  flex-shrink: 0;
  color: var(--gwc-gold-muted);
  opacity: 0.85;
  stroke-width: 1.75;
}

.gwc-topbar__value {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  white-space: nowrap;
}

.gwc-topbar a.gwc-topbar__value {
  transition: color 0.3s var(--gwc-ease-premium);
}

.gwc-topbar a.gwc-topbar__value:hover {
  color: var(--gwc-gold-muted);
}

.gwc-topbar__item--location .gwc-topbar__value {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
}

/* Header */
.gwc-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(15, 39, 68, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 4px 24px rgba(10, 22, 40, 0.04);
  transition: box-shadow 0.4s var(--gwc-ease-premium), border-color 0.4s var(--gwc-ease-premium);
}

.gwc-header.is-scrolled {
  border-bottom-color: rgba(15, 39, 68, 0.1);
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
}

.gwc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--gwc-header-h);
}

.gwc-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.gwc-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}

.gwc-logo__name {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--gwc-navy);
  letter-spacing: -0.025em;
}

.gwc-logo__tag {
  font-size: 0.65rem;
  color: var(--gwc-gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}

.gwc-logo--footer .gwc-logo__name {
  color: var(--gwc-white);
  font-size: 1.2rem;
}

.gwc-logo--has-image img {
  max-height: 52px;
  width: auto;
}

.gwc-nav__list {
  display: flex;
  gap: 4px 18px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.gwc-nav__list li {
  flex-shrink: 0;
}

.gwc-nav__item--contact a {
  white-space: nowrap;
}

@media (max-width: 1280px) and (min-width: 901px) {
  .gwc-nav__list {
    gap: 4px 10px;
  }
  .gwc-nav__list a {
    font-size: 0.78rem;
    letter-spacing: -0.01em;
  }
  .gwc-header__cta {
    padding: 8px 14px;
    font-size: 0.75rem;
  }
  .gwc-lang__btn {
    padding: 4px 6px;
    font-size: 0.7rem;
  }
}

.gwc-nav__list a {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(15, 39, 68, 0.88);
  padding: 8px 0;
  letter-spacing: 0.01em;
  transition: color 0.3s var(--gwc-ease-premium);
}

.gwc-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gwc-gold-soft), transparent);
  transform: scaleX(0);
  opacity: 0;
  transition: transform 0.35s var(--gwc-ease-premium), opacity 0.35s var(--gwc-ease-premium);
}

.gwc-nav__list a:hover {
  color: var(--gwc-navy);
}

.gwc-nav__list a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.gwc-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

/* Header CTA — refined luxury (separate from page gold buttons) */
.gwc-header__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  color: var(--gwc-gold-muted);
  background: linear-gradient(180deg, #0d1e36 0%, var(--gwc-navy) 100%);
  border: 1px solid var(--gwc-gold-border);
  border-radius: 6px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 4px 14px rgba(10, 22, 40, 0.14);
  transition:
    color 0.35s var(--gwc-ease-premium),
    border-color 0.35s var(--gwc-ease-premium),
    background 0.35s var(--gwc-ease-premium),
    box-shadow 0.35s var(--gwc-ease-premium),
    transform 0.35s var(--gwc-ease-premium);
}

.gwc-header__cta:hover {
  color: #fff;
  border-color: rgba(212, 184, 150, 0.65);
  background: linear-gradient(180deg, #122a4a 0%, #0a1628 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 0 0 1px rgba(196, 165, 116, 0.15),
    0 8px 28px var(--gwc-gold-glow);
  transform: translateY(-1px);
}

.gwc-header__cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(10, 22, 40, 0.12);
}

.gwc-lang {
  display: flex;
  gap: 2px;
  border: 1px solid rgba(15, 39, 68, 0.1);
  border-radius: 6px;
  padding: 2px;
  background: rgba(244, 247, 251, 0.6);
}

.gwc-lang__btn {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: 4px;
  color: var(--gwc-text-muted);
  cursor: default;
  letter-spacing: 0.04em;
  transition: background 0.25s var(--gwc-ease-premium), color 0.25s var(--gwc-ease-premium);
}

.gwc-lang__btn.is-active {
  background: var(--gwc-navy);
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(10, 22, 40, 0.15);
}

.gwc-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.gwc-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gwc-navy);
  border-radius: 2px;
  transition: var(--gwc-transition);
}

/* Buttons */
.gwc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--gwc-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--gwc-transition), box-shadow var(--gwc-transition), background var(--gwc-transition);
  text-decoration: none;
  font-family: inherit;
}

.gwc-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--gwc-shadow);
}

.gwc-btn--gold {
  background: linear-gradient(145deg, #b8956a 0%, var(--gwc-gold-soft) 48%, #d4b896 100%);
  color: var(--gwc-navy);
  border-color: rgba(184, 149, 106, 0.5);
  box-shadow: 0 6px 24px rgba(196, 165, 116, 0.25);
}

.gwc-btn--gold:hover {
  background: linear-gradient(145deg, #a8865f 0%, #c4a574 50%, #c9b08a 100%);
  color: var(--gwc-navy);
  box-shadow: 0 10px 32px rgba(196, 165, 116, 0.32);
}

.gwc-btn--outline {
  background: transparent;
  color: var(--gwc-white);
  border-color: rgba(255, 255, 255, 0.6);
}

.gwc-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gwc-white);
}

.gwc-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gwc-white);
  border-color: transparent;
}

.gwc-btn--outline-light {
  background: transparent;
  color: var(--gwc-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.gwc-btn--ghost-light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--gwc-white);
}

.gwc-btn--sm {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.gwc-btn--block {
  width: 100%;
}

/* Hero */
.gwc-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gwc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gwc-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gwc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(15, 39, 68, 0.78) 50%, rgba(26, 58, 92, 0.65) 100%);
}

.gwc-hero__content {
  position: relative;
  z-index: 1;
  padding: 100px 20px 80px;
  max-width: 820px;
}

.gwc-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid var(--gwc-gold);
  color: var(--gwc-gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.gwc-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--gwc-white);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.gwc-hero__desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
  max-width: 600px;
}

.gwc-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.gwc-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.gwc-hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
}

.gwc-trust-icon {
  color: var(--gwc-cyan);
  font-weight: 800;
}

/* Stats */
.gwc-stats {
  background: var(--gwc-white);
  margin-top: -60px;
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}

.gwc-stats__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  background: var(--gwc-white);
  border-radius: var(--gwc-radius);
  box-shadow: var(--gwc-shadow-lg);
  padding: 32px 24px;
  border: 1px solid var(--gwc-border);
}

.gwc-stat {
  text-align: center;
  padding: 8px;
}

.gwc-stat__num {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--gwc-navy);
  line-height: 1.2;
}

.gwc-stat__num::after {
  content: attr(data-suffix);
}

.gwc-stat__label {
  font-size: 0.75rem;
  color: var(--gwc-text-muted);
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

/* Sections */
.gwc-section {
  padding: 80px 0;
}

.gwc-section--navy {
  background: linear-gradient(180deg, var(--gwc-navy) 0%, var(--gwc-navy-mid) 100%);
  color: rgba(255, 255, 255, 0.9);
}

.gwc-section--navy h2,
.gwc-section--navy h3 {
  color: var(--gwc-white);
}

.gwc-section--light {
  background: var(--gwc-bg);
}

.gwc-section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gwc-gold);
  margin-bottom: 12px;
}

.gwc-section__eyebrow--light {
  color: var(--gwc-gold-light);
}

.gwc-section__title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: 20px;
}

.gwc-section__title--center {
  text-align: center;
}

.gwc-section__title--light {
  color: var(--gwc-white);
}

/* About page — premium layout (page-hakkimizda.php) */
.gwc-about-page__header {
  max-width: 980px;
  margin: 0 auto 34px;
}

.gwc-about-page__intro {
  max-width: 980px;
  margin: 0 auto 36px;
}

.gwc-about-page__big {
  font-size: clamp(1.15rem, 1.15vw + 1rem, 1.45rem);
  line-height: 1.85;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--gwc-navy-mid);
  margin: 0 0 14px;
}

.gwc-about-page__story,
.gwc-about-page__importexport {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(15, 39, 68, 0.08);
}

.gwc-about-page__story h3,
.gwc-about-page__importexport h3 {
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--gwc-navy-mid);
}

.gwc-about-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 34px;
  align-items: start;
}

.gwc-about-page__copy {
  max-width: 64ch;
}

.gwc-about-page__copy p {
  line-height: 1.9;
}

.gwc-about-page__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.gwc-about-page__pillar {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 14px 0;
  box-shadow: none;
}

.gwc-about-page__pillar h3 {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--gwc-navy-mid);
}

.gwc-about-page__pillar p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gwc-text-muted);
  margin: 0;
}

.gwc-about-page__pillar + .gwc-about-page__pillar {
  border-top: 1px solid rgba(15, 39, 68, 0.08);
}

.gwc-about-page__checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.gwc-about-page__checks li {
  padding: 10px 12px;
  background: transparent;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(15, 39, 68, 0.08);
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
}

.gwc-about-page__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.gwc-about-page__panel {
  border-radius: 18px;
  background: radial-gradient(ellipse 70% 60% at 30% 0%, rgba(184, 149, 106, 0.16) 0%, transparent 58%),
    linear-gradient(180deg, rgba(4, 8, 16, 0.06) 0%, rgba(15, 39, 68, 0.02) 100%);
  border: 1px solid rgba(15, 39, 68, 0.10);
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(4, 8, 16, 0.08);
  padding: 18px;
  display: grid;
  gap: 14px;
}

.gwc-about-page__media {
  border-radius: 14px;
  min-height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  overflow: hidden;
}

.gwc-about-page__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(4, 8, 16, 0.72) 0%, rgba(4, 8, 16, 0.12) 60%, transparent 100%),
    radial-gradient(ellipse 55% 45% at 50% 0%, rgba(0, 180, 216, 0.10) 0%, transparent 60%);
}

.gwc-about-page__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gwc-about-page__cta {
  margin-top: 6px;
  border-radius: 16px;
  padding: 22px 18px 18px;
  background:
    radial-gradient(ellipse 60% 55% at 25% 0%, rgba(196, 165, 116, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 80% 10%, rgba(0, 180, 216, 0.14) 0%, transparent 60%),
    linear-gradient(135deg, rgba(10, 22, 40, 0.94), rgba(15, 39, 68, 0.90));
  border: 1px solid rgba(196, 165, 116, 0.28);
  box-shadow: 0 26px 64px rgba(10, 22, 40, 0.24);
  color: rgba(255, 255, 255, 0.92);
}

.gwc-about-page__cta-title {
  margin: 0 0 8px;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: #fff;
  font-size: 1.05rem;
}

.gwc-about-page__cta-desc {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.75;
}

.gwc-about-page__metric {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 39, 68, 0.10);
  border-radius: 14px;
  padding: 14px 14px 12px;
}

.gwc-about-page__metric strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: var(--gwc-navy-mid);
}

.gwc-about-page__metric span {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gwc-text-muted);
}

@media (max-width: 980px) {
  .gwc-about-page__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .gwc-about-page__pillars {
    grid-template-columns: 1fr;
  }
  .gwc-about-page__checks {
    grid-template-columns: 1fr;
  }
}

/* About page — cinematic parity with service pages */
.gwc-about-page--cinematic {
  position: relative;
  padding: clamp(64px, 9vh, 96px) 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(201, 162, 39, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 60% 55% at 10% 30%, rgba(0, 180, 216, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, #040810 0%, #0a1628 55%, #040810 100%);
  color: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.gwc-about-page--cinematic .gwc-section__title {
  color: #fff;
  letter-spacing: -0.03em;
}

.gwc-about-page--cinematic .gwc-home-lead {
  color: rgba(255, 255, 255, 0.70);
  max-width: 86ch;
}

.gwc-about-page--cinematic .gwc-prose {
  color: rgba(255, 255, 255, 0.76);
}

.gwc-about-page--cinematic .gwc-about-page__big {
  color: rgba(255, 255, 255, 0.88);
}

.gwc-about-page--cinematic .gwc-about-page__big strong {
  color: #fff;
  font-weight: 900;
}

.gwc-about-page__metrics-strip {
  margin: 14px auto 34px;
  max-width: 980px;
}

.gwc-about-page__ms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gwc-about-page__ms-item {
  border-radius: 16px;
  padding: 18px 16px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.30);
}

.gwc-about-page__ms-item strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--gwc-gold-light);
  text-shadow: 0 10px 40px rgba(201, 162, 39, 0.20);
}

.gwc-about-page__ms-item span {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.gwc-about-page--cinematic .gwc-about-page__grid {
  gap: 42px;
}

.gwc-about-page--cinematic .gwc-about-page__copy {
  max-width: 70ch;
}

.gwc-about-page--cinematic .gwc-about-page__pillar h3 {
  color: rgba(255, 255, 255, 0.92);
}

.gwc-about-page--cinematic .gwc-about-page__pillar p {
  color: rgba(255, 255, 255, 0.65);
}

.gwc-about-page--cinematic .gwc-about-page__pillar + .gwc-about-page__pillar {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.gwc-about-page--cinematic .gwc-about-page__checks li {
  color: rgba(255, 255, 255, 0.74);
  border-bottom-color: rgba(255, 255, 255, 0.10);
}

.gwc-about-page__card {
  margin-top: 22px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.gwc-about-page--cinematic .gwc-about-page__story,
.gwc-about-page--cinematic .gwc-about-page__importexport {
  border-top: 0;
  padding-top: 0;
}

.gwc-about-page--cinematic .gwc-about-page__story h3,
.gwc-about-page--cinematic .gwc-about-page__importexport h3 {
  color: #fff;
}

.gwc-about-page__process {
  margin-top: 22px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 15% 10%, rgba(201, 162, 39, 0.10) 0%, transparent 50%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
}

.gwc-about-page__process h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.gwc-about-page__process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gwc-about-page__pstep {
  border-radius: 16px;
  padding: 14px 14px 12px;
  background: rgba(4, 8, 16, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.gwc-about-page__pstep span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.16);
  border: 1px solid rgba(201, 162, 39, 0.28);
  color: var(--gwc-gold-light);
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}

.gwc-about-page__pstep strong {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.gwc-about-page__pstep p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  font-size: 0.92rem;
}

.gwc-about-page__pstep p strong {
  display: inline;
  color: rgba(255, 255, 255, 0.92);
}

.gwc-about-page--cinematic .gwc-about-page__panel {
  background:
    radial-gradient(ellipse 70% 60% at 30% 0%, rgba(201, 162, 39, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 55% 50% at 85% 15%, rgba(0, 180, 216, 0.12) 0%, transparent 60%),
    rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.gwc-about-page--cinematic .gwc-about-page__media {
  min-height: 260px;
  transform: translateZ(0);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gwc-about-page--cinematic .gwc-about-page__panel:hover .gwc-about-page__media {
  transform: scale(1.03);
}

@media (max-width: 980px) {
  .gwc-about-page__ms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gwc-about-page__process-grid {
    grid-template-columns: 1fr;
  }
  .gwc-page-hero--about {
    padding: 78px 0 52px;
  }
  .gwc-about-page__hero-actions .gwc-btn {
    width: 100%;
  }
}

/* Cards */
.gwc-card {
  background: var(--gwc-white);
  border-radius: var(--gwc-radius);
  padding: 28px;
  box-shadow: var(--gwc-shadow);
  border: 1px solid var(--gwc-border);
  transition: transform var(--gwc-transition), box-shadow var(--gwc-transition);
}

.gwc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gwc-shadow-lg);
}

.gwc-card--glass {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.gwc-card--glass:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* About */
.gwc-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.gwc-about__visual img,
.gwc-about__visual svg,
.gwc-illustration {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--gwc-radius);
  box-shadow: var(--gwc-shadow-lg);
}

.gwc-about__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-top: 24px;
}

.gwc-about__points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.gwc-check {
  color: var(--gwc-gold);
  font-weight: 800;
}

.gwc-detailed-about__lead {
  font-size: 1.1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 48px;
  color: rgba(255, 255, 255, 0.9);
}

.gwc-detailed-about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Services */
.gwc-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gwc-service-card h3 {
  font-size: 1.05rem;
  margin: 16px 0 8px;
}

.gwc-service-card p {
  font-size: 0.9rem;
  color: var(--gwc-text-muted);
  margin: 0;
}

.gwc-service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gwc-navy-mid), var(--gwc-navy-light));
  position: relative;
}

.gwc-service-card__icon::after {
  content: "";
  position: absolute;
  inset: 14px;
  background: var(--gwc-gold);
  border-radius: 4px;
  opacity: 0.9;
}

.gwc-service-card__icon--plane::after {
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.gwc-service-card__icon--truck::after {
  border-radius: 2px;
  inset: 18px 10px;
}

.gwc-service-card__icon--bolt::after {
  clip-path: polygon(50% 0, 0 100%, 40% 100%, 50% 60%, 100% 100%, 60% 100%);
  background: var(--gwc-cyan);
}

/* Network */
.gwc-network__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.gwc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.gwc-pill {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gwc-white);
}

.gwc-network__map img {
  opacity: 0.9;
}

/* Steps */
.gwc-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.gwc-step {
  text-align: center;
  padding: 32px 20px;
  background: var(--gwc-bg);
  border-radius: var(--gwc-radius);
  border: 1px solid var(--gwc-border);
  transition: var(--gwc-transition);
}

.gwc-step:hover {
  border-color: var(--gwc-gold);
  box-shadow: var(--gwc-shadow);
}

.gwc-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gwc-navy), var(--gwc-navy-light));
  color: var(--gwc-gold-light);
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 16px;
}

.gwc-step h3 {
  font-size: 1rem;
}

.gwc-step p {
  font-size: 0.88rem;
  color: var(--gwc-text-muted);
  margin: 0;
}

/* Why */
.gwc-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.gwc-why-card {
  text-align: center;
  padding: 24px 16px;
}

.gwc-why-card h3 {
  font-size: 0.95rem;
  margin: 0;
}

.gwc-why-card__icon {
  display: block;
  color: var(--gwc-gold);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

/* Sectors */
.gwc-sectors__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.gwc-sector-tag {
  padding: 18px 20px;
  background: var(--gwc-white);
  border-radius: var(--gwc-radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  border: 1px solid var(--gwc-border);
  box-shadow: var(--gwc-shadow);
  transition: var(--gwc-transition);
}

.gwc-sector-tag:hover {
  border-color: var(--gwc-gold);
  color: var(--gwc-navy-mid);
}

/* Testimonials */
.gwc-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.gwc-testimonial p {
  font-style: italic;
  color: var(--gwc-text-muted);
  margin-bottom: 20px;
}

.gwc-testimonial footer strong {
  display: block;
  color: var(--gwc-navy);
}

.gwc-testimonial footer span {
  font-size: 0.85rem;
  color: var(--gwc-gold);
  font-weight: 600;
}

/* FAQ */
.gwc-faq__wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.gwc-accordion__item {
  border-bottom: 1px solid var(--gwc-border);
}

.gwc-accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gwc-navy);
  text-align: left;
  cursor: pointer;
}

.gwc-accordion__icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--gwc-gold);
  border-bottom: 2px solid var(--gwc-gold);
  transform: rotate(45deg);
  transition: transform var(--gwc-transition);
  flex-shrink: 0;
}

.gwc-accordion__trigger[aria-expanded="true"] .gwc-accordion__icon {
  transform: rotate(-135deg);
}

.gwc-accordion__panel {
  padding: 0 0 20px;
}

.gwc-accordion__panel p {
  color: var(--gwc-text-muted);
  margin: 0;
}

.gwc-accordion__panel[hidden] {
  display: none;
}

/* Blog preview */
.gwc-blog-preview__grid,
.gwc-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.gwc-blog-card__thumb img {
  border-radius: var(--gwc-radius-sm);
  margin-bottom: 16px;
}

.gwc-blog-card__placeholder {
  height: 160px;
  background: linear-gradient(135deg, var(--gwc-navy-mid), var(--gwc-navy-light));
  border-radius: var(--gwc-radius-sm);
  margin-bottom: 16px;
}

.gwc-blog-card h3 {
  font-size: 1.05rem;
}

.gwc-blog-card h3 a {
  color: var(--gwc-navy);
}

.gwc-blog-card__date {
  font-size: 0.8rem;
  color: var(--gwc-gold);
  font-weight: 600;
}

.gwc-link {
  font-weight: 700;
  color: var(--gwc-gold);
  font-size: 0.9rem;
}

/* CTA banner */
.gwc-cta-banner {
  background: linear-gradient(135deg, var(--gwc-navy) 0%, var(--gwc-navy-light) 100%);
  padding: 80px 0;
  text-align: center;
}

.gwc-cta-banner h2 {
  color: var(--gwc-white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}

.gwc-cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.gwc-cta-banner .gwc-hero__buttons {
  justify-content: center;
}

/* Contact */
.gwc-contact .gwc-container {
  max-width: var(--gwc-container-max);
}

.gwc-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 40px);
  margin-top: 40px;
  width: 100%;
}

.gwc-contact__info {
  display: grid;
  gap: 14px;
}

.gwc-contact-card h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gwc-gold);
  margin-bottom: 8px;
}

.gwc-contact-card p {
  margin: 0;
  font-size: 0.95rem;
}

.gwc-form__row {
  margin-bottom: 16px;
}

.gwc-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--gwc-navy);
}

.gwc-form input,
.gwc-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gwc-border);
  border-radius: var(--gwc-radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--gwc-transition);
}

.gwc-form input:focus,
.gwc-form textarea:focus {
  outline: none;
  border-color: var(--gwc-gold);
}

/* Footer */
.gwc-footer {
  background: var(--gwc-navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 0;
}

.gwc-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 48px;
}

.gwc-footer__desc {
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.6;
}

.gwc-footer__title {
  color: var(--gwc-white);
  font-size: 0.95rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gwc-gold);
  display: inline-block;
}

.gwc-footer__links a,
.gwc-footer__contact a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
}

.gwc-footer__links a:hover,
.gwc-footer__contact a:hover {
  color: var(--gwc-gold-light);
}

.gwc-footer__links li,
.gwc-footer__contact li {
  margin-bottom: 8px;
}

.gwc-footer__links--cols {
  columns: 2;
  column-gap: 12px;
}

.gwc-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* Floating buttons */
.gwc-float {
  position: fixed;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--gwc-shadow-lg);
  transition: transform var(--gwc-transition);
}

.gwc-float:hover {
  transform: scale(1.08);
}

.gwc-float svg {
  width: 26px;
  height: 26px;
  max-width: 32px;
  max-height: 32px;
  display: block;
  flex-shrink: 0;
}

.gwc-float--whatsapp {
  bottom: calc(18px + env(safe-area-inset-bottom));
  right: 18px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--gwc-white);
}

.gwc-float--call {
  display: none;
}

/* Page templates */
.gwc-page-hero {
  background: linear-gradient(135deg, var(--gwc-navy) 0%, var(--gwc-navy-light) 100%);
  padding: 88px 0 56px;
  text-align: center;
}

.gwc-page-hero__bg {
  display: none;
}

.gwc-page-hero__inner {
  position: relative;
  z-index: 1;
}

.gwc-page-hero--about {
  position: relative;
  background: var(--gwc-navy);
  overflow: hidden;
  padding: clamp(92px, 11vh, 132px) 0 clamp(54px, 8vh, 78px);
  text-align: left;
}

.gwc-page-hero--about .gwc-page-hero__bg {
  display: block;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gwc-page-hero--about .gwc-page-hero__photo {
  position: absolute;
  inset: 0;
  filter: saturate(0.92) contrast(1.06);
  transform: scale(1.02);
  animation: gwc-about-kenburns 26s ease-in-out infinite alternate;
}

@keyframes gwc-about-kenburns {
  from { transform: scale(1.03); }
  to { transform: scale(1.09); }
}

.gwc-page-hero--about .gwc-page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(102deg, rgba(4, 8, 16, 0.965) 0%, rgba(4, 8, 16, 0.82) 42%, rgba(10, 22, 40, 0.48) 72%, rgba(10, 22, 40, 0.28) 100%),
    radial-gradient(circle at 72% 28%, rgba(201, 162, 39, 0.12) 0%, transparent 48%),
    radial-gradient(circle at 60% 62%, rgba(0, 180, 216, 0.12) 0%, transparent 40%),
    linear-gradient(0deg, rgba(4, 8, 16, 0.9) 0%, transparent 45%);
}

.gwc-page-hero--about .gwc-page-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.gwc-page-hero--about .gwc-page-hero__title {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  letter-spacing: -0.04em;
  text-shadow: 0 8px 48px rgba(0, 0, 0, 0.38);
  margin-top: 10px;
}

.gwc-page-hero--about .gwc-page-hero__desc {
  margin-left: 0;
  margin-right: 0;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.72);
}

.gwc-page-hero--about .gwc-page-hero__desc strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 850;
}

.gwc-about-page__hero-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gwc-page-hero--compact {
  padding: 80px 0 50px;
}

.gwc-page-hero__title {
  color: var(--gwc-white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  margin: 10px 0 0;
}

.gwc-page-hero__desc {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 12px auto 0;
  line-height: 1.65;
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
}

.gwc-page-hero--post .gwc-section__eyebrow {
  color: var(--gwc-gold-light);
}

@media (max-width: 640px) {
  .gwc-page-hero {
    padding: 72px 0 44px;
  }

  .gwc-page-hero__title {
    font-size: clamp(1.45rem, 6.2vw, 2rem);
  }

  .gwc-page-hero__desc {
    max-width: 34rem;
  }
}

.gwc-post-meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.gwc-content-area {
  padding: 60px 0 80px;
}

.gwc-prose {
  width: 100%;
  max-width: none;
  margin: 0;
}

.gwc-prose--reading {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.gwc-prose h2,
.gwc-prose h3 {
  margin-top: 1.5em;
}

.gwc-prose img {
  border-radius: var(--gwc-radius-sm);
  margin: 1.5em 0;
}

/* Editor / block inline icons inside prose (not hero illustrations) */
.gwc-prose svg:not(.gwc-illustration):not([class*="map"]) {
  width: 1.25em;
  height: 1.25em;
  max-width: var(--gwc-icon-md);
  max-height: var(--gwc-icon-md);
  vertical-align: -0.2em;
  display: inline-block;
}

.gwc-home-contact__icon {
  font-size: 1.5rem;
  line-height: 1;
  width: auto;
  height: auto;
  max-width: var(--gwc-icon-lg);
  max-height: var(--gwc-icon-lg);
  display: block;
  margin-bottom: 10px;
}

.gwc-page-featured,
.gwc-single__featured {
  margin-bottom: 32px;
  border-radius: var(--gwc-radius);
  overflow: hidden;
  box-shadow: var(--gwc-shadow);
}

.gwc-post-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gwc-border);
  font-weight: 600;
}

.gwc-single-cta {
  margin-top: 48px;
  text-align: center;
  background: linear-gradient(135deg, var(--gwc-bg), var(--gwc-white));
}

.gwc-single-cta h3 {
  margin-bottom: 8px;
}

.gwc-404 {
  text-align: center;
  padding: 40px 0;
}

.gwc-404__code {
  font-size: 6rem;
  font-weight: 900;
  color: var(--gwc-gold);
  line-height: 1;
  opacity: 0.5;
}

.gwc-empty {
  text-align: center;
  color: var(--gwc-text-muted);
  padding: 40px;
}

/* Pagination */
.navigation.pagination {
  margin-top: 40px;
  text-align: center;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  font-weight: 700;
  border: 1px solid var(--gwc-border);
}

.page-numbers.current {
  background: var(--gwc-navy);
  color: var(--gwc-white);
  border-color: var(--gwc-navy);
}

/* Mobile nav open */
body.gwc-nav-open {
  overflow: hidden;
}

body.gwc-nav-open .gwc-nav {
  display: block;
}

body.gwc-nav-open .gwc-nav__list {
  flex-direction: column;
  gap: 0;
}

body.gwc-nav-open .gwc-nav__list a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--gwc-border);
}

body.gwc-nav-open .gwc-menu-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

body.gwc-nav-open .gwc-menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.gwc-nav-open .gwc-menu-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive */
@media (max-width: 1100px) {
  .gwc-stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gwc-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gwc-detailed-about__grid {
    grid-template-columns: 1fr;
  }
  .gwc-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --gwc-header-h: 64px;
    --gwc-topbar-h: 42px;
  }

  .gwc-topbar {
    font-size: 0.75rem;
  }

  .gwc-topbar__item {
    padding: 0 16px;
    gap: 8px;
  }

  .gwc-topbar__inner {
    justify-content: center;
  }

  .gwc-header__inner {
    gap: 10px;
  }

  .gwc-logo__name {
    font-size: 0.98rem;
  }
  .gwc-logo__tag {
    font-size: 0.62rem;
  }

  .gwc-about__grid,
  .gwc-network__inner,
  .gwc-contact__grid,
  .gwc-faq__wrap {
    grid-template-columns: 1fr;
  }
  .gwc-steps__grid,
  .gwc-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gwc-blog-preview__grid,
  .gwc-posts-grid {
    grid-template-columns: 1fr;
  }
  /* Hide desktop nav in header on mobile (we use dedicated overlay) */
  .gwc-nav {
    display: none !important;
  }

  /* Fullscreen mobile nav overlay */
  .gwc-mobile-nav {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    z-index: 99990 !important;
    background: rgba(4, 8, 16, 0.62);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0s linear 0.22s;
    padding: calc(var(--gwc-header-h) + 10px) 16px calc(18px + env(safe-area-inset-bottom));
    overflow: hidden;
  }

  body.gwc-nav-open .gwc-mobile-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.22s ease, visibility 0s;
  }

  .gwc-mobile-nav__panel {
    height: 100%;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 14px 14px 18px;
  }

  .gwc-mobile-nav__close {
    position: sticky;
    top: 0;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--gwc-border);
    background: rgba(255, 255, 255, 0.92);
    color: var(--gwc-navy);
    font-size: 28px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-bottom: 10px;
  }

  .gwc-mobile-nav__brand {
    padding: 6px 6px 10px;
    border-bottom: 1px solid var(--gwc-border);
    margin-bottom: 10px;
  }
  .gwc-mobile-nav__brand .gwc-logo__tag { display: none; }

  .gwc-mobile-nav__links .gwc-nav__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0;
  }

  .gwc-mobile-nav__links .gwc-nav__list a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 14px 10px;
    font-size: 1.06rem;
    font-weight: 700;
    border-bottom: 1px solid var(--gwc-border);
  }

  .gwc-mobile-nav__links .gwc-nav__list a::after {
    display: none;
  }

  /* Keep hamburger above overlay */
  .gwc-menu-toggle {
    position: relative;
    z-index: 100000;
  }

  .gwc-menu-toggle {
    display: flex;
  }
  .gwc-header__cta {
    display: none;
  }
  .gwc-lang {
    display: none;
  }
  .gwc-float--call {
    display: flex;
    bottom: calc(18px + env(safe-area-inset-bottom));
    left: 18px;
    width: 56px;
    height: 56px;
    background: var(--gwc-navy);
    color: var(--gwc-white);
  }
  .gwc-float--whatsapp {
    bottom: calc(18px + env(safe-area-inset-bottom));
    right: 18px;
    width: 56px;
    height: 56px;
  }

  /* Keep content clear of fixed CTAs */
  .gwc-main {
    padding-bottom: calc(110px + env(safe-area-inset-bottom));
  }

  body.gwc-nav-open .gwc-float {
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 640px) {
  :root {
    --gwc-header-h: 56px;
    --gwc-topbar-h: 0px;
  }

  /* Mobile: make header app-like and remove topbar clutter */
  .gwc-topbar {
    display: none;
  }

  .gwc-topbar__item--hide-mobile {
    display: none;
  }
  .gwc-topbar__inner {
    gap: 10px 14px;
  }
  .gwc-header__inner {
    min-height: var(--gwc-header-h);
    gap: 10px;
  }
  .gwc-logo__tag {
    display: none;
  }
  .gwc-menu-toggle {
    padding: 6px;
  }
  .gwc-menu-toggle span {
    width: 22px;
  }
  .gwc-stats {
    margin-top: -30px;
  }
  .gwc-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 12px;
  }
  .gwc-about__points {
    grid-template-columns: 1fr;
  }
  .gwc-services__grid,
  .gwc-sectors__grid,
  .gwc-steps__grid,
  .gwc-why__grid {
    grid-template-columns: 1fr;
  }
  .gwc-testimonials__grid {
    grid-template-columns: 1fr;
  }
  .gwc-hero {
    min-height: auto;
  }
  .gwc-hero__content {
    padding: 80px 20px 60px;
  }
  .gwc-hero__buttons .gwc-btn {
    width: 100%;
  }
  .gwc-section {
    padding: 56px 0;
  }
  .gwc-footer__grid {
    grid-template-columns: 1fr;
  }
  .gwc-footer__links--cols {
    columns: 1;
  }
}
