* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Section */
.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid #e8f5e8;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a3d0a;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #4a6741;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-card-preview {
  background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e8 100%);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(26, 61, 10, 0.1);
  border: 1px solid #e8f5e8;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-card-preview h3 {
  color: #1a3d0a;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-card-preview p {
  color: #4a6741;
  font-size: 1rem;
  line-height: 1.5;
}

/* Contact Methods */
.contact-methods {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.contact-method {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  display: flex;
  gap: 1.5rem;
}

.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.method-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4CAF50, #2e7d32);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-icon i {
  font-size: 24px;
  color: white;
}

.method-content h3 {
  color: #1a3d0a;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.method-description {
  color: #666;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.contact-link {
  display: block;
  color: #4CAF50;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #2e7d32;
}

.availability {
  font-size: 0.9rem;
  color: #888;
  font-style: italic;
}

/* Service Area */
.service-area {
  background: #f8fdf8;
  padding: 4rem 0;
  border-radius: 16px;
  margin: 3rem 0;
}

.area-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.area-info {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.location-icon {
  width: 50px;
  height: 50px;
  background: #4CAF50;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-icon i {
  color: white;
  font-size: 20px;
}

.location-details h3 {
  color: #1a3d0a;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-location {
  color: #4CAF50;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.coverage-details {
  color: #4a6741;
  line-height: 1.6;
  max-width: 500px;
}

.coverage-badge {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  min-width: 120px;
}

.badge-text {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #4CAF50;
}

.badge-label {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

  /* CTA Section */
        .consultation-cta {
            background: linear-gradient(135deg, #1a3d0a 0%, #2e7d32 100%);
            color: white;
            padding: 4rem 2.5rem;
            border-radius: 16px;
            margin: 4rem 0;
            box-shadow: 0 20px 40px rgba(26, 61, 10, 0.3);
        }

        .cta-content {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 3rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .cta-text h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .cta-text p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        .consultation-benefits {
            list-style: none;
            margin-bottom: 2rem;
        }

        .consultation-benefits li {
            padding: 0.5rem 0;
            position: relative;
            padding-left: 1.5rem;
            font-size: 1rem;
        }

        .consultation-benefits li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #81c784;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .cta-actions {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            min-width: 200px;
        }

        .btn {
            padding: 1rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .btn-primary {
            background: white;
            color: #1a3d0a;
        }

        .btn-primary:hover {
            background: #f5f5f5;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        .btn-whatsapp {
            background: #25D366;
            color: white;
        }

        .btn-whatsapp:hover {
            background: #1da851;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-outline:hover {
            background: white;
            color: #1a3d0a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255,255,255,0.3);
        }

        .contact-info {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .contact-info div {
            margin-bottom: 0.5rem;
        }

        .contact-info i {
            margin-right: 0.5rem;
            width: 16px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .consultation-cta {
                padding: 3rem 1.5rem;
            }

            .cta-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .cta-text h2 {
                font-size: 1.8rem;
            }

            .cta-actions {
                min-width: 100%;
                gap: 0.8rem;
            }

            .btn {
                font-size: 1.1rem;
                padding: 1.2rem 1.5rem;
            }
        }

/* Responsive Design */
@media (max-width: 1024px) {
  .cta-content {
    gap: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .contact-container {
    padding: 0 1rem;
  }
  
  .contact-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 3rem 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  
  .area-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .area-info {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .coverage-badge {
    margin: 0 auto;
  }
  
  .cta-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
 .cta-actions {
                min-width: 180px;
            }

  .service-area {
    padding: 3rem 2rem;
    margin: 2rem 0;
  }
  
  .contact-methods {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .contact-card-preview {
    padding: 2rem 1.5rem;
  }
  
  .card-icon {
    font-size: 2.5rem;
  }
  
  .contact-method {
    padding: 1.5rem;
  }
  
  .method-icon {
    width: 50px;
    height: 50px;
  }
  
  .method-icon i {
    font-size: 20px;
  }
  
  .method-content h3 {
    font-size: 1.2rem;
  }
  
  .cta-text h2 {
    font-size: 1.8rem;
  }
  
  .cta-text p {
    font-size: 1rem;
  }
  
  .btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }
  
  .service-area {
    padding: 2rem 1rem;
  }
  
  .coverage-details {
    font-size: 0.95rem;
  }
  
  .contact-methods {
    padding: 2rem 0;
  }
}

@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .contact-container {
    padding: 0 0.75rem;
  }
  
  .cta-text h2 {
    font-size: 1.6rem;
  }
  
  .consultation-benefits {
    font-size: 0.9rem;
  }
}