/* =========================================
   ABA of Las Vegas — Global Styles
   ========================================= */

:root {
  --blue:    #3a86d4;
  --yellow:  #f5c518;
  --red:     #e84b4b;
  --green:   #5aad5a;
  --purple:  #9b59b6;
  --brown:   #5c3a1e;
  --tan:     #f7ecd8;
  --white:   #ffffff;
  --dark:    #2b1e10;
  --gray:    #6b7280;
  --light-bg:#fdf8f2;
  --border:  #e8d9c4;
  --shadow:  0 4px 20px rgba(92,58,30,0.10);
  --radius:  14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--light-bg);
  color: var(--dark);
  line-height: 1.65;
}

/* ── HEADER ── */
header {
  background: var(--white);
  border-bottom: 3px solid var(--yellow);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(92,58,30,0.08);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  height: 56px;
  width: 56px;
  object-fit: contain;
}

.brand-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brown);
  letter-spacing: -0.3px;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  text-decoration: none;
  color: var(--brown);
  font-weight: 600;
  font-size: 0.97rem;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--blue);
}

.nav-btn {
  text-decoration: none;
  background: var(--blue);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(58,134,212,0.30);
}

.nav-btn:hover {
  background: #2a6ab8;
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #fff8ee 0%, #fde9c3 50%, #fdf3e0 100%);
  padding: 90px 24px 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='%23f5c518' fill-opacity='0.08'%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");
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 32px;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), #2a6ab8);
  color: var(--white);
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(58,134,212,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(58,134,212,0.45);
}

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--white);
  padding: 60px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-cards {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.about-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  background: var(--light-bg);
  border: 2px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.about-card:nth-child(1) { border-top: 4px solid var(--blue); }
.about-card:nth-child(2) { border-top: 4px solid var(--red); }
.about-card:nth-child(3) { border-top: 4px solid var(--green); }

.about-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.about-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 10px;
}

.about-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ── INTEREST FORM ── */
.form-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, var(--tan) 0%, var(--light-bg) 100%);
}

.form-container {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 50px 48px;
  box-shadow: 0 8px 40px rgba(92,58,30,0.12);
  border: 2px solid var(--border);
}

.form-header {
  text-align: center;
  margin-bottom: 36px;
}

.form-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 10px;
}

.form-header p {
  color: var(--gray);
  font-size: 0.98rem;
  max-width: 500px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

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

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brown);
}

.required {
  color: var(--red);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 0.97rem;
  color: var(--dark);
  background: var(--light-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(58,134,212,0.15);
  background: var(--white);
}

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

.form-submit {
  margin-top: 28px;
  text-align: center;
}

.btn-submit {
  background: linear-gradient(135deg, var(--blue), #2a6ab8);
  color: var(--white);
  border: none;
  padding: 15px 50px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(58,134,212,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(58,134,212,0.45);
}

.form-note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--gray);
}

/* ── PAGE HEADER (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #fff8ee 0%, #fde9c3 100%);
  padding: 60px 24px 50px;
  text-align: center;
  border-bottom: 3px solid var(--yellow);
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--brown);
  margin-bottom: 10px;
}

.page-hero p {
  color: var(--gray);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ── CONTACT PAGE ── */
.contact-section {
  padding: 70px 24px;
}

.contact-wrapper {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 50px 48px;
  box-shadow: 0 8px 40px rgba(92,58,30,0.12);
  border: 2px solid var(--border);
}

.contact-wrapper h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 28px;
  text-align: center;
}

.full-width {
  grid-column: 1 / -1;
}

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

/* ── INSURANCES PAGE ── */
.insurances-section {
  padding: 70px 24px;
  text-align: center;
}

.insurances-section h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 12px;
}

.insurances-section .subtitle {
  color: var(--gray);
  margin-bottom: 50px;
  font-size: 1rem;
}

.insurance-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.insurance-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
  min-width: 260px;
}

.insurance-card:hover {
  transform: translateY(-4px);
}

.insurance-card .in-network-badge {
  background: #d1fae5;
  color: #065f46;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.medicaid-logo {
  width: 180px;
  height: auto;
}

.insurance-card p {
  color: var(--gray);
  font-size: 0.9rem;
  text-align: center;
  max-width: 220px;
}

.insurance-note {
  margin-top: 48px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  background: var(--tan);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 30px;
  font-size: 0.95rem;
  color: var(--brown);
}

.insurance-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

/* ── SUCCESS MESSAGE ── */
.success-banner {
  display: none;
  background: #d1fae5;
  border: 2px solid #34d399;
  color: #065f46;
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
  font-weight: 600;
  margin-top: 20px;
  font-size: 0.97rem;
}

/* ── FOOTER ── */
footer {
  background: var(--brown);
  color: var(--tan);
  text-align: center;
  padding: 48px 24px;
}

.footer-logo {
  height: 70px;
  width: 70px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.footer-brand {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #c9b89e;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--tan);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}

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

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

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-container,
  .contact-wrapper {
    padding: 32px 22px;
  }

  .header-inner {
    flex-direction: column;
    gap: 12px;
  }

  .hero {
    padding: 60px 20px 50px;
  }
}
