/* ══════════════════════════════
       SLIDER WRAPPER
    ══════════════════════════════ */
    .main-slider {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 600px;
      max-height: 860px;
      overflow: hidden;
      background: #0f111a;
    }

    /* ══════════════════════════════
       SLIDES
    ══════════════════════════════ */
    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      visibility: hidden;
      z-index: 1;
      transition: opacity 800ms ease, visibility 800ms ease;
    }
    .slide.is-active {
      opacity: 1;
      visibility: visible;
      z-index: 2;
    }

    /* BG image with Ken Burns */
    .slide-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      transform: scale(1.07);
      transition: transform 7000ms linear;
    }
    .slide.is-active .slide-bg {
      transform: scale(1.0);
    }

    /* Dark gradient overlay */
    .slide-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        100deg,
        rgba(8, 11, 20, 0.90) 0%,
        rgba(8, 11, 20, 0.55) 55%,
        rgba(8, 11, 20, 0.18) 100%
      );
    }

    .slide.is-active::before {
      transform: scaleY(1);
    }

    /* ══════════════════════════════
       SLIDE CONTENT
    ══════════════════════════════ */
    .slide-content {
      position: relative;
      z-index: 10;
      height: 100%;
      display: flex;
      align-items: center;
      padding: 0 80px;
      max-width: 800px;
    }

    .slide-inner {
      display: flex;
      flex-direction: column;
    }

    /* Tag */
    .slide-tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(255, 137, 19, 0.14);
      border: 1px solid rgba(255, 137, 19, 0.32);
      border-radius: 20px;
      padding: 5px 13px;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: #f4972e;
      margin-bottom: 22px;
      width: fit-content;
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 500ms ease 500ms, transform 500ms ease 500ms;
    }
    .tag-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: #f4972e;
      flex-shrink: 0;
    }
    .slide.is-active .slide-tag {
      opacity: 1;
      transform: translateY(0);
    }

    /* Title */
    .slide-title {
      font-size: clamp(36px, 5.2vw, 64px);
      font-weight: 800;
      color: #ffffff;
      line-height: 1.08;
      letter-spacing: -0.03em;
      margin-bottom: 18px;
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 600ms ease 700ms, transform 600ms ease 700ms;
    }
    .slide-title span { color: #f4972e; }
    .slide.is-active .slide-title {
      opacity: 1;
      transform: translateY(0);
    }

    /* Description */
    .slide-desc {
      font-size: 15.5px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.60);
      line-height: 1.72;
      max-width: 500px;
      margin-bottom: 34px;
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 600ms ease 900ms, transform 600ms ease 900ms;
    }
    .slide.is-active .slide-desc {
      opacity: 1;
      transform: translateY(0);
    }

    /* CTA */
    .slide-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #f4972e;
      color: #ffffff;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.03em;
      padding: 13px 30px;
      border-radius: 4px;
      width: fit-content;
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 600ms ease 1100ms, transform 600ms ease 1100ms,
                  background 180ms ease, box-shadow 180ms ease;
    }
    .slide.is-active .slide-cta {
      opacity: 1;
      transform: translateY(0);
    }
    .slide-cta:hover {
      background: #f4972e;
      box-shadow: 0 8px 28px rgba(255, 137, 19, 0.38);
    }
    .cta-icon {
      width: 20px; height: 20px;
      border-radius: 50%;
      background: rgba(255,255,255,0.22);
      display: flex; align-items: center; justify-content: center;
      font-size: 11px;
      flex-shrink: 0;
    }

    /* ══════════════════════════════
       COUNTER  (top-right)
    ══════════════════════════════ */
    .slide-counter {
      position: absolute;
      top: 36px;
      right: 72px;
      z-index: 20;
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,0.38);
      letter-spacing: 0.06em;
      pointer-events: none;
    }
    #cntCurrent {
      font-size: 20px;
      font-weight: 800;
      color: #ffffff;
      line-height: 1;
      min-width: 28px;
    }
    .cnt-line {
      width: 22px; height: 1px;
      background: rgba(255,255,255,0.28);
    }

    /* ══════════════════════════════
       DOTS  (bottom-left)
    ══════════════════════════════ */
    .slide-dots {
      position: absolute;
      bottom: 52px;
      left: 80px;
      z-index: 20;
      display: flex;
      align-items: center;
      gap: 7px;
    }
    .sdot {
      height: 3px;
      border-radius: 2px;
      background: rgba(255,255,255,0.22);
      cursor: pointer;
      overflow: hidden;
      transition: width 250ms ease;
      width: 28px;
      flex-shrink: 0;
    }
    .sdot.is-active { width: 52px; }
    .sdot-fill {
      height: 100%;
      width: 0%;
      background: #f4972e;
      border-radius: 2px;
    }

    /* ══════════════════════════════
       NAV ARROWS  (bottom-right)
    ══════════════════════════════ */
    .slider-nav {
      position: absolute;
      bottom: 40px;
      right: 72px;
      z-index: 20;
      display: flex;
      gap: 8px;
    }
    .nav-btn {
      width: 46px; height: 46px;
      border-radius: 4px;
      border: 1px solid rgba(255,255,255,0.18);
      background: rgba(255,255,255,0.05);
      color: rgba(255,255,255,0.65);
      font-size: 17px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: background 180ms, border-color 180ms, color 180ms;
    }
    .nav-btn:hover {
      background: #f4972e;
      border-color: #f4972e;
      color: #ffffff;
    }

    /* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
    @media (max-width: 900px) {
      .slide-content  { padding: 0 40px; }
      .slide-dots     { left: 40px; }
      .slider-nav     { right: 40px; }
      .slide-counter  { right: 40px; }
    }
    @media (max-width: 600px) {
      .main-slider    { max-height: 100svh; }
      .slide-content  { padding: 0 22px; max-width: 100%; }
      .slide-title    { font-size: 34px; }
      .slide-desc     { font-size: 14px; }
      .slide-dots     { left: 22px; bottom: 44px; }
      .slider-nav     { right: 22px; bottom: 60px; }
      .slide-counter  { right: 22px; top: 22px; }
      .slide::before  { display: none; }
    }