/* Trust Classic — Navy/White/Gold credibility theme */

:root {
  --primary:   #0a1838;  /* Navy */
  --primary-light: #1a3060;
  --accent:    #c9a84c;  /* Gold */
  --accent-light: #e8c97a;
  --text:      #1a1a2e;
  --text-muted:#5a6270;
  --bg:        #ffffff;
  --bg-alt:    #f8f9fc;
  --border:    #e2e6ef;
  --radius:    6px;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif:'Georgia', serif;
  --max-w:     1200px;
  --shadow:    0 2px 12px rgba(10,24,56,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  font-size: 0.9375rem;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.btn-lg { padding: 1rem 2rem; font-size: 1.0625rem; }
.btn-full { width: 100%; text-align: center; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: var(--primary);
  border-bottom: 2px solid var(--accent);
  z-index: 100;
  padding: 0.75rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-logo { flex: 1; }
.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.site-logo img { height: 40px; width: auto; }
.site-nav ul { display: flex; gap: 1.5rem; list-style: none; }
.site-nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}
.site-nav a:hover { color: var(--accent); }
.header-cta { white-space: nowrap; }

/* Hero */
.hero {
  background: var(--primary);
  padding: 5rem 0;
  color: #fff;
}
.hero-inner { display: flex; align-items: center; }
.hero-content { max-width: 640px; }
.trust-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
}
.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.trust-signal {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

/* Badges strip */
.badges-section {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.badges-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  min-width: 80px;
}
.badge-item svg { color: var(--accent); }

/* Services */
.services-section { padding: 5rem 0; }
.services-section h2 {
  text-align: center;
  font-size: 2rem;
  font-family: var(--font-serif);
  margin-bottom: 0.5rem;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.service-card {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.service-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); }
.service-price { font-weight: 600; color: var(--primary); margin-top: 0.5rem; }
.services-cta { text-align: center; }

/* About */
.about-section { padding: 5rem 0; background: var(--bg-alt); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-text h2 { font-family: var(--font-serif); font-size: 1.875rem; margin-bottom: 1rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }
.about-values { margin-top: 1.25rem; padding-left: 1.25rem; }
.about-values li { margin-bottom: 0.5rem; font-size: 0.925rem; }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.team-card {
  text-align: center;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}
.team-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
}
.team-card h3 { font-size: 0.9rem; }
.team-card p { font-size: 0.8rem; color: var(--text-muted); }

/* Contact */
.contact-section { padding: 5rem 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 { font-family: var(--font-serif); font-size: 1.875rem; margin-bottom: 0.75rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 1.5rem; }
.contact-details { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.contact-details li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; }
.contact-details a { color: var(--primary); text-decoration: none; font-weight: 500; }
.contact-details svg { color: var(--accent); flex-shrink: 0; }
.contact-form {
  background: var(--bg-alt);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.contact-form h3 { font-size: 1.25rem; margin-bottom: 1.25rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,24,56,0.1);
}

/* Footer */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 2.5rem 0;
  font-size: 0.875rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
}
.footer-brand { color: #fff; }
.footer-brand strong { display: block; font-size: 1rem; }
.footer-brand small { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.footer-nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-nav a:hover { color: var(--accent); }
.footer-contact { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-contact a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-contact a:hover { color: var(--accent); }
.footer-copy { width: 100%; color: rgba(255,255,255,0.4); font-size: 0.8rem; text-align: center; }

/* Reviews (augments base) */
.reviews-section { background: var(--bg-alt); }
.reviews-section h2 { font-family: var(--font-serif); }

/* Responsive */
@media (max-width: 900px) {
  .about-inner,
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .hero { padding: 3.5rem 0; }
  .hero-actions { flex-direction: column; }
  .header-inner { justify-content: space-between; }
  .badges-inner { gap: 1.25rem; }
  .services-section,
  .about-section,
  .contact-section { padding: 3rem 0; }
}
