/* Modern CTA Section (matches about/certificates/tracks) */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary, #2ec4b6) 0%, var(--color-secondary, #3a506b) 100%);
  padding: 3.5rem 0 3rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
  border-radius: inherit;
}
.cta-content {
  background: rgba(24, 31, 42, 0.95);
  border-radius: 1.5rem;
  box-shadow: 0 6px 32px 0 rgba(46,196,182,0.10), 0 2px 8px 0 rgba(58,80,107,0.10);
  border: 1.5px solid var(--color-accent, #2ec4b6);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-content h2 {
  color: white;
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}
.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}
.cta-content .btn {
  font-size: var(--text-base);
  padding: 0.85em 2.2em;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px 0 rgba(46,196,182,0.10);
}
.cta-content .btn-accent {
  background: var(--color-accent, #2ec4b6);
  color: #fff;
  border: none;
  transition: background 0.2s;
}
.cta-content .btn-accent:hover {
  background: #22bfa2;
}
.cta-content .btn-outline {
  background: transparent;
  color: var(--color-accent, #2ec4b6);
  border: 2px solid var(--color-accent, #2ec4b6);
  transition: background 0.2s, color 0.2s;
}
.cta-content .btn-outline:hover {
  background: var(--color-accent, #2ec4b6);
  color: #fff;
}

@media (min-width: 768px) {
  .cta-content h2 {
    font-size: var(--text-4xl);
  }
}
/* Stylish Our Services Header */
.page-header h1[data-i18n="services_page_title"] {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--color-primary, #2ec4b6) 0%, var(--color-secondary, #3a506b) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
  text-align: center;
}
.page-header h1[data-i18n="services_page_title"]::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  margin: 1rem auto 0 auto;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-accent, #2ec4b6), var(--color-secondary, #3a506b));
}
.page-header .page-subtitle {
  text-align: center;
  color: var(--text-muted, #b0b8c9);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
/* Enhanced Service Card Design */
.service-content {
  background: var(--card-bg, #181f2a);
  border-radius: 1.25rem;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10), 0 1.5px 6px 0 rgba(0,0,0,0.08);
  border: 1px solid var(--border, #232b3b);
  padding: 2.5rem 2rem 2rem 2rem;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.service-content:hover {
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18), 0 3px 12px 0 rgba(0,0,0,0.12);
  border-color: var(--color-accent, #2ec4b6);
  transform: translateY(-6px) scale(1.02);
}
.service-content-reverse {
  flex-direction: row-reverse;
}
.service-icon {
  background: linear-gradient(135deg, var(--color-primary, #2ec4b6), var(--color-secondary, #3a506b));
  border-radius: 1rem;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px 0 rgba(46,196,182,0.10);
  flex-shrink: 0;
}
.service-icon svg {
  width: 40px;
  height: 40px;
}
.service-text h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: var(--text, #fff);
}
.service-label {
  display: inline-block;
  background: var(--color-accent, #2ec4b6);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 0.75rem;
  padding: 0.25em 0.9em;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}
.service-text p {
  color: var(--text-muted, #b0b8c9);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  color: var(--text, #b0b8c9);
}
.feature-item i {
  color: var(--color-accent, #2ec4b6);
  font-size: 1.1em;
}
.service-text .btn {
  font-size: 1.05rem;
  padding: 0.7em 2em;
  border-radius: 2em;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 rgba(46,196,182,0.10);
}
/* Add space between navbar and page header */
.page-header {
  margin-top: 2.5rem;
}
/* ============================================
   MOBTAKER - Services Page Styles
   ============================================ */

/* Services Intro */
.services-intro {
  background-color: var(--bg);
}

.services-intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.services-intro-content p {
  color: var(--text-muted);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
}

/* Service Detail Section */
.service-detail {
  background-color: var(--surface);
}

.service-detail:nth-child(even) {
  background-color: var(--bg);
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .service-detail-content {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail:nth-child(even) .service-detail-content {
    direction: rtl;
  }

  .service-detail:nth-child(even) .service-detail-content > * {
    direction: ltr;
  }

  [dir="rtl"] .service-detail:nth-child(even) .service-detail-content {
    direction: ltr;
  }

  [dir="rtl"] .service-detail:nth-child(even) .service-detail-content > * {
    direction: rtl;
  }
}

.service-detail-text {
  order: 2;
}

@media (min-width: 1024px) {
  .service-detail-text {
    order: 1;
  }
}

.service-detail-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background-color: rgba(242, 142, 31, 0.1);
  color: var(--color-accent);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.service-detail-text h2 {
  margin-bottom: var(--space-4);
}

.service-detail-text p {
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.service-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--color-secondary);
  color: white;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-feature-icon svg {
  width: 14px;
  height: 14px;
}

.service-feature span {
  font-size: var(--text-sm);
  color: var(--text);
}

.service-detail-image {
  order: 1;
  position: relative;
  height: 350px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-2xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .service-detail-image {
    order: 2;
    height: 450px;
  }
}

.service-detail-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.service-icon-large {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  color: white;
}

.service-icon-large svg {
  width: 60px;
  height: 60px;
}

/* CTA Section */
.services-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0d2630 100%);
  text-align: center;
  position: relative;
}

.services-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.services-cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.services-cta h2 {
  color: white;
  margin-bottom: var(--space-4);
}

.services-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}
