/* ============================================================
   WHITEPAGE SPORTS CONSULT GH — Design System
   Palette: Navy/Blue-black, Green, White, Gold accent
   Display: Oswald | Body: Inter
   ============================================================ */

:root {
  --navy: #0a1f3d;
  --navy-light: #163963;
  --navy-deep: #061425;
  --green: #2d8a3e;
  --green-light: #4caf5e;
  --green-pale: #e7f4ea;
  --gold: #c8a94a;
  --white: #ffffff;
  --off-white: #f6f8fa;
  --grey: #6b7785;
  --grey-light: #e3e8ed;
  --text: #14202e;

  --font-display: "Oswald", sans-serif;
  --font-body: "Inter", sans-serif;

  --container: 1180px;
  --radius: 10px;
  --shadow: 0 10px 30px -10px rgba(10, 31, 61, 0.25);
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--navy);
  letter-spacing: 0.5px;
  line-height: 1.15;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 700;
}
h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

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

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--green);
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-3px);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.btn-small {
  padding: 10px 22px;
  font-size: 0.75rem;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* ============ Header / Nav ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0);
  transition: var(--transition);
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px -8px rgba(10, 31, 61, 0.12);
  padding: 10px 0;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  transition: var(--transition);
}
.site-header.scrolled .brand img {
  height: 44px;
  width: 44px;
}
.brand-text {
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--white);
  transition: var(--transition);
}
.site-header.scrolled .brand-text {
  color: var(--navy);
}
.brand-text strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.brand-text span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--green-light);
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  position: relative;
  padding-bottom: 6px;
  transition: var(--transition);
}
.site-header.scrolled .nav-links a {
  color: var(--navy);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover {
  color: var(--green-light);
}
.site-header.scrolled .nav-links a:hover {
  color: var(--green);
}

.nav-cart {
  position: relative;
  display: inline-flex;
}
.nav-cart .cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--green);
  color: #fff;
  font-size: 0.65rem;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.site-header.scrolled .menu-toggle span {
  background: var(--navy);
}

/* ============ Page Hero (non-home pages) ============ */
.page-hero {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--navy-deep) 0%,
    var(--navy) 60%,
    var(--green) 150%
  );
  color: var(--white);
  padding: 180px 0 110px;
  overflow: hidden;
}
.page-hero .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero .hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 20, 37, 0.92) 0%,
    rgba(10, 31, 61, 0.85) 55%,
    rgba(45, 138, 62, 0.55) 150%
  );
  z-index: 1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 70px;
  background: var(--off-white);
  clip-path: polygon(
    0 100%,
    100% 100%,
    100% 30%,
    75% 100%,
    50% 20%,
    25% 100%,
    0 40%
  );
}
.page-hero .eyebrow {
  color: var(--green-light);
}
.page-hero .eyebrow::before {
  background: var(--green-light);
}
.page-hero h1,
.page-hero h2 {
  color: var(--white);
  margin-top: 14px;
}
/* ============ Section Spacing ============ */
section {
  padding: 100px 0;
  position: relative;
}
.section-head {
  max-width: 640px;
  margin-bottom: 60px;
}
.section-head h2 {
  margin-top: 12px;
}
.section-head p {
  margin-top: 16px;
  font-size: 1.05rem;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.center .eyebrow::before {
  display: none;
}

.bg-navy {
  background: var(--navy);
  color: var(--white);
}
.bg-navy h2,
.bg-navy h3,
.bg-navy h4 {
  color: var(--white);
}
.bg-navy p {
  color: rgba(255, 255, 255, 0.75);
}
.bg-green-pale {
  background: var(--green-pale);
}

/* ============ Scroll Reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.visible > *:nth-child(1) {
  transition-delay: 0.05s;
}
.reveal-stagger.visible > *:nth-child(2) {
  transition-delay: 0.15s;
}
.reveal-stagger.visible > *:nth-child(3) {
  transition-delay: 0.25s;
}
.reveal-stagger.visible > *:nth-child(4) {
  transition-delay: 0.35s;
}
.reveal-stagger.visible > *:nth-child(5) {
  transition-delay: 0.45s;
}
.reveal-stagger.visible > *:nth-child(6) {
  transition-delay: 0.55s;
}

/* ============ Shield Divider (signature element) ============ */
.shield-divider {
  position: relative;
  height: 90px;
  background: var(--off-white);
}
.shield-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============ Image Placeholder ============ */
.img-placeholder {
  background: linear-gradient(135deg, var(--grey-light) 0%, #f1f4f7 100%);
  border: 2px dashed #c3ccd6;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--grey);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  min-height: 240px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: "🖼";
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
  opacity: 0.5;
}
.img-placeholder span {
  display: block;
  margin-top: 6px;
  opacity: 0.7;
}

/* ============ Grid Layouts ============ */
.grid {
  display: grid;
  gap: 32px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-gap-xl {
  gap: 48px;
}

/* ============ Cards ============ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px -8px rgba(10, 31, 61, 0.1);
  transition: var(--transition);
}
.about-img {
  min-height: 420px;
  border-radius: 10px;
  overflow: hidden;
}
.about-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.card-body {
  padding: 26px;
}
.card-body h3 {
  margin-bottom: 10px;
}
.card-body p {
  font-size: 0.95rem;
}

/* Service Card */
.service-card {
  padding: 38px 30px;
  background: var(--white);
  border-radius: var(--radius);
  border-top: 4px solid var(--green);
  box-shadow: 0 4px 20px -10px rgba(10, 31, 61, 0.12);
  transition: var(--transition);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-top-color: var(--navy);
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.6rem;
  color: var(--green);
  transition: var(--transition);
  overflow: hidden;
}
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.service-icon.icon-img {
  background: var(--navy);
  padding: 0;
}
.service-card:hover .service-icon {
  background: var(--navy);
  color: var(--white);
  transform: rotate(8deg) scale(1.05);
}
.service-card:hover .service-icon.icon-img {
  transform: scale(1.08);
}
.service-card h3 {
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.95rem;
}

/* Number badge for process steps */
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.step-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
  opacity: 0.85;
}
.step-content h3 {
  margin-bottom: 6px;
}
.step-content p {
  font-size: 0.95rem;
}

/* ============ Stats Strip ============ */
.stats-strip {
  background: var(--navy);
  padding: 50px 0;
}
.stats-strip .grid-4 {
  gap: 20px;
  text-align: center;
}
.stat-item h3 {
  font-size: 2.6rem;
  color: #fff;
  margin-bottom: 6px;
}
.stat-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-display);
}

/* ============ Team / Player Cards ============ */
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px -10px rgba(10, 31, 61, 0.12);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.team-photo {
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
}
.team-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-info {
  padding: 24px;
}
.team-info h3 {
  margin-bottom: 4px;
}
.team-role {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.team-info p {
  font-size: 0.9rem;
  color: var(--grey);
}
.team-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.team-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 0.85rem;
  transition: var(--transition);
}
.team-socials a:hover {
  background: var(--navy);
  color: var(--white);
}

/* ============ Shop ============ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}
.filter-btn {
  padding: 10px 22px;
  border: 1.5px solid var(--grey-light);
  border-radius: 30px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px -10px rgba(10, 31, 61, 0.12);
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  z-index: 2;
}
.product-img {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.product-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-body {
  padding: 22px;
}
.product-cat {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  font-family: var(--font-display);
}
.product-body h3 {
  margin: 8px 0 10px;
  font-size: 1.05rem;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}
.product-price .old-price {
  text-decoration: line-through;
  color: var(--grey);
  font-size: 0.85rem;
  font-weight: 400;
  margin-right: 8px;
}
.add-cart-btn {
  background: var(--green-pale);
  color: var(--green);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.add-cart-btn:hover {
  background: var(--green);
  color: #fff;
  transform: rotate(90deg);
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: var(--white);
  z-index: 1100;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open {
  right: 0;
}
.cart-header {
  padding: 26px 28px;
  border-bottom: 1px solid var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h3 {
  margin: 0;
}
.cart-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--navy);
  line-height: 1;
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}
.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--grey-light);
  align-items: center;
}
.cart-item-thumb {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  flex-shrink: 0;
}
.cart-item-info {
  flex: 1;
}
.cart-item-info h4 {
  font-size: 0.95rem;
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
}
.cart-item-info p {
  font-size: 0.85rem;
  margin-top: 4px;
}
.cart-item-remove {
  background: none;
  border: none;
  color: var(--grey);
  cursor: pointer;
  font-size: 1rem;
}
.cart-item-remove:hover {
  color: #c0392b;
}
.cart-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--grey-light);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--navy);
}
.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--grey);
}
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 31, 61, 0.4);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ============ Gallery ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  grid-auto-rows: 220px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item .img-placeholder {
  height: 100%;
  border-radius: var(--radius);
  margin: 0;
  overflow: hidden;
}
.gallery-item .gallery-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.gallery-item .gallery-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item .img-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item .img-placeholder.img-loaded {
  background: none;
  border: none;
  padding: 0;
}
.gallery-item.tall {
  grid-row: span 2;
}
.gallery-item.wide {
  grid-column: span 2;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 31, 61, 0.75), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* ============ Projects ============ */
.project-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px -10px rgba(10, 31, 61, 0.12);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.project-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.project-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.project-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
  width: fit-content;
}
.status-ongoing {
  background: var(--green-pale);
  color: var(--green);
}
.status-completed {
  background: var(--grey-light);
  color: var(--navy);
}
.status-upcoming {
  background: #fdf3e3;
  color: var(--gold);
}
.project-body h3 {
  margin-bottom: 10px;
}
.project-body p {
  font-size: 0.95rem;
  flex: 1;
}
.project-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--grey-light);
  font-size: 0.8rem;
  font-family: var(--font-display);
  letter-spacing: 1px;
  color: var(--grey);
}

/* ============ Hero Home ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--navy-deep) 0%,
    var(--navy) 55%,
    #0e2e1a 100%
  );
  overflow: hidden;
  color: var(--white);
  padding-top: 100px;
}
.hero .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero .hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 20, 37, 0.94) 0%,
    rgba(10, 31, 61, 0.88) 55%,
    rgba(14, 46, 26, 0.82) 100%
  );
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 3;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  z-index: 2;
  background-image: repeating-linear-gradient(
    45deg,
    var(--green) 0,
    var(--green) 2px,
    transparent 2px,
    transparent 40px
  );
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 138, 62, 0.35), transparent 70%);
  top: -200px;
  right: -150px;
  animation: float 10s ease-in-out infinite;
  z-index: 2;
}
.hero-glow.two {
  background: radial-gradient(
    circle,
    rgba(200, 169, 74, 0.18),
    transparent 70%
  );
  bottom: -250px;
  left: -150px;
  width: 500px;
  height: 500px;
  animation-delay: -5s;
}
@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-30px, 40px);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero .eyebrow {
  color: var(--green-light);
}
.hero .eyebrow::before {
  background: var(--green-light);
}
.hero h1 {
  color: var(--white);
  margin: 18px 0 22px;
}
.hero h1 .highlight {
  color: var(--green-light);
}
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin-bottom: 38px;
}
.hero-cta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-shield {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  opacity: 0.9;
  z-index: 2;
  animation: float2 8s ease-in-out infinite;
}
@keyframes float2 {
  0%,
  100% {
    transform: translateY(-50%) rotate(0deg);
  }
  50% {
    transform: translateY(-54%) rotate(2deg);
  }
}
.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 3;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--green-light);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% {
    top: -100%;
  }
  50% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

/* ============ Logo Mark Decorative ============ */
.crest-shape {
  width: 100%;
  height: auto;
}

/* ============ Marquee ============ */
.marquee {
  background: var(--green);
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 60px;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 600;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============ Quote / CTA Band ============ */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, #0d2c52 100%);
  color: var(--white);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 138, 62, 0.25), transparent 70%);
  top: -100px;
  left: -100px;
}
.cta-band h2 {
  color: var(--white);
  max-width: 760px;
  margin: 16px auto 30px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ============ Founder Section ============ */
.founder-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.founder-img {
  overflow: hidden;
  border-radius: 10px;
}
.founder-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  line-height: 1.5;
  position: relative;
  padding-left: 30px;
  border-left: 3px solid var(--green);
  margin: 24px 0;
}
.founder-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 24px;
}
.founder-name span {
  display: block;
  font-size: 0.78rem;
  color: var(--green);
  letter-spacing: 3px;
  margin-top: 4px;
  font-family: var(--font-body);
  font-weight: 600;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.65);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-brand img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
}
.footer-brand strong {
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: 1px;
  font-size: 1.1rem;
  text-transform: uppercase;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 22px;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--green-light);
}
.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--green);
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* ============ Floating WhatsApp Button ============ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  z-index: 900;
  box-shadow: 0 8px 24px -6px rgba(37, 211, 102, 0.6);
  transition: var(--transition);
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px -6px rgba(37, 211, 102, 0.8);
}
@keyframes wa-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

/* ============ Back to top ============ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border: none;
  box-shadow: var(--shadow);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--green);
}

/* ============ Page Loader ============ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

/* ============ Contact / Misc ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--grey-light);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45, 138, 62, 0.12);
}
.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item h4 {
  color: var(--navy);
  font-family: var(--font-display);
  margin-bottom: 4px;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.contact-info-item p {
  font-size: 0.92rem;
}

/* ============ Mobile / Responsive ============ */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-item.wide {
    grid-column: span 2;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid.grid-2.grid-gap-xl {
    grid-template-columns: 1fr !important;
    gap: 4px !important;
  }
  .grid-gap-xl {
    gap: 4px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }
  .founder-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-shield {
    display: none;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 28px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links a {
    color: var(--navy) !important;
  }
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .grid.grid-2.grid-gap-xl {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .grid-gap-xl {
    gap: 0 !important;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item.wide {
    grid-column: span 2;
  }
  .gallery-item.tall {
    grid-row: span 1;
  }
  section {
    padding: 70px 0;
  }
  .hero {
    padding-top: 120px;
    min-height: auto;
    padding-bottom: 100px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .stats-strip .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}
