
/* ===== SHARED / BASE ===== */

/* --- Buttons --- */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: #1b0c25;
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: var(--color-text-on-dark);
  border: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: background-position 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(160% 200% at 50% -60%, var(--color-secondary) 0%, rgba(245, 158, 11, 0) 20%, rgba(255, 61, 122, 0.6) 38%, var(--color-black) 72%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  &:hover {
    background-position: 100% 50%;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
    color: var(--color-white);
    transform: translateY(-1px);

    &::before {
      opacity: 1;
    }

    .btn-hero-icon i {
      rotate: 0deg;
    }
  }

  .btn-hero-icon {
    width: 30px;
    height: 30px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-main);
    color: var(--color-text-on-dark);

    i {
      font-size: 18px;
      rotate: -45deg;
      transition: all 0.3s ease;
    }
  }

  @media (max-width: 576px) {
    font-size: 14px;
    padding: 12px 16px;
    gap: 12px;

    .btn-hero-icon {
      width: 26px;
      height: 26px;
      font-size: 16px;
    }
  }
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px 10px 10px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-primary-dark);
  color: var(--color-text-on-dark);
  background: var(--color-primary-dark);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;

  i {
    font-size: 14px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: var(--color-white);
    color: var(--color-primary-dark);
  }

  &:hover {
    color: var(--color-white);
    background: var(--color-gray-600);
    border: 1.5px solid var(--color-gray-600);

    i {
      background: var(--color-white);
      color: var(--color-main);
    }
  }

  @media (max-width: 576px) {
    font-size: 14px;
    padding: 8px 16px 8px 8px;
    gap: 12px;

    i {
      width: 26px;
      height: 26px;
      font-size: 16px;
    }
  }
}

/* --- Badges --- */
/* .badge {
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  margin-bottom: 20px;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-text-main);

  &.light {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
} */


.btn-phone-lg {
  padding: 0;
  font-size: 48px;
  display: flex;
  align-items: center;
  line-height: normal;
  letter-spacing: -2px;

  span {
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 300;
    color: var(--color-secondary);
    background: var(--color-primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  }

  i {
    font-size: 30px;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-gradient);
    color: var(--color-text-on-dark);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  }

  &:hover {
    span {
      transform: translateX(6px);
    }
    i {
      animation: phone-ring 1s ease-in-out infinite;
    }
  }

  @media (max-width: 768px) {
    font-size: 32px;

    i {
      width: 36px;
      height: 36px;
      font-size: 22px;
    }
    span {
      letter-spacing: -1px;
    }
  }

  @media (max-width: 576px) {
    font-size: 26px;

    i {
      width: 32px;
      height: 32px;
      font-size: 18px;
    }
  }

  @media (hover: none) {
    &:hover {
      i {
        animation: none;
      }
      span {
        transform: none;
      }
    }
  }
}

.btn-float {
  position: absolute;
  bottom: 50px;
  z-index: 3;

  @media (max-width: 768px) {
    position: absolute;
    bottom: 16px;
    z-index: 3;
  }
}

.btn-submit {
  background-color: var(--color-white);
  color: var(--color-black);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  transition: all 0.3s ease;

  &:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    transform: translateY(-2px);
  }
}

.btn-submit-black {
  background-color: var(--color-main);
  color: var(--color-white);
  font-weight: 600;
  padding: 12px 35px;
  border-radius: 30px;
  border: none;
  transition: all 0.3s ease;
  font-size: 16px;
  display: inline-block;

  &:hover {
    background-color: var(--color-black);
    transform: translateY(-2px);
    color: var(--color-white);
  }
}

/* --- Common UI Elements --- */
.point {
  background: var(--color-gray-200);
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 15px;

  i {
    color: var(--color-primary-dark);
  }
}

.check-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;

  li {
    display: flex;
    align-items: flex-start;
    gap: 8px;

    i {
      color: var(--color-primary);
      font-size: 18px;
      line-height: 1.4;
      margin-top: 2px;
    }
  }
}

ol.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;

  li + li {
    padding-left: 10px;

    &::before {
      display: inline-block;
      padding-right: 10px;
      color: var(--color-gray-500);
      content: "/";
    }
  }

  @media (max-width: 768px) {
    margin-top: 10px;
    padding: 16px 0;

    li {
      display: inline-block;
    }
    
    h1 {
      font-size: 28px;
    }
  }
}

.page {
  padding: 60px 0;

  h2 {
    font-size: 24px !important;
    font-weight: 500;
  }
  h3 {
    font-size: 20px !important;
    font-weight: 500;
  }
  p {
    font-size: 16px;
  }

  @media (max-width: 768px) {
    padding: 40px 0;
  }
}

.section-dark-bg {
  background-color: var(--color-main);
  padding: 80px 0;
  
  .section-title {
    h2, p {
      color: var(--color-white);
    }
  }
}

/* ===== HERO SECTIONS ===== */

/* --- Home Hero --- */
#hero {
  width: 100%;
  height: 100vh;
  min-height: 700px;
  position: relative;
  color: var(--color-text-on-dark);

  .hero-content {
    position: relative;
    z-index: 2;
  }

  h2 {
    color: #e0e4ef;
    margin: 0 0 15px;
    font-size: 20px;
  }

  h1 {
    margin: 0 0 15px;
    font-size: 56px;
    font-weight: 600;
    line-height: 64px;
    letter-spacing: -1px;
    color: var(--color-main);
  }

  p {
    font-size: 20px;
    letter-spacing: .5px;
    text-wrap-style: pretty;
    width: 80%;
    color: var(--color-gray-600);
  }

  .badge {
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    margin-bottom: 20px;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-text-main);
  }

  .hero-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    max-width: 1300px;
    height: 100vh;
    min-height: 700px;
    padding: 20px;
    z-index: 0;
    animation: revealRightToLeft 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;

    .image {
      position: relative;
      height: 100%;
      border-radius: 18px;
      overflow: hidden;

      &::before {
        content: "";
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, transparent 100%);
        opacity: 0.8;
        position: absolute;
        inset: 0;
        height: 16%;
        min-height: 150px;
        z-index: 1;
      }

      &::after {
        content: "";
        background: linear-gradient(0deg, rgba(255, 255, 255, 1) 50%, transparent 90%);
        opacity: 0.8;
        position: absolute;
        inset: auto auto 0 0;
        height: 24%;
        min-height: 150px;
        width: 100%;
        z-index: 1;
      }

      img {
        object-fit: cover;
        height: 100%;
        width: 100%;
      }
    }
  }

  @media (max-width: 992px) {
    min-height: auto;

    p {
      width: 100%;
    }

    .hero-img {
      width: 100%;
      height: 340px;
      max-height: none;
      padding: 0;

      .image {
        padding-top: 70%;
        
        &::before {
          height: 50%;
          min-height: 150px;
        }

        img {
          height: 400px;
        }
      }
    }
  }

  @media (max-width: 768px) {
    h1 {
      font-size: 32px;
      line-height: 40px;
    }
    h2 {
      font-size: 18px;
      line-height: 24px;
    }
    p {
      width: 100%;
      font-size: 16px;
    }
    .get-quote {
      display: none;
    }
  }

  @media (max-width: 576px) {
    padding-top: calc(var(--header-height) + 20px);

    .hero-content {
      text-align: left;
    }
    .hero-status {
      font-size: 12px;
    }
  }
}

.hero-slider .swiper-slide {
  height: 100%;
  width: 100%;
}

@keyframes revealRightToLeft {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes phone-ring {
  0% { transform: rotate(0deg); }
  15% { transform: rotate(12deg); }
  30% { transform: rotate(-10deg); }
  45% { transform: rotate(8deg); }
  60% { transform: rotate(-6deg); }
  75% { transform: rotate(4deg); }
  100% { transform: rotate(0deg); }
}

/* --- Hero Inner (Pages) --- */
.hero-inner {
  position: relative;
  padding: 150px 0 60px;
  min-height: 500px;
  align-content: end;
  overflow: clip;

  .image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;

    img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(228deg, #1113184a 0%, #181e29 100%);
      z-index: 1;
    }
  }

  .badge {
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    margin-bottom: 20px;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-text-on-dark);
  }

  h1 {
    margin: 0;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 500;
    color: var(--color-text-on-dark);
    text-wrap-style: balance;

    &.wide {
      font-size: 48px;
      font-weight: 700;
    }

    span {
      font-weight: 600;
      color: var(--color-primary-dark);
    }
  }

  &.h-auto {
    min-height: auto;
  }

  &.dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-hero-overlay);
    z-index: -1;
  }

  .text-white-80 {
    color: rgba(255, 255, 255, 0.88);
  }

  .hero-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;

    li {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
      color: var(--color-text-on-dark);
      font-size: 18px;

      i {
        color: var(--color-primary);
        font-size: 22px;
        flex-shrink: 0;
      }
    }
  }

  .hero-tagline {
    font-size: 15px;
    letter-spacing: 0.3px;
  }

  .btn-phone-lg {
    padding: 12px 20px;
    font-size: 18px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--color-white);

    span {
      background: none;
      -webkit-text-fill-color: inherit;
      color: inherit;
    }

    &:hover {
      background: var(--color-white);
      border-color: var(--color-white);
      color: var(--color-main);

      span {
        color: var(--color-main);
      }
    }
  }

  @media (max-width: 992px) {
    padding: 120px 0 30px;
  }

  @media (max-width: 768px) {
    .d-flex {
      display: block !important;
    }
    h1  {
      font-size: 34px;
    }
  }
}

.inner-hero {
  padding: 120px 0 60px;
  background: var(--color-white);

  .inner-hero-img {
    height: 100%;
    border-radius: 20px;
    width: 100%;
    height: 440px;
    object-fit: cover;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);

    .main-img {
      border-radius: 20px;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .rated {
      position: absolute;
      right: 15px;
      bottom: 15px;
      max-width: 160px;
    }
  }

  @media (max-width: 768px) {
    padding-top: 140px;

    .inner-hero-img {
      height: 260px;
    }
  }
}

/* --- Hero Rotating Text --- */
.hero-rotating-text {
  height: 50px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--color-white);
  box-shadow: rgba(108, 113, 128, 0.08) 0px 2px 4px 0px, rgba(108, 113, 128, 0.07) 0px 7px 7px 0px, rgba(108, 113, 128, 0.04) 0px 17px 10px 0px, rgba(108, 113, 128, 0.01) 0px 29px 12px 0px, rgba(108, 113, 128, 0) 0px 46px 13px 0px;
  border: 5px solid #fafafa;

  .static-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-main);
    white-space: nowrap;
  }
}

.dynamic-text-list {
  position: relative;
  height: 100%;
  width: 186px;
  flex-grow: 1;

  li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-main);

    &.active {
      opacity: 1;
      transform: translateY(0);
      z-index: 2;
    }

    &.exit {
      opacity: 0;
      transform: translateY(-100%);
      z-index: 1;
    }
  }
}

/* ===== SECTIONS ===== */

/* --- Trust --- */
.trust {
  .trust-panel {
    border-radius: 34px;
    padding: 14px;
    background: linear-gradient(135deg, #0b0e14 0%, #131824 50%, #0b0e14 100%);
    border: 8px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
    overflow: hidden;
  }

  .trust-media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    padding: 34px;
    min-height: 520px;
    background: radial-gradient(120% 110% at 20% 10%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 55%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);

    &::before {
      content: "";
      position: absolute;
      inset: -40px;
      background: radial-gradient(40% 40% at 30% 65%, rgba(255, 201, 94, 0.38) 0%, rgba(255, 201, 94, 0) 70%),
        radial-gradient(42% 42% at 72% 78%, rgba(255, 78, 145, 0.28) 0%, rgba(255, 78, 145, 0) 72%);
      filter: blur(16px);
      opacity: 0.7;
      pointer-events: none;
    }

    .trust-list li::before {
      content: "+";
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 14px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.16);
      color: rgba(255, 255, 255, 0.88);
      flex: 0 0 auto;
    }
  }

  .trust-media-inner {
    position: relative;
    z-index: 1;
    max-width: 520px;
  }

  .trust-badge {
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 6px 14px;
    border: 1px solid #ffffff;
    color: var(--color-white);
    box-shadow: rgba(0, 0, 0, 0.07) 0px 2px 5px 0px, rgba(0, 0, 0, 0.06) 0px 8px 8px 0px, rgba(0, 0, 0, 0.04) 0px 19px 11px 0px, rgba(0, 0, 0, 0.01) 0px 33px 13px 0px, rgba(0, 0, 0, 0) 0px 52px 15px 0px;
  }

  .trust-title {
    margin: 16px 0 10px;
    color: rgba(255, 255, 255, 0.98);
    font-size: 40px;
    font-weight: 650;
    line-height: 1.2;
  }

  .trust-lead {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.8;
  }

  .trust-need {
    margin-top: 18px;
  }

  .trust-kicker {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    font-weight: 700;
  }

  .trust-media-frame {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 24px;
    height: 240px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(8, 10, 15, 0.82) 55%, rgba(0, 0, 0, 0.66) 100%);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .trust-card {
    border-radius: 16px;
    padding: 34px;
    background: linear-gradient(180deg, rgba(26, 30, 39, 0.98) 0%, rgba(12, 14, 19, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
    color: rgba(255, 255, 255, 0.92);
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
  }

  .trust-card-title {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.96);
  }

  .trust-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    gap: 12px;
    color: var(--color-white);

    li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 14px;
      line-height: 1.6;
    }
  }

  .trust-list-on-card li {
    &::before {
      content: none;
    }

    i {
      font-size: 24px;
      line-height: 1.2;
      margin-top: -4px;
      color: var(--color-primary);
      flex: 0 0 auto;
    }
  }

  .trust-button {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    border-radius: 999px;
    background: var(--color-white);
    color: var(--color-main);
    font-weight: 650;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);

    &:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
    }
  }

  .trust-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.7;
    text-wrap-style: balance;
  }

  @media (max-width: 992px) {
    .trust-media {
      min-height: 460px;
    }
    .trust-title {
      font-size: 34px;
    }
  }

  @media (max-width: 576px) {
    .trust-panel {
      padding: 10px;
      border-width: 6px;
      border-radius: 26px;
    }
    .trust-media,
    .trust-card {
      padding: 22px;
      border-radius: 20px;
    }
    .trust-media-frame {
      left: 18px;
      right: 18px;
      height: 210px;
      border-radius: 18px;
    }
  }
}

/* --- Features --- */
.feature-frame {
  padding: 30px;
  border-radius: 34px;
  background: var(--color-white);
  border: 8px solid rgb(237 237 237 / 90%);
  overflow: hidden;

  .image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    border: 8px solid rgb(247 247 247);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
    overflow: hidden;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .price-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);

    span {
      font-size: 14px;
      font-weight: 600;
      color: var(--color-text-muted);
    }

    .price {
      font-size: 50px;
      letter-spacing: -1px;
      line-height: normal;
      font-weight: 600;
      color: var(--color-text-main);
      margin: 0;
    }
  }
}

.feature-center {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.feature-grid-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary-light);
  color: var(--color-main);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.feature-grid-item {
  h3 {
    font-weight: 600;
    margin-bottom: 8px;
  }

  p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 0;
  }
}

.features {
  .feature-card {
    position: relative;
    height: 100%;
    padding: 28px;
    border-radius: 16px;
    background-color: var(--color-white);
    -webkit-box-shadow: 0 6px 24px -2px rgb(119 139 165 / 30%);
    box-shadow: 0 6px 24px -2px rgb(119 139 165 / 30%);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    background-image: url('../img/cubes.png');

    &:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
      background: var(--color-primary-gradient);
      background-image: url('../img/cubes.png'), var(--color-primary-gradient);

      h3 {
        color: var(--color-white);
      }
      p, ul li {
        color: rgba(255, 255, 255, 0.9);
      }
      .feature-icon {
        background: rgba(255, 255, 255, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.35);
      }
    }

    h3 {
      font-size: 24px;
      font-weight: 500;
      margin-bottom: 10px;
    }

    p, ul li {
      font-size: 18px;
      line-height: 1.4;
      margin-bottom: 0;
      color: var(--color-text-body);
      text-wrap-style: pretty;
    }
  }

  .feature-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--color-primary-gradient);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 36px;
    margin-bottom: 28px;
  }
}

/* --- Services --- */
.services {
  .box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    display: block;
    height: 340px;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    }

    h3 {
      position: absolute;
      bottom: 0;
      left: 0;
      background: var(--color-white);
      font-weight: 600;
      height: 46px;
      width: fit-content;
      padding: 4px 12px;
      border-radius: 10px;
      margin: 10px;
      font-size: 18px;
      display: flex;
      align-items: center;
      transition: all 0.5s ease-in-out;

      i {
        font-size: 12px;
        margin-right: 10px;
        color: var(--color-primary-dark);
      }
    }

    &:hover {
      img {
        transform: scale(1.05);
      }
      h3 {
        transform: translateY(-6px);
      }
    }
  }

  .bg p {
    text-align: left;
    padding: 16px;
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 0;
  }

  @media (max-width: 992px) {
    .box {
      height: 280px;
    }
  }

  @media (max-width: 768px) {
    .box {
      height: 240px;
    }
    .bg p {
      font-size: 14px;
    }
  }
}

.service-details {
  .section-title p {
    max-width: 720px;
  }

  img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .content {
    h3 {
      font-size: 32px;
      font-weight: 500;
      margin-bottom: 16px;
      color: var(--color-main);
    }

    p {
      font-size: 18px;
      line-height: 1.8;
      margin-bottom: 8px;
    }

    ul {
      padding-left: 18px;
      margin-bottom: 0;
    }

    li + li {
      margin-top: 4px;
    }
  }

  @media (max-width: 992px) {
    padding-top: 40px;
  }

  @media (max-width: 768px) {
    .section-title p {
      max-width: 100%;
      font-size: 16px;
    }
    .content p {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 8px;
    }
  }
}

/* --- Why Choose Us --- */
.why .box {
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  padding: 20px;
  border-radius: 14px;
  height: 100%;
  transition: all 0.4s ease;

  i {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 0;
    background-color: var(--color-primary-light);
    color: var(--color-primary-dark);
  }

  h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
  }

  p {
    margin-bottom: 0;
  }

  &:hover {
    transform: translateY(-6px);

    i {
      background-color: var(--color-primary-dark);
      color: var(--color-white);
    }
  }
}

/* --- Testimonials --- */
.testimonials {
  .testimonials-slider.swiper {
    padding: 10px 6px 70px;
  }

  .testimonials-slider .swiper-slide {
    height: auto;
    display: flex;
  }

  .testimonial-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 230px;
    padding: 20px 22px 18px;
    background: var(--color-white);
    border: 8px solid rgb(237 237 237 / 90%);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
    box-shadow: var(--shadow-soft);
    border-radius: 18px;
    text-align: left;
    opacity: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    .star {
      display: flex;
      justify-content: flex-start;
      margin-bottom: 12px;
      color: var(--color-secondary);
      background: var(--color-primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;

      i {
        font-size: 24px;
        margin: 0 2px;
      }
    }

    p {
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 16px;
    }

    h3 {
      font-size: 15px;
      font-weight: bold;
      margin: 0 0 2px;
      color: #111318;
    }

    h4 {
      font-size: 12px;
      color: #777;
      margin: 0;
    }

    &:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
    }
  }

  .testimonial-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
  }

  .testimonial-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--color-white);
    background: var(--color-primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
  }

  .testimonial-author {
    display: flex;
    flex-direction: column;
  }

  @media (max-width: 768px) {
    .testimonial-item {
      max-width: 100%;
      padding: 20px;

      p {
        font-size: 14px;
      }
    }
  }
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 8px !important;
  background: var(--color-gray-300);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--color-primary);
}

/* --- CTA --- */
.cta {
  background: linear-gradient(135deg, var(--color-main) 0%, #1a1d26 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 100%, var(--primary-12) 0%, transparent 60%);
    pointer-events: none;
  }
}

/* --- Clients --- */
.clients-section {
  .client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 120px;
    transition: all 0.3s ease-in-out;

    img {
      max-width: 100%;
      max-height: 60px;
      filter: grayscale(100%);
      transition: all 0.3s ease-in-out;
      object-fit: contain;
    }

    &:hover img {
      filter: grayscale(0%);
      transform: scale(1.1);
    }
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 60px 0;

    h2 {
      font-size: 32px;
    }
    .client-logo {
      padding: 10px;
      height: 100px;

      img {
        max-height: 50px;
      }
    }
  }
}

/* ===== PAGES ===== */

/* --- About Home & Page --- */
.about-home .list-box {
  padding: 30px 24px;
  border-radius: 24px;
  background-color: #ffffff;
  background-image:
    radial-gradient(at 20% 20%, rgba(209, 166, 255, 0.4) 0%, transparent 60%),
    radial-gradient(at 50% 40%, rgba(255, 140, 214, 0.3) 0%, transparent 70%),
    radial-gradient(at 80% 60%, rgba(255, 179, 71, 0.25) 0%, transparent 60%),
    radial-gradient(at 90% 90%, rgba(255, 77, 166, 0.2) 0%, transparent 50%);
  filter: saturate(1.2) contrast(0.9);
  border: 8px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
  overflow: hidden;

  ul {
    list-style: none;
    margin-bottom: 0;

    li {
      margin-bottom: 12px;
      color: var(--color-main);
      text-indent: -12px;
      font-weight: 500;
      font-size: 18px;

      &:last-child {
        margin-bottom: 0;
      }

      i {
        font-size: 18px;
        margin-right: 4px;
        top: 3px;
        position: relative;
      }
    }
  }
}

.about-page .image {
  height: 100%;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* --- Digital Marketing --- */
.dm-package-card {
  background: var(--color-white);
  border: 1px solid var(--primary-22);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  border-radius: 10px;
  padding: 26px 24px;

  h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 16px;
    color: var(--color-text-main);
    min-height: 52px;
  }
}

.dm-package-price {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 70px;
  font-weight: 700;
  letter-spacing: -4px;
  line-height: 1;
  margin-bottom: 18px;
  color: var(--color-text-main);

  @media (max-width: 768px) {
    font-size: 46px;
  }
}

.dm-package-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;

  li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--color-text-body);
    font-size: 16px;
    line-height: 1.6;

    i {
      color: var(--color-primary);
      font-size: 18px;
      line-height: 1.4;
      margin-top: 1px;
    }
  }
}

.dm-packages-cta {
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  font-size: 14px;
}

.dm-tabs {
  .dm-pills {
    gap: 12px;

    .nav-link {
      border-radius: var(--radius-pill);
      padding: 12px 24px;
      font-size: 16px;
      font-weight: 500;
      letter-spacing: 0.3px;
      color: var(--color-white);
      background: var(--white-08);

      &:hover {
        color: var(--color-white);
        background: var(--white-12);
      }

      &.active {
        background: var(--color-primary-gradient);
        color: var(--color-white);
      }
    }

    @media (max-width: 768px) {
      flex-wrap: wrap;
    }
  }
}

.dm-tab-content {
  margin-top: 34px;
}

.dm-tab-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);

  img {
    width: 100%;
    height: 100%;
    max-height: 380px;
    object-fit: cover;
  }
}

.dm-tab-title {
  color: var(--color-white);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 14px;

  @media (max-width: 768px) {
    font-size: 22px;
  }
}

.dm-tab-text {
  color: var(--color-text-on-dark);
  font-size: 14px;
  line-height: 1.9;
  margin: 0 0 20px;
}

.dm-tab-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;

  i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--white-18);
    background: var(--white-06);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  }

  &:hover {
    color: var(--color-white);

    i {
      transform: translateX(3px);
      background: var(--white-12);
      border-color: var(--white-28);
    }
  }
}

.dm-tab-panel {
  @media (max-width: 768px) {
    padding: 18px;
  }
}

/* --- Portfolio / Projects --- */
.projects .box {
  position: relative;
  display: block;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;

  .image {
    position: relative;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    overflow: hidden;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
      display: block;
    }

    @media (max-width: 768px) {
      height: auto;
    }
  }

  .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black-70);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }

  .project-card-title {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.3s ease-in-out;
  }

  &:hover {
    img {
      transform: scale(1.05);
    }
    .project-overlay {
      opacity: 1;
    }
    .project-card-title {
      transform: translateY(0);
    }
  }
}

.portfolio-page {
  .project-item {
    margin-bottom: 100px;

    &:last-child {
      margin-bottom: 0;
    }

    &:hover .project-image img {
      transform: scale(1.03);
    }

    @media (max-width: 991px) {
      margin-bottom: 60px;
    }
  }

  .project-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);

    img {
      width: 100%;
      height: auto;
      transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    }
  }

  .project-content {
    padding: 20px;
  }

  .project-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gray-400);
    margin-bottom: 15px;
  }

  .project-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
  }

  .project-description {
    color: var(--color-gray-400);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;

    i {
      font-size: 18px;
      transition: 0.3s;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      padding: 8px;
    }

    &:hover {
      color: var(--color-primary);

      i {
        border-color: var(--color-primary);
        transform: translateX(5px);
        color: var(--color-primary);
      }
    }
  }
}

/* --- Contact Page / Section --- */
.contact {
  .info {
    width: 100%;
    height: 100%;
    background: var(--color-white);
    padding: 15px;
    border-radius: 15px;

    .address, .email, .phone, .map {
      margin-bottom: 8px;
      background: var(--color-gray-200);
      padding: 6px;
      border-radius: 10px;

      &:hover {
        i {
          background: var(--color-primary);
          color: var(--color-white);
        }
        h3 {
          color: var(--color-primary);
        }
      }
    }

    i {
      font-size: 23px;
      color: var(--color-primary-dark);
      float: left;
      width: 50px;
      height: 52px;
      background: var(--color-white);
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 5px;
      transition: all 0.3s ease-in-out;
    }

    h3 {
      padding: 0 0 0 60px;
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 5px;
      color: var(--color-text-main);
    }

    p {
      padding: 0 0 0 60px;
      margin-bottom: 0;
      font-size: 14px;
      color: var(--color-text-body);
    }

    @media (max-width: 768px) {
      h4 { font-size: 18px; }
      p { font-size: 13px; }
    }
  }

 

  .php-email-form {
    width: 100%;
    height: 100%;
    background: var(--color-white);
    padding: 15px;
    border-radius: 15px;

    .form-group {
      padding-bottom: 8px;
    }

    .error-message {
      display: none;
      color: var(--color-white);
      background: var(--color-primary);
      border-radius: 5px;
      text-align: left;
      padding: 15px;
      font-weight: 600;
      margin-bottom: 10px;

      ul {
        list-style: none;
        padding: 0;
      }
    }

    .sent-message {
      display: none;
      color: var(--color-white);
      background: var(--color-success);
      border-radius: 5px;
      text-align: center;
      padding: 15px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .loading {
      display: none;
      background: var(--color-white);
      text-align: center;
      padding: 15px;

      &::before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid var(--color-success);
        border-top-color: var(--color-gray-300);
        animation: animate-loading 1s linear infinite;
      }
    }

    input, textarea {
      border-radius: 4px;
      box-shadow: none;
      font-size: 14px;
      background: var(--color-gray-200);
      border: 1px solid transparent;

      &:focus {
        border-color: var(--color-primary-dark);
      }
    }

    input {
      height: 44px;
    }

    textarea {
      padding: 10px 12px;
    }

    .btn-submit {
      font-weight: 500;
      font-size: 14px;
      letter-spacing: 0.5px;
      display: inline-flex;
      align-items: center;
      padding: 6px 20px 6px 24px;
      height: 50px;
      border-radius: 50px;
      border: 1.5px solid var(--color-primary-dark);
      color: var(--color-white);
      background: var(--color-primary-dark);
      transition: 0.3s;

      i {
        transform: rotate(45deg);
        font-size: 26px;
        margin-left: 6px;
        color: var(--color-white);
      }

      &:hover {
        background: var(--color-text-main);
        border-color: var(--color-text-main);
      }

      @media (max-width: 576px) {
        font-size: 13px;
        padding: 6px 16px;
        height: 46px;
      }
    }
  }
}

@keyframes animate-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.contact-section {
  position: relative;
  overflow: hidden;
  background-color: var(--color-white);
  background: linear-gradient(90deg, var(--color-white) 50%, var(--color-primary) 50%);

  .contact-info-col {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    min-height: 600px;
  }

  .contact-form-col {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  @media (max-width: 991px) {
    .contact-info-col, .contact-form-col {
      padding: 60px 30px;
    }
    .form-heading {
      font-size: 32px;
    }
  }
}

.contact-email a {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-black);
  text-decoration: none;
}

.contact-address {
  font-size: 18px;
  color: var(--color-text-body);
  line-height: 1.6;

  .icon-wrapper {
    width: 40px;
    height: 40px;
    background: var(--color-accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 18px;
    flex-shrink: 0;
  }
}

.social-links-wrapper h5 {
  font-weight: 700;
  margin-bottom: 16px;
}

.social-links {
  a {
    font-size: 24px;
    color: var(--color-text-main);
    transition: color 0.3s ease;

    &:hover {
      color: var(--color-secondary);
    }
  }
}

.cityscape-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 100px;
  background-image: url('../img/city2.svg');
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: contain;
  opacity: 1;
  pointer-events: none;
}

.form-heading {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.2;
  margin-bottom: 32px;
}

.contact-form-content {
  label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-main);
  }

  .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--color-black);
    border-radius: 0;
    padding: 10px 0;
    font-size: 16px;

    &:focus {
      box-shadow: none;
      border-color: var(--color-black);
    }

    &::placeholder {
      color: var(--color-gray-600);
    }
  }
}

.contact-hero {
  padding: 80px 0 40px;
  background-color: var(--color-white);

  h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.2;
    margin-bottom: 40px;
  }

  @media (max-width: 991px) {
    h1 { font-size: 40px; }
  }
}

.hire-us-badge {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-body);
  display: block;
  margin-bottom: 20px;
}

.index .contact-card {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 60px;
  margin-top: 20px;
  position: relative;
  padding: 30px 24px;
  border-radius: 24px;
  background-color: #ffffff;
  background-image: radial-gradient(at 20% 20%, rgba(209, 166, 255, 0.4) 0%, transparent 60%),
  radial-gradient(at 50% 40%, rgba(255, 140, 214, 0.3) 0%, transparent 70%),
  radial-gradient(at 80% 60%, rgba(255, 179, 71, 0.25) 0%, transparent 60%),
  radial-gradient(at 90% 90%, rgba(255, 77, 166, 0.2) 0%, transparent 50%);
  filter: saturate(1.2) contrast(0.9);
  border: 8px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  position: relative;
}

.contact-card {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 60px;
  margin-top: 20px;
  position: relative;

  h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 14px;
  }

  .subtitle {
    color: var(--color-text-body);
    margin-bottom: 40px;
    font-size: 16px;
    max-width: 100%;

    a {
      color: var(--color-black);
      font-weight: 700;
      text-decoration: none;

      &:hover {
        text-decoration: underline;
      }
    }
  }

  .form-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 8px;
  }

  .form-control {
    border: none;
    border-bottom: 1px solid var(--color-gray-300);
    border-radius: 0;
    padding: 10px 0;
    font-size: 20px;
    color: var(--color-text-body);
    background-color: transparent;
    transition: border-color 0.3s ease;

    &:focus {
      box-shadow: none;
      border-color: var(--color-black);
    }

    &::placeholder {
      color: var(--color-gray-400);
      font-weight: 400;
    }
  }

  textarea.form-control {
    resize: none;
  }

  @media (max-width: 991px) {
    padding: 30px;
  }
}

/* --- Blog --- */
.blog {
  .blog-card {
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    padding: 0;
    overflow: hidden;

    .blog-img {
      position: relative;
      overflow: hidden;
      margin-bottom: 20px;
      border-radius: 16px;

      img {
        transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        width: 100%;
        height: 320px;
        object-fit: cover;
      }
    }

    .blog-title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 15px;
      line-height: 1.4;

      a {
        color: var(--color-white);
        transition: 0.3s;
        text-decoration: none;

        &:hover {
          color: var(--color-primary);
        }
      }
    }

    .blog-excerpt {
      color: var(--color-gray-400);
      margin-bottom: 20px;
      font-size: 15px;
      line-height: 1.6;
    }

    .read-more {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--color-white);
      font-weight: 500;
      font-size: 15px;
      transition: 0.3s;
      text-decoration: none;

      i {
        font-size: 16px;
        transition: 0.3s;
      }

      &:hover {
        color: var(--color-primary);

        i {
          transform: translateX(5px);
        }
      }
    }

    &:hover .blog-img img {
      transform: scale(1.1);
    }
  }

  .blog-content {
    margin-bottom: 24px;
  }

  .blog-category {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
  }

  .blog-date {
    font-size: 12px;
    margin-bottom: 10px;
    color: var(--color-gray-400);
  }

  @media (max-width: 768px) {
    .blog-card {
      .blog-img img { height: 220px; }
      .blog-title { font-size: 20px; }
      .blog-excerpt { font-size: 14px; }
    }
  }

  @media (max-width: 576px) {
    .blog-card .blog-img img { height: 180px; }
  }

  /* Single Entry */
  .entry {
    margin-bottom: 60px;

    .entry-title {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 24px;
    }

    .entry-meta {
      margin-bottom: 20px;
      color: var(--color-text-muted);

      ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        align-items: center;
        padding: 0;
        margin: 0;

        li {
          padding-left: 20px;

          &:first-child {
            padding-left: 0;
          }
        }
      }

      i {
        font-size: 16px;
        margin-right: 8px;
        line-height: 0;
      }

      a {
        color: var(--color-gray-500);
        font-size: 14px;
        display: inline-block;
        line-height: 1;
      }
    }

    .entry-content {
      h3 {
        font-size: 24px;
        font-weight: 600;
        margin-top: 40px;
        margin-bottom: 20px;
      }

      p {
        font-size: 18px;
        line-height: 1.6;
      }

      img {
        margin: 40px 0 20px;
        border-radius: 10px;
      }

      .read-more {
        text-align: right;

        a {
          display: inline-block;
          background: var(--color-primary);
          color: var(--color-white);
          padding: 6px 20px;
          transition: 0.3s;
          font-size: 14px;
          border-radius: 4px;

          &:hover {
            background: var(--color-primary-dark);
          }
        }
      }
    }
  }

  .sidebar {
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background: var(--color-white);
    border-radius: 10px;
    margin-top: 0;

    .sidebar-title {
      font-size: 20px;
      font-weight: 700;
      padding: 0 0 0 0;
      margin: 0 0 15px 0;
      color: var(--color-default);
      position: relative;
    }

    .recent-posts {
      .post-item {

        margin-top: 15px;
        display: flex;
        gap: 16px;
      }

      .image {
        min-width: 80px;
        max-width: 80px;
        border-radius: 5px;
        overflow: hidden;

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }

      h4 {
        font-size: 15px;
        font-weight: bold;

        a {
          color: var(--color-default);
          transition: 0.3s;

          &:hover {
            color: var(--color-primary);
          }
        }
      }

      time {
        display: block;
        font-style: italic;
        font-size: 14px;
        margin-bottom: 6px;
        color: var(--color-gray-400);
      }
    }

    @media (max-width: 768px) {
      margin-top: 24px;
      padding: 16px;

      .recent-posts .post-item {
        gap: 12px;
      }
    }
  }
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.feature-list li i {
  font-size: 20px;
}

/* ===== LANDING PAGE SPECIFIC ===== */
.landing-local {
  .list-box {
    background: var(--color-accent-gradient);
    padding: 30px 24px;
    border-radius: 24px;

    ul {
      list-style: none;
      margin-bottom: 0;
      padding-left: 0;

      li {
        margin-bottom: 12px;
        color: var(--color-text-on-dark);
        font-weight: 500;
        font-size: 18px;
        display: flex;
        align-items: center;
        gap: 8px;

        i {
          font-size: 18px;
          color: var(--color-white);
          flex-shrink: 0;
        }
      }
    }
  }

  .check-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;

    li {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 10px;
      font-size: 17px;

      i {
        color: var(--color-primary);
        font-size: 20px;
      }
    }
  }
}

.landing-includes {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;

  li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 18px;

    i {
      color: var(--color-primary);
      font-size: 22px;
      flex-shrink: 0;
    }
  }
}

.landing-price {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.landing-difference {
  .content p {
    font-size: 18px;
    line-height: 1.7;
  }
}

.landing-combo-card {
  padding: 30px 24px;
  border-radius: 24px;
  background-color: #ffffff;
  background-image:
    radial-gradient(at 20% 20%, rgba(209, 166, 255, 0.4) 0%, transparent 60%),
    radial-gradient(at 50% 40%, rgba(255, 140, 214, 0.3) 0%, transparent 70%),
    radial-gradient(at 80% 60%, rgba(255, 179, 71, 0.25) 0%, transparent 60%),
    radial-gradient(at 90% 90%, rgba(255, 77, 166, 0.2) 0%, transparent 50%);
  filter: saturate(1.2) contrast(0.9);
  border: 8px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    inset: -40px;
    background: radial-gradient(42% 42% at 20% 30%, rgba(245, 158, 11, 0.18) 0%, rgba(245, 158, 11, 0) 70%),
      radial-gradient(46% 46% at 78% 70%, rgba(255, 61, 122, 0.12) 0%, rgba(255, 61, 122, 0) 72%);
    pointer-events: none;
  }

  > * {
    position: relative;
    z-index: 1;
  }

  h3 {
    font-size: 24px;
    line-height: 1.7;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--color-black);
  }

  p {
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-black);
  }
}

.landing-combo-steps {
  padding: 34px 30px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border: 8px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
}

.landing-combo-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--color-offwhite);
  color: var(--color-black);
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

.landing-combo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  span {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--color-white);
    color: var(--color-black);
    font-weight: 700;
    letter-spacing: 0.3px;
  }
}

.landing-combo-steps-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.process-step {
  padding: 24px 20px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: 0 6px 24px -2px rgb(119 139 165 / 0.2);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;

  &:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
  }

  .process-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-primary-gradient);
    color: var(--color-white);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
  }

  h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
  }
}

.landing-footer-line p {
  font-size: 14px;
  letter-spacing: 0.2px;
}
