:root {
  --gtc-navy: #071B4A;
  --gtc-navy-2: #0A2660;
  --gtc-blue: #123B85;
  --gtc-accent-blue: #1D5FD1;
  --gtc-red: #ED1C24;
  --gtc-dark-red: #C81018;
  --gtc-white: #FFFFFF;
  --gtc-light: #F5F7FB;
  --gtc-light-blue: #EEF4FF;
  --gtc-text: #111827;
  --gtc-muted: #64748B;
  --gtc-border: #D9E2F1;
  --gtc-whatsapp: #25D366;
  --gtc-success: #14783F;
  --gtc-danger: #B42318;
  --gtc-shadow-sm: 0 10px 30px rgba(7, 27, 74, 0.09);
  --gtc-shadow: 0 22px 70px rgba(7, 27, 74, 0.14);
  --gtc-radius-sm: 14px;
  --gtc-radius: 24px;
  --gtc-header-height: 96px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--gtc-header-height) + 16px);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--gtc-text);
  background: var(--gtc-white);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.modal-open,
body.offcanvas-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}


h1 {
  margin-top: 0;
  color: var(--gtc-navy);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  line-height: 1.08;
}
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--gtc-navy);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  color: var(--gtc-white);
  background: var(--gtc-red);
}

:focus-visible {
  outline: 3px solid rgba(29, 95, 209, 0.5);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 0.75rem 1rem;
  color: var(--gtc-white);
  background: var(--gtc-red);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.gtc-container {
  width: min(100% - 2rem, 1280px);
  max-width: 1280px;
}

.section-anchor {
  scroll-margin-top: calc(var(--gtc-header-height) + 18px);
}

.section {
  padding: clamp(5rem, 8vw, 8.5rem) 0;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
}

.section-title {
  margin: 0.7rem 0 1.25rem;
  font-size: clamp(2rem, 4.3vw, 3.6rem);
  letter-spacing: -0.04em;
}

.section-lead {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--gtc-muted);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--gtc-blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 3px;
  background: var(--gtc-red);
  border-radius: 999px;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.82);
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gtc-red {
  color: var(--gtc-white);
  background: linear-gradient(135deg, var(--gtc-red), var(--gtc-dark-red));
  border-color: var(--gtc-red);
  box-shadow: 0 14px 30px rgba(237, 28, 36, 0.22);
}

.btn-gtc-red:hover,
.btn-gtc-red:focus-visible {
  color: var(--gtc-white);
  background: linear-gradient(135deg, #ff3138, var(--gtc-dark-red));
  border-color: #ff3138;
  box-shadow: 0 16px 34px rgba(237, 28, 36, 0.3);
}

.btn-gtc-blue {
  color: var(--gtc-white);
  background: var(--gtc-blue);
  border-color: var(--gtc-blue);
}

.btn-gtc-blue:hover,
.btn-gtc-blue:focus-visible {
  color: var(--gtc-white);
  background: var(--gtc-navy-2);
  border-color: var(--gtc-navy-2);
}

.btn-gtc-outline {
  color: var(--gtc-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
}

.btn-gtc-outline:hover,
.btn-gtc-outline:focus-visible {
  color: var(--gtc-navy);
  background: var(--gtc-white);
  border-color: var(--gtc-white);
}

.btn-whatsapp {
  color: #0b4724;
  background: rgba(37, 211, 102, 0.14);
  border-color: rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  color: #073d1d;
  background: rgba(37, 211, 102, 0.24);
  border-color: var(--gtc-whatsapp);
}

/* Header */
.site-header {
  z-index: 1030;
  padding: 0.75rem 0;
  color: var(--gtc-white);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: padding 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  padding: 0.35rem 0;
  background: rgba(7, 27, 74, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 34px rgba(2, 11, 33, 0.2);
  backdrop-filter: blur(18px);
}

.site-header .navbar {
  padding: 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
}

.logo-shell {
  width: 95px;
  height: 62px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.55rem;
  overflow: hidden;
  background: var(--gtc-white);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(4, 16, 43, 0.16);
  transition: width 0.3s ease, height 0.3s ease, border-radius 0.3s ease;
}

.logo-shell img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.site-header.is-scrolled .logo-shell {
  width: 82px;
  height: 52px;
  border-radius: 12px;
}

.logo-shell-sm {
  width: 76px;
  height: 48px;
  border-radius: 10px;
}

.brand-copy {
  flex-direction: column;
  color: var(--gtc-white);
  line-height: 1.2;
}

.brand-copy strong {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
}

.brand-copy small {
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header .nav-link {
  position: relative;
  padding: 0.7rem 0.8rem !important;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.91rem;
  font-weight: 600;
}

.site-header .nav-link::after {
  position: absolute;
  right: 0.8rem;
  bottom: 0.45rem;
  left: 0.8rem;
  height: 2px;
  content: "";
  background: var(--gtc-red);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--gtc-white);
}

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
}

.social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gtc-white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.social-link + .social-link {
  margin-left: 0.4rem;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--gtc-white);
  background: var(--gtc-red);
  transform: translateY(-2px);
}

.mobile-menu-button {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--gtc-white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 12px;
}

.mobile-menu-button i {
  font-size: 1.7rem;
}

.mobile-menu-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.22);
}

.mobile-offcanvas {
  color: var(--gtc-white);
  background: linear-gradient(180deg, var(--gtc-navy), #04102b);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-offcanvas .offcanvas-header {
  padding: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-offcanvas .offcanvas-title {
  color: var(--gtc-white);
}

.mobile-offcanvas small {
  color: rgba(255, 255, 255, 0.65);
}

.mobile-nav-list {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.mobile-nav-link {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 12px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active,
.mobile-nav-link:focus-visible {
  color: var(--gtc-white);
  background: rgba(255, 255, 255, 0.1);
}

.offcanvas-office-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  margin-top: 0.75rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.offcanvas-office-card div {
  display: flex;
  flex-direction: column;
}

.offcanvas-office-card a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.offcanvas-office-card a:hover {
  color: var(--gtc-white);
}

.offcanvas-socials {
  display: flex;
  gap: 0.75rem;
}

.offcanvas-socials a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  color: var(--gtc-white);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(8rem, 12vw, 10rem) 0 4.75rem;
  overflow: hidden;
  color: var(--gtc-white);
  background: linear-gradient(135deg, var(--gtc-navy), var(--gtc-blue));
}

.hero-background,
.hero-overlay,
.world-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background {
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 78% 28%, rgba(29, 95, 209, 0.04), transparent 32%),
    linear-gradient(90deg, rgba(3, 14, 43, 0.97) 0%, rgba(7, 27, 74, 0.91) 42%, rgba(7, 27, 74, 0.48) 75%, rgba(7, 27, 74, 0.76) 100%);
}

.world-grid {
  z-index: 2;
  opacity: 0.22;
  background-image: radial-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, transparent 0, black 50%, black 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-copy {
  max-width: 780px;
}

.hero-copy h1 {
  margin: 0.9rem 0 1.2rem;
  color: var(--gtc-white);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.6rem, 5.7vw, 5.2rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero-copy h1 span {
  position: relative;
  display: inline-block;
}

.hero-copy h1 span::after {
  position: absolute;
  right: 0;
  bottom: -0.12em;
  left: 0;
  height: 0.09em;
  content: "";
  background: var(--gtc-red);
  border-radius: 999px;
  transform: scaleX(0.6);
  transform-origin: left;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 1.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.17rem);
}

.coming-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.9rem;
  color: var(--gtc-white);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.badge-dot {
  width: 9px;
  height: 9px;
  display: block;
  background: var(--gtc-red);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(237, 28, 36, 0.16);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.hero-actions .btn {
  min-height: 54px;
  padding-right: 1.3rem;
  padding-left: 1.3rem;
  font-size: 0.96rem;
}

.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.hero-text-link:hover {
  color: var(--gtc-white);
}

.hero-text-link i {
  transition: transform 0.2s ease;
}

.hero-text-link:hover i {
  transform: translateY(3px);
}

.hero-office-panel {
  position: relative;
  z-index: 2;
  max-width: 440px;
  padding: 1rem;
  margin-left: auto;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--gtc-radius);
  box-shadow: 0 26px 70px rgba(2, 10, 30, 0.28);
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0.35rem 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-heading i {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

.hero-office-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem;
  background: rgba(4, 16, 43, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
}

.hero-office-row + .hero-office-row {
  margin-top: 0.7rem;
}

.office-flag {
  font-size: 1.55rem;
  line-height: 1;
}

.hero-office-row div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.hero-office-row strong {
  color: var(--gtc-white);
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
}

.hero-office-row a:not(.office-call-icon) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.office-call-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gtc-white);
  background: var(--gtc-red);
  border-radius: 12px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.office-call-icon:hover,
.office-call-icon:focus-visible {
  color: var(--gtc-white);
  background: var(--gtc-dark-red);
  transform: rotate(-6deg) scale(1.05);
}

.panel-footnote {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 0.35rem 0.1rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
}

.destination-tag {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  color: var(--gtc-navy);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(4, 16, 43, 0.2);
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.destination-tag span {
  color: var(--gtc-red);
  font-family: "Montserrat", sans-serif;
}

.destination-cairo {
  top: -28px;
  left: 9%;
}

.destination-amman {
  right: -6px;
  bottom: -24px;
}

.hero-route {
  position: absolute;
  z-index: 2;
  top: 18%;
  right: 2%;
  width: min(35vw, 540px);
  height: 250px;
  pointer-events: none;
  opacity: 0.55;
}

.route-line {
  position: absolute;
  inset: 0;
  border-top: 2px dashed rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transform: rotate(11deg);
}

.route-plane {
  position: absolute;
  top: 15px;
  right: 25%;
  color: var(--gtc-white);
  font-size: 1.55rem;
  transform: rotate(90deg);
  animation: plane-float 4s ease-in-out infinite;
}

.countdown-wrap {
  margin-top: clamp(2.6rem, 6vh, 5rem);
}

.countdown-card {
  max-width: 960px;
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(390px, 1.25fr);
  align-items: center;
  gap: 1.35rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-left: 5px solid var(--gtc-red);
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(2, 10, 30, 0.26);
}

.countdown-intro {
  display: flex;
  flex-direction: column;
  padding-left: 0.35rem;
}

.countdown-label {
  color: var(--gtc-red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.countdown-intro strong {
  margin-top: 0.2rem;
  color: var(--gtc-navy);
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.countdown-unit {
  min-width: 0;
  padding: 0.75rem 0.45rem;
  text-align: center;
  background: var(--gtc-light-blue);
  border: 1px solid var(--gtc-border);
  border-radius: 13px;
}

.countdown-unit span {
  min-width: 2ch;
  display: block;
  color: var(--gtc-navy);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.countdown-unit span.is-changing {
  animation: number-pulse 0.35s ease;
}

.countdown-unit small {
  display: block;
  margin-top: 0.35rem;
  color: var(--gtc-muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.countdown-status {
  display: none;
  color: var(--gtc-navy);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: center;
}

.countdown-card.is-message-only {
  grid-template-columns: minmax(180px, 0.75fr) 1.25fr;
}

.countdown-card.is-message-only .countdown-grid {
  display: none;
}

.countdown-card.is-message-only .countdown-status {
  display: block;
}

.noscript-message {
  width: fit-content;
  padding: 0.55rem 0.8rem;
  margin-top: 0.75rem;
  color: #7c2d12;
  background: #ffedd5;
  border-radius: 10px;
  font-size: 0.86rem;
}

.hero-scroll-indicator {
  position: absolute;
  z-index: 4;
  right: 2rem;
  bottom: 1.5rem;
  width: 28px;
  height: 46px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 99px;
}

.hero-scroll-indicator span {
  width: 4px;
  height: 8px;
  background: var(--gtc-white);
  border-radius: 99px;
  animation: scroll-indicator 1.7s ease-in-out infinite;
}

/* About */
.about-section {
  position: relative;
  overflow: hidden;
  background: var(--gtc-white);
}

.about-section::before {
  position: absolute;
  top: -180px;
  right: -170px;
  width: 440px;
  height: 440px;
  content: "";
  background: radial-gradient(circle, rgba(29, 95, 209, 0.1), transparent 68%);
  border-radius: 50%;
}

.feature-list {
  display: grid;
  gap: 1.15rem;
  margin-top: 2.2rem;
}

.feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gtc-blue);
  background: var(--gtc-light-blue);
  border: 1px solid var(--gtc-border);
  border-radius: 15px;
  font-size: 1.2rem;
}

.feature-item h3 {
  margin: 0.05rem 0 0.25rem;
  font-size: 1.02rem;
}

.feature-item p {
  margin: 0;
  color: var(--gtc-muted);
  font-size: 0.94rem;
}

.travel-connection-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.3rem;
  overflow: hidden;
  color: var(--gtc-white);
  text-align: center;
  background:
    radial-gradient(circle at 80% 10%, rgba(29, 95, 209, 0.6), transparent 35%),
    linear-gradient(145deg, var(--gtc-navy), #04102b);
  border-radius: 30px;
  box-shadow: var(--gtc-shadow);
}

.travel-connection-card::before,
.travel-connection-card::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.travel-connection-card::before {
  width: 390px;
  height: 390px;
}

.travel-connection-card::after {
  width: 280px;
  height: 280px;
}

.connection-globe {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: rgba(255, 255, 255, 0.08);
  font-size: 9rem;
}

.connection-flags {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2.6rem;
}

.connection-route {
  width: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gtc-red);
  border-top: 2px dashed rgba(255, 255, 255, 0.34);
  font-size: 1.1rem;
}

.connection-route i {
  padding: 0 0.55rem;
  background: var(--gtc-navy);
  transform: translateY(-50%) rotate(90deg);
}

.travel-connection-card h3 {
  position: relative;
  z-index: 1;
  margin: 1.5rem 0 0.8rem;
  color: var(--gtc-white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

.travel-connection-card p {
  position: relative;
  z-index: 1;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.7);
}

.connection-codes {
  position: absolute;
  right: 2rem;
  bottom: 1.7rem;
  left: 2rem;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.28);
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

/* Services */
.services-section {
  position: relative;
  background: var(--gtc-light);
}

.services-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(7, 27, 74, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 27, 74, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.service-grid {
  position: relative;
}

.service-card {
  position: relative;
  height: 100%;
  min-height: 300px;
  padding: 2rem;
  overflow: hidden;
  background: var(--gtc-white);
  border: 1px solid var(--gtc-border);
  border-radius: 22px;
  box-shadow: var(--gtc-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(29, 95, 209, 0.35);
  box-shadow: 0 24px 55px rgba(7, 27, 74, 0.14);
  transform: translateY(-8px);
}

.service-icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gtc-white);
  background: linear-gradient(145deg, var(--gtc-blue), var(--gtc-accent-blue));
  border-radius: 18px;
  box-shadow: 0 14px 24px rgba(29, 95, 209, 0.22);
  font-size: 1.45rem;
}

.service-number {
  position: absolute;
  top: 1.55rem;
  right: 1.7rem;
  color: rgba(7, 27, 74, 0.12);
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
}

.service-card h3 {
  margin: 1.45rem 0 0.75rem;
  font-size: 1.25rem;
}

.service-card p {
  margin: 0;
  color: var(--gtc-muted);
  font-size: 0.95rem;
}

.service-accent {
  position: absolute;
  right: 2rem;
  bottom: 0;
  left: 2rem;
  height: 4px;
  background: linear-gradient(90deg, var(--gtc-red), var(--gtc-blue));
  border-radius: 999px 999px 0 0;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.service-card:hover .service-accent,
.service-card:focus-visible .service-accent {
  transform: scaleX(1);
}

/* Offices */
.offices-section {
  background: var(--gtc-white);
}

.office-grid > div {
  display: flex;
}

.office-card {
  width: 100%;
  overflow: hidden;
  background: var(--gtc-white);
  border: 1px solid var(--gtc-border);
  border-radius: 26px;
  box-shadow: var(--gtc-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.office-card:hover {
  box-shadow: var(--gtc-shadow);
  transform: translateY(-6px);
}

.office-image-wrap {
  position: relative;
  height: 255px;
  overflow: hidden;
  background: var(--gtc-light-blue);
}

.office-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(7, 27, 74, 0.42));
}

.office-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.office-card:hover .office-image-wrap img {
  transform: scale(1.035);
}

.office-country-badge {
  position: absolute;
  z-index: 2;
  top: 1.2rem;
  left: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.8rem;
  color: var(--gtc-navy);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.office-body {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.office-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--gtc-border);
}

.office-kicker {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--gtc-red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.office-title-row h3 {
  margin: 0;
  font-size: 1.65rem;
}

.office-status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.65rem;
  color: var(--gtc-blue);
  background: var(--gtc-light-blue);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.office-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.8rem 0;
}

.office-detail > i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gtc-blue);
  background: var(--gtc-light-blue);
  border-radius: 11px;
}

.office-detail strong {
  display: block;
  margin-bottom: 0.1rem;
  color: var(--gtc-navy);
  font-size: 0.85rem;
}

.office-detail p,
.office-detail address {
  margin: 0;
  color: var(--gtc-muted);
  font-size: 0.9rem;
  font-style: normal;
  overflow-wrap: anywhere;
}

.phone-group {
  margin-top: 0.8rem;
  border-top: 1px solid var(--gtc-border);
}

.phone-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gtc-border);
}

.phone-link {
  min-width: 0;
  color: var(--gtc-navy);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.phone-link:hover {
  color: var(--gtc-accent-blue);
}

.phone-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 0.45rem;
}

.phone-actions .btn {
  min-height: 38px;
}

.btn-map {
  color: var(--gtc-navy);
  background: var(--gtc-light-blue);
  border: 1px solid var(--gtc-border);
}

.btn-map:hover,
.btn-map:focus-visible {
  color: var(--gtc-white);
  background: var(--gtc-blue);
  border-color: var(--gtc-blue);
}

/* Notification Form */
.notification-section {
  background: linear-gradient(180deg, var(--gtc-light) 0%, var(--gtc-white) 100%);
}

.notification-shell {
  overflow: hidden;
  background: var(--gtc-white);
  border: 1px solid var(--gtc-border);
  border-radius: 30px;
  box-shadow: var(--gtc-shadow);
}

.notification-intro {
  position: relative;
  min-height: 100%;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  color: var(--gtc-white);
  background:
    radial-gradient(circle at 100% 0, rgba(29, 95, 209, 0.58), transparent 36%),
    linear-gradient(145deg, var(--gtc-navy), #04102b);
}

.notification-intro::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 300px;
  height: 300px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.03), 0 0 0 110px rgba(255, 255, 255, 0.025);
}

.notification-intro h2 {
  position: relative;
  z-index: 1;
  margin: 0.7rem 0 1rem;
  color: var(--gtc-white);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
}

.notification-intro p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.notification-highlights {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.notification-highlights span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
}


.notification-socials {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.notification-socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.65rem 0.9rem;
  color: var(--gtc-white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.notification-socials a:hover,
.notification-socials a:focus-visible {
  color: var(--gtc-white);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.36);
  transform: translateY(-2px);
}

.notification-highlights i {
  color: #6ee7a0;
}

.notification-form-wrap {
  padding: clamp(2rem, 5vw, 4rem);
}

.form-label {
  margin-bottom: 0.45rem;
  color: var(--gtc-navy);
  font-size: 0.88rem;
  font-weight: 700;
}

.form-control,
.form-select {
  min-height: 52px;
  padding: 0.75rem 0.9rem;
  color: var(--gtc-text);
  background-color: var(--gtc-white);
  border-color: var(--gtc-border);
  border-radius: 12px;
  box-shadow: none;
}

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

.form-control:focus,
.form-select:focus {
  border-color: var(--gtc-accent-blue);
  box-shadow: 0 0 0 0.25rem rgba(29, 95, 209, 0.12);
}

.form-control.is-invalid,
.form-select.is-invalid,
.form-check-input.is-invalid {
  border-color: var(--gtc-danger);
  background-image: none;
}

.field-error {
  min-height: 1.35rem;
  padding-top: 0.25rem;
  color: var(--gtc-danger);
  font-size: 0.78rem;
  font-weight: 600;
}

.form-text {
  color: var(--gtc-muted);
  font-size: 0.76rem;
  text-align: right;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.85rem;
  background: var(--gtc-light);
  border: 1px solid var(--gtc-border);
  border-radius: 12px;
}

.consent-check .form-check-input {
  flex: 0 0 auto;
  margin-top: 0.25rem;
}

.consent-check .form-check-label {
  color: var(--gtc-muted);
  font-size: 0.85rem;
}

.notify-button {
  min-width: 170px;
}

.notify-button:disabled {
  opacity: 0.72;
  transform: none;
}

.form-message {
  display: none;
  padding: 0.9rem 1rem;
  margin-top: 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-message.is-success {
  display: block;
  color: var(--gtc-success);
  background: #e9f8ef;
  border: 1px solid #b8e6c9;
}

.form-message.is-error {
  display: block;
  color: var(--gtc-danger);
  background: #fff1f0;
  border: 1px solid #ffd1cc;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

/* Contact CTA */
.contact-cta {
  position: relative;
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
  overflow: hidden;
  color: var(--gtc-white);
  background: linear-gradient(125deg, var(--gtc-navy) 0%, var(--gtc-navy-2) 60%, var(--gtc-blue) 100%);
}

.contact-cta::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  content: "";
  background: var(--gtc-red);
}

.contact-map-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: radial-gradient(circle at 10px 10px, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, transparent, black 32%, black);
}

.contact-cta h2 {
  margin: 0.7rem 0 1rem;
  color: var(--gtc-white);
  font-size: clamp(2.1rem, 4.4vw, 3.7rem);
  letter-spacing: -0.04em;
}

.contact-cta p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.contact-button-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.btn-light-cta,
.btn-whatsapp-cta {
  min-height: 72px;
  justify-content: flex-start;
  padding: 0.9rem 1rem;
  text-align: left;
}

.btn-light-cta {
  color: var(--gtc-navy);
  background: var(--gtc-white);
  border-color: var(--gtc-white);
}

.btn-light-cta:hover,
.btn-light-cta:focus-visible {
  color: var(--gtc-navy);
  background: var(--gtc-light-blue);
  border-color: var(--gtc-light-blue);
}

.btn-whatsapp-cta {
  color: #073d1d;
  background: #dffbea;
  border-color: #dffbea;
}

.btn-whatsapp-cta:hover,
.btn-whatsapp-cta:focus-visible {
  color: #073d1d;
  background: #c9f7db;
  border-color: #c9f7db;
}

.btn-light-cta > i,
.btn-whatsapp-cta > i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 27, 74, 0.08);
  border-radius: 12px;
  font-size: 1.05rem;
}

.btn-whatsapp-cta > i {
  background: rgba(37, 211, 102, 0.18);
}

.btn-light-cta span,
.btn-whatsapp-cta span {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  line-height: 1.25;
}

.btn-light-cta small,
.btn-whatsapp-cta small {
  margin-bottom: 0.2rem;
  color: var(--gtc-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #030d25;
}

.footer-main {
  padding: clamp(4rem, 7vw, 6rem) 0 3rem;
}

.site-footer h2,
.site-footer h3 {
  color: var(--gtc-white);
}

.site-footer h3 {
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
}

.footer-logo-shell {
  width: 118px;
  height: 72px;
  margin-bottom: 1.2rem;
}

.footer-brand > span:not(.logo-shell) {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 290px;
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.87rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gtc-white);
}

.site-footer address {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
  font-style: normal;
}

.footer-socials {
  display: grid;
  gap: 0.65rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.87rem;
}

.footer-socials i {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gtc-white);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.footer-socials a:hover {
  color: var(--gtc-white);
}

.footer-socials a:hover i {
  background: var(--gtc-red);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.83rem;
}

.footer-bottom small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.75rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal button {
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  background: none;
  border: 0;
  font-size: 0.8rem;
}

.footer-legal button:hover,
.footer-legal button:focus-visible {
  color: var(--gtc-white);
  text-decoration: underline;
}

/* Fixed tools */
.back-to-top {
  position: fixed;
  z-index: 1015;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gtc-white);
  background: var(--gtc-red);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(237, 28, 36, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gtc-dark-red);
  transform: translateY(-2px);
}

.mobile-contact-bar {
  display: none;
}

/* Modals */
.legal-modal {
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  box-shadow: var(--gtc-shadow);
}

.legal-modal .modal-header {
  padding: 1.35rem 1.5rem;
  border-bottom-color: var(--gtc-border);
}

.modal-label {
  display: block;
  color: var(--gtc-red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-modal .modal-body {
  padding: 1.5rem;
  color: var(--gtc-muted);
}

.legal-review-note {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.9rem;
  margin-top: 1.2rem;
  color: #7c2d12;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  font-size: 0.86rem;
}

/* Reveal animations */
.reveal,
.reveal-on-load {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible,
.reveal-on-load.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 5px rgba(237, 28, 36, 0.12); }
  50% { box-shadow: 0 0 0 9px rgba(237, 28, 36, 0.03); }
}

@keyframes plane-float {
  0%, 100% { transform: translateY(0) rotate(90deg); }
  50% { transform: translateY(-12px) rotate(90deg); }
}

@keyframes scroll-indicator {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(17px); }
}

@keyframes number-pulse {
  0% { transform: scale(1); }
  50% { color: var(--gtc-red); transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 1199.98px) {
  .hero-route {
    opacity: 0.34;
  }

  .destination-cairo {
    left: 2%;
  }

  .phone-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .phone-actions {
    width: 100%;
  }

  .phone-actions .btn {
    flex: 1;
  }
}

@media (max-width: 991.98px) {
  :root {
    --gtc-header-height: 82px;
  }

  .site-header {
    padding: 0.55rem 0;
  }

  .hero-section {
    min-height: auto;
    padding-top: 8.7rem;
    padding-bottom: 4rem;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(3, 14, 43, 0.96) 0%, rgba(7, 27, 74, 0.84) 58%, rgba(7, 27, 74, 0.94) 100%);
  }

  .hero-office-panel {
    max-width: none;
    margin-right: auto;
    margin-left: 0;
  }

  .destination-tag {
    display: none;
  }

  .countdown-card {
    max-width: none;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .travel-connection-card {
    min-height: 440px;
  }

  .notification-intro {
    min-height: 390px;
  }

  .contact-button-grid {
    margin-top: 1rem;
  }
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .gtc-container {
    width: min(100% - 1.25rem, 1280px);
  }

  .section {
    padding: 4.5rem 0;
  }

  .brand-copy {
    display: none !important;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 12vw, 4.25rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .countdown-card,
  .countdown-card.is-message-only {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .countdown-intro {
    padding: 0.1rem 0.25rem;
    text-align: center;
  }

  .countdown-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .countdown-unit {
    padding: 0.7rem 0.25rem;
  }

  .office-title-row {
    flex-direction: column;
  }

  .phone-row {
    padding: 1.1rem 0;
  }

  .phone-actions {
    flex-direction: column;
  }

  .phone-actions .btn {
    width: 100%;
  }

  .notification-shell {
    border-radius: 22px;
  }

  .notification-intro,
  .notification-form-wrap {
    padding: 1.6rem;
  }

  .notification-intro {
    min-height: 350px;
  }

  .notify-button {
    width: 100%;
  }

  .contact-button-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .back-to-top {
    right: 0.75rem;
    bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 1025;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0.35rem 0.25rem calc(0.35rem + env(safe-area-inset-bottom));
    background: rgba(3, 13, 37, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -10px 30px rgba(3, 13, 37, 0.22);
    backdrop-filter: blur(16px);
  }

  .mobile-contact-bar a {
    min-width: 0;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.25rem;
    color: rgba(255, 255, 255, 0.82);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.61rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
  }

  .mobile-contact-bar a:last-child {
    border-right: 0;
  }

  .mobile-contact-bar i {
    color: var(--gtc-white);
    font-size: 1.15rem;
  }

  .mobile-contact-bar a:nth-child(2) i,
  .mobile-contact-bar a:nth-child(4) i {
    color: var(--gtc-whatsapp);
  }
}

@media (max-width: 575.98px) {
  .logo-shell {
    width: 80px;
    height: 52px;
  }

  .site-header.is-scrolled .logo-shell {
    width: 72px;
    height: 47px;
  }

  .hero-section {
    padding-top: 7.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 12.2vw, 3.55rem);
  }

  .hero-office-panel {
    border-radius: 18px;
  }

  .hero-office-row {
    padding: 0.85rem;
  }

  .countdown-card {
    padding: 0.8rem;
    border-left-width: 4px;
    border-radius: 17px;
  }

  .countdown-grid {
    gap: 0.35rem;
  }

  .countdown-unit small {
    font-size: 0.58rem;
    letter-spacing: 0.03em;
  }

  .travel-connection-card {
    min-height: 390px;
    padding: 1.5rem;
    border-radius: 22px;
  }

  .connection-flags {
    font-size: 2.2rem;
  }

  .connection-route {
    width: 64px;
  }

  .connection-codes {
    font-size: 1.25rem;
  }

  .service-card {
    min-height: 270px;
    padding: 1.55rem;
  }

  .office-image-wrap {
    height: 210px;
  }

  .office-body {
    padding: 1.25rem;
  }

  .office-title-row h3 {
    font-size: 1.45rem;
  }

  .notification-intro,
  .notification-form-wrap {
    padding: 1.35rem;
  }
}

@media (max-width: 359.98px) {
  .gtc-container {
    width: min(100% - 1rem, 1280px);
  }

  .hero-copy h1 {
    font-size: 2.22rem;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-contact-bar a {
    font-size: 0.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-on-load {
    opacity: 1;
    transform: none;
  }
}

/* Keep the quick-contact bar available on mobile and small tablets. */
@media (min-width: 768px) and (max-width: 991.98px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .back-to-top {
    bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 1025;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0.35rem 0.25rem calc(0.35rem + env(safe-area-inset-bottom));
    background: rgba(3, 13, 37, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -10px 30px rgba(3, 13, 37, 0.22);
    backdrop-filter: blur(16px);
  }

  .mobile-contact-bar a {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.25rem;
    color: rgba(255, 255, 255, 0.82);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.67rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
  }

  .mobile-contact-bar a:last-child {
    border-right: 0;
  }

  .mobile-contact-bar i {
    color: var(--gtc-white);
    font-size: 1.15rem;
  }

  .mobile-contact-bar a:nth-child(2) i,
  .mobile-contact-bar a:nth-child(4) i {
    color: var(--gtc-whatsapp);
  }
}
