/* ============================================================
  epiIT style   
============================================================ */
/* ── TOKENS ─────────────────────────────────────────────── */

:root {
  --prussian-blue: #0a1128;
  --dusk-blue:     #415a77;
  --lavender-grey: #778da9;
  --alabaster-grey:#e0e1dd;
  --white:         #fefcfb;
  --cyan:          #00b4d8;
  --mint:          #90e0ef;
  --gold:          #d4af37;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "FixedExcelsiorSys", sans-serif;
}
html { scroll-behavior: smooth; }

@font-face {
  font-family: "FixedExcelsiorSys";
  src: url("/static/fonts/FSEX.ttf") format("truetype");
  font-display: swap;
}

body {
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }


/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  height: 100px;
  background-color: var(--lavender-grey);
  border-bottom: 4px solid black;
}

.site-header .header\.inner,
.header-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  font-size: 3.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--prussian-blue);
  white-space: nowrap;
  padding: 5rem;
}
.logo span {
  color: var(--cyan);
}
.logo::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 2px;
  opacity: 0.5;
}

/* Nav */
.main-nav ul {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  padding-right: 2.5rem;
}

.main-nav a {
  display: flex;
  height: 100px;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  padding: 0.65rem 1rem;
  justify-content: center;
  align-items: center;
  border-radius: 1px;
  border: 1px solid transparent;
  position: relative;
}

.main-nav a:hover {
  color: var(--dusk-blue);
  border-color: rgba(0,212,255,0.25);
  background: rgba(0,212,255,0.22);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: left;
  justify-content: left;
  padding: 100px 120px;
  overflow: hidden;
  background-color: var(--dusk-blue);
}

/* LABEL */
.mission-label {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-shadow:
    0 1px 0 rgba(0,0,0,0.2),
    0 2px 4px rgba(0,0,0,0.3),
    0 8px 16px rgba(0,0,0,0.15);
}

/* TITLE */
.mission-card h1 {
  font-size: 3.4rem;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}

/* DESCRIPTION */
.mission-card p {
  font-size: 1.7rem;
  letter-spacing: 1px;
  max-width: 1200px;
  line-height: 1.4;
  margin-bottom: 35px;
  color: var(--alabaster-grey);
}

/* BUTTON */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 24px;
  background: var(--alabaster-grey);
  color: black;
  font-weight: 400;
  font-size: 1.8rem;
  text-decoration: none;
  border: 1px solid black;
  transition: transform 0.2s ease;
}

/* BUTTON HOVER */
.mission-card .btn:hover {
  transform: rotate(5deg) translateY(5px);
  background: linear-gradient(135deg, #7bd4ff, #0096c7);
  box-shadow: 0 15px 35px rgba(77,184,255,0.5);
}

/* ===========================
   SERVICES SECTION
=========================== */

.services-section {
  padding: 100px 8%;
  background: var(--alabaster-grey);
  border-top: 5px solid black;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: 7.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  -webkit-text-stroke: 0.5px black;
  color: var(--gold);
  text-shadow:
    0 1px 0 rgba(0,0,0,0.2),
    0 2px 4px rgba(0,0,0,0.3),
    0 8px 16px rgba(0,0,0,0.15);
}

.services-header p {
  font-size: 2.5rem;
  color: black;
  max-width: 900px;
  margin: auto;
}

/* ===========================
   GRID
=========================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(420px, 1fr));
  gap: 30px;
}

/* ===========================
   CARD
=========================== */

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: white;
  border-radius: 20px;
  padding: 14px;
  border: 7px solid var(--lavender-grey);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,.15);
}

/* ===========================
   IMAGE
=========================== */

.service-img-wrap {
  flex-shrink: 0;
  width: 200px;
  height: 180px;
  border-radius: 16px;
  background: #ececec;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .3s ease;
}

.service-card:hover .service-img {
  transform: scale(1.08);
}

/* ===========================
   TEXT
=========================== */

.service-info {
  flex: 1;
  min-width: 0;
}

.service-info h3 {
  font-size: 1.9rem;
  margin-bottom: 12px;
  color: #111;
  margin-top: 4px;
}

.service-info p {
  font-size: 1.5rem;
  line-height: 1.7;
  color: black;
}

/* ============================================================
   FOOTER — single bottom bar
   Logo | phone · email | social icons | copyright
============================================================ */
.footer {
  background: var(--dusk-blue);
  color: white;
  padding: 8px 8% 10px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.footer-brand {
  max-width: 400px;
}

.footer-brand h3 {
  font-size: 2.65rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-brand p {
  color: #cbd5e1;
  font-size: 1.20rem;
}

.footer-social h4 {
  margin-bottom: 15px;
  font-size: 2.55rem;
  font-weight: 800;
}

.social-buttons {
  display: flex;
  gap: 15px;
}

.social-btn {
  padding: 10px 18px;
  border-radius: 999px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* YouTube */
.youtube {
  background: #ff0000;
}
.youtube:hover {
  background: #cc0000;
  transform: translateY(-3px);
}

/* Instagram */
.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}
.instagram:hover {
  opacity: .85;
  transform: translateY(-3px);
}

/* LinkedIn */
.linkedin {
  background: #0a66c2;
}
.linkedin:hover {
  background: #004182;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 10px;
  padding-top: 5px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: #94a3b8;
}
.footer-legal {
    margin-top: 10px;
    padding-top: 8px;
    text-align: center;
    font-size: 0.85rem;
}

.legal-label {
    color: #94a3b8;
    margin-right: 6px;
}

.legal-link {
    color: #cbd5e1;
    text-decoration: none;
}

.legal-link:hover {
    text-decoration: underline;
}

.legal-divider {
    color: #94a3b8;
    margin: 0 6px;
}
/* ===========================
   RESPONSIVE
=========================== */

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

@media (max-width: 700px) {
  .service-card {
    flex-direction: column;
    text-align: center;
  }
  .service-img-wrap {
    width: 100%;
    height: 220px;
  }
}
