/* =====================================================================
   GEO IT LABS — modern design system (2026 revamp)
   ===================================================================== */

:root {
  --navy: #041e35;
  --navy-2: #07294a;
  --navy-3: #0c3a66;
  --orange: #fba419;
  --orange-dark: #e0930f;
  --ink: #16242f;
  --muted: #5a6b7b;
  --light: #f4f8fc;
  --light-2: #e8f0f8;
  --line: #dde7f1;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 6px 20px rgba(4, 30, 53, 0.08);
  --shadow: 0 16px 40px rgba(4, 30, 53, 0.14);
  --shadow-lg: 0 26px 60px rgba(4, 30, 53, 0.22);
  --container: 1180px;
  --header-h: 78px;
  --t: 0.3s cubic-bezier(0.25, 0.8, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
  letter-spacing: -0.01em;
}

a {
  text-decoration: none;
  color: var(--orange);
  transition: color var(--t);
}

p {
  color: var(--muted);
}

img {
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.accent {
  color: var(--orange);
}

/* ---------------- Buttons ---------------- */
.btn-geo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t),
    color var(--t), border-color var(--t);
}
.btn-primary-geo {
  background: #e0900f;
  color: #fff;
  box-shadow: 0 8px 18px rgba(224, 144, 15, 0.22);
}
.btn-primary-geo:hover {
  background: #c87f0b;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(224, 144, 15, 0.3);
}
.btn-ghost-geo {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-ghost-geo:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-3px);
}
.btn-outline-geo {
  background: transparent;
  color: var(--navy);
  border-color: var(--orange);
}
.btn-outline-geo:hover {
  background: var(--orange);
  color: #1a1205;
  transform: translateY(-3px);
}

/* ---------------- Navbar ---------------- */
.geo-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(4, 30, 53, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}
.geo-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.brand-logo {
  height: 46px;
  width: auto;
  display: block;
  transition: transform var(--t);
}
.brand:hover .brand-logo {
  transform: scale(1.04);
}
.geo-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.geo-menu a {
  position: relative;
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14.5px;
  padding: 10px 14px;
  border-radius: 8px;
}
.geo-menu a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.geo-menu a:hover,
.geo-menu a.active {
  color: var(--white);
}
.geo-menu a:hover::after,
.geo-menu a.active::after {
  transform: scaleX(1);
}
.geo-menu .nav-cta {
  margin-left: 8px;
}
.geo-menu .nav-cta a {
  background: var(--orange);
  color: #1a1205;
  font-weight: 600;
}
.geo-menu .nav-cta a::after {
  display: none;
}
.geo-menu .nav-cta a:hover {
  background: var(--orange-dark);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 991px) {
  .nav-toggle {
    display: block;
  }
  .geo-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy);
    padding: 14px 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--t), opacity var(--t), visibility var(--t);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .geo-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .geo-menu a {
    padding: 14px 8px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .geo-menu a::after {
    display: none;
  }
  .geo-menu .nav-cta {
    margin: 14px 0 0;
  }
  .geo-menu .nav-cta a {
    text-align: center;
    border-radius: 50px;
  }
}

/* ---------------- Hero (home) ---------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: radial-gradient(ellipse 70% 90% at 88% 18%,
      rgba(251, 164, 25, 0.45) 0%, rgba(251, 164, 25, 0.12) 35%,
      rgba(251, 164, 25, 0) 60%),
    linear-gradient(120deg, rgba(4, 30, 53, 0.82) 0%,
      rgba(4, 30, 53, 0.38) 55%, rgba(4, 30, 53, 0.12) 100%),
    url(../images/Web.jpg) center/cover no-repeat;
  padding-top: var(--header-h);
}
.hero-content {
  max-width: 720px;
}
.hero .eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--orange);
  background: rgba(251, 164, 25, 0.12);
  border: 1px solid rgba(251, 164, 25, 0.4);
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.12rem;
  max-width: 600px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero-stats .num {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--orange);
}
.hero-stats .lbl {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

/* ---------------- Page header (inner pages) ---------------- */
.page-header {
  position: relative;
  padding: calc(var(--header-h) + 46px) 0 46px;
  color: var(--white);
  text-align: center;
  background: radial-gradient(ellipse 90% 110% at 50% 120%,
      rgba(251, 164, 25, 0.5) 0%, rgba(251, 164, 25, 0.15) 35%,
      rgba(251, 164, 25, 0) 65%),
    linear-gradient(rgba(4, 30, 53, 0.4), rgba(4, 30, 53, 0.28)),
    url(../images/Web.jpg) center/cover no-repeat fixed;
}
.page-header h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(4, 30, 53, 0.6);
}
.page-header .crumb {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  text-shadow: 0 1px 8px rgba(4, 30, 53, 0.6);
}
.page-header .crumb a {
  color: rgba(255, 255, 255, 0.85);
}
.page-header .crumb a:hover {
  color: var(--orange);
}

/* ---------------- Sections ---------------- */
.section {
  padding: 62px 0;
}
.section.light {
  background: var(--light);
}
.section.navy {
  background: var(--navy);
  color: var(--white);
}
.section.navy h1,
.section.navy h2,
.section.navy h3 {
  color: var(--white);
}
.section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-head.left {
  margin-left: 0;
  text-align: left;
}
.eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--orange);
  margin-bottom: 14px;
}
/* brighter accent when sitting on a dark section */
.section.navy .eyebrow,
.hero .eyebrow {
  color: var(--orange);
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.section-head p {
  font-size: 1.05rem;
}
.section.navy .section-head p {
  color: rgba(255, 255, 255, 0.78);
}

/* ---------------- Grid helpers ---------------- */
.grid {
  display: grid;
  gap: 26px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
@media (max-width: 991px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .split {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}
@media (max-width: 620px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ---------------- Cards ---------------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  height: 100%;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(251, 164, 25, 0.5);
}
.card .ico {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(251, 164, 25, 0.12);
  color: var(--orange);
  font-size: 26px;
  margin-bottom: 20px;
}
.card h3 {
  font-size: 1.28rem;
  margin-bottom: 12px;
}
.card p {
  font-size: 0.98rem;
}
.card .more {
  display: inline-block;
  margin-top: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
}
.card.dark {
  background: var(--navy-2);
  border-color: rgba(255, 255, 255, 0.08);
}
.card.dark h3 {
  color: var(--white);
}
.card.dark p {
  color: rgba(255, 255, 255, 0.72);
}

/* numbered step card */
.step .num {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 8px;
}

/* ---------------- Media (image + text) ---------------- */
.media-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}
.feature-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feature-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.feature-img:hover img {
  transform: scale(1.05);
}
.lead {
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.tick-list {
  list-style: none;
  margin: 18px 0;
}
.tick-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: var(--ink);
}
.section.navy .tick-list li {
  color: rgba(255, 255, 255, 0.85);
}
.tick-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  background: var(--orange);
  color: #1a1205;
}

/* ---------------- Stat strip ---------------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-strip .num {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--orange);
  line-height: 1;
}
.stat-strip .lbl {
  margin-top: 8px;
  font-size: 0.95rem;
}
.section.navy .stat-strip .lbl {
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 620px) {
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* ---------------- Client cards (real colours + names) ---------------- */
.client-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}
.client-grid .client-card {
  flex: 1 1 180px;
  min-width: 0;
}
@media (max-width: 620px) {
  .client-grid .client-card {
    flex-basis: 100%;
  }
}
.client-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.client-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(251, 164, 25, 0.5);
}
.client-card .logo {
  height: 92px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.client-card .logo img {
  max-height: 62px;
  max-width: 82%;
  width: auto;
  object-fit: contain;
}
/* white / reverse logos need a dark tile to stay visible */
.client-card .logo.dark {
  background: var(--navy);
  border-radius: 12px;
  padding: 16px 22px;
  width: fit-content;
}
.client-card .cname {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
}
.client-card .cname small {
  display: block;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ---------------- CTA band ---------------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-3) 100%);
  border-radius: 24px;
  padding: 56px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow);
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 14px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 28px;
}
@media (max-width: 620px) {
  .cta-band {
    padding: 40px 22px;
  }
}

/* ---------------- Contact ---------------- */
.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.contact-card .ico {
  flex: none;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--navy);
  color: var(--orange);
  font-size: 22px;
}
.contact-card h4 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.contact-card a,
.contact-card p {
  color: var(--muted);
}
.contact-card a:hover {
  color: var(--orange);
}
.form-control-geo {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.98rem;
  margin-bottom: 16px;
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
}
.form-control-geo:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(251, 164, 25, 0.15);
}
.btn-geo:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}
.form-status {
  margin: 14px 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
.form-status:empty {
  display: none;
}
.form-status.sending {
  color: var(--muted);
}
.form-status.ok {
  color: #1c7c4a;
  background: #e7f6ec;
  border: 1px solid #bfe6cd;
  border-radius: 10px;
  padding: 12px 14px;
}
.form-status.err {
  color: #a3361f;
  background: #fdece7;
  border: 1px solid #f6cdbf;
  border-radius: 10px;
  padding: 12px 14px;
}
.form-status a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
}

/* ---------------- Footer ---------------- */
.geo-footer {
  background: #02141f;
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
}
.geo-footer .cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.geo-footer .flogo {
  margin-bottom: 18px;
}
.geo-footer .flogo .brand-logo {
  height: 54px;
}
.geo-footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}
.geo-footer h5 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.geo-footer ul {
  list-style: none;
}
.geo-footer ul li {
  margin-bottom: 11px;
}
.geo-footer ul a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}
.geo-footer ul a:hover {
  color: var(--orange);
  padding-left: 4px;
}
.geo-footer .social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.geo-footer .social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: background var(--t), transform var(--t);
}
.geo-footer .social a:hover {
  background: var(--orange);
  color: #1a1205;
  transform: translateY(-3px);
}
.geo-footer .foot-bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  text-align: center;
  font-size: 0.9rem;
}
@media (max-width: 860px) {
  .geo-footer .cols {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
}
@media (max-width: 520px) {
  .geo-footer .cols {
    grid-template-columns: 1fr;
  }
}

/* ---------------- Skill chips ---------------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.chips span {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 9px 18px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), border-color var(--t), color var(--t);
}
.chips span:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  color: var(--orange);
}

/* ---------------- Reveal on scroll ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------------- Utilities ---------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
