/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
header {
  background-color: #1a2e3a;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 1.5rem;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.nav-desktop {
  display: none;
  gap: 2rem;
  align-items: center;
}

.nav-desktop a {
  color: #fff;
  transition: color 0.3s;
}

.nav-desktop a:hover {
  color: #a3d93d;
}

.header-cta {
  display: none;
  gap: 1rem;
  align-items: center;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  transition: color 0.3s;
}

.phone-link:hover {
  color: #a3d93d;
}

.btn-primary {
  background-color: #a3d93d;
  color: #1a2e3a;
  padding: 0.625rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #8ec431;
}

.mobile-menu-btn {
  color: #fff;
  padding: 0.5rem;
}

.nav-mobile {
  display: none;
  padding-bottom: 1rem;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile a {
  color: #fff;
  padding: 0.5rem 1.5rem;
  transition: color 0.3s;
}

.nav-mobile a:hover {
  color: #a3d93d;
}

.nav-mobile .btn-primary {
  margin: 0 1.5rem;
  text-align: center;
}

/* Footer */
footer {
  background-color: #1a2e3a;
  color: #fff;
  padding: 4rem 0 2rem;
}

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

.footer-section h2,
.footer-section h3 {
  color: #a3d93d;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
  color: #d1d5db;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #d1d5db;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #a3d93d;
}

.footer-bottom {
  border-top: 1px solid #4b5563;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Hero Section */
.hero {
  background-size: cover;
  background-position: center;
  padding: 6rem 0 8rem;
  position: relative;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  color: #fff;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #d1d5db;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-secondary {
  background-color: #fff;
  color: #1a2e3a;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s;
}

.btn-secondary:hover {
  background-color: #f3f4f6;
}

/* Quote Form */
.quote-form {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #a3d93d;
  box-shadow: 0 0 0 3px rgba(163, 217, 61, 0.1);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-checkbox input {
  margin-top: 0.25rem;
}

.form-checkbox label {
  font-size: 0.875rem;
  color: #6b7280;
}

.btn-submit {
  width: 100%;
  background-color: #a3d93d;
  color: #1a2e3a;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: #8ec431;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-gray {
  background-color: #f9fafb;
}

.section-dark {
  background-color: #1a2e3a;
  color: #fff;
}

.section-green {
  background-color: #a3d93d;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a2e3a;
  margin-bottom: 1rem;
}

.section-dark .section-header h2 {
  color: #fff;
}

.section-header p {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 42rem;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: #d1d5db;
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Service Cards */
.service-card {
  background-color: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

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

.service-card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.service-card-content {
  padding: 1.5rem;
}

.service-card-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a2e3a;
  margin-bottom: 0.75rem;
}

.service-card-content p {
  color: #6b7280;
  margin-bottom: 1rem;
}

.service-card-content a {
  color: #a3d93d;
  font-weight: 500;
}

.service-card-content a:hover {
  text-decoration: underline;
}

/* Reason Cards */
.reason-card {
  text-align: center;
}

.reason-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.reason-icon svg {
  width: 3rem;
  height: 3rem;
  color: #a3d93d;
}

.reason-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.reason-card p {
  color: #d1d5db;
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.pricing-card {
  background-color: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 2rem;
  transition: transform 0.3s;
}

.pricing-card.featured {
  background-color: #a3d93d;
  color: #1a2e3a;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-price {
  margin-bottom: 1.5rem;
}

.pricing-price .amount {
  font-size: 2.5rem;
  font-weight: 700;
}

.pricing-price .period {
  font-size: 1.125rem;
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.pricing-card .btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s;
}

.pricing-card:not(.featured) .btn {
  background-color: #a3d93d;
  color: #1a2e3a;
}

.pricing-card.featured .btn {
  background-color: #1a2e3a;
  color: #fff;
}

/* Testimonials */
.testimonial-card {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #a3d93d;
  color: #a3d93d;
}

.testimonial-text {
  color: #374151;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}

.testimonial-author .name {
  font-weight: 600;
  color: #1a2e3a;
  display: block;
  margin-bottom: 0.25rem;
}

.testimonial-author .location {
  font-size: 0.875rem;
  color: #6b7280;
}

/* FAQ */
.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #f9fafb;
}

.faq-question span {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a2e3a;
  padding-right: 2rem;
}

.faq-icon {
  color: #a3d93d;
  flex-shrink: 0;
  transition: transform 0.3s;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

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

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: #374151;
  line-height: 1.8;
}

/* Floating Call Button */
.floating-call-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: #a3d93d;
  color: #1a2e3a;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  z-index: 40;
}

.floating-call-btn:hover {
  background-color: #8ec431;
  transform: scale(1.1);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a2e3a;
  color: #fff;
  padding: 1rem;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
  z-index: 50;
  display: none;
}

.cookie-consent.active {
  display: block;
}

.cookie-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cookie-content p {
  font-size: 0.875rem;
  text-align: center;
}

.cookie-content a {
  color: #a3d93d;
}

.cookie-content a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
}

.btn-accept {
  background-color: #a3d93d;
  color: #1a2e3a;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
}

.btn-close {
  color: #d1d5db;
  padding: 0.5rem;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  overflow-y: auto;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: relative;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  max-width: 42rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #9ca3af;
  transition: color 0.3s;
  z-index: 10;
}

.modal-close:hover {
  color: #6b7280;
}

.modal-body {
  padding: 2rem;
}

.modal-body h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a2e3a;
  margin-bottom: 0.5rem;
}

.modal-body p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.blog-card {
  background-color: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.blog-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #a3d93d;
  color: #1a2e3a;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.blog-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a2e3a;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.blog-card:hover .blog-content h3 {
  color: #a3d93d;
}

.blog-excerpt {
  color: #6b7280;
  margin-bottom: 1rem;
}

.blog-read-more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #a3d93d;
  font-weight: 500;
}

.blog-read-more svg {
  transition: transform 0.3s;
}

.blog-card:hover .blog-read-more svg {
  transform: translateX(0.5rem);
}

/* Article Page */
.article-hero {
  height: 24rem;
  background-color: #1f2937;
  position: relative;
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.article-container {
  max-width: 56rem;
  margin: -5rem auto 0;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

.article-content {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  padding: 2rem;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #a3d93d;
  margin-bottom: 1.5rem;
}

.article-back:hover {
  text-decoration: underline;
}

.article-header {
  margin-bottom: 2rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a2e3a;
  line-height: 1.2;
}

.article-body {
  line-height: 1.8;
  color: #374151;
}

.article-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2e3a;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a2e3a;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.article-body p {
  margin-bottom: 1rem;
}

.article-cta {
  margin-top: 3rem;
  padding: 2rem;
  background-color: rgba(163, 217, 61, 0.1);
  border-left: 4px solid #a3d93d;
  border-radius: 0.5rem;
}

.article-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2e3a;
  margin-bottom: 0.75rem;
}

.article-cta p {
  color: #374151;
  margin-bottom: 1rem;
}

/* Contact Page */
.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  color: #a3d93d;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-details h3 {
  font-weight: 600;
  color: #1a2e3a;
  margin-bottom: 0.25rem;
}

.contact-details p,
.contact-details a {
  color: #6b7280;
}

.contact-details a:hover {
  color: #a3d93d;
}

.map-container {
  margin-top: 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Legal Pages */
.legal-content {
  max-width: 56rem;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2e3a;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a2e3a;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: #374151;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-content li {
  color: #374151;
  margin-bottom: 0.5rem;
}

.contact-box {
  background-color: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

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

/* Service Detail */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

.service-detail:last-child {
  margin-bottom: 0;
}

.service-detail img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-detail h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a2e3a;
  margin-bottom: 1rem;
}

.service-detail p {
  font-size: 1.125rem;
  color: #374151;
  margin-bottom: 1.5rem;
}

.service-benefits {
  margin-bottom: 1.5rem;
}

.service-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #374151;
}

.check-icon {
  color: #a3d93d;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
}

.cta-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 32rem;
  margin: 0 auto;
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-buttons,
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-content p {
    text-align: left;
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .header-cta {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

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

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

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

  .article-content {
    padding: 3rem;
  }

  .article-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .hero-text h1 {
    font-size: 3.75rem;
  }

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

  .service-detail:nth-child(even) .service-image {
    order: 2;
  }

  .service-detail:nth-child(even) .service-text {
    order: 1;
  }
}

/* Icons (using SVG inline) */
.icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-lg {
  width: 2rem;
  height: 2rem;
}

.icon-xl {
  width: 3rem;
  height: 3rem;
}
