/* ===== SHARED CSS — Omnitized.com =====
   Loaded via SSI include on all pages.
   Edit this file to change styles site-wide. */

/* ===== VARIABLES ===== */
:root {
  --blue: #088ada;
  --blue-deep: #0670b5;
  --blue-dark: #054d7e;
  --green: #5aa517;
  --green-bright: #6bc41e;
  --purple: #ad3cdc;
  --purple-soft: #c76eeb;
  --dark: #282d30;
  --darker: #25282a;
  --darkest: #1a1d1f;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --gray-100: #f1f3f5;
  --gray-200: #e2e5e9;
  --gray-400: #9ca3af;
  --gray-600: #6b7280;
  --gray-800: #374151;
  --font-display: 'Bricolage Grotesque', serif;
  --font-body: 'Outfit', sans-serif;
}

/* ===== RESET / BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); font-weight: 400; color: var(--gray-800); line-height: 1.6; background: var(--white); overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== NAV ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0, 0, 0, 0.06); transition: box-shadow 0.3s ease; }
.nav.scrolled { box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; color: var(--gray-800); text-decoration: none; letter-spacing: 0.02em; position: relative; transition: color 0.25s; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--blue); transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--blue); }
.nav-links a.active::after { width: 100%; }
.nav-cta { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.25rem; background: #3d7a0e; color: var(--white) !important; border-radius: 6px; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; transition: background 0.25s, transform 0.25s; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--green-bright); color: var(--white) !important; transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gray-800); margin: 5px 0; transition: transform 0.3s, opacity 0.3s; }

/* Dropdown */
.has-dropdown { position: relative; }
.dd-chevron { margin-left: 3px; margin-bottom: -1px; transition: transform 0.2s; }
.has-dropdown:hover .dd-chevron, .has-dropdown.open .dd-chevron { transform: rotate(180deg); }
.has-dropdown::before { content: ''; position: absolute; top: 100%; left: -1rem; right: -1rem; height: 2rem; }
.dropdown { position: absolute; top: calc(100% + 2rem); left: 50%; transform: translateX(-50%) translateY(6px); min-width: 280px; background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(0,0,0,0.08); border-radius: 10px; box-shadow: 0 12px 40px rgba(0,0,0,0.12); padding: 0.5rem 0; list-style: none; opacity: 0; visibility: hidden; transition: opacity 0.2s, transform 0.2s; pointer-events: none; z-index: 100; }
.has-dropdown:hover .dropdown, .has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.dropdown a { display: block; padding: 0.6rem 1.25rem; font-size: 0.84rem; font-weight: 400; color: var(--gray-600) !important; white-space: nowrap; transition: background 0.15s, color 0.15s; }
.dropdown a::after { display: none !important; }
.dropdown a:hover { background: rgba(8,138,218,0.06); color: var(--blue) !important; }

/* ===== BREADCRUMBS ===== */
.hero-breadcrumbs { margin-bottom: 2rem; }
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb-list a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.breadcrumb-list a:hover { color: var(--white); }
.breadcrumb-sep { font-size: 0.7rem; }

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-deep);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--blue);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--darkest);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ===== CTA BAND ===== */
.cta-band { padding: 4rem 0; background: var(--off-white); text-align: center; }
.cta-band-inner { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.cta-band p { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--darkest); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 2rem;
  background: var(--green); color: var(--white); font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600; border: none; border-radius: 8px;
  cursor: pointer; text-decoration: none; letter-spacing: 0.02em;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover { background: var(--green-bright); transform: translateY(-2px); box-shadow: 0 6px 25px rgba(90, 165, 23, 0.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 1.75rem;
  background: var(--white); color: var(--gray-800); font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600; border-radius: 8px; text-decoration: none;
  border: 1px solid var(--gray-200); transition: border-color 0.3s, transform 0.3s;
}
.btn-secondary:hover { border-color: var(--blue); transform: translateY(-2px); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255, 255, 255, 0.7); }
.footer-cta { padding: 4rem 0 3rem; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-cta p { font-size: 1.05rem; max-width: 700px; margin: 0 auto; line-height: 1.7; }
.footer-contact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding: 2.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-contact-item { display: flex; align-items: center; justify-content: center; gap: 1rem; text-decoration: none; color: rgba(255,255,255,0.7); transition: color 0.25s; }
.footer-contact-item:hover { color: var(--white); }
.footer-contact-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.25s; }
.footer-contact-item:hover .footer-contact-icon { background: rgba(255,255,255,0.12); }
.footer-contact-icon svg { width: 20px; height: 20px; stroke: rgba(255,255,255,0.7); fill: none; stroke-width: 1.5; }
.footer-contact-text { font-size: 0.95rem; font-weight: 600; color: var(--white); }
.footer-contact-sub { font-size: 0.75rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 0; }
.footer-bottom-copy { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; transition: background 0.25s; }
.footer-social a:hover { background: rgba(255,255,255,0.12); }
.footer-social a svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.6); }

/* ===== MOBILE RESPONSIVE (shared nav/footer only) ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .has-dropdown::before { display: none; }
  .dropdown { position: static; transform: none; min-width: auto; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border: none; border-radius: 0; box-shadow: none; padding: 0.25rem 1rem 0.5rem; text-align: center; opacity: 1; visibility: visible; pointer-events: auto; display: none; }
  .has-dropdown.open .dropdown { display: block; transform: none; }
  .dropdown a { color: var(--gray-600) !important; padding: 0.35rem 0; font-size: 0.85rem; white-space: normal; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch; text-align: center;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); padding: 1.5rem 2rem; border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }
  .cta-band-inner { flex-direction: column; }
  .footer-contact { grid-template-columns: 1fr; text-align: center; }
  .footer-contact-item { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
