/* ==========================================================================
   Social Media & Influencer Marketing — page-specific overrides
   Loaded after service-page.css; overrides hero background image only.
   ========================================================================== */

.ec-hero {
  background-image: url("../img/service/social-media/Social-Media-Influencer-Marketing-Banner.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #000;
}

.sm-process-figure {
  margin: 40px 0 0;
  padding: 0;
  display: none;
}

.sm-process-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .sm-process-figure {
    display: block;
  }
}

/* --------------------------------------------------------------------------
   Process Section
   -------------------------------------------------------------------------- */

.sm-process-section {
  padding: 64px 0;
  background: #fff;
}

.sm-process-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.sm-process-section__title {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #079C4A;
  margin: 0;
  line-height: 1.2;
}

.sm-process-section__subtitle {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: #000;
  margin: 0;
}

/* mobile + tablet */
.sm-process-section__figure {
  width: 100%;
  max-width: 900px;
  margin: 12px 0;
  margin-left: -5px;
  padding: 0;
}

/* desktop — adjust margin-left here independently */
@media (min-width: 1024px) {
  .sm-process-section__figure {
    margin-left: 30px;
  }
}

.sm-process-section__img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.sm-process-section__figure .sm-process-section__img--desktop { display: none; }
.sm-process-section__figure .sm-process-section__img--mobile  { display: block; }

@media (min-width: 1024px) {
  .sm-process-section__figure .sm-process-section__img--desktop { display: block; }
  .sm-process-section__figure .sm-process-section__img--mobile  { display: none; }
}

/* --------------------------------------------------------------------------
   Mobile Process Flow Card (320–767px)
   -------------------------------------------------------------------------- */

.sm-mobile-flow {
  width: 100%;
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .sm-mobile-flow {
    display: none;
  }
}

.sm-mobile-flow__card {
  width: 100%;
  max-width: 400px;
  background: linear-gradient(165deg, #123c2c 0%, #1f6b4c 100%);
  border-radius: 28px;
  padding: 40px 22px 48px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  box-sizing: border-box;
}

.sm-mobile-flow__heading {
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 22px;
}

.sm-mobile-flow__heading-em {
  text-decoration: underline;
}

.sm-mobile-flow__item {
  background: #ffffff;
  color: #16241d;
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 18px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.sm-mobile-flow__item--red {
  color: #d8483c;
  border: 2px solid #d8483c;
}

.sm-mobile-flow__item--green {
  color: #1fae6b;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid #1fae6b;
}

.sm-mobile-flow__item--label {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.sm-mobile-flow__item--desc {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.45;
  padding: 18px 20px;
  border-radius: 16px;
}

.sm-mobile-flow__connector {
  display: flex;
  justify-content: center;
  position: relative;
}

.sm-mobile-flow__connector--sm {
  height: 20px;
}

.sm-mobile-flow__connector--lg {
  height: 34px;
}

.sm-mobile-flow__connector::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-left: 2px dashed rgba(255, 255, 255, 0.55);
}

.sm-mobile-flow__arrow {
  position: absolute;
  top: 70%;
  left: 50.1%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  line-height: 1;
  z-index: 1;
}

.sm-mobile-flow__arrow--lg {
  top: 70%;
  color: rgba(255, 255, 255, 1);
  font-size: 22px;
}

.sm-mobile-flow__logo-frame {
  display: flex;
  justify-content: center;
  padding: 16px;
  border: 1.5px dashed rgba(255, 255, 255, 0.5);
  border-radius: 28px;
}

.sm-mobile-flow__logo-box {
  width: 118px;
  height: 118px;
  background: #123b2c;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.sm-mobile-flow__logo-img {
  width: 90px;
  height: auto;
  object-fit: contain;
  display: block;
}

.sm-mobile-flow__plus {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  color: #22c55e;
  font-weight: 800;
  font-size: 16px;
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
}

.sm-mobile-flow__closing {
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  border: 1.5px dashed rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.55;
  background: rgba(255, 255, 255, 0.06);
}

/* -------------------------------------------------------------------------- */

.sm-process-section__descriptor {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #6D6D6D;
  margin: 0;
  max-width: 620px;
  line-height: 1.6;
}

.sm-process-section__img--desktop {
  margin-left: -25px; /* adjust px value as needed */
}
