/* ========================================
   HECHT LAW FIRM PLLC - Main Stylesheet
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Colors */
  --primary-dark-blue: #2F3E4C;
  --accent-gold: #A7936E;
  --accent-gold-hover: #8C775D;
  --secondary-beige: #D1C5B7;
  --white: #FFFFFF;
  --light-gray: #CED4DA;

  /* Typography */
  --font-primary: 'Lora', serif;
  --font-secondary: 'Montserrat', sans-serif;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 80px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

/* ========================================
   Base Reset & Typography
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--primary-dark-blue);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 4px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent-gold);
  color: var(--white);
  padding: 12px 24px;
  z-index: 10000;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary-dark-blue);
}

h1 { font-size: clamp(32px, 5vw, 56px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: clamp(18px, 2vw, 24px); }

p {
  margin-bottom: 16px;
  color: var(--primary-dark-blue);
}

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

a:hover {
  color: var(--accent-gold-hover);
}

/* ========================================
   Header - Desktop
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--primary-dark-blue);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
  opacity: 0.03;
  pointer-events: none;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), #C4A882);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  font-weight: 600;
}

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

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

.phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  transition: color var(--transition-fast);
}

.phone-icon:hover {
  color: var(--accent-gold);
}

.phone-number {
  display: none;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

/* Primary CTA Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gold);
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse 3s infinite ease-in-out;
}

.btn-primary:hover {
  background: var(--accent-gold-hover);
  transform: scale(1.02);
}

.btn-primary:active {
  transform: translateY(1px);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.01); }
}

/* Sticky Header */
.header.sticky {
  height: 64px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header.sticky .logo img {
  height: 40px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-dark-blue);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.mobile-menu-links a {
  font-family: var(--font-secondary);
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.mobile-menu .btn-primary {
  margin-top: 24px;
  animation: none;
}

/* ========================================
   Hero Sections
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(47, 62, 76, 0.4) 0%, rgba(47, 62, 76, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  transform: scale(0.95);
  animation: heroTextIn 0.8s ease-out forwards;
}

.hero h2 {
  color: var(--white);
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: clamp(18px, 3vw, 24px);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroSubtextIn 0.6s ease-out 0.2s forwards;
}

@keyframes heroTextIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroSubtextIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   Section Base Styles
   ======================================== */
section {
  padding: 80px 24px;
}

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

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--primary-dark-blue);
  opacity: 0.8;
}

/* Alternating Backgrounds */
.bg-white { background: var(--white); }
.bg-beige { background: var(--secondary-beige); }
.bg-dark { background: var(--primary-dark-blue); color: var(--white); }
.bg-gray { background: var(--light-gray); }

/* ========================================
   Problem/Solution Section
   ======================================== */
.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.problem-block,
.solution-block {
  padding: 32px;
}

.problem-block {
  border-left: 4px solid var(--accent-gold);
}

.solution-block {
  background: var(--primary-dark-blue);
  color: var(--white);
  border-radius: 8px;
}

.solution-block h3,
.solution-block p {
  color: var(--white);
}

/* ========================================
   Why Us / Differentiators
   ======================================== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-us-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.why-us-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-beige);
  border-radius: 50%;
}

.why-us-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent-gold);
}

.why-us-card h4 {
  margin-bottom: 12px;
}

.why-us-card p {
  font-size: 14px;
  color: #666;
}

/* ========================================
   Practice Areas Grid
   ======================================== */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.practice-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.practice-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.practice-card-image {
  height: 200px;
  background: var(--primary-dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.practice-card-image svg {
  width: 48px;
  height: 48px;
  color: var(--accent-gold);
}

.practice-card-content {
  padding: 24px;
}

.practice-card h4 {
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.practice-card:hover h4 {
  color: var(--accent-gold);
}

.practice-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.practice-card-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.practice-card:hover .practice-card-link {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials-section {
  background: var(--secondary-beige);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
  font-family: var(--font-primary);
  font-size: 18px;
  font-style: italic;
  color: var(--primary-dark-blue);
  margin-bottom: 24px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
}

.testimonial-info h5 {
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
}

.testimonial-info span {
  font-size: 12px;
  color: #666;
}

/* Featured Testimonial */
.testimonial-featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}

.testimonial-featured .testimonial-quote {
  font-size: 24px;
}

/* ========================================
   Process Steps
   ======================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-number {
  width: 64px;
  height: 64px;
  background: var(--accent-gold);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 24px;
}

.process-step h4 {
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  color: #666;
}

.process-connector {
  position: absolute;
  top: 32px;
  left: calc(25% + 32px);
  width: calc(50% - 64px);
  height: 2px;
  background: var(--accent-gold);
}

/* ========================================
   Firm Philosophy / Mission
   ======================================== */
.philosophy-section {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.philosophy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(47, 62, 76, 0.85);
}

.philosophy-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-quote {
  font-family: var(--font-primary);
  font-size: clamp(20px, 3vw, 28px);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 48px;
}

.philosophy-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}

.philosophy-value h4 {
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.philosophy-value p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* ========================================
   CTA Strip
   ======================================== */
.cta-strip {
  background: var(--accent-gold);
  padding: 64px 24px;
  text-align: center;
}

.cta-strip h2 {
  color: var(--white);
  margin-bottom: 24px;
}

.cta-strip .btn-primary {
  background: var(--white);
  color: var(--accent-gold);
}

.cta-strip .btn-primary:hover {
  background: var(--primary-dark-blue);
  color: var(--white);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--primary-dark-blue);
  color: var(--white);
  padding: 64px 24px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h4 {
  color: var(--white);
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 24px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo img {
  height: 40px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 24px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.footer-social {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--accent-gold);
  background: var(--accent-gold);
}

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

/* Footer Accordion (Mobile) */
.footer-accordion {
  display: none;
}

/* ========================================
   Form Styles
   ======================================== */
.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-dark-blue);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  font-family: var(--font-secondary);
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
}

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

.form-submit {
  text-align: center;
}

.privacy-notice {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-top: 16px;
}

/* ========================================
   Blog Styles
   ======================================== */
.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-posts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card-image {
  height: 200px;
  background: var(--primary-dark-blue);
}

.blog-card-content {
  padding: 24px;
}

.blog-card-meta {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}

.blog-card h4 {
  margin-bottom: 12px;
}

.blog-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.blog-sidebar {
  padding: 24px;
  background: var(--light-gray);
  border-radius: 8px;
}

.blog-sidebar h4 {
  margin-bottom: 16px;
}

.blog-categories {
  list-style: none;
}

.blog-categories li {
  margin-bottom: 12px;
}

.blog-categories a {
  color: var(--primary-dark-blue);
  font-size: 14px;
}

.blog-categories a:hover {
  color: var(--accent-gold);
}

.search-form {
  margin-bottom: 32px;
}

.search-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  font-family: var(--font-secondary);
}

/* ========================================
   Results Page Styles
   ======================================== */
.results-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.stat-item h3 {
  font-size: 48px;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.case-study {
  padding: 64px 24px;
}

.case-study:nth-child(odd) {
  background: var(--white);
}

.case-study:nth-child(even) {
  background: var(--primary-dark-blue);
  color: var(--white);
}

.case-study:nth-child(even) h3,
.case-study:nth-child(even) p {
  color: var(--white);
}

.case-study-content {
  max-width: 800px;
  margin: 0 auto;
}

.case-study h3 {
  margin-bottom: 24px;
}

.case-study-amount {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 24px;
}

/* ========================================
   FAQ Accordion
   ======================================== */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--light-gray);
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark-blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 24px;
  color: #666;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ========================================
   Team Grid (Our Firm)
   ======================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
  height: 300px;
  background: var(--primary-dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-image svg {
  width: 80px;
  height: 80px;
  color: var(--secondary-beige);
}

.team-info {
  padding: 24px;
}

.team-info h4 {
  margin-bottom: 4px;
}

.team-title {
  color: var(--accent-gold);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.team-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--accent-gold);
}

/* ========================================
   Contact Page Styles
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--secondary-beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-gold);
}

.contact-item h4 {
  margin-bottom: 4px;
}

.contact-item p {
  color: #666;
  margin: 0;
}

.contact-item a {
  color: var(--accent-gold);
  font-weight: 500;
}

.map-container {
  margin-top: 48px;
  height: 300px;
  background: var(--light-gray);
  border-radius: 8px;
}

.hours-section {
  background: var(--accent-gold);
  color: var(--white);
  padding: 48px 24px;
  text-align: center;
}

.hours-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.hours-section p {
  color: var(--white);
  font-size: 18px;
}

.hours-section .btn-primary {
  margin-top: 24px;
  animation: none;
}

/* ========================================
   Animation Classes
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ========================================
   Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .fade-in, .slide-left, .slide-right, .scale-in {
    opacity: 1;
    transform: none;
  }
  
  .btn-primary {
    animation: none;
  }
}

/* ========================================
   Responsive: Tablet (768px - 1023px)
   ======================================== */
@media (max-width: 1023px) {
  .header-container {
    padding: 0 24px;
  }
  
  .nav-links {
    display: none;
  }
  
  .header-cta .btn-primary {
    display: none;
  }
  
  .phone-number {
    display: block;
  }
  
  .hamburger {
    display: flex;
  }
  
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-connector {
    display: none;
  }
  
  .philosophy-values {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-posts {
    grid-template-columns: 1fr;
  }
  
  .results-stats {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .problem-solution {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Responsive: Mobile (up to 767px)
   ======================================== */
@media (max-width: 767px) {
  .header {
    height: 64px;
  }
  
  .logo img {
    height: 36px;
  }
  
  .hero {
    padding-top: 64px;
    min-height: 80vh;
  }
  
  section {
    padding: 48px 16px;
  }
  
  .why-us-grid,
  .practice-grid,
  .team-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-strip {
    padding: 48px 16px;
  }
  
  .footer-grid {
    display: none;
  }
  
  .footer-accordion {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-accordion-title {
    width: 100%;
    padding: 16px 0;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
  }
  
  .footer-accordion-title::after {
    content: '+';
  }
  
  .footer-accordion-item.active .footer-accordion-title::after {
    content: '-';
  }
  
  .footer-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .footer-accordion-item.active .footer-accordion-content {
    max-height: 300px;
  }
  
  .footer-accordion-content ul {
    list-style: none;
    padding-bottom: 16px;
  }
  
  .footer-accordion-content li {
    margin-bottom: 8px;
  }
  
  .footer-accordion-content a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 12px;
  }
  
  .btn-primary {
    width: 100%;
    padding: 16px;
  }
  
  .blog-card-image {
    height: 150px;
  }
  
  .team-image {
    height: 250px;
  }
}