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

:root {
  --color-primary: hsl(174, 62%, 47%);
  --color-primary-foreground: hsl(0, 0%, 100%);
  --color-primary-light: hsl(174, 62%, 85%);
  --color-primary-dark: hsl(174, 62%, 35%);
  --color-accent: hsl(88, 50%, 53%);
  --color-accent-foreground: hsl(0, 0%, 100%);
  --color-background: hsl(0, 0%, 98%);
  --color-foreground: hsl(215, 25%, 27%);
  --color-muted: hsl(210, 17%, 95%);
  --color-muted-foreground: hsl(215, 13%, 54%);
  --color-border: hsl(215, 15%, 92%);
  --color-card: hsl(0, 0%, 100%);
  --color-success: hsl(142, 71%, 45%);
  --shadow-soft: 0 4px 20px -2px rgba(60, 73, 91, 0.08);
  --shadow-strong: 0 10px 40px -10px rgba(60, 73, 91, 0.15);
  --radius: 0.75rem;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--color-background);
  color: var(--color-foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(249, 249, 249, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.header-content {
  padding: 0.75rem 0;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  width: 28px;
  height: 28px;
  background-color: var(--color-primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-foreground);
}

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

.nav-desktop a,
.nav-desktop button {
  color: var(--color-muted-foreground);
  text-decoration: none;
  transition: color 0.3s;
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}

.nav-desktop a:hover,
.nav-desktop button:hover {
  color: var(--color-foreground);
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info .phone-number {
  display: none;
}

.contact-info .btn-hero {
  padding: 0.5rem 0.875rem;
  font-size: 0.813rem;
}

.phone-number {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-muted-foreground);
  font-size: 0.875rem;
  text-decoration: none;
}

.btn {
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-size: 0.875rem;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-hero {
  background-color: var(--color-accent);
  color: var(--color-accent-foreground);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-hero:hover {
  background-color: hsl(88, 50%, 48%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--color-foreground);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.mobile-menu {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  flex-direction: column;
  gap: 1rem;
}

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

.mobile-menu a,
.mobile-menu button {
  color: var(--color-muted-foreground);
  text-decoration: none;
  transition: color 0.3s;
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
  padding: 0.5rem 0;
}

.mobile-menu a:hover,
.mobile-menu button:hover {
  color: var(--color-foreground);
}

.mobile-menu-divider {
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.hero-section {
  padding: 6rem 0 3rem;
  background: linear-gradient(135deg, var(--color-background) 0%, rgba(174, 227, 220, 0.1) 100%);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;

}

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--color-muted-foreground);
  max-width: 600px;
  margin-bottom: 1.5rem;
}

.quote-card {
  background-color: var(--color-card);
  padding: 1.25rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  max-width: 100%;
  margin-top: 1.5rem;
}

.quote-card h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.quote-card p {
  font-size: 0.813rem;
  color: var(--color-muted-foreground);
  margin-bottom: 0.75rem;
}

.input-wrapper {
  position: relative;
  margin-bottom: 1rem;
}

.input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-muted-foreground);
  width: 16px;
  height: 16px;
}

.input {
  width: 100%;
  padding: 0.625rem 0.875rem 0.625rem 2.5rem;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(46, 194, 179, 0.1);
}

.hero-image {
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-strong);
}

.hero-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.section {
  padding: 3rem 0;
}

.section-primary {
  background-color: rgb(46, 194, 179);
}

.section-gray {
  background-color: rgb(249, 250, 251);
}

.section-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-foreground);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.section-title-faq {
  text-align: center;
  max-width: 70%;
  margin: 0 auto;
}

.section-text {
  font-size: 0.95rem;
  line-height: 1.6;

}

.section-title-white {
  color: white;
}

.section-text-white {
  color: rgba(255, 255, 255, 0.95);
}

.text-white {
  color: white;
}

.text-white-90 {
  color: rgba(255, 255, 255, 0.9);
}

.highlight-box {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background-color: rgba(46, 194, 179, 0.08);
  border-radius: 1rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(46, 194, 179, 0.2);
  transition: all 0.3s;
}

.highlight-box:hover {
  background-color: rgba(46, 194, 179, 0.12);
  border-color: rgba(46, 194, 179, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.highlight-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(46, 194, 179, 0.15);
  border-radius: 0.75rem;
  color: var(--color-primary);
}

.highlight-icon svg {
  width: 24px;
  height: 24px;
}

.highlight-content {
  flex: 1;
}

.highlight-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-foreground);
}

.highlight-title-white {
  color: white;
}

.highlight-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-muted-foreground);
  margin: 0;
}

.highlight-text-white {
  color: rgba(255, 255, 255, 0.9);
}

.features-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  margin-top: 30px;
  margin-left: 0 auto;
}

.feature-card {
  background-color: var(--color-card);
  padding: 1.25rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-strong);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(46, 194, 179, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  color: var(--color-primary);
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.feature-description {
  color: var(--color-muted-foreground);
  font-size: 0.813rem;
}

.services-list {
  background-color: white;
  border-radius: 1rem;
  box-shadow: var(--shadow-strong);
  padding: 1.5rem;
  max-height: 400px;
  overflow-y: auto;
  margin: 1.5rem 0;
  border: 1px solid rgba(46, 194, 179, 0.1);
}

.services-list::-webkit-scrollbar {
  width: 8px;
}

.services-list::-webkit-scrollbar-track {
  background: var(--color-muted);
  border-radius: 4px;
}

.services-list::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

.services-list::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-dark);
}

.service-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

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

.check-icon {
  width: 20px;
  height: 20px;
  color: var(--color-success);
  margin-right: 0.75rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.team-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-image:hover {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}

.badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: white;
  color: var(--color-primary);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-icon {
  width: 16px;
  height: 16px;
}

.steps-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.step-item {
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}

.step-item:hover {
  transform: translateY(-0.25rem);
}

.step-icon-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.step-icon {
  width: 64px;
  height: 64px;
  background-color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--color-primary);
  transition: background-color 0.3s;
}

.step-item:hover .step-icon {
  background-color: rgba(191, 226, 223, 0.2);
}

.step-title-section {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-description-section {
  font-size: 0.875rem;
}

.cta-section {
  background-color: rgb(46, 194, 179);
  padding: 3rem 0;
}

.cta-card {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

.cta-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-foreground);
  margin-bottom: 0.625rem;
}

.cta-text {
  color: var(--color-muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.btn-primary {
  background-color: rgb(20, 184, 166);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-primary:hover {
  background-color: rgb(15, 156, 139);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  background-color: rgb(243, 244, 246);
  color: rgb(31, 41, 55);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-secondary:hover {
  background-color: rgb(229, 231, 235);
}

.btn-secondary:active {
  transform: scale(0.98);
}

.cta-info {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

footer {
  background-color: rgb(31, 41, 55);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  padding: 2.5rem 0;
  display: grid;
  gap: 2rem;
}

.footer-section h3 {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

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

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

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

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.icon {
  width: 24px;
  height: 24px;
  display: inline-block;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-lg {
  width: 32px;
  height: 32px;
}

@media (max-width: 374px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .hero-section {
    padding: 5rem 0 2.5rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .quote-card {
    padding: 1rem;
  }
  
  .cta-card {
    padding: 1.25rem;
  }
  
  .feature-card {
    padding: 1rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }
}

@media (min-width: 375px) and (max-width: 479px) {
  .hero-title {
    font-size: 1.625rem;
  }
  
  .section-title {
    font-size: 1.625rem;
  }
}

@media (min-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-img {
    height: 350px;
  }
  
  .team-image {
    height: 300px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 640px) {
  .hero-section {
    padding: 8rem 0 4rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .section-text {
    font-size: 1rem;
  }
  
  .quote-card {
    max-width: 450px;
    padding: 1.5rem;
  }
  
  .quote-card h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
  
  .quote-card p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .input {
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    font-size: 1rem;
  }
  
  .cta-section {
    padding: 4rem 0;
  }
  
  .cta-card {
    padding: 2rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .cta-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-content {
    padding: 3rem 0;
  }


  
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  
  .contact-info {
    display: flex;
    gap: 1rem;
  }

  .contact-info .phone-number {
    display: flex;
  }

  .contact-info .btn-hero {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 1.125rem;
  }
  
  .logo-text {
    font-size: 1.25rem;
  }
  
  .header-content {
    padding: 1rem 0;
  }
  
  .hero-section {
    padding: 10rem 0 5rem;
  }
  
  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
  
  .quote-card {
    margin-top: 2rem;
  }
  
  .hero-img {
    height: 450px;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .section-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title-faq {
    max-width: 100%;
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .section-text {
    font-size: 1.125rem;
    line-height: 1.8;
  }
  
  .features-grid {
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
  }
  
  .feature-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  
  .feature-description {
    font-size: 0.875rem;
  }
  
  .team-image {
    height: 400px;
  }
  
  .step-icon {
    width: 80px;
    height: 80px;
  }
  
  .step-title-section {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .step-description-section {
    font-size: 1rem;
  }
  
  .steps-grid {
    margin-bottom: 3rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    padding: 3.5rem 0;
  }
  
  .cta-section {
    padding: 5rem 0;
  }
  
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .hero-img {
    height: 550px;
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    margin-top: 30px;
    margin-left: 0 auto;
  }
  
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 4rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    padding: 4rem 0;
  }
  
  .cta-section {
    padding: 6rem 0;
  }
  
  .cta-title {
    font-size: 2rem;
    line-height: 50px;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 3.75rem;
  }
  
  .section-title {
    font-size: 3.25rem;
  }
  
  .hero-img {
    height: 600px;
  }
}

.locations-panel {
  margin-bottom: 2rem;
}

.locations-panel-header {
  background-color: var(--color-primary);
  padding: 1rem 1.5rem;
  border-radius: 0.75rem 0.75rem 0 0;
  margin-bottom: 0;
}

.locations-panel-title {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.locations-panel ul {
  background-color: var(--color-card);
  border-radius: 0 0 0.75rem 0.75rem;
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

.locations-panel ul li {
  margin-bottom: 0;
}

.locations-panel ul li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  color: var(--color-foreground);
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
}

.locations-panel ul li a:hover {
  background-color: var(--color-primary-light);
  border-color: var(--color-primary);
  transform: translateX(0.25rem);
}

.locations-panel ul li a i,
.locations-panel ul li a svg.location-icon {
  color: var(--color-primary);
  font-size: 1.125rem;
  width: 20px;
  height: 20px;
  text-align: center;
  flex-shrink: 0;
}

.locations.pt-0 {
  padding-top: 2rem !important;
}

.service-area-hero,
.cities-hero {
  padding: 4rem 0 3rem;
}

.service-area-content,
.locations-content {
  padding-bottom: 3rem;
}

.locations-panel .container {
  padding: 0;
}

.section-title-faq {
  max-width: 70%;
  margin-bottom: 30px;
}

@media (min-width: 480px) {
  .locations-panel ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 640px) {
  .service-area-hero,
  .cities-hero {
    padding: 5rem 0 4rem;
  }
}

@media (min-width: 768px) {
  .locations-panel ul {
    grid-template-columns: repeat(3, 1fr);
    padding: 1.5rem;
  }
  
  .locations-panel-header {
    padding: 1.25rem 1.5rem;
  }
  
  .locations-panel-title {
    font-size: 1.5rem;
  }

  .service-area-hero,
  .cities-hero {
    padding: 6rem 0 5rem;
  }
}

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

.cities-search-box {
  margin-bottom: 2rem;
  text-align: center;
}

.search-input-wrapper {
  position: relative;
  max-width: 500px;
  margin: 0 auto 0.75rem;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-muted-foreground);
  pointer-events: none;
}

.city-search-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  border: 2px solid var(--color-border);
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
  background-color: var(--color-card);
}

.city-search-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(46, 194, 179, 0.1);
}

.cities-count {
  color: var(--color-muted-foreground);
  font-size: 0.875rem;
  margin: 0;
}

.locations-panel li.hidden {
  display: none;
}

.locations-panel.county-block.hidden {
  display: none;
}

.locations-panel-header.all-hidden {
  display: none;
}

.no-results-message {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--color-muted-foreground);
  font-size: 1.125rem;
}

.no-results-message svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  color: var(--color-muted-foreground);
  opacity: 0.5;
}

@media (min-width: 768px) {
  .cities-search-box {
    margin-bottom: 2.5rem;
  }

  .search-input-wrapper {
    max-width: 600px;
  }

  .city-search-input {
    padding: 1rem 1.25rem 1rem 3.25rem;
    font-size: 1.125rem;
  }

  .search-icon {
    left: 1.25rem;
  }
}


.hero-breadcrumb {
  margin-top: 30px;
  margin-left: 0 auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  background-color: transparent;
  gap: 0.5rem;
  align-items: center;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}

.breadcrumb-link {
  color: var(--color-muted-foreground);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

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

.breadcrumb-current {
  color: var(--color-foreground);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.breadcrumb-separator {
  color: var(--color-muted-foreground);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
}

.breadcrumb-item.active {
  color: var(--color-foreground);
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-card);
  border-radius: 1rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  box-shadow: var(--shadow-strong);
}

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

.faq-question:hover {
  background-color: rgba(46, 194, 179, 0.05);
}

.faq-question-text {
  flex: 1;
  text-align: left;
  padding-right: 1rem;
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--color-primary);
}

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

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

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

.faq-answer p {
  color: var(--color-muted-foreground);
  margin: 0;
  line-height: 1.6;
}

.content-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s;
}

.content-image-local {
  width: 100%;
  height: 570px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s;
}

.content-image:hover {
  transform: scale(1.02);
}

.content-image-local:hover {
  transform: scale(1.02);
}

.order-1-md {
  order: 1;
}

.order-2-md {
  order: 2;
}

@media (min-width: 768px) {
  .content-image {
    height: 400px;
  }

  .content-image-local {
    height: 570px;
  }
  
  .breadcrumb-item {
    font-size: 1rem;
  }
  
  .order-1-md {
    order: 1;
  }
  
  .order-2-md {
    order: 2;
  }

  .highlight-box {
    padding: 1.75rem;
  }

  .highlight-icon {
    width: 56px;
    height: 56px;
  }

  .highlight-icon svg {
    width: 28px;
    height: 28px;
  }

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

  .highlight-text {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .order-1-md,
  .order-2-md {
    order: 0;
  }

  .highlight-box {
    flex-direction: row;
    padding: 1.25rem;
    gap: 1rem;
  }

  .highlight-icon {
    width: 44px;
    height: 44px;
  }

  .highlight-icon svg {
    width: 22px;
    height: 22px;
  }

  .highlight-title {
    font-size: 1rem;
  }

  .highlight-text {
    font-size: 0.875rem;
  }
}

.section-text-center {
  text-align: center;
  max-width: 70%;
  margin: 0 auto;
}

.section-text-centered {
  text-align: center;
  max-width: 900px;
  margin: 2.5rem auto 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-muted-foreground);
}

.benefits-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin: 3rem 0 2rem;
  color: var(--color-foreground);
}

.benefits-grid {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.benefit-card {
  background-color: var(--color-card);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-strong);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(46, 194, 179, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--color-primary);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}

.benefit-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-foreground);
}

.benefit-text {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .section-text-center {
    max-width: 100%;
  }

  .section-text-centered {
    max-width: 100%;
    font-size: 0.95rem;
    margin-top: 2rem;
  }

  .benefits-subtitle {
    font-size: 1.25rem;
    margin: 2rem 0 1.5rem;
  }

  .benefits-grid {
    gap: 1rem;
  }

  .benefit-card {
    padding: 1.25rem;
  }

  .benefit-icon {
    width: 48px;
    height: 48px;
  }

  .benefit-icon svg {
    width: 20px;
    height: 20px;
  }

  .benefit-title {
    font-size: 1rem;
  }

  .benefit-text {
    font-size: 0.813rem;
  }
}

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

@media (min-width: 768px) {
  .benefits-subtitle {
    font-size: 1.75rem;
    margin: 4rem 0 2.5rem;
  }

  .section-text-centered {
    font-size: 1.125rem;
    margin-top: 3rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .benefit-icon {
    width: 64px;
    height: 64px;
  }

  .benefit-icon svg {
    width: 28px;
    height: 28px;
  }

  .benefit-title {
    font-size: 1.25rem;
  }

  .benefit-text {
    font-size: 0.938rem;
  }

  .services-list {
    padding: 2rem;
    max-height: 450px;
  }

  .service-item {
    margin-bottom: 0.875rem;
    font-size: 1rem;
  }
}

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

  .benefits-subtitle {
    font-size: 2rem;
  }
}

.calculator-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  padding-top:130px;
}

.calculator-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-card);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.calculator-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 2rem;
  text-align: center;
  color: white;
}

.calculator-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.calculator-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

.calculator-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  gap: 1rem;
  background-color: var(--color-muted);
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.progress-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-card);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.progress-step.active .progress-circle {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.progress-number {
  font-weight: 600;
  color: var(--color-muted-foreground);
  transition: color 0.3s;
}

.progress-step.active .progress-number {
  color: white;
}

.progress-label {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  font-weight: 500;
}

.progress-step.active .progress-label {
  color: var(--color-primary);
}

.progress-line {
  width: 60px;
  height: 2px;
  background-color: var(--color-border);
}

.calculator-body {
  padding: 2rem;
}

.calculator-step {
  display: none;
}

.calculator-step.active {
  display: block;
  animation: fadeInUp 0.4s ease-out;
}

.step-content {
  max-width: 100%;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 0.5rem;
  text-align: center;
}

.step-description {
  font-size: 1rem;
  color: var(--color-muted-foreground);
  text-align: center;
  margin-bottom: 2rem;
}

.zip-input-wrapper {
  max-width: 400px;
  margin: 0 auto 2rem;
}

.calculator-zip-input {
  font-size: 1.125rem;
  text-align: center;
  padding-left: 2.5rem;
}

.validation-message {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  text-align: center;
  font-weight: 500;
}

.validation-message.success {
  color: var(--color-success);
}

.validation-message.error {
  color: #ef4444;
}

.btn-calculator {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.btn-icon-left {
  width: 20px;
  height: 20px;
}

.form-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-foreground);
  font-size: 0.875rem;
}

.textarea-input {
  resize: vertical;
  min-height: 100px;
}

.file-upload-wrapper {
  margin-top: 0.5rem;
}

.file-upload-area {
  display: block;
  border: 2px dashed var(--color-border);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background-color: var(--color-background);
}

.file-upload-area:hover,
.file-upload-area.drag-over {
  border-color: var(--color-primary);
  background-color: rgba(46, 194, 179, 0.05);
}

.upload-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--color-muted-foreground);
}

.upload-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-foreground);
  margin-bottom: 0.25rem;
}

.upload-hint {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin: 0;
}

.photo-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.photo-preview-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.photo-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.remove-photo {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(239, 68, 68, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  padding: 0;
}

.remove-photo:hover {
  background-color: #dc2626;
  transform: scale(1.1);
}

.remove-photo svg {
  width: 16px;
  height: 16px;
  color: white;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.form-actions .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-alert {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-alert.success {
  background-color: rgba(34, 197, 94, 0.1);
  border: 1px solid #22c55e;
  color: #16a34a;
}

.form-alert.error {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #dc2626;
}

@media (max-width: 767px) {
  .calculator-wrapper {
    border-radius: 1rem;
  }

  .calculator-header {
    padding: 1.5rem;
  }

  .calculator-title {
    font-size: 1.5rem;
  }

  .calculator-subtitle {
    font-size: 0.875rem;
  }

  .calculator-progress {
    padding: 1.5rem 1rem;
  }

  .progress-circle {
    width: 40px;
    height: 40px;
  }

  .progress-label {
    font-size: 0.75rem;
  }

  .progress-line {
    width: 40px;
  }

  .calculator-body {
    padding: 1.5rem;
  }

  .step-title {
    font-size: 1.25rem;
  }

  .step-description {
    font-size: 0.875rem;
  }

  .form-actions {
    flex-direction: column;
  }

  .photo-preview {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}

@media (min-width: 768px) {
  .calculator-title {
    font-size: 2rem;
  }

  .calculator-subtitle {
    font-size: 1.125rem;
  }

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .step-title {
    font-size: 1.75rem;
  }

  .step-description {
    font-size: 1.125rem;
  }
}

@media (max-width: 639px) {
  .image-wrapper {
    display: none;
  }

  .hero-section {
    padding-bottom: 0;
    padding-top: 150px !important;
  }

  .content-image-local {
    height: 100%;
  }

  .section-text-centered {
    text-align: left;
  }
}




.scroll-top-btn {
  position: fixed;
  bottom: 43px;
  right: 30px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 15px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  /* background: linear-gradient(135deg, #1a7e00, #e4a400); */
  background: linear-gradient(135deg, #2ec2b3, #229186);
  box-shadow: e4a400;
  transition: all 0.3s ease;
  z-index: 1000;
  display: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-top-btn:hover {
  background: #8bc34b;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
}


.scroll-top-btn svg {   
  width: 30px;
  height: 30px; 
  fill: #fff;
}


.footer-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}



.img-width-image {
    height: auto !important;
    object-fit: contain !important;    
}
