.page-header {
  padding: 0;     
  margin: 0;
  background: var(--gradient-primary);
  color: var(--background-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header .container {
  padding: 8rem 1rem 4rem;
}

.page-header::before {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -25%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--background-white);
  font-weight: 800;
}

.page-header p {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
}

.story-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
  padding: 2rem 0;
}

.service-grid-card {
  background: var(--background-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
}

.service-grid-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 74, 0.1) 0%, rgba(0, 168, 204, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-grid-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-coral);
}

.service-grid-card:hover::after {
  opacity: 1;
}

.service-grid-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.service-grid-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(30, 90, 125, 0.4) 100%);
  transition: opacity 0.4s ease;
}

.service-grid-card:hover .service-grid-image::after {
  opacity: 0;
}

.service-grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.service-grid-card:hover .service-grid-image img {
  transform: scale(1.15);
}

.service-grid-card h3 {
  padding: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 1;
  background: var(--gradient-light);
}

.breadcrumb {
  padding: 2rem 0;
  margin-top: 76px;
  background: var(--background-lighter);
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb a {
  color: var(--primary-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--background-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.breadcrumb a:hover {
  background: var(--primary-blue);
  color: var(--background-white);
  transform: translateX(-8px);
  box-shadow: var(--shadow-md);
}

.service-detail-header {
  padding: 5rem 0 3rem;
  text-align: center;
  background: var(--background-lighter);
  border-bottom: 1px solid var(--border-light);
}

.service-detail-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.service-detail-header p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 3rem 0;
}

.service-content.reverse {
  direction: rtl;
}

.service-content.reverse > * {
  direction: ltr;
}

.service-text h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  position: relative;
  padding-bottom: 1rem;
}

.service-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

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

.service-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.service-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 74, 0.1) 0%, rgba(0, 168, 204, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-image:hover::after {
  opacity: 1;
}

.service-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-image:hover img {
  transform: scale(1.08);
}

.faq-section {
  background: var(--background-lighter);
  padding: 5rem 0;
  margin-top: 3rem;
}

.faq-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.faq-section h2 + p {
  text-align: center;
  color: var(--text-light);
  font-size: 1.15rem;
  margin-bottom: 4rem;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--background-white);
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: var(--transition-smooth);
}

.accordion-item:hover {
  border-color: var(--accent-teal);
  box-shadow: var(--shadow-md);
}

.accordion-btn {
  width: 100%;
  padding: 1.75rem 2rem;
  background: var(--background-white);
  border: none;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.accordion-btn:hover {
  background: var(--background-lighter);
  color: var(--accent-coral);
}

.accordion-btn::after {
  content: '+';
  font-size: 2rem;
  font-weight: 400;
  color: var(--accent-coral);
  transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-lighter);
  border-radius: var(--border-radius);
}

.accordion-btn.active::after {
  transform: rotate(135deg);
  background: var(--accent-coral);
  color: var(--background-white);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.accordion-inner {
  padding: 0 2rem 2rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

@media (max-width: 968px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-content.reverse {
    direction: ltr;
  }

  .page-header h1,
  .service-detail-header h1 {
    font-size: 2.5rem;
  }

  .faq-section h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .page-header h1,
  .service-detail-header h1 {
    font-size: 2rem;
  }

  .service-text h2 {
    font-size: 1.75rem;
  }

  .accordion-btn {
    padding: 1.5rem;
    font-size: 1rem;
  }

  .accordion-inner {
    padding: 0 1.5rem 1.5rem;
  }
}
