/* Service Pages Styles */

:root {
  --hero-image-opacity: 0.4;
  --hero-overlay-opacity-start: 0.2;
  --hero-overlay-opacity-end: 0.9;
}

.navbar-brand:focus {
  outline: none;
  box-shadow: none;
}

.service-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, var(--hero-overlay-opacity-start)) 0%, rgba(0, 0, 0, var(--hero-overlay-opacity-end)) 100%);
  z-index: 1;
}

.service-hero .container {
  z-index: 2;
}

.hero-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 2rem;
}

.hero-icon i {
  width: 100%;
  height: 100%;
}

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

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: var(--hero-image-opacity);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list i {
  color: #c8a96a !important;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-list svg {
  stroke: #c8a96a !important;
  color: #c8a96a !important;
}

.feature-list .lucide {
  stroke: #c8a96a !important;
  color: #c8a96a !important;
}

.feature-list strong {
  font-size: 1.05rem;
  color: #c8a96a;
  font-weight: 600;
}

.feature-list p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0.25rem 0 0 0;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
}

/* Section styling */
.section-dark {
  background: rgba(0, 0, 0, 0.3);
}

.section-heading {
  color: #fff;
}

/* Service overview paragraph */
.service-overview-text {
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  text-align: left;
  word-spacing: normal;
}

.service-overview-text.mb-last {
  margin-bottom: 0;
}

.service-overview-text strong {
  word-spacing: normal;
}

/* Hero lead text */
.service-hero-lead {
  font-weight: 300;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
  word-spacing: normal;
}

/* Pricing features list */
.pricing-features {
  margin: 0 0 1rem 1.1rem;
  padding: 0;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  text-align: left;
  word-spacing: normal;
}

.pricing-features strong {
  word-spacing: normal;
}

.pricing-features li {
  margin-bottom: 0.35rem;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 169, 106, 0.5);
  box-shadow: 0 12px 40px rgba(200, 169, 106, 0.15);
}

.pricing-card.featured {
  border-color: #c8a96a;
  background: rgba(200, 169, 106, 0.05);
}

.pricing-icon {
  width: 60px;
  height: 60px;
  background: rgba(200, 169, 106, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pricing-icon i {
  width: 32px;
  height: 32px;
  color: #c8a96a;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #c8a96a;
  margin-bottom: 0.25rem;
}

.pricing-period {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.pricing-description {
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing-features li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.pricing-features i {
  color: #c8a96a !important;
  flex-shrink: 0;
  margin-top: 0.2rem;
  width: 16px;
  height: 16px;
}

.pricing-features svg {
  stroke: #c8a96a !important;
  color: #c8a96a !important;
}

.pricing-features .lucide {
  stroke: #c8a96a !important;
  color: #c8a96a !important;
}

.pricing-cta {
  background: linear-gradient(135deg, #c8a96a 0%, #b5835a 100%);
  border: none;
  color: #000;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 169, 106, 0.3);
  background: linear-gradient(135deg, #d4b576 0%, #c18f66 100%);
}

.gallery-image {
  width: 100%;
  height: 400px;
  border-radius: 0;
  overflow: hidden;
  border: none;
  margin-bottom: 2rem;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .service-hero {
    min-height: 50vh;
  }

  .hero-icon {
    width: 80px;
    height: 80px;
  }

  .pricing-price {
    font-size: 2rem;
  }

  .gallery-image {
    height: 300px;
    background: #000000;
  }
}
