/* ==================== Service Page Styles ==================== */

/* Service Page Header Override */
body .header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

body .header .logo img {
  height: 50px;
}

body .header .nav-link {
  color: var(--dark-text);
}

body .header .header-phone {
  color: var(--primary-teal);
}

/* Service Hero Section */
.service-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 150px 0 80px;
  overflow: hidden;
}

.service-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.service-hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.92), rgba(18, 140, 126, 0.88));
  z-index: 1;
}

.service-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  color: white;
}

.service-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.service-breadcrumb a {
  color: white;
  text-decoration: underline;
}

.service-breadcrumb a:hover {
  opacity: 0.8;
}

.service-breadcrumb i {
  font-size: 0.7rem;
}

.service-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.service-hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 1;
  color: #ffffff;
}

.service-hero-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-hero-cta .btn-primary {
  background: white;
  color: var(--primary-green);
  border: 2px solid white;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-hero-cta .btn-primary:hover {
  background: var(--primary-green);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.service-hero-cta .btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.service-hero-cta .btn-outline:hover {
  background: white;
  color: var(--primary-teal);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Service Sections */
.service-section {
  padding: 80px 0;
}

.service-section:nth-child(even) {
  background: var(--light-gray);
}

/* Why Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.why-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  text-align: center;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.why-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 2rem;
}

.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.why-card p {
  color: var(--light-text);
  line-height: 1.6;
}

/* Signs Section */
.signs-section {
  background: white;
}

.signs-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.signs-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sign-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
}

.sign-item:hover {
  background: var(--light-green);
  transform: translateX(10px);
}

.sign-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 1.5rem;
}

.sign-text h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-text);
  line-height: 1.5;
}

.signs-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.signs-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Inclusions Section */
.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.inclusions-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--primary-green);
}

.exclusions-card {
  border-color: #e74c3c;
}

.inclusions-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--light-gray);
}

.inclusions-header i {
  font-size: 2rem;
  color: var(--primary-green);
}

.exclusions-card .inclusions-header i {
  color: #e74c3c;
}

.inclusions-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-text);
}

.inclusions-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.inclusions-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--dark-text);
  line-height: 1.6;
}

.inclusions-list li i {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--primary-green);
}

.exclusions-card .inclusions-list li i {
  color: #e74c3c;
}

.add-on-note {
  margin-top: 25px;
  padding: 15px;
  background: var(--light-green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
}

.add-on-note i {
  color: var(--primary-teal);
  font-size: 1.2rem;
}

.add-on-note p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--dark-text);
  font-weight: 500;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background: white;
  padding: 40px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
}

.pricing-card.popular {
  border-color: var(--primary-green);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.3);
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--primary-green);
  color: white;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 25px;
}

.pricing-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.pricing-header p {
  color: var(--light-text);
  font-size: 0.9rem;
}

.pricing-price {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--light-green);
  border-radius: var(--radius-sm);
}

.price-amount {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 5px;
}

.price-amount::before {
  content: "Starting from";
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--light-text);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-period {
  display: block;
  font-size: 0.85rem;
  color: var(--light-text);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--dark-text);
}

.pricing-features li i {
  color: var(--primary-green);
  font-size: 1rem;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

.custom-quote-box {
  margin-top: 60px;
  padding: 50px;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-teal));
  border-radius: var(--radius-md);
  text-align: center;
  color: white;
}

.custom-quote-box h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: white;
}

.custom-quote-box p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 1;
  color: #ffffff;
}

/* CTA Section */
.service-cta-section {
  padding: 80px 0;
  background: var(--light-green);
}

.service-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.service-cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark-text);
}

.service-cta-content p {
  font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
  .service-hero h1 {
    font-size: 2.5rem;
  }

  .signs-content {
    grid-template-columns: 1fr;
  }

  .signs-image {
    order: -1;
  }

  .inclusions-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .custom-quote-box {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    min-height: 400px;
    padding: 120px 0 60px;
  }

  .service-hero h1 {
    font-size: 2rem;
  }

  .service-hero-subtitle {
    font-size: 1rem;
  }

  .service-hero-cta {
    flex-direction: column;
  }

  .service-hero-cta .btn {
    width: 100%;
  }

  .service-section {
    padding: 60px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .inclusions-grid {
    grid-template-columns: 1fr;
  }

  .inclusions-card {
    padding: 30px 20px;
  }

  .service-cta-content h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}
