/* Areas Page Specific Styles */

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  margin-top: 70px;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.page-header p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* Areas Section */
.areas-section {
  padding: 80px 0;
  background-color: var(--background-alt);
}

/* Area Item */
.area-item {
  display: flex;
  margin-bottom: 80px;
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.area-item:last-child {
  margin-bottom: 0;
}

.area-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--primary-color);
}

.area-left {
  flex-direction: row;
}

.area-right {
  flex-direction: row-reverse;
}

/* Area Content */
.area-content {
  flex: 1;
  padding: 40px;
}

.area-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

.area-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
}

.area-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 25px;
}

.area-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

/* Area Landmarks */
.area-landmarks {
  display: flex;
  margin-bottom: 30px;
  gap: 20px;
}

.landmarks-column {
  flex: 1;
}

.area-landmarks li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: var(--text-light);
}

.area-landmarks li i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 1rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* Area Services */
.area-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  background-color: rgba(0, 184, 148, 0.1);
  color: var(--primary-color);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.service-tag:hover {
  background-color: var(--primary-color);
  color: white;
}

.service-tag i {
  margin-right: 5px;
  font-size: 0.8rem;
}

/* Area Testimonial */
.area-testimonial {
  background-color: var(--background-alt);
  padding: 25px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
  position: relative;
}

.testimonial-text {
  position: relative;
  padding-left: 30px;
}

.testimonial-text i {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--primary-color);
  font-size: 1.5rem;
  opacity: 0.3;
}

.testimonial-text p {
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial-author {
  text-align: right;
  font-weight: 600;
  color: var(--primary-color);
}

/* Area Map */
.area-map {
  flex: 0 0 40%;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.area-map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: none;
}

/* Area Benefits Section */
.area-benefits {
  padding: 80px 0;
  background-color: white;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--text-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefit-item {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 184, 148, 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
  background-color: var(--primary-color);
  color: white;
}

.benefit-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.benefit-item p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Area Coverage Section */
.area-coverage {
  padding: 80px 0;
  background-color: var(--background-alt);
}

.coverage-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.coverage-item {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.coverage-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coverage-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.coverage-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.coverage-item p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.coverage-list {
  text-align: left;
  margin-top: 20px;
}

.coverage-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-light);
}

.coverage-list li:last-child {
  border-bottom: none;
}

/* Area FAQ Section */
.area-faq {
  padding: 80px 0;
  background-color: white;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--background-alt);
  border-radius: var(--border-radius);
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.7;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  text-align: center;
  position: relative;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
}

.cta p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
  opacity: 0.9;
  position: relative;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.btn-secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid white;
}

.btn-secondary:hover {
  background: transparent;
  color: white;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .area-content {
    padding: 30px;
  }

  .area-content h2 {
    font-size: 1.6rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .area-item {
    flex-direction: column;
  }

  .area-right {
    flex-direction: column;
  }

  .area-map {
    flex: 0 0 300px;
    order: -1; /* Make map appear first on mobile */
  }

  .area-content {
    display: flex;
    flex-direction: column;
  }

  .area-content h2 {
    order: -1; /* Make heading appear right after the map */
    margin-top: 20px;
  }

  .coverage-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 60px 0;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .area-landmarks {
    flex-direction: column;
    gap: 0;
  }

  .area-services {
    gap: 8px;
  }

  .service-tag {
    font-size: 0.85rem;
    padding: 6px 12px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta h2 {
    font-size: 2rem;
  }

  .cta p {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 1.8rem;
  }

  .page-header p {
    font-size: 1rem;
  }

  .area-content {
    padding: 25px 20px;
  }

  .area-content h2 {
    font-size: 1.4rem;
  }

  .area-map {
    min-height: 250px;
  }

  .area-testimonial {
    padding: 20px 15px;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .faq-item {
    padding: 20px;
  }

  .faq-item h3 {
    font-size: 1.1rem;
  }
}
