/**
 * GS AI — global shell styles & design tokens.
 * Page layouts live in Elementor; keep this file lean.
 */

/* --------------------------------------------------------------------------
   Design tokens (match GoldenSource Scout)
   -------------------------------------------------------------------------- */
:root {
  --gs-container: 1280px;
  --gs-gutter: 24px;

  --gs-navy: #002151; /* Primary Navy (Figma) */
  --gs-navy-deep: #001429;
  --gs-navy-mid: #0a2a4a;
  --gs-header-bg: #002151;
  --gs-charcoal: #111111;
  --gs-black: #0a0a0a;

  --gs-gold: #fdb913;
  --gs-gold-hover: #e5a60f;

  --gs-gray-50: #f4f4f4;
  --gs-gray-100: #e8eef3;
  --gs-gray-300: #b8c4d0;
  --gs-gray-500: #6b7c8f;
  --gs-gray-700: #3a4a5c;

  --gs-white: #ffffff;
  --gs-text: #1a2b3c;
  --gs-text-muted: #5a6b7c;
  --gs-text-on-dark: #ffffff;
  --gs-text-on-dark-muted: #b8c9d9;

  --gs-radius: 8px;
  --gs-radius-lg: 12px;
  --gs-shadow: 0 8px 30px rgba(0, 26, 51, 0.08);

  --gs-font: "Inter", system-ui, -apple-system, sans-serif;
  --gs-font-display: "Inter", system-ui, -apple-system, sans-serif;

  --gs-header-h: 80px;
  --gs-section-y: clamp(4rem, 8vw, 6.5rem);
  --gs-transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

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

button {
  font: inherit;
  cursor: pointer;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background: var(--gs-white);
  clip: auto !important;
  clip-path: none;
  color: var(--gs-navy);
  display: block;
  font-size: 0.875rem;
  height: auto;
  left: 0.5rem;
  line-height: normal;
  padding: 0.75rem 1rem;
  text-decoration: none;
  top: 0.5rem;
  width: auto;
  z-index: 100000;
}

.gs-skip-link:focus {
  position: absolute;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.gs-container {
  width: min(100% - (var(--gs-gutter) * 2), var(--gs-container));
  margin-inline: auto;
}

/* Full-bleed Elementor canvas; theme container only wraps non-Elementor shells */
.gs-main--front .gs-entry__content,
.elementor-page .gs-entry__content {
  max-width: none;
}

/**
 * Section shell helpers (Elementor Atomic Flexbox).
 *
 * OUTER = full-width background. Add class `gs-hero` (hero) or `gs-section`.
 * INNER = single child Flexbox, Boxed 1280 — these rules center it.
 */
.gs-hero,
.gs-section {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important; /* centers the 1280 inner horizontally */
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box;
}

.gs-hero {
  padding-top: calc(var(--gs-header-h) + 24px + 48px) !important;
  padding-bottom: clamp(4rem, 8vw, 6rem);
  min-height: 36rem;
}

.gs-section {
  padding-block: var(--gs-section-y);
}

/* Inner content column — 1280 centered inside outer */
.gs-hero > .e-con,
.gs-hero > [data-element_type="container"],
.gs-section > .e-con,
.gs-section > [data-element_type="container"] {
  width: min(100% - (var(--gs-gutter) * 2), var(--gs-container)) !important;
  max-width: var(--gs-container) !important;
  margin-inline: auto;
  box-sizing: border-box;
}

.gs-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  max-width: 34rem;
}

.gs-hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
  margin-top: 0.5rem;
}

.gs-main--front .gs-container,
.elementor-page .gs-main > .gs-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.gs-entry__title {
  font-family: var(--gs-font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
  color: var(--gs-navy);
  margin: 0 0 1.5rem;
}

.gs-entry__header {
  padding-top: var(--gs-section-y);
}

.gs-entry__content > *:first-child {
  margin-top: 0;
}

/* --------------------------------------------------------------------------
   Buttons (reusable classes for Elementor / PHP)
   -------------------------------------------------------------------------- */
.gs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border: 0;
  border-radius: var(--gs-radius);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background var(--gs-transition),
    color var(--gs-transition),
    transform var(--gs-transition);
}

.gs-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.gs-btn--primary {
  background: var(--gs-gold);
  color: var(--gs-navy);
}

.gs-btn--primary:hover {
  background: var(--gs-gold-hover);
  color: var(--gs-navy);
}

.gs-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
  color: var(--gs-text-on-dark);
  text-decoration: none;
}

.gs-link-arrow:hover {
  color: var(--gs-gold);
}

/* --------------------------------------------------------------------------
   Footer (Figma)
   -------------------------------------------------------------------------- */
.gs-footer {
  --gs-footer-bg: #272b3b;
  background: var(--gs-footer-bg);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--gs-font);
  font-size: 0.8125rem;
  line-height: 1.55;
}
@media only screen and (max-width: 767.98px) {
  .gs-footer {
    padding: 40px 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024.98px) {
  .gs-footer {
    padding: 48px 0px;
  }
}

@media only screen and (min-width: 1025px) {
  .gs-footer {
    padding: 6.25rem 0;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1274.98px) {
  #footer-ai-image {
        object-fit: cover !important;
  }
}

.gs-footer__disclaimer {
  margin: 0;
  /* max-width: 52rem; */
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -1%;
  color: #ededed !important;
}

.gs-footer__rule {
  border: 0;
  border-top: 1px solid #e0eaf333;
  margin: 24px 0px 32px 0px;
}

.gs-footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem 3rem;
}

.gs-footer__brand-block {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  /* max-width: 40rem; */
}

.gs-footer__brand .custom-logo-link,
.gs-footer .gs-logo--footer {
  display: inline-flex;
  align-items: center;
}

.gs-footer .gs-logo--footer,
.gs-footer .gs-logo {
  color: var(--gs-white);
  font-weight: 700;
}

.gs-footer .gs-logo:hover {
  color: var(--gs-white);
}

.gs-footer .custom-logo-link img {
  max-height: 36px;
  width: auto;
}

.gs-footer__taglines {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.gs-footer__tagline {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -1%;
  color: #ededed !important;
}

.gs-footer__legal {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  margin-left: auto;
}

@media only screen and (max-width: 767px) {
  .gs-footer__legal {
    justify-content: space-between !important;
    margin: 0;
    width: 100%;
  }

  .gs-footer__sep {
    display: none !important;
  }
}

.gs-footer__privacy {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -1%;
  white-space: nowrap;
}

.gs-footer__privacy:hover {
  color: var(--gs-gold);
}

.gs-footer__sep {
  display: block;
  width: 1px;
  height: 54px;
  background: #494c61;
}

.gs-footer__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gs-white);
  line-height: 0;
  transition:
    color var(--gs-transition),
    opacity var(--gs-transition);
}

.gs-footer__linkedin:hover {
  color: var(--gs-gold);
}

.gs-footer__linkedin-icon {
  display: block;
}

/* --------------------------------------------------------------------------
   Empty / utility
   -------------------------------------------------------------------------- */
.gs-empty {
  padding: var(--gs-section-y) 0;
  text-align: center;
}

.gs-empty__title {
  color: var(--gs-navy);
  margin-bottom: 0.75rem;
}

/* --------------------------------------------------------------------------
   Responsive — footer only (header mobile styles → header.css)
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .gs-footer__bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .gs-footer__legal {
    margin-left: 0;
  }
}


/* --------------------------------------------------------------------------
   New style on Header and Footer section
   -------------------------------------------------------------------------- */
.gs-header__bar {
  display: none !important;
}
.gs-footer__tagline.tagline2,
.gs-footer__disclaimer,
.gs-footer__rule {
  display: none;
}

@media only screen and (min-width: 1025px) {
  .gs-footer {
    padding: 2.5rem 0;
  }
}



