/* 
  Global Service Details Styles
  Version: 3.0 - Complete with Compliance Cards
*/

/* 
  Global Service Details Styles
  Version: 5.0 – Custom Color Scheme
  Colors: #26BAF1 (Accent/Cyan) | #3E618B (Dark Blue)
*/

/* Font Imports (Unchanged) */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Inter:wght@600;700;800;900&display=swap');

/* Tabler Icons CDN */
@import url('https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/tabler-icons.min.css');

/* ============================================ */
/* DESIGN TOKENS – UPDATED PER USER REQUEST     */
/* ============================================ */
[data-scope="service-details"] {
  --sd-navy: #f4f7fb;
  --sd-navy-2: #1D4576;
  --sd-navy-3: #1a2235;
  --sd-accent: #26BAF1;            /* Cyan – primary accent */
  --sd-accent-2: #3E618B;           /* Dark blue – hovers & card backgrounds */
  --sd-accent-glow: rgba(38,186,241,0.18);
  --sd-border: rgba(0,0,0,0.08);
  --sd-border-hover: #26BAF1;
  --sd-text-primary: #000000;       /* Black for main text */
  --sd-text-secondary: #302F2F;
  --sd-text-muted: #4a5878;
  --sd-bg-light: #ffffff;
  --sd-bg-soft: #f8fafc;
  --sd-bg-alt: #f0f4fa;
  --sd-tag-bg: rgba(38,186,241,0.12);
  --sd-tag-text: #26BAF1;
  --sd-shadow: 0 10px 40px rgba(0,0,0,0.08);
  --sd-shadow-hover: 0 20px 50px rgba(38,186,241,0.15);
  --sd-success: #10b981;
  --sd-warning: #f59e0b;
  --sd-error: #ef4444;

  background: var(--sd-navy);
  font-family: 'DM Sans', sans-serif;
  box-sizing: border-box;
  color: #000000; /* Default text black */
}

[data-scope="service-details"] *,
[data-scope="service-details"] *::before,
[data-scope="service-details"] *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Container */
[data-scope="service-details"] .sd-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section General */
[data-scope="service-details"] .sd-section {
  padding: 5rem 0;
  position: relative;
}

[data-scope="service-details"] .sd-section-alt {
  background: var(--sd-bg-soft);
}

[data-scope="service-details"] .sd-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: sd-fade-up 0.6s ease forwards;
}

[data-scope="service-details"] .sd-section-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sd-accent);        /* #26BAF1 */
  margin-bottom: 0.75rem;
}

[data-scope="service-details"] .sd-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

[data-scope="service-details"] .sd-section-title span {
  color: var(--sd-accent);        /* #26BAF1 */
}

[data-scope="service-details"] .sd-section-desc {
  font-size: 1.05rem;
  color: var(--sd-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================ */
/* BUTTONS – Rounded with Arrow Icon           */
/* ============================================ */
[data-scope="service-details"] .sd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;            /* Fully rounded */
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

/* Primary Button – #26BAF1 background */
[data-scope="service-details"] .sd-btn-primary {
  background: var(--sd-accent);
  color: white;
  border-color: var(--sd-accent);
  box-shadow: 0 4px 15px rgba(38,186,241,0.3);
}

[data-scope="service-details"] .sd-btn-primary i {
  font-size: 1.1rem;
}

[data-scope="service-details"] .sd-btn-primary:hover {
  background: transparent;
  color: var(--sd-accent);
  border-color: var(--sd-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(38,186,241,0.4);
}

/* Outline Button */
[data-scope="service-details"] .sd-btn-outline {
  background: transparent;
  color: #000000;
  border: 1px solid rgba(0,0,0,0.15);
}

[data-scope="service-details"] .sd-btn-outline:hover {
  border-color: var(--sd-accent-2);  /* #3E618B */
  color: var(--sd-accent-2);
  transform: translateY(-3px);
  background: rgba(62,97,139,0.04);
}

/* Outline Light (for dark backgrounds) */
[data-scope="service-details"] .sd-btn-outline-light {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}

[data-scope="service-details"] .sd-btn-outline-light:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

/* ============================================ */
/* HERO SECTION                                 */
/* ============================================ */
[data-scope="service-details"] .sd-hero {
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

[data-scope="service-details"] .sd-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, var(--sd-accent-glow) 0%, transparent 70%);
  pointer-events: none;
  animation: sd-pulse-glow 8s ease-in-out infinite;
}

@keyframes sd-pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

[data-scope="service-details"] .sd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--sd-text-muted);
  opacity: 0;
  animation: sd-fade-up 0.6s ease forwards;
}

[data-scope="service-details"] .sd-breadcrumb a {
  color: var(--sd-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

[data-scope="service-details"] .sd-breadcrumb a:hover {
  color: var(--sd-accent-2);
}

[data-scope="service-details"] .sd-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

[data-scope="service-details"] .sd-hero-text {
  opacity: 0;
  animation: sd-fade-up 0.6s ease 0.1s forwards;
}

[data-scope="service-details"] .sd-service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sd-tag-bg);
  color: var(--sd-tag-text);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(38,186,241,0.2);
}

[data-scope="service-details"] .sd-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: #000000;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

[data-scope="service-details"] .sd-hero h1 span {
  color: var(--sd-accent);        /* #26BAF1 */
  position: relative;
  display: inline-block;
}

[data-scope="service-details"] .sd-hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--sd-accent-glow);
  z-index: -1;
  border-radius: 4px;
}

[data-scope="service-details"] .sd-hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--sd-text-secondary);
  margin-bottom: 2rem;
}

[data-scope="service-details"] .sd-hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

[data-scope="service-details"] .sd-stat-item {
  display: flex;
  flex-direction: column;
}

[data-scope="service-details"] .sd-stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--sd-accent);        /* #26BAF1 */
  line-height: 1.2;
}

[data-scope="service-details"] .sd-stat-label {
  font-size: 0.85rem;
  color: #000000;
  font-weight: 500;
}

[data-scope="service-details"] .sd-hero-cta {
  display: flex;
  gap: 1rem;
}

[data-scope="service-details"] .sd-hero-image {
  opacity: 0;
  animation: sd-fade-up 0.6s ease 0.2s forwards;
  position: relative;
}

[data-scope="service-details"] .sd-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--sd-shadow);
  transition: all 0.3s ease;
}

[data-scope="service-details"] .sd-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: var(--sd-shadow-hover);
}

[data-scope="service-details"] .sd-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

[data-scope="service-details"] .sd-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 2rem 1.5rem 1.5rem;
}

[data-scope="service-details"] .sd-image-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255,255,255,0.2);
}

[data-scope="service-details"] .sd-image-overlay h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

[data-scope="service-details"] .sd-image-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ============================================ */
/* PROCESS TIMELINE                             */
/* ============================================ */
[data-scope="service-details"] .sd-process {
  background: var(--sd-bg-light);
  border-radius: 30px;
  padding: 3rem;
  box-shadow: var(--sd-shadow);
  border: 1px solid var(--sd-border);
}

[data-scope="service-details"] .sd-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

/* Timeline Item – Card background #3E618B */
[data-scope="service-details"] .sd-timeline-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--sd-accent-2);   /* #3E618B */
  border-radius: 20px;
  transition: all 0.4s ease;
  opacity: 0;
  animation: sd-fade-up 0.6s ease forwards;
  position: relative;
  overflow: hidden;
  color: white;                     /* White text on dark background */
}

[data-scope="service-details"] .sd-timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sd-accent);     /* #26BAF1 */
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

[data-scope="service-details"] .sd-timeline-item:hover::before {
  transform: scaleX(1);
}

[data-scope="service-details"] .sd-timeline-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--sd-shadow-hover);
  background: var(--sd-accent-2);    /* remains #3E618B but with lift */
}

[data-scope="service-details"] .sd-timeline-number {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.15);
  margin-bottom: -1.5rem;
  letter-spacing: -0.03em;
}

[data-scope="service-details"] .sd-timeline-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  transition: all 0.3s ease;
}

[data-scope="service-details"] .sd-timeline-item:hover .sd-timeline-icon {
  background: var(--sd-accent);      /* #26BAF1 */
  transform: scale(1.1) rotate(5deg);
}

[data-scope="service-details"] .sd-timeline-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

[data-scope="service-details"] .sd-timeline-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* ============================================ */
/* FEATURES GRID (Card background #3E618B)      */
/* ============================================ */
[data-scope="service-details"] .sd-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

[data-scope="service-details"] .sd-feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--sd-accent-2);    /* #3E618B */
  border-radius: 20px;
  border: 1px solid transparent;
  transition: all 0.4s ease;
  opacity: 0;
  animation: sd-fade-up 0.6s ease forwards;
  color: white;
}

[data-scope="service-details"] .sd-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--sd-shadow-hover);
  border-color: var(--sd-accent);
}

[data-scope="service-details"] .sd-feature-icon-large {
  width: 65px;
  height: 65px;
  background: rgba(255,255,255,0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: white;
  font-size: 2rem;
  transition: all 0.3s ease;
}

[data-scope="service-details"] .sd-feature-item:hover .sd-feature-icon-large {
  background: var(--sd-accent);      /* #26BAF1 */
  transform: scale(1.1);
}

[data-scope="service-details"] .sd-feature-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

[data-scope="service-details"] .sd-feature-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* ============================================ */
/* BENEFITS GRID (2-Column) – Card bg #3E618B  */
/* ============================================ */
[data-scope="service-details"] .sd-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

[data-scope="service-details"] .sd-benefit-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--sd-accent-2);    /* #3E618B */
  border-radius: 20px;
  border: 1px solid transparent;
  transition: all 0.4s ease;
  opacity: 0;
  animation: sd-fade-up 0.6s ease forwards;
  position: relative;
  overflow: hidden;
  color: white;
}

[data-scope="service-details"] .sd-benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--sd-accent-glow), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

[data-scope="service-details"] .sd-benefit-card:hover::after {
  opacity: 1;
}

[data-scope="service-details"] .sd-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sd-shadow-hover);
  border-color: var(--sd-accent);
}

[data-scope="service-details"] .sd-benefit-icon {
  width: 55px;
  height: 55px;
  background: rgba(255,255,255,0.15);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

[data-scope="service-details"] .sd-benefit-card:hover .sd-benefit-icon {
  background: var(--sd-accent);      /* #26BAF1 */
  transform: rotate(5deg);
}

[data-scope="service-details"] .sd-benefit-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

[data-scope="service-details"] .sd-benefit-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* ============================================ */
/* FAQ ACCORDION – White cards, black text      */
/* ============================================ */
[data-scope="service-details"] .sd-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

[data-scope="service-details"] .sd-faq-item {
  background: var(--sd-bg-light);
  border-radius: 16px;
  border: 1px solid var(--sd-border);
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  animation: sd-fade-up 0.6s ease forwards;
}

[data-scope="service-details"] .sd-faq-item:hover {
  border-color: var(--sd-accent-2);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

[data-scope="service-details"] .sd-faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #000000;
  transition: all 0.3s ease;
  user-select: none;
}

[data-scope="service-details"] .sd-faq-question:hover {
  color: var(--sd-accent-2);
  background: rgba(62,97,139,0.02);
}

[data-scope="service-details"] .sd-faq-question i {
  color: var(--sd-accent);
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

[data-scope="service-details"] .sd-faq-item.active .sd-faq-question i {
  transform: rotate(45deg);
}

[data-scope="service-details"] .sd-faq-answer {
  max-height: 0;
  padding: 0 1.5rem;
  color: #000000;
  line-height: 1.7;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

[data-scope="service-details"] .sd-faq-item.active .sd-faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem;
}

/* ============================================ */
/* CTA SECTION                                  */
/* ============================================ */
[data-scope="service-details"] .sd-cta {
  background: linear-gradient(135deg, var(--sd-accent-2) 0%, #1a2235 100%);
  border-radius: 40px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 3rem 0;
}

[data-scope="service-details"] .sd-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--sd-accent-glow), transparent 60%);
  animation: sd-rotate-glow 20s linear infinite;
}

@keyframes sd-rotate-glow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

[data-scope="service-details"] .sd-cta-content {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: sd-fade-up 0.6s ease forwards;
}

[data-scope="service-details"] .sd-cta h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

[data-scope="service-details"] .sd-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

[data-scope="service-details"] .sd-cta .sd-btn-primary {
  background: white;
  color: var(--sd-accent-2);
  border-color: white;
}

[data-scope="service-details"] .sd-cta .sd-btn-primary:hover {
  background: transparent;
  color: white;
  border-color: white;
}

[data-scope="service-details"] .sd-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* ============================================ */
/* ANIMATIONS                                   */
/* ============================================ */
@keyframes sd-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */
@media (max-width: 1200px) {
  [data-scope="service-details"] .sd-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 968px) {
  [data-scope="service-details"] .sd-hero-content { grid-template-columns: 1fr; gap: 2rem; }
  [data-scope="service-details"] .sd-timeline { grid-template-columns: 1fr; }
  [data-scope="service-details"] .sd-benefits-grid { grid-template-columns: 1fr; }
  [data-scope="service-details"] .sd-faq-grid { grid-template-columns: 1fr; }
  [data-scope="service-details"] .sd-hero h1 { font-size: 2.5rem; }
  [data-scope="service-details"] .sd-section-title { font-size: 2rem; }
  [data-scope="service-details"] .sd-cta h2 { font-size: 2.2rem; }
}

@media (max-width: 640px) {
  [data-scope="service-details"] .sd-container { padding: 0 1.5rem; }
  [data-scope="service-details"] .sd-hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  [data-scope="service-details"] .sd-features-grid { grid-template-columns: 1fr; }
  [data-scope="service-details"] .sd-process { padding: 2rem 1.5rem; }
  [data-scope="service-details"] .sd-cta { padding: 2.5rem 1.5rem; }
  [data-scope="service-details"] .sd-cta h2 { font-size: 1.8rem; }
  [data-scope="service-details"] .sd-hero h1 { font-size: 2rem; }
  [data-scope="service-details"] .sd-hero-cta { flex-direction: column; }
  [data-scope="service-details"] .sd-cta-buttons { flex-direction: column; }
}

