/* =============================================
   Vector Marketing Amarillo | Diamondback Division
   Shared Stylesheet
   ============================================= */

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

:root {
  --navy:   #1a2540;
  --gold:   #c9a84c;
  --gold-light: #e8c96d;
  --white:  #ffffff;
  --off-white: #f7f8fa;
  --gray:   #6b7280;
  --light-gray: #e5e7eb;
  --text:   #1f2937;
  --font:   'Inter', system-ui, -apple-system, sans-serif;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

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

a {
  color: inherit;
  text-decoration: none;
}

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

/* ─── TYPOGRAPHY ─── */
h1 { font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.15; font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); line-height: 1.2; font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { font-size: 1.05rem; color: var(--gray); }

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo .name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-logo .title {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 700 !important;
  transition: background var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

/* mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, var(--navy) 60%, #243358 100%);
  color: var(--white);
  padding: 100px 5% 80px;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(201,168,76,0.18);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(201,168,76,0.35);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero h1 span { color: var(--gold); }

.hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  max-width: 540px;
  margin-bottom: 2rem;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  display: inline-block;
  transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  display: inline-block;
  transition: border-color var(--transition), background var(--transition);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  display: inline-block;
  transition: background var(--transition);
}

.btn-navy:hover { background: #243358; }

/* ─── SECTION BASE ─── */
section {
  padding: 80px 5%;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--navy);
}

.section-sub {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--off-white);
  padding: 48px 5%;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.stat-number span { color: var(--gold); }

.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.35rem;
  font-weight: 500;
}

/* ─── CARDS ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.11);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.card h3 { color: var(--navy); margin-bottom: 0.5rem; }
.card p  { font-size: 0.95rem; }

/* ─── TESTIMONIAL ─── */
.testimonial-section {
  background: var(--navy);
  color: var(--white);
}

.testimonial-section .section-title { color: var(--white); }

blockquote {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

cite {
  font-size: 0.9rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

/* ─── TWO-COL LAYOUT ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ─── ICON LIST ─── */
.icon-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text);
}

.icon-list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.7rem;
  margin-top: 2px;
}

/* ─── STEP TIMELINE ─── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  padding-left: 3rem;
}

.steps::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--light-gray);
}

.step {
  position: relative;
}

.step-num {
  position: absolute;
  left: -3rem;
  top: 0;
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.step h3 { color: var(--navy); margin-bottom: 0.3rem; }
.step p { font-size: 0.95rem; }

/* ─── CREDENTIAL BADGE ─── */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.badge {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}

/* ─── CONTACT FORM ─── */
.contact-form {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 14px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.25rem;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

input, textarea, select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition);
  background: var(--white);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold);
}

textarea { resize: vertical; min-height: 130px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.submit-btn {
  width: 100%;
  padding: 0.85rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  margin-top: 0.5rem;
}

.submit-btn:hover {
  background: #243358;
  transform: translateY(-1px);
}

/* ─── INFO CARD ─── */
.info-card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.info-item h4 { font-size: 0.85rem; color: var(--gray); font-weight: 500; }
.info-item p  { font-size: 1rem; color: var(--navy); font-weight: 600; margin-top: 0.1rem; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 60%, #243358 100%);
  color: var(--white);
  padding: 70px 5% 60px;
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,0.72); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ─── FAQ ─── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

details {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: border-color var(--transition);
}

details[open] { border-color: var(--gold); }

summary {
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 400;
  flex-shrink: 0;
}

details[open] summary::after { content: "−"; }

details p {
  margin-top: 0.85rem;
  font-size: 0.97rem;
  color: var(--gray);
  padding-top: 0.5rem;
  border-top: 1px solid var(--light-gray);
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--gold);
  padding: 60px 5%;
  text-align: center;
}

.cta-band h2 { color: var(--navy); margin-bottom: 0.75rem; }
.cta-band p  { color: rgba(26,37,64,0.75); max-width: 520px; margin: 0 auto 2rem; font-size: 1.1rem; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 40px 5% 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo .name  { font-size: 1rem; font-weight: 800; color: var(--white); }
.footer-logo .title { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; }

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-copy { font-size: 0.8rem; }

/* ─── PHOTO GALLERY ─── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.photo-grid.two-up {
  grid-template-columns: repeat(2, 1fr);
}

.photo-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--light-gray);
}

.photo-item.tall {
  aspect-ratio: 3/4;
}

.photo-item.wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.photo-item:hover img {
  transform: scale(1.03);
}

.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26,37,64,0.85));
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 1.5rem 1rem 0.75rem;
}

/* ─── NAV LOGO WITH IMAGE ─── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 40px;
  width: 40px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 1.5rem 5%; gap: 1.2rem; box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; direction: ltr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 72px 5% 60px; }
  section { padding: 60px 5%; }
}
