@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap);
:root {
  --color-primary: #388e3c;
  --color-primary-dark: #256029;
  --color-primary-light: #4caf50;
  --color-accent: #81c784;
  --color-text: #222;
  --color-text-light: #666;
  --color-white: #ffffff;
  --color-background: #f5fff7;
  --color-border: #e0e0e0;
  --color-error: #d32f2f;
  --color-success: #388e3c;
  --color-warning: #fbc02d;
  --color-info: #1976d2;
  --font-family: 'Montserrat', sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --font-size-2xl: 32px;
  --font-size-3xl: 48px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --border-radius: 4px;
  --border-radius-lg: 8px;
  --border-radius-xl: 12px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;
  --transition-normal: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --container-max-width: 1200px;
  --z-index-header: 1000;
  --z-index-modal: 2000;
  --z-index-tooltip: 3000;
  --z-index-fixed: 4000;
  --primary-green: #2e7d32;
  --light-green: #4caf50;
  --lighter-green: #81c784;
  --dark-green: #1b5e20;
  --accent-green: #8bc34a;
  --background-light: #f1f8e9;
  --text-dark: #1b1b1b;
  --text-light: #ffffff;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}
body {
  font-family: Montserrat, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: var(--background-light);
  overflow-x: hidden;
}
.cta-button,
.submit-button,
button {
  font-family: Montserrat, Inter, Arial, sans-serif !important;
  border-radius: 8px !important;
}
.service-card,
.testimonial-card,
.value-card {
  border-radius: 8px !important;
  font-family: var(--font-family), sans-serif;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
  background-color: var(--primary-green);
  color: var(--text-light);
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.logo {
  flex-shrink: 0;
}
.logo img {
  height: 50px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  transition: 0.3s;
  white-space: nowrap;
}
.nav-links a.active,
.nav-links a:hover {
  color: var(--light-green);
  background-color: rgba(var(--primary-rgb), 0.1);
}
.hamburger {
  display: none;
  background: 0 0;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000;
  margin: 5px 0;
  transition: 0.3s;
}
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.nav-overlay.active {
  display: block;
}
.hero {
  height: 80vh;
  min-height: 600px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)) center/cover,
    url('/Holliday-Lawn-Garden/assets/images/hero-garden-landscaping.jpg') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding-top: 80px;
}
.hero-content {
  max-width: 800px;
  padding: 4rem 2rem;
  text-align: center;
}
.hero h1 {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.hero-subtitle {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.hero-description {
  font-size: var(--font-size-lg);
  margin-bottom: 2rem;
  color: var(--color-text-light);
  opacity: 0.9;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  font-family: inherit;
}
.cta-button:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}
.service-card {
  background: var(--color-surface);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
}
.service-icon {
  color: var(--color-primary);
}
.service-card h3 {
  font-size: var(--font-size-lg);
  color: var(--color-text);
}
.service-card p {
  color: var(--color-text-muted);
}
.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}
.service-features li i {
  color: var(--color-primary);
  font-size: 0.9rem;
}
.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
}
.learn-more:hover {
  gap: 0.75rem;
  color: var(--secondary-color);
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  margin: var(--spacing-2xl) 0;
}
.about-text h2 {
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
}
.about-text p {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-lg);
}
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}
.feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}
.feature i {
  color: var(--color-primary);
  font-size: 1.2rem;
}
.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}
.testimonials {
  padding: 5rem 0;
  background-color: var(--light-bg);
}
.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-color);
  font-size: 2.5rem;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.testimonial-card {
  background: var(--color-surface);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.testimonial-content {
  text-align: left;
}
.testimonial-content i {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.testimonial-content h3 {
  font-size: var(--font-size-lg);
  color: var(--color-text);
  margin-bottom: 1rem;
}
.testimonial-content p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}
.feature-list li i {
  color: var(--color-primary);
  font-size: 0.9rem;
  margin: 0;
}
@media (max-width: 768px) {
  .testimonials {
    padding: 3rem 0;
  }
  .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .testimonial-content {
    padding: 1.5rem;
  }
  .testimonial-content i {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .testimonial-content h3 {
    font-size: 1.2rem;
  }
}
.contact-section {
  padding: 4rem 0;
  background-color: var(--light-bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.info-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.info-card h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}
.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  width: 24px;
  text-align: center;
}
.info-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--text-color);
}
.info-item p {
  color: var(--text-color);
  line-height: 1.6;
}
.info-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}
.info-item a:hover {
  color: var(--secondary-color);
}
.form-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.form-card h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  color: var(--text-color);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--primary-color);
}
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.checkbox-container input[type='checkbox'] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.checkbox-container a {
  color: var(--primary-color);
  text-decoration: none;
}
.checkbox-container a:hover {
  text-decoration: underline;
}
.submit-button {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: 0.3s;
}
.submit-button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}
.submit-button i {
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .contact-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .page-header {
    padding: 3rem 0;
  }
  .page-header h1 {
    font-size: 2rem;
  }
  .cta-section {
    padding: 3rem 0;
  }
  .cta-section h2 {
    font-size: 2rem;
  }
}
footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 5rem 0 0;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-section h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
  font-weight: 600;
}
.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section ul li {
  margin-bottom: 1rem;
}
.footer-section ul li a {
  color: #b3b3b3;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
  position: relative;
  padding-left: 0;
}
.footer-section ul li a:hover {
  color: #fff;
  padding-left: 5px;
}
.business-hours li,
.contact-info li {
  display: flex;
  align-items: flex-start;
  color: #b3b3b3;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}
.business-hours li i,
.contact-info li i {
  margin-right: 1rem;
  color: var(--primary-color);
  width: 20px;
  text-align: center;
  font-size: 1.1rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.copyright p {
  color: #b3b3b3;
  margin: 0;
  font-size: 0.95rem;
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  color: #b3b3b3;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
  position: relative;
}
.footer-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s;
}
.footer-links a:hover {
  color: #fff;
}
.footer-links a:hover::after {
  width: 100%;
}
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media (max-width: 768px) {
  footer {
    padding: 4rem 0 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-section h3 {
    font-size: 1.2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 0;
  }
  .footer-links {
    justify-content: center;
  }
  .copyright p {
    text-align: center;
  }
}
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}
.floating-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  text-decoration: none;
}
.floating-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.floating-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.floating-button i {
  font-size: 1.2rem;
}
.install-button {
  background: var(--primary-color);
}
.install-button:hover {
  background: var(--primary-dark);
}
.phone-button {
  background: #25d366;
}
.phone-button:hover {
  background: #128c7e;
}
.email-button {
  background: #ea4335;
}
.email-button:hover {
  background: #c5221f;
}
.cache-button {
  background: #666;
}
.cache-button:hover {
  background: #444;
}
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 5rem;
    right: 1rem;
  }
  .floating-button {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 1200px) {
  .nav-links {
    gap: 1rem;
  }
  .nav-links a {
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem;
  }
}
@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 1rem;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a {
    width: 100%;
    padding: 0.75rem 1rem;
    text-align: center;
  }
  .hamburger {
    display: flex;
  }
  .hamburger.active span:first-child {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .hero {
    height: 60vh;
    padding-top: 60px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.2rem;
  }
  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-image {
    order: -1;
  }
  .contact-form-container,
  .contact-info {
    padding: 1.5rem;
  }
  .floating-buttons {
    bottom: var(--spacing-md);
    right: var(--spacing-md);
  }
}
.error-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-error);
  color: var(--color-white);
  padding: var(--spacing-md);
  text-align: center;
  z-index: var(--z-index-fixed);
  animation: 0.3s ease-out slideDown;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: #fff;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 0;
}
.faq-section {
  padding: 5rem 0;
  background-color: #fff;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.faq-item {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.faq-item p {
  color: var(--text-color);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .gallery-item img {
    height: 200px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-item {
    padding: 1.5rem;
  }
}
.services-preview {
  padding: 5rem 0;
  background-color: var(--light-bg);
}
.services-preview h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
  font-size: 2.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.service-card p {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.learn-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
.learn-more i {
  margin-left: 0.5rem;
  transition: transform 0.3s;
}
.learn-more:hover i {
  transform: translateX(5px);
}
.services-cta {
  text-align: center;
  margin-top: 3rem;
}
.services-cta .cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .services-preview {
    padding: 3rem 0;
  }
  .services-preview h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .service-card {
    padding: 1.5rem;
  }
  .service-icon {
    font-size: 2rem;
  }
  .service-card h3 {
    font-size: 1.3rem;
  }
}
.page-header {
  background: linear-gradient(120deg, var(--color-primary) 0, var(--color-primary-dark) 100%);
  color: var(--color-text-light);
  padding: 4rem 0;
  text-align: center;
}
.page-header h1 {
  font-size: var(--font-size-3xl);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.page-header p {
  font-size: var(--font-size-lg);
  opacity: 0.9;
}
.cta-section {
  background: linear-gradient(120deg, var(--color-primary) 0, var(--color-primary-dark) 100%);
  color: var(--color-text-light);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: var(--border-radius-lg);
  margin: 4rem 0;
}
.cta-section h2 {
  font-size: var(--font-size-2xl);
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: var(--font-size-lg);
  margin-bottom: 2rem;
  opacity: 0.9;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.cta-button.primary {
  background: var(--color-text-light);
  color: var(--color-primary);
}
.cta-button.secondary {
  background: 0 0;
  color: var(--color-text-light);
  border: 2px solid var(--color-text-light);
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.cta-button.primary:hover {
  background: var(--color-surface-light);
}
.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: var(--font-size-2xl);
  }
  .hero-subtitle {
    font-size: var(--font-size-lg);
  }
  .hero-description {
    font-size: var(--font-size-base);
  }
  .section-header h2 {
    font-size: var(--font-size-xl);
  }
  .section-header p {
    font-size: var(--font-size-base);
  }
  .service-card,
  .testimonial-card {
    padding: 1.5rem;
  }
  .cta-section {
    padding: 3rem 1.5rem;
  }
  .cta-section h2 {
    font-size: var(--font-size-xl);
  }
  .cta-section p {
    font-size: var(--font-size-base);
  }
  .cta-buttons {
    flex-direction: column;
  }
  .cta-button {
    width: 100%;
    justify-content: center;
  }
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: var(--font-size-2xl);
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.section-header p {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
}
.about-hero {
  background: linear-gradient(120deg, var(--color-primary) 0, var(--color-primary-dark) 100%);
  color: var(--color-text-light);
  padding: 6rem 0;
  text-align: center;
}
.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
.about-hero h1 {
  font-size: var(--font-size-3xl);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.about-subtitle {
  font-size: var(--font-size-xl);
  opacity: 0.9;
  margin-bottom: 3rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.stat-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
}
.stat-number {
  display: block;
  font-size: var(--font-size-2xl);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: var(--font-size-sm);
  opacity: 0.9;
}
.about-story {
  padding: 5rem 0;
  background-color: var(--color-background);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}
.about-content h2 {
  font-size: var(--font-size-2xl);
  color: var(--color-text);
  margin-bottom: 1.5rem;
}
.about-content p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.story-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
}
.highlight-item i {
  font-size: 1.2rem;
}
.about-image {
  position: relative;
}
.rounded-image {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-mission {
  padding: 5rem 0;
  background: linear-gradient(120deg, var(--color-primary-light) 0, var(--color-primary) 100%);
  color: var(--color-text-light);
}
.mission-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.mission-content h2 {
  font-size: var(--font-size-2xl);
  margin-bottom: 1.5rem;
}
.mission-content p {
  font-size: var(--font-size-lg);
  margin-bottom: 3rem;
  opacity: 0.9;
}
.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.pillar {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
}
.pillar i {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.pillar h3 {
  font-size: var(--font-size-lg);
  margin-bottom: 0.5rem;
}
.pillar p {
  font-size: var(--font-size-sm);
  margin-bottom: 0;
}
.about-values {
  padding: 5rem 0;
  background-color: var(--color-background);
}
.about-values h2 {
  text-align: center;
  font-size: var(--font-size-2xl);
  margin-bottom: 3rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.value-card {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.value-card i {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.value-card h3 {
  font-size: var(--font-size-lg);
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.value-card p {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}
.about-cta {
  padding: 5rem 0;
  background: linear-gradient(120deg, var(--color-primary) 0, var(--color-primary-dark) 100%);
  color: var(--color-text-light);
}
.cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.cta-content h2 {
  font-size: var(--font-size-2xl);
  margin-bottom: 1rem;
}
.cta-content p {
  font-size: var(--font-size-lg);
  margin-bottom: 2rem;
  opacity: 0.9;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .about-hero h1 {
    font-size: var(--font-size-2xl);
  }
  .about-subtitle {
    font-size: var(--font-size-lg);
  }
}
@media (max-width: 768px) {
  .about-hero {
    padding: 4rem 0;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .mission-pillars,
  .story-highlights,
  .values-grid {
    grid-template-columns: 1fr;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .hamburger {
    display: block;
  }
  .nav-links {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.5rem;
    width: 100vw;
    max-width: 100vw;
    background: #fff;
    padding: 1rem 0.5rem;
    position: relative;
    z-index: 1000;
    scrollbar-width: thin;
  }
  .nav-links a {
    flex: 0 0 auto;
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    white-space: nowrap;
    color: var(--text-dark);
    background: 0 0;
    transition:
      background 0.2s,
      color 0.2s;
  }
  .nav-links a.active,
  .nav-links a:focus {
    background: var(--light-green);
    color: var(--text-light);
  }
  .hamburger.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  .hero-section {
    padding: 60px 0;
  }
  .hero-content {
    padding: 0 20px;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .cta-button {
    width: 100%;
    text-align: center;
  }
  .form-group {
    margin-bottom: 1rem;
  }
  input[type='email'],
  input[type='tel'],
  input[type='text'],
  textarea {
    width: 100%;
    font-size: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-section {
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .floating-buttons {
    bottom: 20px;
    right: 20px;
  }
  .floating-button {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }
  .hero-content p {
    font-size: 0.9rem;
  }
  .cta-button {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  input[type='email'],
  input[type='tel'],
  input[type='text'],
  textarea {
    font-size: 16px;
  }
  .footer-section h3 {
    font-size: 1.2rem;
  }
  .footer-section li {
    font-size: 0.9rem;
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type='email'],
  input[type='number'],
  input[type='tel'],
  input[type='text'],
  select,
  textarea {
    font-size: 16px;
  }
}
