.main-content {
  padding-top: 80px;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(27, 42, 63, 0.8), rgba(60, 110, 113, 0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 52px;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
}

.hero-subtitle {
  font-size: 22px;
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 400;
  line-height: 1.5;
}

.hero-cta-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.section-divider {
  height: 1px;
  background: var(--border-color);
  margin: 80px 0;
  opacity: 0.3;
}

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

.section-title {
  font-size: 40px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text-content h2 {
  margin-bottom: 30px;
  color: var(--text-primary);
}

.about-text-content p {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.about-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.about-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.team-member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  text-align: center;
}

.team-member-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.team-member-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.team-member-info {
  padding: 30px 20px;
}

.team-member-name {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.team-member-role {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-member-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.case-study-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-light);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

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

.case-study-header {
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.case-study-title {
  color: var(--text-primary);
  margin-bottom: 10px;
}

.case-study-client {
  color: var(--text-secondary);
  font-style: italic;
  font-size: 16px;
}

.case-study-summary p {
  margin-bottom: 15px;
}

.case-study-expand {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.case-study-expand:hover {
  gap: 12px;
}

.insight-article-grid {
  display: grid;
  gap: 40px;
}

.insight-article-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

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

.insight-article-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  position: relative;
  overflow: hidden;
}

.insight-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-article-content {
  padding: 30px;
}

.insight-article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-secondary);
  font-family: var(--font-mono);
}

.insight-article-title {
  margin-bottom: 16px;
  color: var(--text-primary);
}

.insight-article-excerpt {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.contact-info-block {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
}

.contact-info-block h3 {
  color: var(--text-primary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info-item {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-info-label {
  font-weight: 600;
  color: var(--text-primary);
  min-width: 80px;
  font-family: var(--font-mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-value {
  color: var(--text-secondary);
  flex: 1;
}

.contact-info-value a {
  color: var(--secondary);
  text-decoration: none;
}

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

.office-hours-display {
  background: var(--bg-primary);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
  margin-top: 20px;
}

.current-time {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.office-status {
  font-size: 14px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}

.office-status.open {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
}

.office-status.closed {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.pricing-calculator {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  margin: 40px 0;
}

.calculator-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.calculator-result {
  text-align: center;
  padding: 30px;
  background: var(--bg-primary);
  border-radius: 8px;
  border: 2px solid var(--accent);
}

.estimated-fee {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.timeline-container {
  position: relative;
  margin: 60px 0;
  overflow-x: auto;
  padding: 20px 0;
}

.timeline-track {
  display: flex;
  gap: 40px;
  min-width: 800px;
  position: relative;
}

.timeline-item {
  flex: 0 0 200px;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-4px);
}

.timeline-year {
  background: var(--accent);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 16px;
  font-size: 16px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-year {
  box-shadow: var(--shadow-medium);
  transform: scale(1.1);
}

.timeline-event {
  background: var(--bg-card);
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: var(--border-color);
  z-index: -1;
}

.callout-box {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.callout-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.callout-content {
  position: relative;
  z-index: 2;
}

.page-title-bar {
  background: var(--primary);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-title-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.page-title {
  font-size: 48px;
  margin-bottom: 16px;
  color: white;
}

.page-subtitle {
  font-size: 20px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb-area {
  background: var(--bg-primary);
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb-nav {
  font-size: 14px;
  color: var(--text-secondary);
}

.breadcrumb-nav a {
  color: var(--secondary);
  text-decoration: none;
}

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

.form-success-message {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  padding: 20px;
  border-radius: 8px;
  border: 2px solid rgba(5, 150, 105, 0.2);
  margin-bottom: 30px;
  display: none;
}

.form-error-message {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  padding: 20px;
  border-radius: 8px;
  border: 2px solid rgba(220, 38, 38, 0.2);
  margin-bottom: 30px;
  display: none;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-cta-wrapper {
    flex-direction: column;
  }
  
  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .calculator-inputs {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .timeline-track {
    min-width: 600px;
  }
  
  .timeline-item {
    flex: 0 0 150px;
  }
  
  .page-title {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 32px;
  }
}