@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --color-charcoal: #000000;
  --color-white: #FFFFFF;
  --color-gold: #C59B08;
  --color-dark-grey: #333333;
  --color-beige: #F5F5DC;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Roboto', sans-serif;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-white);
  background-color: var(--color-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

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

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-base);
}

.top-bar {
  background-color: var(--color-dark-grey);
  padding: 8px 0;
  font-size: 13px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar-text {
  color: var(--color-white);
}

.top-bar-contact {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-contact a {
  color: var(--color-white);
}

.top-bar-contact .phone-link {
  color: var(--color-gold);
  font-weight: 500;
}

.main-header {
  background-color: var(--color-charcoal);
  padding: 15px 0;
  transition: var(--transition-base);
}

.main-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: block;
  transition: var(--transition-base);
}

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

.logo:hover {
  transform: scale(1.05);
}

.main-header.sticky .logo img {
  height: 45px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  color: var(--color-white);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-base);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.nav-link.active {
  color: var(--color-gold);
}

/* CTA Button */
.btn-cta {
  display: inline-block;
  background-color: var(--color-gold);
  color: var(--color-charcoal);
  padding: 12px 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--color-gold);
  border-radius: 4px;
  transition: var(--transition-base);
  cursor: pointer;
}

.btn-cta:hover {
  background-color: #b38b07;
  border-color: #b38b07;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(197, 155, 8, 0.3);
  color: var(--color-charcoal);
}

.btn-cta:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
  background-color: var(--color-gold);
  color: var(--color-charcoal);
}

/* Mobile Menu */
.mobile-header {
  display: none;
  background-color: var(--color-charcoal);
  padding: 12px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.mobile-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-header .logo img {
  height: 45px;
}

.mobile-nav-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-phone {
  color: var(--color-gold);
  display: flex;
  align-items: center;
}

.icon-phone svg {
  width: 24px;
  height: 24px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition-base);
}

.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);
}

/* Off-canvas Menu */
.off-canvas-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background-color: var(--color-dark-grey);
  z-index: 1001;
  transition: var(--transition-base);
  padding: 80px 30px 30px;
  overflow-y: auto;
}

.off-canvas-menu.active {
  right: 0;
}

.off-canvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.off-canvas-overlay.active {
  opacity: 1;
  visibility: visible;
}

.off-canvas-menu .nav-link {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 18px;
}

.off-canvas-menu .btn-cta {
  display: block;
  text-align: center;
  margin-top: 30px;
}

/* Hero Section */
.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: 120px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
}

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

.hero-title {
  font-size: 42px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-headline {
  font-size: 48px;
  color: var(--color-gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: scale(0.98);
  animation: heroFadeIn 0.8s ease-out forwards;
}

.hero-contact {
  margin: 25px 0;
  font-size: 18px;
}

.hero-contact a {
  display: inline-block;
  margin: 0 15px;
}

.hero-phone {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 22px;
}

.hero-email {
  color: var(--color-white);
  text-decoration: underline;
}

.hero .btn-cta {
  margin-top: 20px;
  font-size: 16px;
  padding: 15px 35px;
}

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

/* Section Styles */
.section {
  padding: 80px 0;
}

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

.section-light {
  background-color: var(--color-beige);
  color: var(--color-charcoal);
}

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

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-gold);
}

/* Introduction Section */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.intro-block {
  padding: 30px;
  border-left: 3px solid var(--color-gold);
}

.intro-block h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--color-white);
}

.intro-block p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--color-white);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition-base);
  border: 2px solid transparent;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--color-gold);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 100%;
  height: auto;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-charcoal);
}

.service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
  background-color: var(--color-charcoal);
  position: relative;
}

.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  text-align: center;
  padding: 40px 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
}

.testimonial-quote-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  opacity: 0.8;
}

.testimonial-text {
  font-size: 20px;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 25px;
  color: var(--color-white);
}

.testimonial-author {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 16px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border: 2px solid var(--color-gold);
  background: transparent;
  color: var(--color-gold);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
  font-size: 20px;
}

.carousel-btn:hover {
  background-color: var(--color-gold);
  color: var(--color-charcoal);
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-base);
}

.carousel-dot.active {
  background-color: var(--color-gold);
  transform: scale(1.2);
}

/* CTA Block */
.cta-block {
  background-color: var(--color-gold);
  text-align: center;
  padding: 60px 20px;
}

.cta-block h2 {
  font-size: 32px;
  color: var(--color-charcoal);
  margin-bottom: 15px;
}

.cta-block p {
  font-size: 18px;
  color: var(--color-charcoal);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-block .btn-cta {
  background-color: var(--color-charcoal);
  color: var(--color-white);
  border-color: var(--color-charcoal);
}

.cta-block .btn-cta:hover {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  color: var(--color-white);
}

/* Contact Form */
.contact-form-section {
  background-color: var(--color-charcoal);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--color-white);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  border-radius: 4px;
  transition: var(--transition-base);
}

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

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Footer */
.footer {
  background-color: var(--color-dark-grey);
  padding: 60px 0 30px;
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--color-gold);
}

.footer-logo {
  display: block;
  margin-bottom: 20px;
}

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

.footer-col p,
.footer-col address {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-links a {
  font-size: 14px;
  transition: var(--transition-base);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.social-link:hover {
  border-color: var(--color-gold);
  background-color: var(--color-gold);
}

.social-link:hover svg {
  fill: var(--color-charcoal);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--color-white);
}

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

.footer-bottom p {
  margin-bottom: 10px;
}

.footer-bottom .recaptcha {
  font-size: 12px;
  opacity: 0.7;
}

/* About Page Styles */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  padding-top: 120px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Firm History */
.firm-history {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.firm-history-image img {
  width: 100%;
  border-radius: 8px;
}

.firm-history-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.firm-history-content p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.team-card {
  background-color: var(--color-charcoal);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-base);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.team-card-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.team-card-content {
  padding: 25px;
}

.team-card h3 {
  font-size: 24px;
  margin-bottom: 5px;
}

.team-card .team-title {
  color: var(--color-gold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.team-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

/* Why Choose Us */
.why-choose-us {
  background-color: var(--color-beige);
}

.why-choose-us h2 {
  color: var(--color-charcoal);
}

.why-list {
  max-width: 800px;
  margin: 0 auto;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background-color: var(--color-white);
  border-radius: 8px;
  transition: var(--transition-base);
}

.why-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.why-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--color-gold);
}

.why-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--color-charcoal);
}

.why-content p {
  font-size: 15px;
  color: #666;
}

/* Practice Area Grid */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.practice-card {
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-base);
  border: 2px solid transparent;
}

.practice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--color-gold);
}

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

.practice-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--color-charcoal);
}

.practice-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.practice-card .learn-more {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.practice-card .learn-more:hover {
  text-decoration: underline;
}

/* Personal Injury Detail */
.process-timeline {
  max-width: 700px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
  position: relative;
}

.process-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50px;
  width: 2px;
  height: calc(100% + 10px);
  background-color: var(--color-gold);
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--color-gold);
  color: var(--color-charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--color-white);
}

.step-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Case Studies */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.case-study-card {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 30px;
  transition: var(--transition-base);
  border: 2px solid transparent;
}

.case-study-card:hover {
  transform: scale(1.02);
  border-color: var(--color-gold);
}

.case-study-card h3 {
  font-size: 22px;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.case-study-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* FAQ Accordion */
.faq-section {
  background-color: var(--color-dark-grey);
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.02);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-base);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--color-gold);
  transition: var(--transition-base);
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item summary:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-item[open] summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-answer {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.contact-details {
  margin-bottom: 30px;
}

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

.contact-item svg {
  width: 24px;
  height: 24px;
  fill: var(--color-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-item h4 {
  font-size: 16px;
  color: var(--color-white);
  margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item a:hover {
  color: var(--color-gold);
}

.office-hours {
  margin-top: 30px;
}

.office-hours h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-white);
}

.office-hours p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.contact-map {
  border-radius: 8px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-slow);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

@media (max-width: 768px) {
  .desktop-header {
    display: none;
  }
  
  .mobile-header {
    display: block;
  }
  
  .hero {
    padding-top: 80px;
    min-height: 90vh;
  }
  
  .hero-title {
    font-size: 28px;
    letter-spacing: 2px;
  }
  
  .hero-headline {
    font-size: 32px;
  }
  
  .hero-contact {
    font-size: 14px;
  }
  
  .hero-phone {
    font-size: 18px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .intro-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .firm-history {
    grid-template-columns: 1fr;
  }
  
  .firm-history-image {
    order: -1;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .practice-grid {
    grid-template-columns: 1fr;
  }
  
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .page-hero {
    min-height: 40vh;
    padding-top: 80px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  .cta-block h2 {
    font-size: 26px;
  }
  
  .testimonial-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 22px;
  }
  
  .hero-headline {
    font-size: 26px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .btn-cta {
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* Main Content Spacer */
main {
  padding-top: 0;
}

body.scrolled main {
  padding-top: 70px;
}
