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

:root {
  --brand-red: #8B0000;
  --brand-red-dark: #6B0000;
  --white: #FFFFFF;
  --light-grey: #F5F5F5;
  --charcoal-grey: #36454F;
  --dark-grey: #A9A9A9;
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Lato', sans-serif;
}

*, *::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(--charcoal-grey);
  background-color: var(--white);
  overflow-x: hidden;
}

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

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: var(--brand-red);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--brand-red-dark);
}

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

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

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 0.75rem 0;
}

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

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

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

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-nav a {
  color: var(--white);
  font-weight: 400;
  position: relative;
  padding: 0.25rem 0;
}

.site-header.scrolled .main-nav a {
  color: var(--charcoal-grey);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-red), var(--charcoal-grey));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.phone-link {
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-header.scrolled .phone-link {
  color: var(--charcoal-grey);
}

.btn-primary {
  background: var(--brand-red);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-family: var(--font-secondary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--brand-red-dark);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal-grey);
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--dark-grey);
  border-radius: 4px;
  font-family: var(--font-secondary);
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
  background: var(--light-grey);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

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

.site-header.scrolled .mobile-toggle span {
  background: var(--charcoal-grey);
}

.mobile-phone {
  display: none;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-home {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('../images/hero-desktop.png');
}

.hero-about {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('../images/about-hero.png');
}

.hero-services {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('../images/services-hero.png');
}

.hero-contact {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('../images/contact-hero.png');
}

.hero-service-detail {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('../images/services-hero.png');
}

.hero-blog {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('../images/about-hero.png');
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
  padding: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

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

.hero-content h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-content .btn-primary {
  animation: pulse 2s infinite;
}

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

/* Intro Tagline Section */
.intro-tagline {
  padding: 5rem 0;
  text-align: center;
  background: var(--light-grey);
}

.intro-tagline h2 {
  font-size: 2rem;
  color: var(--charcoal-grey);
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.intro-tagline.visible h2 {
  opacity: 1;
  transform: translateY(0);
}

/* Core Strengths Section */
.core-strengths {
  padding: 5rem 0;
  background: var(--white);
}

.core-strengths h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.strength-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--dark-grey);
  border-radius: 8px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.strength-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.strength-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-red);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.strength-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.strength-card h3 {
  margin-bottom: 1rem;
  color: var(--charcoal-grey);
}

.strength-card p {
  color: var(--charcoal-grey);
  font-size: 0.95rem;
}

/* Services Overview Section */
.services-overview {
  padding: 5rem 0;
  background: var(--light-grey);
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.services-overview .section-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: var(--charcoal-grey);
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-red);
  font-weight: 600;
}

.service-card .learn-more::after {
  content: '→';
  transition: transform 0.3s ease;
}

.service-card:hover .learn-more::after {
  transform: translateX(5px);
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Testimonial Section */
.testimonials {
  padding: 5rem 0;
  background: var(--white);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.testimonial-slide {
  display: none;
  text-align: center;
  padding: 2rem;
  animation: fadeIn 0.5s ease;
}

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

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

.testimonial-quote {
  position: relative;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--charcoal-grey);
  margin-bottom: 1.5rem;
}

.testimonial-quote::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: url('../images/testimonial-quote.svg') no-repeat center;
  background-size: contain;
  opacity: 0.3;
}

.testimonial-author {
  font-weight: 600;
  color: var(--brand-red);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  color: var(--dark-grey);
  transition: color 0.3s ease;
  padding: 1rem;
}

.carousel-nav:hover {
  color: var(--brand-red);
}

.carousel-nav.prev {
  left: 0;
}

.carousel-nav.next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--dark-grey);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-dot.active {
  background: var(--brand-red);
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--brand-red) 0%, #a01010 100%);
  text-align: center;
}

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

.cta-section p {
  color: var(--white);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--brand-red);
}

.cta-section .btn-primary:hover {
  background: var(--light-grey);
  color: var(--brand-red-dark);
}

/* About Page Styles */
.about-story {
  padding: 5rem 0;
  background: var(--white);
}

.about-story .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.about-story p {
  margin-bottom: 1rem;
}

.values-list {
  list-style: none;
  margin-top: 2rem;
}

.values-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--light-grey);
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease;
}

.values-list li.visible {
  opacity: 1;
  transform: translateX(0);
}

.values-list li:nth-child(even) {
  transform: translateX(20px);
}

.values-list li:nth-child(even).visible {
  transform: translateX(0);
}

.values-list strong {
  color: var(--brand-red);
  display: block;
  margin-bottom: 0.25rem;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background: var(--light-grey);
}

.team-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.95);
}

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

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

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

.team-info {
  padding: 1.5rem;
}

.team-info h3 {
  margin-bottom: 0.25rem;
}

.team-info .title {
  color: var(--brand-red);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-info p {
  font-size: 0.9rem;
  color: var(--charcoal-grey);
}

/* Locations Section */
.locations-section {
  padding: 5rem 0;
  background: var(--white);
}

.locations-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.location-card {
  padding: 2rem;
  border: 1px solid var(--dark-grey);
  border-radius: 8px;
}

.location-card h3 {
  color: var(--brand-red);
  margin-bottom: 1rem;
}

.location-card address {
  font-style: normal;
  margin-bottom: 1rem;
}

.location-card .phone,
.location-card .fax {
  display: block;
  margin-bottom: 0.5rem;
}

.location-card .hours {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--light-grey);
  font-size: 0.9rem;
}

/* Services Page Styles */
.services-page-grid {
  padding: 5rem 0;
  background: var(--white);
}

.services-page-grid h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-page-card {
  background: var(--white);
  border: 1px solid var(--dark-grey);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.service-page-card.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

.service-page-card h3 {
  margin-bottom: 1rem;
}

.service-page-card p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 5rem 0;
  background: var(--light-grey);
}

.why-choose-us h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.why-choose-us ul {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
}

.why-choose-us li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease;
}

.why-choose-us li.visible {
  opacity: 1;
  transform: translateX(0);
}

.why-choose-us li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-red);
  font-weight: bold;
  font-size: 1.25rem;
}

/* Service Detail Page Styles */
.service-overview {
  padding: 5rem 0;
  background: var(--white);
}

.service-overview .content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.service-overview h2 {
  margin-bottom: 1.5rem;
}

.service-overview p {
  margin-bottom: 1rem;
}

.service-benefits ul {
  list-style: none;
  margin-top: 1rem;
}

.service-benefits li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-benefits li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--brand-red);
  font-size: 1.5rem;
  line-height: 1;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: var(--light-grey);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal-grey);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

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

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--brand-red);
  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.3s ease;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--charcoal-grey);
}

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

/* Contact CTA Section */
.contact-service-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--brand-red) 0%, #a01010 100%);
  text-align: center;
}

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

.contact-service-cta p {
  color: var(--white);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.contact-service-cta .btn-primary {
  background: var(--white);
  color: var(--brand-red);
}

/* Blog Page Styles */
.blog-section {
  padding: 5rem 0;
  background: var(--white);
}

.blog-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--dark-grey);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.blog-card.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.blog-content .excerpt {
  font-size: 0.9rem;
  color: var(--charcoal-grey);
  margin-bottom: 1rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--dark-grey);
  margin-bottom: 1rem;
}

.blog-card .read-more {
  color: var(--brand-red);
  font-weight: 600;
}

/* Blog Sidebar */
.blog-with-sidebar {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 3rem;
  padding: 5rem 0;
}

.blog-sidebar {
  padding: 1.5rem;
  background: var(--light-grey);
  border-radius: 8px;
  height: fit-content;
}

.blog-sidebar h3 {
  margin-bottom: 1rem;
}

.blog-sidebar ul {
  list-style: none;
}

.blog-sidebar li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--dark-grey);
}

.blog-sidebar a {
  color: var(--charcoal-grey);
  transition: color 0.3s ease;
}

.blog-sidebar a:hover {
  color: var(--brand-red);
}

/* Contact Page Styles */
.contact-form-section {
  padding: 5rem 0;
  background: var(--white);
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--charcoal-grey);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--dark-grey);
  border-radius: 4px;
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.9rem;
}

.contact-form .btn-primary {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

/* Direct Contact Section */
.direct-contact {
  padding: 5rem 0;
  background: var(--light-grey);
}

.direct-contact h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.contact-info-block {
  padding: 2rem;
  background: var(--white);
  border-radius: 8px;
}

.contact-info-block h3 {
  color: var(--brand-red);
  margin-bottom: 1rem;
}

.contact-info-block p {
  margin-bottom: 0.5rem;
}

.contact-info-block a {
  color: var(--brand-red);
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--charcoal-grey);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

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

.footer-brand p {
  color: var(--dark-grey);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-brand .contact-info p {
  margin-bottom: 0.5rem;
}

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

.footer-column h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: var(--dark-grey);
  transition: color 0.3s ease;
}

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

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

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

.social-links a:hover {
  background: var(--brand-red);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  color: var(--dark-grey);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.footer-bottom .disclaimer {
  font-size: 0.75rem;
  color: var(--dark-grey);
  opacity: 0.7;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--brand-red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--brand-red-dark);
  transform: translateY(-3px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--charcoal-grey);
  z-index: 2000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.mobile-menu-overlay.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav li {
  margin-bottom: 1.5rem;
}

.mobile-nav a {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
}

.mobile-menu-actions {
  margin-top: auto;
  padding-top: 2rem;
}

.mobile-menu-actions .phone-link {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.mobile-menu-actions .btn-primary {
  width: 100%;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .main-nav,
  .header-actions .phone-link {
    display: none;
  }

  .mobile-toggle,
  .mobile-phone {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .strengths-grid,
  .services-grid,
  .services-full-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-story .content-grid,
  .service-overview .content-grid,
  .blog-with-sidebar {
    grid-template-columns: 1fr;
  }

  .locations-grid,
  .contact-details-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 350px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .strengths-grid,
  .services-grid,
  .services-full-grid,
  .blog-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .locations-grid,
  .team-grid {
    gap: 2rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-content {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .scroll-to-top {
    display: none;
  }
}