/* ════════════════════════════════════════
   Divide Services — Shared Site Stylesheet
   Source of truth for nav, footer, base
   reset, buttons, and typography used on
   every page. Canonical values pulled from
   the homepage (index.html) on 2026-07-27.

   Loaded LAST in <head> on every page so it
   wins the cascade over any leftover
   page-local duplicate of these same rules.
   Page-specific styles (hero sections,
   content blocks, etc.) stay inline on each
   page — only the shared chrome lives here.
   ════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:      #29ABE2;
  --blue-dk:   #1a8bbf;
  --blue-glow: rgba(41,171,226,0.15);
  --bg:        #0a0a0a;
  --bg2:       #0f0f0f;
  --bg3:       #161616;
  --bg4:       #1e1e1e;
  --border:    rgba(41,171,226,0.14);
  --border2:   rgba(255,255,255,0.07);
  --white:     #ffffff;
  --muted:     #7a8694;
  --radius:    10px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.01em;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.22s ease;
  border: none;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--blue);
  color: #000;
}
.btn-primary:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(41,171,226,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: #000;
  transform: translateY(-2px);
}

/* ── Labels ── */
.label {
  display: inline-block;
  color: var(--blue);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.label::before { content: ''; }

section { padding: 100px 0; }

/* ── Scroll animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════
   NAVBAR
════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #0d1e35;
  border-bottom: 1px solid rgba(41,171,226,0.2);
  transition: background 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo img { height: 42px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: #fff;
  background: rgba(0,0,0,0.15);
}
.nav-links a.active { color: #fff; background: rgba(0,0,0,0.2); }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 210px;
  background: #0d1520;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.nav-dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: all 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: rgba(41,171,226,0.12); color: var(--blue); padding-left: 22px; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Book Now pill button */
.btn-nav-quote {
  background: #0d1520;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 9px 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.22s;
  white-space: nowrap;
}
.btn-nav-quote:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}

/* Social icons */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-socials a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  transition: color 0.2s, transform 0.2s;
  line-height: 1;
}
.nav-socials a:hover { color: #fff; transform: scale(1.15); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ════════════════════════
   FOOTER
════════════════════════ */
footer {
  background: #060606;
  border-top: 1px solid var(--border2);
  padding: 52px 0 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand img { height: 38px; margin-bottom: 14px; }
.footer-brand p { color: var(--muted); font-size: 0.88rem; max-width: 270px; line-height: 1.7; }

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: var(--muted); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border2);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p { color: var(--muted); font-size: 0.8rem; }
.footer-bottom .blue { color: var(--blue); }

/* ════════════════════════
   NAV / FOOTER — MOBILE
════════════════════════ */
@media (max-width: 680px) {
  .nav-links, .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    padding: 20px 28px;
    border-bottom: 1px solid var(--border2);
    gap: 4px;
    backdrop-filter: blur(16px);
  }
  .nav-links.open .dropdown-menu {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    padding-left: 16px;
  }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
