/* ============================================================================
   GLOBAL CSS FOR SEO SERVICES WIDGETS
   ============================================================================ */

:root {
  --seo-primary: #61CE70;
  --seo-primary-dark: #4db85c;
  --seo-primary-light: rgba(97, 206, 112, 0.12);
  --seo-secondary: #111827;
  --seo-secondary-light: #1f2937;
  --seo-text-dark: #111827;
  --seo-text-body: #374151;
  --seo-text-muted: #6b7280;
  --seo-white: #ffffff;
  --seo-border: rgba(97, 206, 112, 0.2);
  --seo-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --seo-shadow-hover: 0 12px 40px rgba(97, 206, 112, 0.2);
  --seo-radius: 12px;
  --seo-radius-lg: 20px;
  --seo-container: 1200px;
  --seo-font-heading: 'Oswald', sans-serif;
  --seo-font-sub: 'Montserrat', sans-serif;
  --seo-font-body: 'Poppins', sans-serif;
}

/* ===================== RESET & BASE ===================== */
.da-seo-section,
.da-seo-section *,
.da-seo-section *::before,
.da-seo-section *::after {
  box-sizing: border-box;
}

/* ===================== SHARED SECTION STYLES ===================== */
.da-seo-section {
  padding: 90px 0;
  font-family: var(--seo-font-body);
  color: var(--seo-text-body);
  background: var(--seo-white);
  line-height: 1.7;
}

.da-seo-section-alt {
  background: #f9fafb;
}

.da-seo-section-dark {
  background: var(--seo-secondary);
}

.da-seo-container {
  max-width: var(--seo-container);
  margin: 0 auto;
  padding: 0 24px;
}

.da-seo-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.da-seo-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--seo-font-sub);
  font-size: 12px;
  font-weight: 700;
  color: var(--seo-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.da-seo-section-tag::before,
.da-seo-section-tag::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--seo-primary);
  opacity: 0.4;
  width: 24px;
}

.da-seo-section-title {
  font-family: var(--seo-font-heading);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--seo-text-dark);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.da-seo-section-title span {
  color: var(--seo-primary);
}

.da-seo-section-dark .da-seo-section-title {
  color: var(--seo-white);
}

.da-seo-section-desc {
  font-family: var(--seo-font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--seo-text-muted);
  line-height: 1.8;
}

.da-seo-section-dark .da-seo-section-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* Fade-up animation helper */
.da-seo-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.da-seo-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fix visibility in Elementor Edit Mode */
body.elementor-editor-active .da-seo-fade-up {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 640px) {
  .da-seo-section {
    padding: 60px 0;
  }
}
/* ===================== ABOUT SEO ===================== */
.da-seo-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.da-seo-about-img-wrap {
  position: relative;
  border-radius: var(--seo-radius-lg, 16px);
  overflow: hidden;
}
.da-seo-about-img-wrap img {
  width: 100%;
  border-radius: var(--seo-radius-lg, 16px);
  display: block;
}
.da-seo-about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e8f5ea 0%, #d4f0d8 100%);
  border-radius: var(--seo-radius-lg, 16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 2px dashed rgba(97, 206, 112, 0.4);
  position: relative;
  overflow: hidden;
}
.da-seo-about-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(97, 206, 112, 0.15) 0%, transparent 60%);
}
.da-seo-about-img-icon {
  width: 80px;
  height: 80px;
  background: var(--seo-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--seo-white);
  box-shadow: 0 8px 24px rgba(97, 206, 112, 0.4);
}
.da-seo-about-img-label {
  font-family: var(--seo-font-sub);
  font-size: 13px;
  font-weight: 600;
  color: var(--seo-primary-dark);
  letter-spacing: 0.5px;
}
.da-seo-about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--seo-secondary);
  color: var(--seo-white);
  padding: 14px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.da-seo-about-badge-num {
  font-family: var(--seo-font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--seo-primary);
  line-height: 1;
}
.da-seo-about-badge-text {
  font-family: var(--seo-font-sub);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}
.da-seo-about-content .da-seo-section-tag {
  justify-content: flex-start;
}
.da-seo-about-content .da-seo-section-tag::before {
  display: none;
}
.da-seo-about-content .da-seo-section-title {
  text-align: left;
}
.da-seo-about-content .da-seo-section-desc {
  text-align: left;
  margin-bottom: 28px;
}
.da-seo-benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.da-seo-benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--seo-font-sub);
  font-size: 13px;
  font-weight: 600;
  color: var(--seo-text-dark);
}
.da-seo-section-dark .da-seo-benefit-item {
  color: var(--seo-white);
}
.da-seo-benefit-item i,
.da-seo-benefit-item svg {
  color: var(--seo-primary);
  fill: var(--seo-primary);
  font-size: 14px;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .da-seo-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
/* ===================== OUR SEO SERVICES ===================== */
.da-seo-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.da-seo-service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(97, 206, 112, 0.15);
  border-radius: var(--seo-radius);
  padding: 28px 22px;
  transition: all 0.35s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.da-seo-service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--seo-primary), transparent);
  transform: scaleX(0);
  transition: transform 0.35s;
}

.da-seo-service-card:hover {
  background: rgba(97, 206, 112, 0.06);
  border-color: rgba(97, 206, 112, 0.35);
  transform: translateY(-4px);
}

.da-seo-service-card:hover::after {
  transform: scaleX(1);
}

.da-seo-service-num {
  font-family: var(--seo-font-heading);
  font-size: 42px;
  font-weight: 700;
  color: rgba(97, 206, 112, 0.1);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.35s;
}

.da-seo-service-card:hover .da-seo-service-num {
  color: rgba(97, 206, 112, 0.2);
}

.da-seo-service-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(97, 206, 112, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--seo-primary);
  margin-bottom: 16px;
  transition: all 0.35s;
}

.da-seo-service-card:hover .da-seo-service-icon {
  background: var(--seo-primary);
  color: var(--seo-secondary);
}

.da-seo-service-card-title {
  font-family: var(--seo-font-sub);
  font-size: 15px;
  font-weight: 700;
  color: var(--seo-white);
  margin-bottom: 10px;
}

.da-seo-service-card-desc {
  font-family: var(--seo-font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.da-seo-service-icon i,
.da-seo-service-icon svg {
  color: inherit;
  fill: currentColor;
  width: 20px;
  height: 20px;
}

/* Add light theme overrides if the section is light */
.da-seo-section-alt .da-seo-service-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.da-seo-section-alt .da-seo-service-card-title {
  color: var(--seo-text-dark);
}

.da-seo-section-alt .da-seo-service-card-desc {
  color: var(--seo-text-muted);
}
/* ===================== WHY IT MATTERS ===================== */
.da-seo-why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.da-seo-why-card {
  background: var(--seo-white);
  border: 1px solid rgba(97, 206, 112, 0.1);
  border-radius: var(--seo-radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.da-seo-why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--seo-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.da-seo-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-color: rgba(97, 206, 112, 0.3);
}
.da-seo-why-card:hover::before {
  transform: scaleX(1);
}
.da-seo-why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(97, 206, 112, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: var(--seo-primary);
  transition: all 0.35s;
}
.da-seo-why-card:hover .da-seo-why-icon {
  background: var(--seo-primary);
  color: var(--seo-white);
}
.da-seo-why-card-title {
  font-family: var(--seo-font-sub);
  font-size: 15px;
  font-weight: 700;
  color: var(--seo-text-dark);
  margin-bottom: 10px;
}
.da-seo-why-card-desc {
  font-family: var(--seo-font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--seo-text-muted);
  line-height: 1.7;
}
.da-seo-why-icon i, .da-seo-why-icon svg {
  color: inherit; fill: currentColor; width: 26px; height: 26px;
}

/* ===================== PROCESS ===================== */
.da-seo-process-timeline {
  position: relative;
}
.da-seo-process-line {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--seo-primary), #112B16);
  opacity: 0.2;
}
.da-seo-process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
}
.da-seo-process-step {
  text-align: center;
  position: relative;
}
.da-seo-process-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--seo-secondary);
  border: 3px solid rgba(97, 206, 112, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
  cursor: pointer;
}
.da-seo-process-step:hover .da-seo-process-dot {
  border-color: var(--seo-primary);
  background: var(--seo-primary);
  box-shadow: 0 0 0 6px rgba(97, 206, 112, 0.15);
}
.da-seo-process-dot-num {
  font-family: var(--seo-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--seo-primary);
  transition: color 0.3s;
}
.da-seo-process-step:hover .da-seo-process-dot-num {
  color: var(--seo-secondary);
}
.da-seo-process-step-title {
  font-family: var(--seo-font-sub);
  font-size: 13px;
  font-weight: 700;
  color: var(--seo-white);
  margin-bottom: 8px;
}
.da-seo-process-step-desc {
  font-family: var(--seo-font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ===================== WHY CHOOSE US ===================== */
.da-seo-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.da-seo-trust-card {
  background: var(--seo-white);
  border: 1px solid rgba(97, 206, 112, 0.1);
  border-radius: var(--seo-radius);
  padding: 28px 22px;
  transition: all 0.35s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}
.da-seo-trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--seo-primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s;
}
.da-seo-trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.da-seo-trust-card:hover::before {
  transform: scaleY(1);
}
.da-seo-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(97, 206, 112, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--seo-primary);
  margin-bottom: 16px;
  transition: all 0.35s;
}
.da-seo-trust-card:hover .da-seo-trust-icon {
  background: var(--seo-primary);
  color: var(--seo-white);
}
.da-seo-trust-title {
  font-family: var(--seo-font-sub);
  font-size: 14px;
  font-weight: 700;
  color: var(--seo-text-dark);
  margin-bottom: 8px;
}
.da-seo-trust-desc {
  font-family: var(--seo-font-body);
  font-size: 12.5px;
  color: var(--seo-text-muted);
  line-height: 1.7;
}
.da-seo-trust-icon i, .da-seo-trust-icon svg {
  color: inherit; fill: currentColor; width: 20px; height: 20px;
}

/* ===================== INDUSTRIES ===================== */
.da-seo-industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.da-seo-industry-card {
  background: var(--seo-white);
  border: 1px solid rgba(97, 206, 112, 0.1);
  border-radius: var(--seo-radius);
  padding: 28px 16px;
  text-align: center;
  transition: all 0.35s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  cursor: pointer;
}
.da-seo-industry-card:hover {
  border-color: var(--seo-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(97, 206, 112, 0.1);
}
.da-seo-industry-icon {
  width: 56px;
  height: 56px;
  background: #f9fafb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: var(--seo-primary);
  transition: all 0.35s;
}
.da-seo-industry-card:hover .da-seo-industry-icon {
  background: var(--seo-primary);
  color: var(--seo-white);
}
.da-seo-industry-title {
  font-family: var(--seo-font-sub);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--seo-text-dark);
}
.da-seo-industry-icon i, .da-seo-industry-icon svg {
  color: inherit; fill: currentColor; width: 24px; height: 24px;
}

/* ===================== STATS ===================== */
.da-seo-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.da-seo-stat-card {
  text-align: center;
}
.da-seo-stat-num {
  font-family: var(--seo-font-heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--seo-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.da-seo-stat-label {
  font-family: var(--seo-font-sub);
  font-size: 15px;
  font-weight: 600;
  color: var(--seo-text-dark);
}

/* ===================== TESTIMONIALS ===================== */
.da-seo-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.da-seo-testimonial-card {
  background: var(--seo-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--seo-radius);
  padding: 32px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  position: relative;
}
.da-seo-testimonial-quote {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 1;
  color: rgba(97, 206, 112, 0.15);
}
.da-seo-stars {
  color: #ffb400;
  font-size: 14px;
  margin-bottom: 16px;
}
.da-seo-testimonial-text {
  font-family: var(--seo-font-body);
  font-size: 14.5px;
  color: var(--seo-text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.da-seo-testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.da-seo-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--seo-primary-dark);
  color: var(--seo-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--seo-font-sub);
  font-weight: 700;
  font-size: 16px;
}
.da-seo-author-name {
  font-family: var(--seo-font-sub);
  font-size: 15px;
  font-weight: 700;
  color: var(--seo-text-dark);
}
.da-seo-author-role {
  font-family: var(--seo-font-body);
  font-size: 12px;
  color: var(--seo-text-muted);
}
.da-seo-stars i, .da-seo-stars svg {
  color: inherit; fill: currentColor; width: 14px; height: 14px; margin-right: 2px;
}
/* ===================== FAQ ===================== */
.da-seo-faq-grid {
  max-width: 800px;
  margin: 0 auto;
}
.da-seo-faq-item {
  background: var(--seo-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--seo-radius);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.da-seo-faq-question {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--seo-white);
  transition: all 0.3s;
}
.da-seo-faq-question span {
  font-family: var(--seo-font-sub);
  font-size: 16px;
  font-weight: 700;
  color: var(--seo-text-dark);
  transition: color 0.3s;
}
.da-seo-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(97, 206, 112, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--seo-primary);
  font-size: 12px;
  transition: all 0.3s;
}
.da-seo-faq-question:hover span {
  color: var(--seo-primary);
}
.da-seo-faq-question:hover .da-seo-faq-icon {
  background: var(--seo-primary);
  color: var(--seo-white);
}
.da-seo-faq-item.active .da-seo-faq-question span {
  color: var(--seo-primary);
}
.da-seo-faq-item.active .da-seo-faq-icon {
  background: var(--seo-primary);
  color: var(--seo-white);
  transform: rotate(45deg);
}
.da-seo-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  background: #fcfcfc;
}
.da-seo-faq-answer-inner {
  padding: 0 24px 24px;
  font-family: var(--seo-font-body);
  font-size: 14.5px;
  color: var(--seo-text-muted);
  line-height: 1.7;
}
.da-seo-faq-icon i, .da-seo-faq-icon svg {
  color: inherit; fill: currentColor; width: 12px; height: 12px;
}
