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

:root {
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-blue: #4169E1;
  --color-dark-grey: #333333;
  --color-light-grey: #F5F5F5;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

::selection {
  background-color: var(--color-blue);
  color: var(--color-white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

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

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

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-white);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0);
}

header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  max-height: 70px;
}

.header-top {
  background: var(--color-light-grey);
  padding: 8px 0;
  text-align: center;
  font-size: 14px;
}

.header-top a {
  color: var(--color-dark-grey);
  font-weight: 500;
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  transition: all 0.3s ease;
}

header.scrolled .header-main {
  padding: 10px 0;
}

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

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

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

nav ul {
  display: flex;
  gap: 30px;
}

nav ul li a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-black);
  position: relative;
  padding: 5px 0;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-blue);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

.cta-button {
  background: var(--color-blue);
  color: var(--color-white);
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  display: inline-block;
}

.cta-button:hover {
  background: #3558c9;
  box-shadow: 0 5px 20px rgba(65, 105, 225, 0.4);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn svg {
  width: 30px;
  height: 30px;
  stroke: var(--color-black);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-black);
  z-index: 2000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}

.mobile-nav ul li a {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 500;
}

.mobile-nav .cta-button {
  margin-top: 30px;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-nav-close svg {
  width: 30px;
  height: 30px;
  stroke: var(--color-white);
}

.mobile-nav-phone {
  color: var(--color-white);
  font-size: 18px;
  margin-bottom: 20px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url('images/hero-desktop.png') center/cover no-repeat fixed;
  padding: 120px 20px 80px;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  color: var(--color-white);
}

.hero-content h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 25px;
  font-weight: 700;
  animation: fadeInUp 1s ease;
}

.hero-content p {
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 40px;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons .cta-button {
  padding: 15px 35px;
  font-size: 14px;
}

.hero-buttons .cta-button.secondary {
  background: transparent;
  border: 2px solid var(--color-white);
}

.hero-buttons .cta-button.secondary:hover {
  background: var(--color-white);
  color: var(--color-black);
}

/* Sections */
section {
  padding: 80px 0;
}

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

.section-blue {
  background: linear-gradient(135deg, var(--color-blue) 0%, #2d4db5 100%);
  color: var(--color-white);
}

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

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

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 15px;
  color: var(--color-black);
}

.section-header p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
}

.about-content p {
  margin-bottom: 20px;
  color: #555;
}

.about-content .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-blue);
  font-weight: 600;
  margin-top: 15px;
}

.about-content .cta-link:hover {
  gap: 15px;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

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

.practice-card {
  background: var(--color-light-grey);
  padding: 35px;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.practice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.practice-card-icon {
  width: 60px;
  height: 60px;
  background: var(--color-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.practice-card-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--color-white);
}

.practice-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.practice-card p {
  color: #666;
  font-size: 15px;
}

/* Why Choose Us */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.why-choose-item {
  text-align: center;
  padding: 30px 20px;
}

.why-choose-item svg {
  width: 50px;
  height: 50px;
  stroke: var(--color-blue);
  margin-bottom: 20px;
}

.why-choose-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.why-choose-item p {
  color: #666;
  font-size: 14px;
}

/* Testimonials */
.testimonials-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-item {
  min-width: 100%;
  padding: 40px;
  text-align: center;
}

.testimonial-item blockquote {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 25px;
  color: #444;
  line-height: 1.8;
}

.testimonial-item cite {
  font-style: normal;
  font-weight: 600;
  color: var(--color-black);
}

.testimonial-item cite span {
  display: block;
  font-size: 14px;
  color: #666;
  font-weight: 400;
  margin-top: 5px;
}

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

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.testimonial-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.testimonial-arrow {
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
}

.testimonial-arrow:hover {
  background: var(--color-blue);
}

.testimonial-arrow:hover svg {
  stroke: var(--color-white);
}

.testimonial-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-dark-grey);
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 100px 20px;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .phone-link {
  display: block;
  margin-top: 20px;
  font-size: 16px;
  color: #666;
}

.cta-section .phone-link a {
  color: var(--color-blue);
  font-weight: 600;
}

/* Page Hero */
.page-hero {
  padding: 180px 20px 100px;
  text-align: center;
  background: linear-gradient(135deg, var(--color-blue) 0%, #2d4db5 100%);
  color: var(--color-white);
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 20px;
}

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

/* About Page Sections */
.about-hero {
  background: url('images/about-books.png') center/cover no-repeat;
  position: relative;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

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

.value-item {
  text-align: center;
  padding: 30px;
}

.value-item svg {
  width: 50px;
  height: 50px;
  stroke: var(--color-blue);
  margin-bottom: 20px;
}

.value-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.value-item p {
  color: #666;
}

/* Sarah Cardwell Section */
.sarah-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.sarah-image {
  position: sticky;
  top: 120px;
}

.sarah-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

.sarah-content > p {
  color: #555;
  margin-bottom: 30px;
}

.sarah-qualifications {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.sarah-qualifications li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
}

.sarah-qualifications li::before {
  content: '✓';
  color: var(--color-blue);
  font-weight: bold;
}

/* Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.process-step::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: var(--color-blue);
}

.process-step:last-child::after {
  display: none;
}

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

.process-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

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

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--color-light-grey);
  padding: 40px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card-icon {
  width: 70px;
  height: 70px;
  background: var(--color-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.service-card-icon svg {
  width: 35px;
  height: 35px;
  stroke: var(--color-white);
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  margin-bottom: 20px;
}

.service-card .cta-link {
  color: var(--color-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card .cta-link:hover {
  gap: 12px;
}

/* Service Detail */
.service-detail-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.service-main h2 {
  font-size: 28px;
  margin: 30px 0 20px;
}

.service-main h3 {
  font-size: 22px;
  margin: 25px 0 15px;
}

.service-main p {
  color: #555;
  margin-bottom: 20px;
}

.service-main ul {
  margin: 20px 0;
}

.service-main ul li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  color: #555;
}

.service-main ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-blue);
  font-size: 20px;
}

.service-sidebar {
  padding: 30px;
  background: var(--color-light-grey);
  border-radius: 12px;
  height: fit-content;
}

.service-sidebar h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.service-sidebar p {
  color: #666;
  margin-bottom: 15px;
}

.service-sidebar .cta-button {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

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

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: var(--color-white);
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-black);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--color-light-grey);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-blue);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--color-light-grey);
}

.faq-answer p {
  padding: 20px 25px;
  color: #555;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  padding: 40px;
  background: var(--color-light-grey);
  border-radius: 12px;
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

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

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

.form-group label span {
  color: #e74c3c;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font-body);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.1);
}

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

.contact-form .cta-button {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.contact-info {
  padding: 40px 0;
}

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

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

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

.contact-info-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

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

.contact-info-item a {
  color: var(--color-blue);
}

.contact-map {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
}

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

/* Sarah Cardwell Page */
.sarah-hero {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}

.sarah-hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.sarah-hero-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.sarah-hero-content .title {
  font-size: 20px;
  color: var(--color-blue);
  margin-bottom: 25px;
}

.sarah-hero-content > p {
  color: #555;
  margin-bottom: 30px;
  font-size: 17px;
}

.sarah-section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.sarah-card {
  padding: 30px;
  background: var(--color-light-grey);
  border-radius: 12px;
}

.sarah-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--color-blue);
}

.sarah-card ul li {
  padding: 8px 0;
  color: #555;
  padding-left: 20px;
  position: relative;
}

.sarah-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-blue);
}

.sarah-contact {
  text-align: center;
  padding: 60px;
  background: var(--color-light-grey);
  border-radius: 12px;
  margin-top: 40px;
}

.sarah-contact h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.sarah-contact a {
  color: var(--color-blue);
  font-weight: 600;
}

/* Footer */
footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 60px 0 20px;
}

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

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

.footer-brand .logo img {
  max-width: 180px;
}

.footer-brand p {
  color: #999;
  font-size: 14px;
}

.footer-links h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

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

.footer-links ul li a {
  color: #999;
  font-size: 14px;
}

.footer-links ul li a:hover {
  color: var(--color-white);
  padding-left: 5px;
}

.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-contact p {
  color: #999;
  font-size: 14px;
  margin-bottom: 15px;
}

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

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

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--color-blue);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #999;
}

.footer-bottom a {
  color: #999;
  margin-left: 20px;
}

.footer-bottom a:hover {
  color: var(--color-white);
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--color-blue);
  z-index: 9999;
  width: 0;
  transition: width 0.1s ease;
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cursor Trail */
.cursor-trail {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(65, 105, 225, 0.08);
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-wrapper {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .mobile-nav {
    display: flex;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sarah-section {
    grid-template-columns: 1fr;
  }
  
  .sarah-image {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-step::after {
    display: none;
  }
  
  .service-detail-content {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-bottom a {
    margin: 0 10px;
  }
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }
  
  .practice-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sarah-qualifications {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .sarah-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .sarah-section-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  
  section {
    padding: 60px 0;
  }
  
  .cta-button {
    padding: 12px 20px;
    font-size: 12px;
  }
}

/* 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;
  }
  
  .hero {
    background-attachment: scroll;
  }
  
  .cursor-trail {
    display: none;
  }
  
  .scroll-progress {
    display: none;
  }
}