/* =========================================
   G&S LOGIX WEBSITE
   ========================================= */

:root {
  --navy: #173b63;
  --navy-dark: #102f51;
  --blue: #2999d1;
  --blue-dark: #157bb2;
  --text: #36424d;
  --muted: #71808d;
  --light: #eef3f7;
  --border: #d5dde4;
  --white: #ffffff;
}


/* =========================================
   GLOBAL
   ========================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

img {
  max-width: 100%;
}

.page-container {
  width: min(1180px, 90%);
  margin: 0 auto;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy);
  line-height: 1.2;
}

p {
  margin-top: 0;
}


/* =========================================
   HEADER
   ========================================= */

.site-header {
  background: var(--white);
  border-bottom: 1px solid #e4e9ed;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  width: min(1180px, 90%);
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 92px;
}

.logo-link {
  display: flex;
  align-items: center;
}

.site-logo {
  width: 150px;
  height: auto;
  display: block;
}


/* =========================================
   NAVIGATION
   ========================================= */

nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;

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

nav a {
  position: relative;
  text-decoration: none;

  color: var(--navy);
  font-weight: 600;
  font-size: 0.98rem;

  padding: 0.5rem 0;
}

nav a::after {
  content: "";
  position: absolute;

  left: 0;
  bottom: 0;

  width: 0;
  height: 3px;

  background: var(--blue);

  transition: width 0.2s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}


/* =========================================
   ABOUT HERO
   ========================================= */

.about-hero {
  padding: 105px 0 80px;
  background: var(--white);
}

.about-hero .page-container {
  max-width: 1000px;
  margin-left: 5%;
}

.eyebrow {
  display: inline-block;

  margin-bottom: 1rem;

  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-hero h1 {
  max-width: 850px;

  margin-bottom: 1.5rem;

  font-size: clamp(2.4rem, 5vw, 4.3rem);
  font-weight: 750;
}

.about-hero p {
  max-width: 850px;
  font-size: 1.08rem;
}

.hero-intro {
  font-size: 1.25rem !important;
  color: #536371;
}


/* =========================================
   STATS
   ========================================= */

.stats-section {
  padding: 0 0 90px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.stat-card {
  min-height: 170px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  background: var(--navy);
  border-radius: 8px;

  color: var(--white);
}

.stat-card strong {
  display: block;

  font-size: 2.4rem;
  line-height: 1;
}

.stat-card span {
  margin-top: 15px;

  color: #dce7ef;
  font-size: 0.9rem;
}


/* =========================================
   GENERAL SECTIONS
   ========================================= */

.about-overview,
.why-section {
  padding: 90px 0;
}

.about-overview {
  background: #fafcfd;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 45px;
}

.section-heading h2 {
  margin-bottom: 15px;

  font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading p {
  font-size: 1.05rem;
}


/* =========================================
   INFORMATION CARDS
   ========================================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}

.info-card,
.why-card {
  padding: 38px 34px;
  min-height: 310px;

  background: var(--light);

  border: 1px solid var(--border);
  border-radius: 8px;
}

.info-card h3,
.why-card h3 {
  color: var(--blue);
  font-size: 1.35rem;
}

.info-card p,
.why-card p {
  color: #46545f;
}


/* =========================================
   INTEGRATED SERVICES
   ========================================= */

.integrated-section {
  padding: 95px 0;

  background: var(--navy);
}

.light-heading h2,
.light-heading p {
  color: var(--white);
}

.eyebrow-light {
  color: #63c4ed;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}

.service-card {
  padding: 38px 32px;

  background: var(--white);

  border-radius: 8px;
}

.service-card h3 {
  color: var(--blue);
  font-size: 1.35rem;
}

.service-card p {
  color: #46545f;
}


/* =========================================
   WHY G&S
   ========================================= */

.why-card {
  min-height: 240px;
}

.why-card h3 {
  color: var(--navy);
}


/* =========================================
   CTA
   ========================================= */

.about-cta {
  padding: 90px 0;

  background: var(--navy-dark);
  color: var(--white);
}

.about-cta .page-container {
  max-width: 1000px;
}

.about-cta h2 {
  max-width: 800px;

  margin-bottom: 18px;

  color: var(--white);

  font-size: clamp(2.3rem, 4vw, 3.5rem);
}

.about-cta p {
  max-width: 700px;

  margin-bottom: 30px;

  color: #dce6ef;

  font-size: 1.1rem;
}

.primary-button {
  display: inline-block;

  padding: 14px 26px;

  background: var(--blue);
  color: var(--white);

  text-decoration: none;
  font-weight: 700;

  border-radius: 5px;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.primary-button:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}


/* =========================================
   FOOTER
   ========================================= */

.site-footer {
  padding: 50px 0;

  background: #0c2947;

  text-align: center;
  color: #dce6ef;
}

.footer-logo {
  width: 120px;

  margin-bottom: 15px;

  background: var(--white);

  padding: 8px;

  border-radius: 4px;
}

.site-footer p {
  margin: 5px 0;
}

.footer-small {
  color: #9fb2c2;
  font-size: 0.86rem;
}


/* =========================================
   CONTACT PAGE
   ========================================= */

.contact-page,
.main-container {
  width: min(1000px, 90%);

  margin: 70px auto;
  padding: 40px;

  background: var(--light);

  border-radius: 8px;

  text-align: center;
}

.contact-page h1 {
  font-size: 2.4rem;
  color: var(--navy);
}

.contact-page .subheading {
  margin-bottom: 2rem;

  font-size: 1.2rem;
  color: #5e7487;
}

.contact-form {
  display: flex;
  flex-direction: column;

  gap: 15px;

  margin-top: 30px;

  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  padding: 13px;

  font-family: inherit;
  font-size: 1rem;

  background: var(--white);

  border: 1px solid #cbd4dc;
  border-radius: 5px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(41, 153, 209, 0.25);
  border-color: var(--blue);
}

.contact-form button {
  width: fit-content;

  padding: 13px 26px;

  background: var(--navy);
  color: var(--white);

  border: 0;
  border-radius: 5px;

  font-weight: 700;

  cursor: pointer;
}

.contact-form button:hover {
  background: var(--blue);
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 800px) {

  .header-inner {
    min-height: auto;

    padding: 18px 0;

    flex-direction: column;
    gap: 15px;
  }

  .site-logo {
    width: 125px;
  }

  nav ul {
    gap: 1.2rem;
  }

  .about-hero {
    padding: 65px 0 55px;
  }

  .about-hero .page-container {
    width: 90%;
    margin: 0 auto;
  }

  .stats-section {
    padding-bottom: 60px;
  }

  .stats-grid,
  .card-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 140px;
  }

  .about-overview,
  .why-section,
  .integrated-section,
  .about-cta {
    padding: 65px 0;
  }

  .info-card,
  .why-card {
    min-height: auto;
  }

  .contact-page,
  .main-container {
    padding: 25px;
  }
}


@media (max-width: 480px) {

  nav ul {
    gap: 0.8rem;
  }

  nav a {
    font-size: 0.88rem;
  }

  .about-hero h1 {
    font-size: 2.25rem;
  }

}
/* =========================================
   NEW CONTACT PAGE
   ========================================= */

.contact-hero {
  padding: 85px 0 70px;
  background: #f6f9fb;
}

.contact-hero .page-container {
  max-width: 1180px;
}

.contact-hero h1 {
  max-width: 850px;
  margin-bottom: 20px;

  font-size: clamp(2.8rem, 5vw, 4.6rem);
  letter-spacing: -0.03em;
}

.contact-hero p {
  max-width: 760px;
  margin-bottom: 0;

  color: #536371;
  font-size: 1.15rem;
}


/* MAIN CONTACT AREA */

.contact-section {
  padding: 80px 0 95px;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 25px;
  align-items: stretch;
}


/* LEFT INFORMATION PANEL */

.contact-info-panel {
  padding: 45px 40px;

  background: var(--navy);
  color: white;

  border-radius: 8px;
}

.contact-info-panel h2 {
  margin-bottom: 20px;

  color: white;
  font-size: 2rem;
}

.contact-info-panel > p {
  margin-bottom: 35px;
  color: #dce7ef;
}

.contact-detail {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.17);
}

.contact-detail > span {
  display: block;

  margin-bottom: 6px;

  color: #63c4ed;

  font-size: 0.78rem;
  font-weight: 800;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail strong {
  color: white;
  text-decoration: none;
  font-size: 1.05rem;
}

.contact-detail a:hover {
  color: #63c4ed;
}


/* CAPABILITY TAGS */

.contact-capabilities {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  margin-top: 30px;
}

.contact-capabilities span {
  padding: 7px 11px;

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 4px;

  color: #dce7ef;

  font-size: 0.78rem;
}


/* FORM PANEL */

.contact-form-panel {
  padding: 45px 42px;

  background: #eef3f7;

  border: 1px solid var(--border);
  border-radius: 8px;
}

.contact-form-panel h2 {
  margin-bottom: 25px;
  font-size: 2rem;
}

.contact-form-panel .contact-form {
  margin-top: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field label {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;

  padding: 13px 14px;

  background: white;

  border: 1px solid #c8d2db;
  border-radius: 5px;

  color: var(--text);

  font-family: inherit;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form select {
  cursor: pointer;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(41,153,209,0.2);
  border-color: var(--blue);
}

.contact-form button {
  margin-top: 5px;

  padding: 14px 27px;

  background: var(--blue);
  color: white;

  border: 0;
  border-radius: 5px;

  font-size: 0.95rem;
  font-weight: 800;

  cursor: pointer;
}

.contact-form button:hover {
  background: var(--navy);
}


/* CONTACT CAPABILITY STRIP */

.contact-strip {
  padding: 45px 0;
  background: var(--navy-dark);
}

.contact-strip .page-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.contact-strip .page-container > div {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.contact-strip .page-container > div:last-child {
  border-right: 0;
}

.contact-strip strong {
  display: block;

  color: white;

  font-size: 2rem;
  line-height: 1.1;
}

.contact-strip span {
  display: block;

  margin-top: 8px;

  color: #9fb8ca;

  font-size: 0.85rem;
}


/* CONTACT MOBILE */

@media (max-width: 800px) {

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding: 60px 0 50px;
  }

  .contact-section {
    padding: 55px 0 65px;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 32px 27px;
  }

}


@media (max-width: 550px) {

  .contact-strip .page-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-strip .page-container > div {
    padding-bottom: 25px;

    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .contact-strip .page-container > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

}
/* =========================================
   SIMPLIFIED HOMEPAGE HERO
   ========================================= */

.home-hero {
  padding: 70px 0;
  background: #f7f9fb;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 55px;
  align-items: center;
}

.home-hero-copy h1 {
  margin-bottom: 24px;

  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.04em;

  color: var(--navy);
}

.home-hero-intro {
  max-width: 620px;

  margin-bottom: 30px;

  color: #536371;
  font-size: 1.15rem;
  line-height: 1.7;
}


/* HERO IMAGE */

.home-hero-image {
  height: 470px;

  overflow: hidden;

  border-radius: 10px;

  box-shadow: 0 18px 45px rgba(16, 47, 81, 0.15);
}

.home-hero-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}


/* MOBILE */

@media (max-width: 900px) {

  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-image {
    height: 350px;
  }

}


@media (max-width: 600px) {

  .home-hero {
    padding: 55px 0;
  }

  .home-hero-image {
    height: 270px;
  }

}
/* =========================================
   CLEAN HOMEPAGE HERO
   ========================================= */

.clean-home-hero {
  padding: 100px 0 120px;
  background: #ffffff;
}

.clean-home-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 75px;
  align-items: center;
}


/* LEFT COPY */

.clean-home-copy {
  max-width: 560px;
}

.clean-home-copy h1 {
  margin: 12px 0 25px;

  color: var(--navy);

  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.clean-home-copy p {
  max-width: 530px;

  margin-bottom: 32px;

  color: #536371;

  font-size: 1.12rem;
  line-height: 1.7;
}


/* BUTTONS */

.clean-home-copy .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}


/* RIGHT STAT CARDS */

.clean-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.clean-stat-card {
  min-height: 255px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 30px 20px;

  background: var(--navy);

  border-radius: 8px;

  text-align: center;

  box-shadow: 0 12px 30px rgba(16, 47, 81, 0.10);
}

.clean-stat-card strong {
  display: block;

  margin-bottom: 16px;

  color: #ffffff;

  font-size: clamp(2.3rem, 3vw, 3.3rem);
  line-height: 1;
}

.clean-stat-card span {
  color: #dce7ef;

  font-size: 0.95rem;
}


/* GIVE THE NEXT SECTION MORE BREATHING ROOM */

.home-services {
  padding-top: 110px;
}


/* TABLET */

@media (max-width: 950px) {

  .clean-home-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .clean-home-copy {
    max-width: 700px;
  }

}


/* MOBILE */

@media (max-width: 700px) {

  .clean-home-hero {
    padding: 65px 0 80px;
  }

  .clean-stat-grid {
    grid-template-columns: 1fr;
  }

  .clean-stat-card {
    min-height: 150px;
  }

  .clean-home-copy h1 {
    font-size: 2.8rem;
  }

}
/* =========================================
   CLEAN HOMEPAGE IMAGE HERO
   ========================================= */

.home-image-hero {
  background: #ffffff;
  padding: 55px 0 45px;
}

.home-hero-photo {
  display: block;

  width: 100%;
  height: 520px;

  object-fit: cover;
  object-position: center;

  border-radius: 10px;

  box-shadow: 0 14px 35px rgba(16, 47, 81, 0.10);
}


/* STATS BELOW HERO */

.home-stats-clean {
  background: #ffffff;
  padding: 25px 0 100px;
}


/* MOBILE */

@media (max-width: 800px) {

  .home-image-hero {
    padding: 35px 0 30px;
  }

  .home-hero-photo {
    height: 340px;
  }

  .home-stats-clean {
    padding-bottom: 65px;
  }

}


@media (max-width: 500px) {

  .home-hero-photo {
    height: 250px;
  }

}
