/* ============================
   Savora Company LLC — Shared Styles
   ============================ */

:root {
  --navy: #1B2B5E;
  --navy-dark: #131f45;
  --navy-light: #243672;
  --gold: #C9A84C;
  --gold-dark: #a8893c;
  --gold-light: #e0c06c;
  --white: #FFFFFF;
  --bg: #F5F6FA;
  --text: #2c2c2c;
  --text-muted: #666;
  --border: #e0e0e0;
  --shadow: 0 4px 20px rgba(27,43,94,0.10);
  --shadow-lg: 0 8px 40px rgba(27,43,94,0.15);
  --radius: 8px;
  --radius-lg: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { margin-bottom: 1rem; color: var(--text); }
a  { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-dark); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-alt { background: var(--bg); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark p { color: var(--white); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-muted); max-width: 580px; margin: 0 auto; }

.divider {
  width: 60px; height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 14px auto 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  text-align: center;
}
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--navy); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); color: var(--white); }

/* Navbar */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.navbar-brand img {
  height: 48px;
  width: auto;
  border-radius: 4px;
  background: white;
  padding: 2px;
}
.navbar-brand .brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.navbar-brand .brand-name { font-size: 1.1rem; font-weight: 800; color: var(--white); letter-spacing: .5px; }
.navbar-brand .brand-tag  { font-size: 0.63rem; font-weight: 500; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; }

.navbar-nav { display: flex; align-items: center; gap: 4px; list-style: none; }
.navbar-nav a { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; padding: 8px 14px; border-radius: 6px; transition: all .2s; }
.navbar-nav a:hover, .navbar-nav a.active { color: var(--white); background: rgba(255,255,255,0.08); }
.navbar-cta { margin-left: 12px; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; }

.mobile-nav { display: none; background: var(--navy-dark); padding: 16px 24px 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; color: rgba(255,255,255,0.85); padding: 10px 0; font-size: 0.95rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { margin-top: 14px; width: 100%; }

@media (max-width: 820px) {
  .navbar-nav, .navbar-cta { display: none; }
  .hamburger { display: block; }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 90px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-logo {
  height: 130px; width: auto;
  margin: 0 auto 28px; display: block;
  border-radius: 12px;
  background: white;
  padding: 8px;
  position: relative; z-index: 1;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.4rem); position: relative; z-index: 1; }
.hero .tagline { color: var(--gold); font-size: clamp(0.9rem, 2vw, 1.15rem); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin: 12px 0 20px; position: relative; z-index: 1; }
.hero p { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 640px; margin: 0 auto 32px; position: relative; z-index: 1; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* Page Banner */
.page-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 56px 0;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}
.page-banner h1 { color: var(--white); }
.page-banner p  { color: rgba(255,255,255,0.75); margin-top: 10px; font-size: 1.05rem; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 10px; }
.breadcrumb a { color: var(--gold); }

/* Stats Strip */
.stats-strip {
  background: var(--navy);
  padding: 48px 0;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 32px; text-align: center; }
.stat-item .stat-num { font-size: 2.4rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-item .stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-top: 6px; }

/* Service Cards */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon i { color: var(--gold); font-size: 1.5rem; }
.service-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.service-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* Cert Badges */
.certs-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.cert-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 40px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(201,168,76,0.15);
}
.cert-badge i { color: var(--gold); font-size: 1rem; }

/* Why Grid */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.why-item {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.why-item i { font-size: 2rem; color: var(--gold); margin-bottom: 14px; display: block; }
.why-item h4 { color: var(--white); margin-bottom: 8px; font-size: 1rem; }
.why-item p  { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin: 0; }

/* About Strip */
.about-strip { background: var(--white); padding: 64px 0; }
.about-strip-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 30px; padding: 6px 16px;
  font-size: 0.8rem; font-weight: 600; color: var(--navy);
}
.badge-pill i { color: var(--gold); }
.about-visual { position: relative; }
.about-shield-bg {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 48px rgba(27,43,94,0.25);
  max-width: 320px;
  margin: 0 auto;
}
.about-shield-bg img { width: 80%; height: auto; border-radius: 50%; }

@media (max-width: 768px) {
  .about-strip-inner { grid-template-columns: 1fr; }
  .about-visual { display: none; }
}

/* Contact Form */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,43,94,0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* Contact Detail Items */
.contact-detail-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.contact-detail-item .icon-wrap {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-detail-item .icon-wrap i { color: var(--gold); font-size: 1rem; }
.contact-detail-item h4 { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 2px; }
.contact-detail-item p  { font-size: 0.95rem; margin: 0; color: var(--text); }
.contact-detail-item a  { color: var(--navy); font-weight: 600; }
.contact-detail-item a:hover { color: var(--gold-dark); }

/* Home contact grid */
.home-contact { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
@media (max-width: 768px) { .home-contact { grid-template-columns: 1fr; } }

/* CTA Strip */
.cta-strip { background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%); padding: 56px 0; text-align: center; }
.cta-strip h2 { color: var(--navy); margin-bottom: 10px; }
.cta-strip p  { color: rgba(27,43,94,0.8); margin-bottom: 24px; }

/* NAICS Table */
.naics-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.naics-table th { background: var(--navy); color: var(--gold); text-align: left; padding: 14px 20px; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; }
.naics-table td { padding: 12px 20px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.naics-table tr:last-child td { border-bottom: none; }
.naics-table tr:nth-child(even) td { background: var(--bg); }
.naics-primary { color: var(--gold-dark); font-weight: 700; }

/* Service Detail (capabilities page) */
.service-detail {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 40px 40px 36px;
  border-left: 6px solid var(--gold);
  margin-bottom: 28px;
}
.service-detail-header { display: flex; gap: 20px; align-items: center; margin-bottom: 18px; }
.service-detail-icon {
  width: 64px; height: 64px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.service-detail-icon i { color: var(--gold); font-size: 1.7rem; }
.service-detail h3 { margin: 0; }
.service-detail p  { color: var(--text-muted); margin-bottom: 14px; }
.service-detail ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.service-detail ul li { font-size: 0.9rem; color: var(--text); display: flex; align-items: center; gap: 8px; }
.service-detail ul li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
@media (max-width: 560px) {
  .service-detail ul { grid-template-columns: 1fr; }
  .service-detail { padding: 28px 20px; }
  .service-detail-header { flex-direction: column; align-items: flex-start; }
}

/* Info Card */
.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}
.info-card i { font-size: 1.4rem; color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.info-card h4 { margin-bottom: 4px; font-size: 1rem; }
.info-card p  { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* Footer */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 28px;
  border-top: 3px solid var(--gold);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; margin-bottom: 40px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo img { height: 56px; margin-bottom: 14px; background: white; padding: 4px; border-radius: 6px; }
.footer-logo .brand-name { font-size: 1.1rem; font-weight: 800; color: var(--white); }
.footer-logo .brand-tag  { font-size: 0.63rem; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; }
.footer-logo p { font-size: 0.88rem; margin-top: 10px; line-height: 1.6; }

.footer h4 { color: var(--gold); font-size: 0.78rem; letter-spacing: 1.8px; text-transform: uppercase; margin-bottom: 14px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul li a { color: rgba(255,255,255,0.75); font-size: 0.9rem; transition: color .2s; }
.footer ul li a:hover { color: var(--gold); }

.footer-contact p { font-size: 0.88rem; margin-bottom: 6px; line-height: 1.6; }
.footer-contact i { color: var(--gold); margin-right: 8px; width: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer-ids { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-ids span { font-size: 0.78rem; }

/* Utility */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.fw-bold { font-weight: 700; }
.mt-2 { margin-top: 16px; }
.mb-0 { margin-bottom: 0; }

@media (max-width: 640px) {
  .section { padding: 48px 0; }
  .hero { padding: 60px 0; }
  .hero-logo { height: 90px; }
  .certs-row { justify-content: flex-start; }
}
