/* ============================================
   SERVICE PAGES - Styles
   ============================================ */

/* --- Service Hero --- */
.service-hero {
  position: relative;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1a1a 0%, #0a3d3c 30%, var(--primary-dark) 60%, #0e5a58 100%);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.service-hero-content {
  position: relative;
  z-index: 2;
}

.service-hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  aspect-ratio: 4/3;
}

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

.service-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,145,142,0.15), transparent 60%);
  pointer-events: none;
}

.service-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.service-breadcrumb:hover {
  color: rgba(255,255,255,0.9);
}

.service-breadcrumb svg {
  width: 16px;
  height: 16px;
}

.service-hero-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 1.5rem;
}

.service-hero-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent-light);
}

.service-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.service-hero h1 .text-accent {
  color: var(--accent-light);
}

.service-hero-desc {
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 600px;
}

.service-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Service Section --- */
.service-section {
  padding: var(--section-py) 0;
}

.service-section-alt {
  background: var(--neutral-50);
}

/* --- Two Column Layout --- */
.service-two-col {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: flex-start;
}

.service-two-col-reverse {
  grid-template-columns: 0.7fr 1.3fr;
}

.service-text p {
  font-size: 1.05rem;
  color: var(--neutral-600);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.service-text strong {
  color: var(--neutral-800);
}

.service-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--neutral-700);
  line-height: 1.7;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--primary);
  background: var(--primary-50);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
}

/* --- Service Info Card --- */
.service-info-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: 6rem;
}

.service-info-card-highlight {
  border-color: var(--primary-200);
  background: var(--primary-50);
}

.service-info-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--neutral-200);
}

.service-info-card h3 svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.info-card-text {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-details-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.service-details-list li > svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-details-list li div {
  display: flex;
  flex-direction: column;
}

.service-details-list li strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--neutral-800);
}

.service-details-list li span {
  font-size: 0.9rem;
  color: var(--neutral-600);
}

/* --- Signs Grid --- */
.signs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sign-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s var(--ease);
}

.sign-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-200);
}

.sign-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--primary-100);
  margin-bottom: 1rem;
}

.sign-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.sign-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.5rem;
}

.sign-card p {
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.65;
}

/* --- Method Grid --- */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.method-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.method-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-200);
}

.method-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-100);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.method-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--primary-50);
  border: 2px solid var(--primary-200);
}

.method-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.method-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.5rem;
}

.method-card p {
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.65;
}

/* --- Expect Grid --- */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.expect-card {
  position: relative;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
}

.expect-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-200);
}

.expect-step {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.expect-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.5rem;
}

.expect-card p {
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.65;
}

/* --- FAQ --- */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--neutral-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
}

.faq-question span {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--neutral-800);
  line-height: 1.4;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--neutral-400);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.75;
  padding-bottom: 1.25rem;
}

/* --- Service CTA --- */
.service-cta-section {
  padding: 3rem 0;
}

.service-cta-card {
  position: relative;
  background: linear-gradient(135deg, #0a1a1a, var(--primary-dark));
  border-radius: var(--radius-xl);
  padding: 4rem 2rem;
  overflow: hidden;
  text-align: center;
}

.service-cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.service-cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-cta-content h2 .text-accent {
  color: var(--accent-light);
}

.service-cta-content > p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.service-cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.service-cta-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}

.service-cta-trust svg {
  width: 18px;
  height: 18px;
  color: var(--accent-light);
}

/* --- Other Services --- */
.other-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.other-service-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s var(--ease);
  text-decoration: none;
}

.other-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}

.other-service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--primary-100);
  margin-bottom: 1rem;
}

.other-service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.other-service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.5rem;
}

.other-service-card p {
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.other-service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.other-service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.other-service-card:hover .other-service-link svg {
  transform: translateX(4px);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .service-two-col,
  .service-two-col-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-info-card {
    position: static;
  }

  .method-grid,
  .expect-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .service-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-hero-image {
    max-width: 500px;
  }

}

@media (max-width: 768px) {
  .service-hero {
    padding: 7rem 0 3rem;
  }

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

  .method-grid,
  .expect-grid {
    grid-template-columns: 1fr;
  }

  .other-services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .service-cta-card {
    padding: 2.5rem 1.5rem;
  }

  .service-cta-trust {
    flex-direction: column;
    gap: 0.5rem;
  }

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

  .service-hero-actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .service-hero h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  .signs-grid {
    gap: 1rem;
  }
}

/* --- WhatsApp Button & Float --- */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1ebe5a;
  border-color: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-icon-svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 1rem;
    right: 1rem;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
