:root {
  --gct-navy: #0a1f44;
  --gct-gold: #f4b400;
  --gct-emerald: #00a676;
  --gct-coral: #ff5e5b;
  --gct-cloud: #f7fafc;
  --gct-charcoal: #1a1a1a;
  --gct-heading-font: "Poppins", sans-serif;
  --gct-body-font: "Inter", sans-serif;
  --gct-accent-font: "Playfair Display", serif;
  --gct-radius: 28px;
  --gct-shadow: 0 24px 60px rgba(10, 31, 68, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--gct-body-font);
  color: var(--gct-charcoal);
  background: #fff;
  line-height: 1.65;
}

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

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

iframe {
  border: 0;
  width: 100%;
}

.gct-container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.gct-site-main {
  overflow: clip;
}

.gct-eyebrow {
  margin: 0 0 1rem;
  color: var(--gct-gold);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.75rem;
  font-weight: 700;
}

.gct-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.gct-button--gold {
  background: linear-gradient(90deg, var(--gct-gold), var(--gct-coral));
  color: var(--gct-navy);
  box-shadow: 0 18px 35px rgba(244, 180, 0, 0.3);
}

.gct-button--outline {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.gct-site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
}

.gct-utility-bar {
  background: var(--gct-navy);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
}

.gct-utility-bar__inner,
.gct-main-bar__inner,
.gct-footer-bottom__inner,
.gct-stats__grid,
.gct-contact-grid,
.gct-map-panel,
.gct-split,
.gct-footer-grid {
  display: flex;
  gap: 1rem;
}

.gct-utility-bar__inner {
  align-items: center;
  justify-content: space-between;
  min-height: 2.5rem;
}

.gct-utility-bar__group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.gct-main-bar {
  background: rgba(10, 31, 68, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.gct-main-bar__inner {
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
}

.gct-brand,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.custom-logo {
  max-height: 58px;
  width: auto;
}

.gct-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  font-family: var(--gct-heading-font);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gct-gold), var(--gct-coral));
  color: var(--gct-navy);
  box-shadow: 0 10px 24px rgba(244, 180, 0, 0.24);
}

.gct-brand__text {
  display: flex;
  flex-direction: column;
  color: #fff;
}

.gct-brand__text strong {
  font-family: var(--gct-heading-font);
  font-size: 0.95rem;
}

.gct-brand__text small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.gct-desktop-nav .gct-menu,
.gct-footer-menu,
.gct-footer-legal,
.gct-mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gct-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.gct-menu a {
  display: inline-flex;
  padding: 0.75rem 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  font-weight: 600;
}

.gct-header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.gct-menu-toggle,
.gct-mobile-close {
  appearance: none;
  border: 0;
  background: none;
  color: #fff;
  cursor: pointer;
}

.gct-menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
}

.gct-menu-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
}

.gct-mobile-panel {
  position: fixed;
  inset: 0;
  background: rgba(10, 31, 68, 0.94);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.gct-mobile-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gct-mobile-panel__inner {
  width: min(30rem, 100%);
  margin-left: auto;
  min-height: 100%;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(10, 31, 68, 0.98), rgba(0, 166, 118, 0.32));
}

.gct-mobile-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gct-mobile-close {
  font-size: 2rem;
}

.gct-mobile-nav {
  margin-top: 3rem;
}

.gct-mobile-menu li + li {
  margin-top: 0.45rem;
}

.gct-mobile-menu a {
  display: block;
  color: #fff;
  font-family: var(--gct-heading-font);
  font-size: clamp(1.4rem, 4vw, 2rem);
  padding: 0.7rem 0;
}

.gct-home-hero,
.gct-page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.gct-home-hero {
  min-height: 100svh;
  padding-top: 9rem;
}

.gct-page-hero {
  min-height: 34rem;
  padding-top: 10rem;
}

.gct-home-hero__overlay,
.gct-page-hero__overlay,
.gct-cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 31, 68, 0.88), rgba(0, 166, 118, 0.52));
}

.gct-home-hero__inner,
.gct-page-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
}

.gct-home-hero h1,
.gct-page-hero h1,
.gct-section-heading h2,
.gct-split__content h2,
.gct-cta-banner__content h2 {
  font-family: var(--gct-heading-font);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0;
}

.gct-home-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  max-width: 10ch;
}

.gct-home-hero h1 span {
  display: block;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--gct-accent-font);
  font-style: italic;
  font-weight: 500;
}

.gct-home-hero p,
.gct-page-hero p {
  max-width: 42rem;
  font-size: 1.05rem;
}

.gct-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.gct-marquee {
  overflow: hidden;
  white-space: nowrap;
  background: var(--gct-navy);
  color: #fff;
  padding: 0.95rem 0;
}

.gct-marquee__track {
  display: inline-flex;
  gap: 2rem;
  min-width: 200%;
  animation: gct-marquee 18s linear infinite;
  font-weight: 700;
  letter-spacing: 0.14em;
}

@keyframes gct-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.gct-section {
  padding: 5rem 0;
}

.gct-section--cloud {
  background: var(--gct-cloud);
}

.gct-section--split {
  padding-top: 6rem;
}

.gct-split {
  align-items: center;
}

.gct-split__media,
.gct-split__content {
  flex: 1 1 0;
}

.gct-split__media img,
.gct-gallery-grid img,
.gct-post-card img,
.gct-contact-card iframe,
.gct-map-panel__media img {
  border-radius: var(--gct-radius);
}

.gct-split__media img {
  box-shadow: var(--gct-shadow);
}

.gct-split__content h2,
.gct-section-heading h2,
.gct-cta-banner__content h2,
.gct-contact-card h3,
.gct-service-card__content h3,
.gct-info-card h3,
.gct-testimonial-card strong,
.gct-faq-group h2,
.gct-post-card h2,
.gct-post-card h3 {
  color: var(--gct-navy);
}

.gct-section-heading {
  margin-bottom: 2rem;
}

.gct-section-heading--full {
  grid-column: 1 / -1;
}

.gct-text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--gct-navy);
  font-weight: 700;
}

.gct-service-grid,
.gct-post-grid,
.gct-card-grid,
.gct-gallery-grid,
.gct-testimonial-grid,
.gct-icon-grid {
  display: grid;
  gap: 1.5rem;
}

.gct-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gct-icon-grid,
.gct-testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gct-post-grid,
.gct-card-grid--three,
.gct-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gct-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gct-service-card,
.gct-post-card,
.gct-info-card,
.gct-testimonial-card,
.gct-icon-card,
.gct-contact-card,
.gct-quote-panel,
.gct-faq-item,
.gct-form-notice {
  background: #fff;
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: var(--gct-radius);
  box-shadow: var(--gct-shadow);
}

.gct-service-card {
  overflow: hidden;
}

.gct-service-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gct-service-card__content,
.gct-post-card__content,
.gct-info-card,
.gct-testimonial-card,
.gct-icon-card,
.gct-contact-card,
.gct-quote-panel,
.gct-faq-item summary,
.gct-faq-item p {
  padding: 1.5rem;
}

.gct-service-card__number {
  display: inline-flex;
  color: var(--gct-gold);
  font-family: var(--gct-heading-font);
  font-size: 1.8rem;
  font-weight: 800;
}

.gct-service-card__content a,
.gct-post-card__content a {
  color: var(--gct-coral);
  font-weight: 700;
}

.gct-stats {
  background: linear-gradient(135deg, var(--gct-navy), color-mix(in srgb, var(--gct-emerald) 35%, var(--gct-navy)));
  color: #fff;
  padding: 2.2rem 0;
}

.gct-stats__grid {
  justify-content: space-between;
  text-align: center;
}

.gct-stats__grid > div {
  flex: 1 1 0;
}

.gct-stats strong {
  display: block;
  font-family: var(--gct-heading-font);
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.gct-stats span {
  color: rgba(255, 255, 255, 0.76);
}

.gct-kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gct-kpi-card {
  background: #fff;
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: var(--gct-radius);
  box-shadow: var(--gct-shadow);
  padding: 1.6rem;
  text-align: center;
}

.gct-kpi-card strong {
  display: block;
  color: var(--gct-navy);
  font-family: var(--gct-heading-font);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.gct-kpi-card span {
  color: color-mix(in srgb, var(--gct-charcoal) 65%, white);
  font-weight: 600;
}

.gct-icon-card,
.gct-info-card {
  padding: 1.75rem;
}

.gct-icon-card h3,
.gct-info-card h3,
.gct-contact-card h3 {
  margin-top: 0;
  font-family: var(--gct-heading-font);
  font-size: 1.3rem;
}

.gct-map-panel {
  align-items: center;
  gap: 2rem;
}

.gct-map-panel__content,
.gct-map-panel__media {
  flex: 1 1 0;
}

.gct-partners {
  padding: 1.3rem 0 0;
}

.gct-partners__row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.gct-partners__row span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  border-radius: 999px;
  border: 1px solid rgba(10, 31, 68, 0.12);
  font-weight: 700;
  color: var(--gct-navy);
}

.gct-testimonial-card p {
  margin-top: 0;
}

.gct-post-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gct-post-card__meta {
  color: color-mix(in srgb, var(--gct-charcoal) 55%, white);
  font-size: 0.85rem;
}

.gct-cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--gct-radius) + 0.4rem);
  min-height: 22rem;
  padding: 2rem;
  background-size: cover;
  background-position: center;
}

.gct-cta-banner__content {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  color: #fff;
}

.gct-footer-top {
  padding: 4rem 0;
  background: linear-gradient(160deg, var(--gct-navy), color-mix(in srgb, var(--gct-emerald) 26%, var(--gct-navy)));
  color: #fff;
}

.gct-footer-grid {
  align-items: start;
}

.gct-footer-col {
  flex: 1 1 0;
}

.gct-footer-col--brand {
  flex: 1.4 1 0;
}

.gct-footer-col h3 {
  margin: 0 0 1rem;
  color: var(--gct-gold);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gct-footer-menu li + li,
.gct-footer-contact li + li {
  margin-top: 0.7rem;
}

.gct-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.gct-footer-socials a {
  color: rgba(255, 255, 255, 0.8);
}

.gct-footer-bottom {
  background: #06152f;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.85rem;
}

.gct-footer-bottom__inner {
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
}

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

.gct-prose {
  max-width: 58rem;
}

.gct-prose h2,
.gct-prose h3,
.gct-prose h4 {
  font-family: var(--gct-heading-font);
  color: var(--gct-navy);
}

.gct-prose a {
  color: var(--gct-coral);
}

.gct-contact-grid {
  align-items: start;
}

.gct-contact-grid > * {
  flex: 1 1 0;
}

.gct-contact-card iframe {
  margin-top: 1.2rem;
  min-height: 18rem;
}

.gct-form,
.gct-faq-groups {
  display: grid;
  gap: 1rem;
}

.gct-form input,
.gct-form select,
.gct-form textarea {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(10, 31, 68, 0.14);
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--gct-charcoal);
  background: #fff;
}

.gct-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gct-form-notice {
  color: var(--gct-navy);
  font-weight: 700;
}

.gct-faq-group h2 {
  font-family: var(--gct-heading-font);
}

.gct-faq-item {
  overflow: hidden;
}

.gct-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.gct-faq-item summary::-webkit-details-marker {
  display: none;
}

.gct-faq-item p {
  padding-top: 0;
  margin: 0;
}

.gct-quote-panel {
  max-width: 52rem;
  margin: 0 auto;
}

.gct-pagination {
  margin-top: 2rem;
}

.gct-pagination .nav-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.gct-timeline {
  display: grid;
  gap: 1rem;
}

.gct-timeline__item {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.4rem 1.6rem;
  border-radius: var(--gct-radius);
  background: #fff;
  border: 1px solid rgba(10, 31, 68, 0.08);
  box-shadow: var(--gct-shadow);
}

.gct-timeline__item strong {
  color: var(--gct-gold);
  font-family: var(--gct-heading-font);
  font-size: 1.3rem;
}

.gct-timeline__item p {
  margin: 0;
}

@media (max-width: 1080px) {
  .gct-service-grid,
  .gct-post-grid,
  .gct-card-grid--three,
  .gct-gallery-grid,
  .gct-icon-grid,
  .gct-testimonial-grid,
  .gct-card-grid--four,
  .gct-kpi-strip,
  .gct-partners__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .gct-desktop-nav,
  .gct-header-quote {
    display: none;
  }

  .gct-menu-toggle {
    display: inline-flex;
  }

  .gct-split,
  .gct-map-panel,
  .gct-contact-grid,
  .gct-footer-grid,
  .gct-footer-bottom__inner {
    flex-direction: column;
  }

  .gct-stats__grid {
    flex-wrap: wrap;
  }

  .gct-stats__grid > div {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 640px) {
  .gct-container {
    width: min(100% - 1.2rem, 1200px);
  }

  .gct-home-hero,
  .gct-page-hero {
    padding-top: 8rem;
  }

  .gct-home-hero__actions,
  .gct-form-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .gct-service-grid,
  .gct-post-grid,
  .gct-card-grid--three,
  .gct-card-grid--four,
  .gct-gallery-grid,
  .gct-icon-grid,
  .gct-testimonial-grid,
  .gct-kpi-strip,
  .gct-partners__row {
    grid-template-columns: 1fr;
  }

  .gct-timeline__item {
    grid-template-columns: 1fr;
  }

  .gct-utility-bar {
    display: none;
  }
}
