/* ===== SERVICES PAGE SPECIFIC STYLES ===== */

/* Services Hero */
.services-hero {
  padding: 4rem 0 5rem;
  background: linear-gradient(135deg, #754174 0%, #5a3a5a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path d="M0 0h1000v1000H0z" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="2"/><path d="M0 500h1000M500 0v1000" stroke="rgba(255,255,255,0.03)" stroke-width="2"/></svg>') repeat;
  background-size: 200px 200px;
}

.services-hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.services-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(241, 186, 166, 0.15);
  color: #f1baa6;
  padding: 0.3rem 1.2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.services-hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.services-hero .highlight {
  color: #f1baa6;
}

.services-hero-desc {
  font-size: 1.15rem;
  color: #b885a4;
  max-width: 90%;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.services-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Services Detailed Grid */
.services-overview {
  padding: 4.5rem 0 5rem;
  background: #ffffff;
}

.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-detailed-card {
  background: #f8f1f2;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  border: 1px solid #e8e0e2;
  position: relative;
  overflow: hidden;
}

.service-detailed-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(117, 65, 116, 0.10);
  border-color: #e15b40;
}

.service-detailed-icon {
  width: 70px;
  height: 70px;
  background: rgba(225, 91, 64, 0.10);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #e15b40;
  margin-bottom: 1.5rem;
}

.service-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  color: #e8e0e2;
  line-height: 1;
}

.service-detailed-content h3 {
  font-size: 1.5rem;
  color: #754174;
  margin-bottom: 0.3rem;
}

.service-subtitle {
  color: #8a7a8a;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #5a4a5a;
}

.service-features-list i {
  color: #e15b40;
  font-size: 0.9rem;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #754174;
  transition: all 0.3s ease;
}

.service-cta:hover {
  color: #e15b40;
  gap: 0.8rem;
}

/* Why Choose Us */
.why-choose-us {
  padding: 4.5rem 0 5rem;
  background: #f8f1f2;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e8e0e2;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(117, 65, 116, 0.08);
  border-color: #e15b40;
}

.why-icon {
  width: 64px;
  height: 64px;
  background: rgba(225, 91, 64, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #e15b40;
  margin: 0 auto 1rem;
}

.why-card h3 {
  font-size: 1.1rem;
  color: #754174;
  margin-bottom: 0.4rem;
}

.why-card p {
  color: #8a7a8a;
  font-size: 0.95rem;
}

/* Service Process */
.service-process {
  padding: 4.5rem 0 5rem;
  background: #ffffff;
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #e8e0e2;
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  min-width: 60px;
  height: 60px;
  background: #754174;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.step-content {
  padding-top: 0.3rem;
}

.step-content h3 {
  font-size: 1.2rem;
  color: #754174;
  margin-bottom: 0.3rem;
}

.step-content p {
  color: #8a7a8a;
  font-size: 0.95rem;
}

/* Service Areas */
.service-areas {
  padding: 4.5rem 0 5rem;
  background: #f8f1f2;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.area-card {
  background: #ffffff;
  padding: 1.8rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e8e0e2;
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(117, 65, 116, 0.08);
  border-color: #e15b40;
}

.area-card i {
  font-size: 2rem;
  color: #e15b40;
  margin-bottom: 0.5rem;
}

.area-card h3 {
  font-size: 1.1rem;
  color: #754174;
  margin-bottom: 0.2rem;
}

.area-card p {
  font-size: 0.85rem;
  color: #8a7a8a;
}

/* Testimonials */
.testimonials {
  padding: 4.5rem 0 5rem;
  background: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: #f8f1f2;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid #e8e0e2;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: #e15b40;
  box-shadow: 0 8px 20px rgba(117, 65, 116, 0.06);
}

.testimonial-stars {
  color: #f1baa6;
  margin-bottom: 1rem;
}

.testimonial-stars i {
  margin-right: 0.2rem;
}

.testimonial-card p {
  color: #5a4a5a;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 0.95rem;
  color: #754174;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: #8a7a8a;
}

/* FAQ Section */
.faq-section {
  padding: 4.5rem 0 5rem;
  background: #f8f1f2;
}

.faq-grid {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8e0e2;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #e15b40;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.8rem;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f8f1f2;
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #2d1a2d;
  margin: 0;
}

.faq-question i {
  color: #8a7a8a;
  transition: transform 0.3s ease;
  font-size: 1rem;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.8rem;
}

.faq-answer p {
  color: #5a4a5a;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Final CTA */
.final-cta {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(135deg, #754174 0%, #5a3a5a 100%);
  color: #fff;
  text-align: center;
}

.cta-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.cta-wrapper h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-wrapper .highlight {
  color: #f1baa6;
}

.cta-wrapper p {
  color: #b885a4;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
  .services-detailed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 700px) {
  .services-detailed-grid {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .areas-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .services-hero h1 {
    font-size: 2rem;
  }
  
  .services-hero-desc {
    max-width: 100%;
  }
  
  .cta-wrapper h2 {
    font-size: 2rem;
  }
  
  .process-timeline::before {
    left: 20px;
  }
  
  .step-number {
    min-width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  
  .faq-question {
    padding: 1rem 1.2rem;
  }
  
  .faq-answer {
    padding: 0 1.2rem;
  }
}
/* Footer Logo */
.footer-brand .brand-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.footer-brand .brand-row img {
  height: 45px;
  width: auto;
}

.footer-brand .brand-name {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-brand .brand-sub {
  background: rgba(255, 255, 255, 0.10);
  color: #f1baa6;
  font-size: 0.75rem;
  padding: 0.1rem 0.6rem;
  border-radius: 20px;
  margin-left: 0.3rem;
}

.footer-brand .tagline {
  font-size: 0.85rem;
  color: #f1baa6;
  font-style: italic;
  margin-top: 0.2rem;
}

.footer-brand .description {
  color: #b885a4;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}