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

:root {
  --primary-dark: #2B2B2B;
  --accent-gold: #A6865A;
  --white: #FFFFFF;
  --light-gray: #F7F7F7;
  --secondary-text: #6E7072;
  --gold-hover: #BF9E6E;
  --gold-dark: #8B7050;
  
  --header-height: 70px;
  --topbar-height: 40px;
  --transition-speed: 0.3s;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

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

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

ul {
  list-style: none;
}

/* ============================================
   HEADER STYLES
   ============================================ */

.top-bar {
  background: var(--primary-dark);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.top-bar .phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.875rem;
}

.top-bar .phone svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-gold);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  color: var(--white);
  transition: color var(--transition-speed);
}

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

.social-icons svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.main-header {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
  transition: all var(--transition-speed);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.main-header.sticky {
  top: 0;
  height: 60px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.logo-area img {
  height: 50px;
  width: auto;
  transition: transform var(--transition-speed);
}

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

.logo-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.main-nav {
  display: none;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-dark);
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: all var(--transition-speed);
  transform: translateX(-50%);
}

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

.header-cta {
  display: none;
}

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

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--primary-dark);
  transition: all var(--transition-speed);
}

.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 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-speed);
}

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

.mobile-menu a {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
}

.mobile-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: all var(--transition-speed);
  transform: translateX(-50%);
}

.mobile-menu a:hover::after {
  width: 100%;
}

.mobile-menu-cta {
  margin-top: 20px;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ============================================
   BUTTON STYLES
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-speed);
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-dark);
  border-color: var(--accent-gold);
}

.btn-secondary:hover {
  background: var(--gold-hover);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 20px 80px;
  background: linear-gradient(rgba(43, 43, 43, 0.7), rgba(43, 43, 43, 0.6)),
              url('../images/generated_hero_bg.png') center/cover no-repeat;
  background-attachment: fixed;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
}

.hero h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
}

.hero h1.animate {
  animation: fadeInUp 0.8s ease forwards;
}

.hero .tagline {
  color: var(--accent-gold);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero .subtagline {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

/* ============================================
   SECTION BASE STYLES
   ============================================ */

section {
  padding: 80px 20px;
}

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

.section-light {
  background: var(--light-gray);
}

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

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

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

.section-header h2 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

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

.section-dark .section-header h2 {
  color: var(--white);
}

.section-header p {
  color: var(--secondary-text);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.7);
}

/* ============================================
   PROBLEM STATEMENT SECTION
   ============================================ */

.problem-statement {
  text-align: center;
  padding: 100px 20px;
}

.problem-statement h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.problem-statement h2 .highlight {
  color: var(--accent-gold);
}

.problem-statement p {
  font-size: 1.1rem;
  color: var(--secondary-text);
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   WHY EXPERIENCE MATTERS (SPLIT SECTION)
   ============================================ */

.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.split-section .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.split-section .image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: blur(3px);
  transition: filter 0.6s ease;
}

.split-section .image-wrapper img.revealed {
  filter: blur(0);
}

.split-section .content h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.split-section .content ul {
  margin-top: 1.5rem;
}

.split-section .content li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.split-section .content li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.split-section .content li strong {
  color: var(--accent-gold);
}

/* ============================================
   PRACTICE AREAS (HORIZONTAL SCROLL)
   ============================================ */

.practice-areas {
  overflow: hidden;
}

.practice-areas-scroll {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.practice-areas-scroll::-webkit-scrollbar {
  height: 6px;
}

.practice-areas-scroll::-webkit-scrollbar-track {
  background: var(--light-gray);
  border-radius: 3px;
}

.practice-areas-scroll::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 3px;
}

.practice-card {
  min-width: 300px;
  max-width: 300px;
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  scroll-snap-align: start;
  transition: all var(--transition-speed);
  cursor: pointer;
}

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

.practice-card .icon {
  width: 60px;
  height: 60px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-gold);
}

.practice-card h4 {
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.practice-card p {
  color: var(--secondary-text);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.process-step {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  transition: all var(--transition-speed);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

.process-step h4 {
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.process-step p {
  color: var(--secondary-text);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ============================================
   ATTORNEY PROFILE
   ============================================ */

.attorney-profile {
  background: var(--primary-dark);
  color: var(--white);
}

.attorney-profile .split-section .content h3 {
  color: var(--accent-gold);
}

.attorney-profile .split-section .content p {
  color: rgba(255,255,255,0.8);
}

/* ============================================
   TESTIMONIALS CAROUSEL
   ============================================ */

.testimonials {
  position: relative;
  overflow: hidden;
}

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

.testimonial-slide {
  display: none;
  text-align: center;
  padding: 40px;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.testimonial-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--primary-dark);
  margin-bottom: 20px;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent-gold);
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: Georgia, serif;
}

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

.testimonial-type {
  color: var(--secondary-text);
  font-size: 0.9rem;
}

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

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--light-gray);
  border: 2px solid var(--accent-gold);
  cursor: pointer;
  transition: all var(--transition-speed);
}

.carousel-dot.active {
  background: var(--accent-gold);
}

/* ============================================
   FIRM VALUES
   ============================================ */

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.value-card {
  padding: 30px;
  background: var(--white);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  transition: all var(--transition-speed);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.value-card .icon {
  width: 70px;
  height: 70px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent-gold);
  font-size: 1.5rem;
}

.value-card h4 {
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.value-card p {
  color: var(--secondary-text);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ============================================
   PRIMARY CTA BLOCK
   ============================================ */

.cta-block {
  background: var(--primary-dark);
  text-align: center;
  padding: 80px 20px;
}

.cta-block h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-block p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

/* ============================================
   BLOG GRID
   ============================================ */

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  transition: all var(--transition-speed);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.blog-card .thumbnail {
  height: 200px;
  background: var(--light-gray);
  overflow: hidden;
}

.blog-card .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px);
  transition: filter 0.6s ease;
}

.blog-card:hover .thumbnail img {
  filter: blur(0);
}

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

.blog-card .category {
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.blog-card h4 {
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.blog-card p {
  color: var(--secondary-text);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.blog-card .read-more {
  color: var(--accent-gold);
  font-weight: 600;
  position: relative;
}

.blog-card .read-more::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-speed);
}

.blog-card:hover .read-more::after {
  width: 100%;
}

/* ============================================
   CONTACT INFO & MAP
   ============================================ */

.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-info {
  padding: 30px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.contact-info h3 {
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--light-gray);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item .icon {
  width: 40px;
  height: 40px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.contact-item .details h4 {
  font-size: 0.9rem;
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.contact-item .details p {
  color: var(--secondary-text);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  background: var(--light-gray);
  min-height: 300px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

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

.footer-col ul a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: color var(--transition-speed);
}

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

.footer-logo img {
  height: 60px;
  margin-bottom: 15px;
}

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

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

.footer-social a:hover {
  background: var(--accent-gold);
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.footer-bottom .tagline {
  color: var(--accent-gold);
  font-size: 0.85rem;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.08);
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-wrapper h3 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-dark);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-speed);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(166, 133, 90, 0.2);
}

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

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

.form-submit .btn {
  width: 100%;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

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

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

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

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-gold);
  transition: transform var(--transition-speed);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-speed);
}

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

.faq-answer p {
  padding-bottom: 20px;
  color: var(--secondary-text);
}

/* ============================================
   EMERGENCY BAR
   ============================================ */

.emergency-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  padding: 12px 20px;
  z-index: 100;
  justify-content: space-between;
  align-items: center;
}

.emergency-bar p {
  color: var(--white);
  margin: 0;
  font-size: 0.9rem;
}

.emergency-bar .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */

.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 150px 20px 80px;
  background: linear-gradient(rgba(43, 43, 43, 0.75), rgba(43, 43, 43, 0.65)),
              url('../images/generated_hero_bg.png') center/cover no-repeat;
  background-attachment: fixed;
}

.page-hero h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   SERVICE DETAIL SECTIONS
   ============================================ */

.service-detail {
  padding: 80px 20px;
}

.service-detail:nth-child(even) {
  background: var(--light-gray);
}

.service-detail h2 {
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.service-detail .intro {
  font-size: 1.1rem;
  color: var(--secondary-text);
  margin-bottom: 30px;
  max-width: 700px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-item {
  padding: 20px;
  background: var(--white);
  border-radius: 6px;
  transition: all var(--transition-speed);
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-item h4 {
  color: var(--accent-gold);
  margin-bottom: 8px;
  font-size: 1rem;
}

.service-item p {
  color: var(--secondary-text);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ============================================
   BLOG PAGE HERO
   ============================================ */

.blog-hero {
  min-height: 40vh;
}

/* ============================================
   FEATURED POST
   ============================================ */

.featured-post {
  background: var(--light-gray);
}

.featured-post .split-section {
  grid-template-columns: 1fr;
}

.featured-post .image-wrapper {
  min-height: 300px;
}

.featured-post .image-wrapper img {
  height: 300px;
}

.featured-post h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.featured-post .meta {
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* ============================================
   PAGINATION
   ============================================ */

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.pagination a,
.pagination span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 500;
  transition: all var(--transition-speed);
}

.pagination a {
  background: var(--white);
  color: var(--primary-dark);
  border: 1px solid var(--light-gray);
}

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

.pagination span {
  background: var(--accent-gold);
  color: var(--white);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

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

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

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

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   CURSOR SPOTLIGHT
   ============================================ */

.spotlight-container {
  position: relative;
}

.spotlight {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(166,133,90,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  display: none;
}

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */

.about-story .image-wrapper img {
  height: 350px;
}

.about-story h2 {
  margin-bottom: 1.5rem;
}

.about-story p {
  color: var(--secondary-text);
  line-height: 1.8;
}

.values-alternating {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.value-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  padding: 30px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.value-row:nth-child(even) {
  direction: rtl;
}

.value-row:nth-child(even) .value-content {
  direction: ltr;
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--accent-gold);
  font-size: 2rem;
}

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

.value-content p {
  color: var(--secondary-text);
  margin-bottom: 0;
}

/* ============================================
   COMMUNITY & AWARDS
   ============================================ */

.community-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.community-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  transition: all var(--transition-speed);
}

.community-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.community-card .thumb {
  height: 200px;
  background: var(--light-gray);
}

.community-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-card .content {
  padding: 20px;
}

.community-card h4 {
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.community-card p {
  color: var(--secondary-text);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.awards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.award-item {
  width: 150px;
  height: 100px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.award-item span {
  color: var(--secondary-text);
  font-weight: 500;
  text-align: center;
  font-size: 0.85rem;
}

/* ============================================
   SERVICES NAVIGATION
   ============================================ */

.services-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 50px;
}

.services-nav a {
  padding: 12px 24px;
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 30px;
  color: var(--primary-dark);
  font-weight: 500;
  transition: all var(--transition-speed);
}

.services-nav a:hover,
.services-nav a.active {
  border-color: var(--accent-gold);
  background: var(--accent-gold);
  color: var(--white);
}

/* ============================================
   PROGRESS BAR
   ============================================ */

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--accent-gold);
  z-index: 1002;
  width: 0;
  transition: width 0.1s;
}

/* ============================================
   RESPONSIVE STYLES - TABLET
   ============================================ */

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
  
  .top-bar {
    padding: 0 40px;
  }
  
  .main-header {
    padding: 0 40px;
  }
  
  section {
    padding: 100px 40px;
  }
  
  .split-section {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  
  .practice-card {
    min-width: 320px;
    max-width: 320px;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-split {
    grid-template-columns: 1fr 1fr;
  }
  
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .value-row {
    grid-template-columns: 150px 1fr;
    gap: 40px;
  }
  
  .value-row:nth-child(even) {
    direction: ltr;
  }
  
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ============================================
   RESPONSIVE STYLES - DESKTOP
   ============================================ */

@media (min-width: 1024px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.75rem; }
  
  .top-bar {
    padding: 0 60px;
  }
  
  .main-header {
    padding: 0 60px;
  }
  
  .main-nav {
    display: block;
  }
  
  .header-cta {
    display: block;
  }
  
  .hamburger {
    display: none;
  }
  
  section {
    padding: 120px 60px;
  }
  
  .hero h1 {
    font-size: 4rem;
  }
  
  .practice-areas-scroll {
    overflow-x: visible;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .practice-card {
    min-width: 280px;
    max-width: 280px;
  }
  
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  
  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .community-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-form-wrapper {
    padding: 50px;
  }
  
  .spotlight {
    display: block;
  }
  
  .emergency-bar {
    display: flex;
  }
  
  body {
    padding-bottom: 70px;
  }
  
  .featured-post .split-section {
    grid-template-columns: 1fr 1fr;
  }
  
  .featured-post .image-wrapper img {
    height: 400px;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
  
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
  
  .hero h1.animate {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .split-section .image-wrapper img,
  .blog-card .thumbnail img {
    filter: none;
  }
}
