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

:root {
  --green: #009F49;
  --blue: #1A73E8;
  --dark-bg: #1A1A1A;
  --white: #FFFFFF;
  --light-grey: #CCCCCC;
  --grey-dark: #808080;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

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

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

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

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  transition: all var(--transition);
}

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

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

.logo img {
  height: 50px;
  transition: all var(--transition);
}

.header.scrolled .logo img {
  height: 40px;
}

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

.nav-desktop a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--dark-bg);
  position: relative;
  padding: 5px 0;
  transition: color var(--transition);
}

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

.nav-desktop a:hover {
  color: var(--green);
}

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

.nav-desktop a:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.cta-button {
  display: inline-block;
  padding: 12px 28px;
  background: var(--green);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--green);
  border-radius: 8px;
  transition: all var(--transition);
}

.cta-button:hover {
  background: #007a3a;
  border-color: #007a3a;
  transform: scale(1.05);
}

.cta-button:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

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

.mobile-menu-btn svg {
  width: 30px;
  height: 30px;
  fill: var(--dark-bg);
}

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

.mobile-phone-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--green);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--dark-bg);
  z-index: 2000;
  transition: right 0.3s ease-in-out;
  padding: 80px 30px 30px;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.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;
  fill: var(--white);
}

.mobile-nav a {
  display: block;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--green);
}

.mobile-nav .cta-button {
  margin-top: 30px;
  width: 100%;
  text-align: center;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

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

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

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.hero .cta-button {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

.hero .cta-button.pulse {
  animation: fadeInUp 0.8s ease forwards, pulse 1.5s infinite alternate;
  animation-delay: 0.6s, 1.4s;
}

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

@keyframes pulse {
  from {
    box-shadow: 0 0 0 0 rgba(0, 159, 73, 0.7);
  }
  to {
    box-shadow: 0 0 0 15px rgba(0, 159, 73, 0);
  }
}

/* Hero Zap Effect */
.hero h1.zap {
  animation: fadeInUp 0.8s ease forwards, zapEffect 0.15s ease forwards;
  animation-delay: 0.2s, 1s;
}

@keyframes zapEffect {
  0%, 100% {
    text-shadow: none;
    transform: skewX(0);
  }
  50% {
    text-shadow: 0 0 10px var(--green), 0 0 20px var(--green);
    transform: skewX(2deg);
  }
}

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

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--dark-bg);
}

/* Services Overview Section */
.services-overview {
  background: var(--white);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.2s ease-out;
  opacity: 0;
  transform: translateY(30px);
}

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

.service-card:hover {
  transform: scale(1.02);
  border-color: var(--blue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card svg {
  width: 60px;
  height: 60px;
  fill: var(--green);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--dark-bg);
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Why Choose Us Section */
.why-choose-us {
  background: #f9f9f9;
}

.why-choose-us-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-choose-us-text h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.why-choose-us-text ul {
  margin-top: 30px;
}

.why-choose-us-text li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.why-choose-us-text li svg {
  width: 24px;
  height: 24px;
  fill: var(--green);
  flex-shrink: 0;
  margin-top: 3px;
}

.why-choose-us-image img {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Project Spotlight Section */
.project-spotlight {
  background: var(--white);
}

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

.project-spotlight-image img {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.project-spotlight-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.project-spotlight-text h3 {
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 20px;
}

.project-spotlight-text p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 30px;
}

/* CTA Section */
.cta-section {
  background: var(--green);
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.15rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-section .cta-button {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}

.cta-section .cta-button:hover {
  background: #f0f0f0;
  transform: scale(1.05);
}

/* Page Hero (Inner Pages) */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2d2d2d 100%);
  padding-top: 80px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.03"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

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

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInDown 0.8s ease forwards;
  animation-delay: 0.2s;
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInDown 0.8s ease forwards;
  animation-delay: 0.4s;
}

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

/* Services Page - All Services Grid */
.all-services {
  background: var(--white);
}

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

/* Process Timeline */
.process-timeline {
  background: #f9f9f9;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--light-grey);
  transform: translateY(-50%);
}

.timeline-step {
  position: relative;
  text-align: center;
  flex: 1;
  padding: 0 15px;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 3px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.timeline-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--green);
}

.timeline-step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.timeline-step p {
  font-size: 0.9rem;
  color: #666;
}

/* Service CTAs */
.service-ctas {
  background: var(--white);
}

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

.cta-block {
  padding: 50px;
  border-radius: 12px;
  text-align: center;
  color: var(--white);
}

.cta-block.green {
  background: var(--green);
}

.cta-block.blue {
  background: var(--blue);
}

.cta-block h3 {
  font-size: 1.75rem;
  margin-bottom: 15px;
}

.cta-block p {
  font-size: 1.05rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.cta-block .cta-button {
  background: var(--white);
  color: inherit;
  border-color: var(--white);
}

.cta-block .cta-button:hover {
  background: #f0f0f0;
}

/* Residential Page */
.residential-services {
  background: var(--white);
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.service-item {
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateX(30px);
}

.service-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.service-item svg {
  width: 50px;
  height: 50px;
  fill: var(--green);
  flex-shrink: 0;
}

.service-item h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.service-item p {
  color: #555;
}

/* Testimonial Section */
.testimonial {
  background: #f9f9f9;
  text-align: center;
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial blockquote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--dark-bg);
  margin-bottom: 25px;
  line-height: 1.8;
}

.testimonial cite {
  font-size: 1.1rem;
  color: var(--green);
  font-style: normal;
  font-weight: 600;
}

/* Commercial Page */
.commercial-services {
  background: var(--white);
}

/* Project Gallery */
.project-gallery {
  background: #f9f9f9;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  padding: 30px 20px 20px;
}

.gallery-item h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.gallery-item p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* About Page */
.company-story {
  background: var(--white);
}

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

.story-text h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.story-text p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

.story-image img {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Our Values */
.our-values {
  background: #f9f9f9;
}

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

.value-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-card svg {
  width: 60px;
  height: 60px;
  fill: var(--green);
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.value-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Team Section */
.our-team {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.team-member p {
  color: var(--green);
  font-weight: 500;
}

/* Contact Page */
.contact-section {
  background: var(--white);
}

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

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

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--light-grey);
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
}

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

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

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  display: none;
}

.form-message.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

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

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

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

.contact-item svg {
  width: 24px;
  height: 24px;
  fill: var(--green);
}

.contact-item a {
  color: var(--dark-bg);
  transition: color var(--transition);
}

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

.map-placeholder {
  width: 100%;
  height: 300px;
  background: #e9ecef;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1.1rem;
}

/* Business Hours */
.business-hours {
  background: #f9f9f9;
}

.hours-content {
  max-width: 600px;
  margin: 0 auto;
}

.hours-content h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
}

.hours-list {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list li span:first-child {
  font-weight: 600;
}

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

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

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

.footer-tagline {
  font-size: 0.95rem;
  color: var(--light-grey);
  margin-bottom: 20px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--light-grey);
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  fill: var(--green);
}

.footer-column h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--white);
}

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

.footer-column ul a {
  color: var(--light-grey);
  font-size: 0.95rem;
  transition: color var(--transition);
}

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

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 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 var(--transition);
}

.social-links a:hover {
  background: var(--green);
  transform: scale(1.1);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.trust-badge {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--light-grey);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--light-grey);
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  font-size: 0.9rem;
  color: var(--light-grey);
  transition: color var(--transition);
}

.legal-links a:hover {
  color: var(--green);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
  border: none;
}

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

.back-to-top:hover {
  background: #007a3a;
  transform: translateY(-5px);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

/* Footer Accordion (Mobile) */
.footer-accordion {
  display: none;
}

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

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

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

@media (max-width: 768px) {
  .nav-desktop,
  .header .cta-button {
    display: none;
  }

  .mobile-menu-btn,
  .mobile-phone-btn {
    display: block;
  }

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

  .hero p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .why-choose-us-content,
  .project-spotlight-content,
  .story-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .why-choose-us-image,
  .project-spotlight-image,
  .story-image {
    order: -1;
  }

  .services-grid,
  .all-services-grid,
  .services-list {
    grid-template-columns: 1fr;
  }

  .timeline {
    flex-direction: column;
    gap: 30px;
  }

  .timeline::before {
    display: none;
  }

  .cta-blocks {
    grid-template-columns: 1fr;
  }

  .gallery-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    display: none;
  }

  .footer-accordion {
    display: block;
  }

  .footer-accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-accordion-header {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 20px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-accordion-header svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
    transition: transform var(--transition);
  }

  .footer-accordion-header.active svg {
    transform: rotate(180deg);
  }

  .footer-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .footer-accordion-content.open {
    max-height: 500px;
  }

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

  .footer-accordion-content a {
    color: var(--light-grey);
    font-size: 0.95rem;
  }

  .footer-accordion-content a:hover {
    color: var(--green);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

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

  section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .service-card,
  .value-card {
    padding: 25px 20px;
  }

  .cta-block {
    padding: 40px 25px;
  }
}

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

  .hero .cta-button.pulse {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Scroll Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* SVG Icons Hover Effect */
.service-card svg,
.value-card svg,
.contact-item svg,
.timeline-icon svg {
  transition: transform 0.15s ease;
}

.service-card:hover svg,
.value-card:hover svg {
  transform: translateY(-2px);
}
