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

:root {
  --primary-green: #4CAF50;
  --primary-green-dark: #388E3C;
  --dark-gray: #333333;
  --white: #FFFFFF;
  --off-white: #F8F8F8;
  --light-gray: #AAAAAA;
  --font-primary: 'Montserrat', sans-serif;
  --font-fallback: 'Open Sans', sans-serif;
  --header-height-desktop: 80px;
  --header-height-desktop-scrolled: 60px;
  --header-height-mobile: 60px;
  --transition-smooth: all 0.3s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-fallback);
  color: var(--dark-gray);
  background-color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

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

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  text-align: center;
}

.btn:focus {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

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

.btn-primary:hover {
  background-color: var(--primary-green-dark);
  border-color: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

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

.btn-secondary:hover {
  background-color: var(--primary-green);
  color: var(--white);
}

.btn-tertiary {
  background-color: transparent;
  color: var(--primary-green);
  padding: 8px 0;
  border: none;
}

.btn-tertiary:hover {
  text-decoration: underline;
  color: var(--primary-green-dark);
}

.section {
  padding: 80px 0;
}

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

.section-subtitle {
  text-align: center;
  color: var(--light-gray);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.header.scrolled {
  height: var(--header-height-desktop-scrolled);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

.logo-text {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--dark-gray);
}

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

.nav-link {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 1rem;
  color: var(--dark-gray);
  position: relative;
  padding: 4px 0;
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--dark-gray);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.phone-link:hover {
  color: var(--primary-green);
}

.phone-icon {
  width: 20px;
  height: 20px;
  fill: var(--primary-green);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--dark-gray);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

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

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

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

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

.mobile-nav-link {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--dark-gray);
  transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
  color: var(--primary-green);
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.mobile-nav-phone {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark-gray);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height-desktop);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  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.4) 100%);
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-tagline {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-cta-group .btn {
  min-width: 180px;
}

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

/* About Section */
.about-brief {
  background-color: var(--white);
}

.about-brief-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-brief p {
  font-size: 1.1rem;
  color: var(--dark-gray);
  line-height: 1.8;
}

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

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

.service-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.service-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--dark-gray);
}

.service-card-desc {
  font-size: 1rem;
  color: var(--light-gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

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

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

.why-choose-us-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--off-white);
}

.why-choose-us-item:last-child {
  border-bottom: none;
}

.why-choose-us-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-green);
  border-radius: 50%;
}

.why-choose-us-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.why-choose-us-text h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--dark-gray);
}

.why-choose-us-text p {
  color: var(--light-gray);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--off-white);
}

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

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-item {
  min-width: 100%;
  padding: 40px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.testimonial-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--dark-gray);
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-green);
  display: block;
  margin-bottom: 10px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark-gray);
}

.testimonial-location {
  color: var(--light-gray);
  font-size: 0.9rem;
}

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

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--light-gray);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 0;
}

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

/* CTA Section */
.cta-section {
  background-color: var(--primary-green);
  padding: 60px 0;
}

.cta-section-content {
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

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

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

.cta-section .btn:hover {
  background-color: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--off-white);
  padding: 40px;
  border-radius: 10px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 5px;
  font-family: var(--font-fallback);
  font-size: 1rem;
  transition: var(--transition-smooth);
  background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
  outline: none;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

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

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

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

.footer-tagline {
  color: var(--light-gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--light-gray);
}

.footer-contact-info svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-green);
  flex-shrink: 0;
}

.footer-title {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
}

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

.footer-links a {
  color: var(--light-gray);
  transition: var(--transition-smooth);
}

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

.footer-hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--light-gray);
}

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

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

.footer-social a:hover {
  background-color: var(--primary-green);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: var(--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;
  color: var(--light-gray);
  font-size: 0.9rem;
}

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

.footer-legal a {
  color: var(--light-gray);
}

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

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 100;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.back-to-top:hover {
  background-color: var(--primary-green-dark);
  transform: translateY(-3px);
}

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

/* Page Hero (for inner pages) */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  background-color: var(--off-white);
  text-align: center;
}

.page-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
  color: var(--dark-gray);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.page-hero p {
  font-size: 1.2rem;
  color: var(--light-gray);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

/* Process Timeline */
.process-timeline {
  background-color: var(--off-white);
}

.steps-list {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 3rem;
}

.steps-list::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background-color: var(--light-gray);
  z-index: 0;
}

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

.step-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.step-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--white);
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark-gray);
}

.step-description {
  font-size: 0.95rem;
  color: var(--light-gray);
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  background-color: var(--white);
}

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

.faq-item {
  border-bottom: 1px solid var(--off-white);
  margin-bottom: 10px;
}

.faq-item summary {
  padding: 20px;
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark-gray);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary-green);
  transition: var(--transition-smooth);
}

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

.faq-item summary:hover {
  color: var(--primary-green);
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--light-gray);
  line-height: 1.7;
}

/* Service Detail Page */
.service-detail-hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--primary-green) 0%, #2E7D32 100%);
  color: var(--white);
  text-align: center;
}

.service-detail-hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.service-detail-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.service-description {
  background-color: var(--white);
}

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

.service-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.service-benefits {
  background-color: var(--off-white);
}

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

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-gray);
}

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

.benefits-list svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.benefits-list span {
  font-size: 1.05rem;
  color: var(--dark-gray);
}

.related-services {
  background-color: var(--white);
}

.related-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 3rem;
}

.related-service-card {
  background-color: var(--off-white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition-smooth);
}

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

.related-service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--dark-gray);
}

.related-service-card p {
  font-size: 0.95rem;
  color: var(--light-gray);
  margin-bottom: 16px;
}

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

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

.about-story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.about-story-image img {
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-expertise {
  background-color: var(--off-white);
}

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

.about-expertise-image img {
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-expertise-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 3rem;
}

.value-item {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.value-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark-gray);
}

.value-item p {
  font-size: 0.95rem;
  color: var(--light-gray);
  line-height: 1.6;
}

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

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 3rem;
}

.contact-info-card {
  background-color: var(--off-white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition-smooth);
}

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

.contact-info-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-info-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.contact-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--dark-gray);
}

.contact-info-card p {
  font-size: 0.95rem;
  color: var(--light-gray);
}

.contact-info-card a {
  color: var(--primary-green);
  font-weight: 500;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

.contact-form-section {
  padding: 80px 0;
}

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

.map-container {
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
  
  .hero-title,
  .hero-tagline,
  .hero-cta-group,
  .page-hero h1,
  .page-hero p {
    opacity: 1;
    transform: none;
    animation: none;
  }
  
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .services-grid,
  .related-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-story-content,
  .about-expertise-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-list {
    flex-direction: column;
    gap: 30px;
  }
  
  .steps-list::before {
    display: none;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height-desktop: var(--header-height-mobile);
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .nav-desktop,
  .header-actions .btn {
    display: none;
  }
  
  .mobile-toggle,
  .mobile-phone-btn {
    display: flex;
  }
  
  .hero {
    padding-top: var(--header-height-mobile);
    min-height: auto;
    padding-bottom: 60px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-tagline {
    font-size: 1rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
  
  .hero-cta-group .btn {
    width: 100%;
  }
  
  .services-grid,
  .related-services-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-contact-info p {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .page-hero {
    padding: 120px 0 60px;
  }
  
  .page-hero h1 {
    font-size: 2.2rem;
  }
  
  .service-detail-hero h1 {
    font-size: 2.2rem;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
}
