/* -------------------------------------------------
   COLOR THEME & GLOBAL VARIABLES
-------------------------------------------------- */

:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --secondary: #22c55e;
  --pink: #ec4899;
  --purple: #8b5cf6;

  --gradient-1: linear-gradient(135deg, #2563eb, #1e40af);
  --gradient-2: linear-gradient(135deg, #22c55e, #2563eb);
  --gradient-3: linear-gradient(135deg, #8b5cf6, #ec4899);

  --background-main: #ffffff;
  --background-light: #f7f9fc;

  --text-dark: #0f172a;
  --text-muted: #6b7280;

  --accent-soft: rgba(37, 99, 235, 0.09);

  --radius: 16px;
  --shadow-soft: 0 14px 30px rgba(15, 23, 42, 0.12);
  --shadow-strong: 0 20px 45px rgba(15, 23, 42, 0.16);
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-dark);
  background: var(--background-main);
  line-height: 1.6;
}

/* Radial background effect */
.page-wrapper {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, #dbeafe 0%, transparent 60%),
    radial-gradient(circle at bottom right, #d1fae5 0%, transparent 60%);
}

/* -------------------------------------------------
   LAYOUT + CONTAINER
-------------------------------------------------- */

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

/* -------------------------------------------------
   HEADER & NAVIGATION
-------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e5e7eb;
  padding: 0.35rem 0;
}

/* small top blue strip for corporate feel */
.site-header::before {
  content: "";
  display: block;
  height: 3px;
  background: var(--gradient-1);
  position: absolute;
  inset-inline: 0;
  top: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding-top: 0.25rem;
}

/* Brand */


/* Brand container */
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* Logo */
.nav__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  border: none;
}

/* Company name */
.nav__title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #0f172a;
  background: none;
  padding: 0;
  margin: 0;
  line-height: 1;
}
/* REMOVE all shadow / glow from logo */
.nav__logo {
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
}

.nav__logo img {
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

/* Logo bubble */
.nav__logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--gradient-1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.45);
}

.nav__text {
  display: flex;
  flex-direction: column;
}

.nav__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.nav__subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Navigation Links */

.nav__links {
  display: flex;
  list-style: none;
  gap: 1.3rem;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav__links a {
  position: relative;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.94rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  transition: 0.18s ease;
}

/* animated underline indicator */
.nav__links a::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 0.15rem;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.nav__links a:hover {
  background: var(--accent-soft);
  color: var(--primary-dark);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  transform: scaleX(1);
}

/* CTA button */

.nav__cta {
  background: var(--gradient-1);
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-weight: 600;
}

.nav__cta:hover {
  filter: brightness(1.04);
}

/* Mobile button */

.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--primary-dark);
}

/* -------------------------------------------------
   HERO SECTION
-------------------------------------------------- */

.hero {
  padding: 3rem 0 4rem;
  background:
    linear-gradient(to bottom, #f5f7fe 0, #ffffff 60%, #f8fafc 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.6rem;
  align-items: center;
}

/* left column */

.hero__content {
  animation: fadeUp 0.8s ease forwards;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  font-size: 0.8rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.hero__pill i {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #eff6ff;
  font-size: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw + 1.4rem, 3.1rem);
  margin-bottom: 1rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
}

.hero p {
  color: var(--text-muted);
  margin-bottom: 1.4rem;
  font-size: 0.98rem;
}

/* Buttons */

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    background 0.12s ease, color 0.12s ease;
}

.btn i {
  font-size: 1.05rem;
}

.btn--primary {
  background: var(--gradient-1);
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-strong);
}

.btn--ghost {
  border: 1px solid #cbd5e1;
  background: white;
  color: var(--text-dark);
}

.btn--ghost:hover {
  background: var(--primary);
  color: white;
  border-color: transparent;
}

/* Hero meta (under buttons) */



/* Hero background image (blurred) */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    url("hero-bg.png") center / cover no-repeat;
  filter: blur(1px);
  transform: scale(1.1); /* avoid edge blur gaps */
  z-index: 0;
  opacity: 100;

}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(10, 15, 25, 0.65),
    rgba(10, 15, 25, 0.75)
  );
  z-index: 0;
}



/* Keep content above blur */
.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.hero__meta-item {
  min-width: 180px;
}

.hero__meta-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.hero__meta-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Hero card (right column) */

.hero__card {
  background: white;
  padding: 1.6rem;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  animation: slideRight 0.8s ease forwards;
}

/* subtle gradient halo */
.hero__card::before {
  content: "";
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.12), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(139, 92, 246, 0.12), transparent 55%);
  opacity: 0.9;
}

.hero__card > * {
  position: relative;
}

.hero__card-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero__card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.hero__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.hero__list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.hero__list i {
  color: #16a34a;
}

/* -------------------------------------------------
   GENERIC SECTIONS
-------------------------------------------------- */

.section {
  padding: 3rem 0;
}

.section--alt {
  background: var(--background-light);
}

.section__header {
  margin-bottom: 2rem;
}

.section__kicker {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section__title {
  font-size: 1.8rem;
  font-weight: 700;
}

.section__subtitle {
  font-size: 0.96rem;
  color: var(--text-muted);
  max-width: 560px;
}

/* -------------------------------------------------
   ABOUT SECTION
-------------------------------------------------- */

.about-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}

.about-card {
  background: #6a90b4;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.25);
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}

/* small color bar on left */
.about-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-2);
  opacity: 0.7;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(37, 99, 235, 0.25);
}

/* -------------------------------------------------
   SERVICES GRID (HOME)
-------------------------------------------------- */

.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  background:  #6a90b4;
  padding: 1.3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.25);
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(37, 99, 235, 0.25);
}

.service-card:hover::before {
  opacity: 1;
}

/* -------------------------------------------------
   SERVICE PAGE HERO
-------------------------------------------------- */
/* -------------------------------------------------
   SERVICE PAGE HERO (WITH IMAGE)
-------------------------------------------------- */

.page-hero {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  color: white;
  position: relative;
  overflow: hidden;

  /* DEFAULT fallback */
  background-color: #0f172a;
}

/* Background image comes from modifier class */
.page-hero--dispatch {
  background: url("images/dispatch.png") center / cover no-repeat;
}
.page-hero--supply {
  background: url("images/supply-hero.jpg") center / cover no-repeat;
}
.page-hero--it {
  background: url("images/it-hero.jpg") center / cover no-repeat;
}
.page-hero--accounting {
  background: url("images/accounting-hero.jpg") center / cover no-repeat;
}
.page-hero--marketing {
  background: url("images/marketing-hero.jpg") center / cover no-repeat;
}
.page-hero--hr {
  background: url("images/hr-hero.jpg") center / cover no-repeat;
}
.page-hero--import {
  background: url("images/import-hero.jpg") center / cover no-repeat;
}

/* Dark overlay */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(8, 18, 35, 0.75),
    rgba(8, 18, 35, 0.85)
  );
  z-index: 0;
}

/* Content above overlay */
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 0 1rem;
}

/* Text styling */
.page-hero__kicker {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.6rem;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 0.8rem;
}

.page-hero p {
  font-size: 1.05rem;
  opacity: 0.95;
}


/* -------------------------------------------------
   CONTACT SECTION
-------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1.6rem;
}

.contact-info,
.contact-form {
  background: white;
  padding: 1.6rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.contact-info h3,
.contact-form h3 {
  margin-top: 0;
}

/* form fields */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 500;
  color: #374151;
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.65rem;
  font-size: 0.9rem;
  font-family: inherit;
  resize: vertical;
}

.form-field textarea {
  min-height: 110px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
}

/* -------------------------------------------------
   FOOTER
-------------------------------------------------- */

.footer {
  background: #020617;
  color: white;
  padding: 2rem 0 1.5rem;
  margin-top: 3rem;
}

.footer__inner {
  width: min(1120px, 100% - 2.5rem);
  margin: auto;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer__cols {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.footer__bottom {
  border-top: 1px solid rgba(30, 64, 175, 0.9);
  margin-top: 0.9rem;
  padding-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: #9ca3af;
}

.footer__links a {
  color: #e5e7eb;
  text-decoration: none;
}

.footer__links a:hover {
  color: white;
}

.footer__socials {
  display: flex;
  gap: 0.6rem;
}

.footer__socials a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid #4b5563;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.18s ease;
}

.footer__socials a:hover {
  background: var(--gradient-1);
  border-color: transparent;
}

/* -------------------------------------------------
   ANIMATIONS
-------------------------------------------------- */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Utility animation classes (use on any element) */
.fade-up { animation: fadeUp 0.8s forwards; }
.fade-in { animation: fadeIn 1s forwards; }
.slide-right { animation: slideRight 0.8s forwards; }

/* Stagger helpers: add these classes + fade-up */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* -------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */

@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { max-width: 430px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__toggle { display: block; }

  .nav {
    align-items: center;
  }

  .nav__links {
    display: none;
    flex-direction: column;
    background: white;
    padding: 0.9rem 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    position: absolute;
    top: 64px;
    right: 1rem;
    min-width: 220px;
  }

  .nav__links--open { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 2.4rem;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .footer__top {
    flex-direction: column;
  }
  .footer__cols {
    flex-direction: column;
  }
}
/* White text ONLY for left hero content */
.hero__content h1 {
  color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  text-shadow: 0 6px 25px rgba(0,0,0,0.6);
}

.hero__content p,
.hero__content .hero__pill,
.hero__content .hero__meta-item strong,
.hero__content .hero__meta-item span {
  color: #f1f5f9 !important;
}

/* Glass pill */
.hero__content .hero__pill {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
}
.hero__card-title {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero__card-text {
  font-weight: 500;
  line-height: 1.7;
}

.hero__list li {
  font-weight: 600;
}
/* PREMIUM CLIENTS SECTION */

.clients-premium-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.client-premium-card {
  background: rgb(226, 255, 187);
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148,163,184,0.25);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.client-premium-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.client-premium-card img {
  max-height: 48px;
  object-fit: contain;
  margin-bottom: 0.4rem;
 
  opacity: 0.9;
}

.client-premium-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.client-premium-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.client-premium-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* NDA cards */

.client-nda {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: rgb(255, 255, 255);
}

.client-nda h4,
.client-nda p {
  color: #e5e7eb;
}

.nda-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.65rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Responsive */

@media (max-width: 1024px) {
  .clients-premium-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .clients-premium-grid {
    grid-template-columns: 1fr;
  }
}
