/* ============================================================
   Blazer Managed Services — Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800&family=DM+Sans:wght@400;500;600&display=swap');

/* ── Variables ───────────────────────────────────────────── */
:root {
  --red:       #c41f1f;
  --red-dark:  #a01818;
  --red-glow:  rgba(196, 31, 31, 0.12);
  --charcoal:  #1a1a1a;
  --gray-light:#f5f4f2;
  --gray-mid:  #e8e6e1;
  --text:      #333;
  --muted:     #666;
  --white:     #ffffff;
  --radius:    8px;
  --shadow:    0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 6px 30px rgba(0,0,0,0.12);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--gray-light);
  color: var(--text);
  line-height: 1.6;
}

/* ── Header ──────────────────────────────────────────────── */
header {
  background: var(--white);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo img {
  height: 52px;
  width: auto;
}

.logo-text h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.logo-text .tagline {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.4px;
}

nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}

nav a:hover {
  background: var(--red-glow);
  color: var(--red);
}

nav a.btn-nav {
  background: var(--red);
  color: var(--white);
  padding: 9px 20px;
}

nav a.nav-phone {
  color: var(--red);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  margin-right: 8px;
}

nav a.nav-phone:hover {
  background: var(--red-glow);
  color: var(--red);
}

nav a.btn-nav:hover {
  background: var(--red-dark);
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--red);
  padding: 4px;
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  color: #aaa;
  text-align: center;
  padding: 28px 20px;
  font-size: 14px;
  line-height: 1.8;
}

footer strong {
  color: var(--white);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, transform 0.15s;
}

.btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

/* ── Forms ───────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
  color: #444;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}

/* ── Alerts ──────────────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 20px;
}

.alert-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.alert-error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* ── Section helpers ─────────────────────────────────────── */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.1;
}

.section-title span {
  color: var(--red);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  header { padding: 14px 20px; }

  nav.nav-links {
    display: none;
    flex-direction: column;
    gap: 6px;
    position: absolute;
    top: 82px;
    right: 16px;
    background: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-mid);
    min-width: 160px;
  }

  nav.nav-links.show { display: flex; }
  nav a.btn-nav { text-align: center; }
  .menu-toggle { display: block; }

  .section-title { font-size: 30px; }
}
