/* ===============================
   GLOBAL DESIGN TOKENS
================================= */
:root {
  --bg: #0b0f14;
  --bg-alt: #0f1620;
  --card: #121b26;
  --text: #e6edf3;
  --muted: #9aa7b2;
  /* --accent: #f5a623; */ /* industrial orange */
  --accent: #007CC2; /* industrial orange */
  /* --accent-2: #1f6feb; */
  --accent-2: #005f94;
  --border: rgba(255,255,255,0.08);

  --radius: 14px;
  --radius-lg: 22px;

  --shadow: 0 10px 30px rgba(0,0,0,0.35);
  --shadow-soft: 0 6px 18px rgba(0,0,0,0.25);

  --max-width: 1200px;
}

/* ===============================
   BASE RESET
================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}

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

/* ===============================
   CONTAINER SYSTEM
================================= */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: auto;
}

/* ===============================
   SECTION SYSTEM
================================= */
.section {
  padding: 90px 0;
}

.alt-section {
  background: var(--bg-alt);
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head h2 {
  font-size: 2.2rem;
  margin-top: 10px;
}

.eyebrow {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.85rem;
  text-transform: uppercase;
}

/* ===============================
   HERO GRID (SERVICES HEADER)
================================= */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-hero-text h1 {
  font-size: 2.8rem;
  margin: 15px 0;
  line-height: 1;
  letter-spacing: -1px;
}

.about-hero-text p {
  color: var(--muted);
  margin-bottom: 20px;
}

/* ===============================
   MINI PROOF BOXES
================================= */
.hero-mini-proof {
  display: flex;
  gap: 15px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.hero-mini-proof .flex {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  padding: 12px 15px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  min-width: 160px;
}

.hero-mini-proof i {
  color: var(--accent);
  font-size: 1.2rem;
}

.hero-mini-proof strong {
  display: block;
  font-size: 1rem;
}

.hero-mini-proof span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ===============================
   BUTTON SYSTEM
================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ===============================
   SERVICES GRID
================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* SERVICE CARD */
.service-card {
  background: var(--card);
  padding: 25px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,166,35,0.4);
  border-color: rgba(0, 124, 194, 0.4);
}

/* ICON */
.service-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 15px;
}

/* TEXT */
.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ===============================
   PROCESS GRID (WHY GRID)
================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--card);
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.why-card i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.why-card h3 {
  margin-bottom: 8px;
}

.why-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ===============================
   SPLIT SECTION (IF USED)
================================= */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.split-text p {
  color: var(--muted);
  margin-bottom: 15px;
}

.about-points div {
  margin: 10px 0;
  color: var(--text);
}

.about-points i {
  color: var(--accent);
  margin-right: 8px;
}

/* ===============================
   CTA SECTION
================================= */
.contact-section {
  background: linear-gradient(135deg, #0f1620, #0b0f14);
  text-align: center;
}

.contact-copy h2 {
  font-size: 2.2rem;
  margin: 15px 0;
}

.contact-copy p {
  color: var(--muted);
  max-width: 600px;
  margin: auto;
  margin-bottom: 25px;
}

/* ===============================
   ANIMATION SYSTEM
================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s forwards;
}

.reveal.delay-1 { animation-delay: 0.2s; }
.reveal.delay-2 { animation-delay: 0.4s; }
.reveal.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   RESPONSIVE DESIGN
================================= */
@media (max-width: 992px) {
  .about-hero-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 600px) {
  .services-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-mini-proof {
    flex-direction: column;
  }

  .section {
    padding: 60px 0;
  }
}

.list-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

article p {
  margin-bottom: 12px;
}

.services-cta {
  margin-top: 20px;
}



#services {
  background: url("../images/services.jpg") no-repeat center/cover;
  position: relative;
  z-index: 1;
}

#services::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}