/* VA Management Consultants - Complete Redesign */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* New color palette - warm, trustworthy, modern */
  --primary: #1e3a5f;
  --primary-light: #2d5a8a;
  --primary-dark: #142740;
  --accent: #c9a227;
  --accent-light: #ddb940;
  --accent-dark: #a8871f;

  --text-dark: #1a1a2e;
  --text-body: #4a4a5a;
  --text-muted: #7a7a8a;
  --text-light: #9a9aaa;

  --bg-white: #ffffff;
  --bg-cream: #faf9f7;
  --bg-light: #f4f3f1;
  --bg-dark: #1a1a2e;

  --border-light: rgba(0, 0, 0, 0.06);
  --border-medium: rgba(0, 0, 0, 0.1);

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-slow: 0.4s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg-white);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.375rem;
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition-normal);
}

.site-header:hover {
  box-shadow: var(--shadow-sm);
}

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

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 50px;
  width: auto;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.cta-phone {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

.cta-phone:hover {
  color: var(--accent-dark);
}

.cta-sub {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg-light);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
}

.cta-sub::before {
  content: "★";
  font-size: 0.75rem;
  color: var(--accent);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero.png");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  mix-blend-mode: overlay;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-cream), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 120px;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  backdrop-filter: blur(8px);
}

.hero-badge-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.625rem;
}

.hero h1 {
  color: white;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.lead strong {
  color: white;
}

.est {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
}

.est strong {
  color: var(--accent-light);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-primary {
  background: var(--accent);
  color: var(--text-dark);
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.4);
}

.btn-primary:hover {
  background: var(--accent-light);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 162, 39, 0.5);
}

.btn-ghost {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-submit {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

.section-cream {
  background: var(--bg-cream);
}

.section-dark {
  background: var(--bg-dark);
  color: white;
}

.section-dark h2,
.section-dark h3 {
  color: white;
}

.section-dark .text-muted {
  color: rgba(255, 255, 255, 0.6);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--transition-normal);
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
  border-radius: var(--radius-md);
  font-size: 1.75rem;
}

.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.service-list {
  text-align: left;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.service-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.service-list li:last-child {
  margin-bottom: 0;
}

/* ===== WHY US SECTION ===== */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-content h2 {
  margin-bottom: 24px;
}

.why-us-content > p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.checklist {
  margin-bottom: 32px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 1.0625rem;
}

.checklist li:last-child {
  margin-bottom: 0;
}

.check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  margin-top: 2px;
}

.muted {
  color: var(--text-muted);
}

/* ===== CONTACT PANEL ===== */
.contact-panel {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

.contact-panel-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.contact-panel-phone {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-panel-phone:hover {
  color: var(--accent-dark);
}

.contact-panel-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.contact-panel-divider {
  height: 1px;
  background: var(--border-medium);
  margin: 28px 0;
}

.contact-panel-address {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.contact-panel-address strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 4px;
}

/* ===== ORDER FORM ===== */
.form-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.form {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.span-2 {
  grid-column: span 2;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-input,
.form-select,
.form-textarea {
  padding: 14px 18px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--bg-light);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  background: var(--bg-white);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.1);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a7a8a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.honeypot {
  display: none;
}

.form-footer {
  margin-top: 32px;
  text-align: center;
}

.form-footer .btn {
  width: 100%;
  padding: 18px 32px;
}

.fineprint {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 16px;
}

/* ===== CONTACT BAR ===== */
.contact-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contact-item {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 50%;
  font-size: 1.25rem;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.contact-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
}

.contact-value a {
  color: white;
}

.contact-value a:hover {
  color: var(--accent-light);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--primary-dark);
  color: white;
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-disclaimer {
  max-width: 480px;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid {
    gap: 48px;
  }

  .contact-panel {
    padding: 36px;
  }
}

@media (max-width: 840px) {
  .section {
    padding: 80px 0;
  }

  .header-inner {
    height: 70px;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-content {
    padding: 60px 0 100px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    text-align: left;
    padding: 24px;
  }

  .service-icon {
    margin: 0;
    width: 56px;
    height: 56px;
  }

  .service-card h3 {
    margin-bottom: 12px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.span-2 {
    grid-column: auto;
  }

  .form {
    padding: 32px;
  }

  .contact-bar {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-item {
    padding: 28px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-disclaimer {
    text-align: left;
    max-width: none;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .header-inner {
    height: auto;
    flex-direction: column;
    padding: 16px 0;
    gap: 12px;
  }

  .header-cta {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .brand-logo {
    height: 44px;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
  }

  .hero-content {
    padding: 40px 0 80px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .service-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-icon {
    margin: 0 auto;
  }

  .service-list {
    text-align: center;
  }

  .service-list li {
    padding-left: 0;
    justify-content: center;
    display: flex;
    gap: 8px;
  }

  .service-list li::before {
    position: static;
    flex-shrink: 0;
    margin-top: 8px;
  }

  .checklist li {
    font-size: 1rem;
  }

  .contact-panel {
    padding: 28px;
  }

  .contact-panel-phone {
    font-size: 1.625rem;
  }

  .form {
    padding: 24px;
  }

  .footer-bottom {
    margin-top: 32px;
  }
}
