/* ===============================
   ULTRA PREMIUM SERVICES
================================ */
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f5f7fa;
}

/* SECTION */
.premium-services {
  padding: 100px 20px;
}

/* CONTAINER */
.container1 {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.premium-header {
  text-align: center;
  margin-bottom: 60px;
}

.premium-header h5 {
  color: #f4b400; /* Yellow */
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.premium-header h2 {
  font-size: 36px;
  font-weight: 700;
}

.premium-header span {
  color: #1e3a8a; /* Dark Blue */
}

/* GRID */
.premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

/* CARD */
.premium-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  position: relative;
}

.premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(30, 58, 138, 0.2); /* Blue shadow */
}

/* IMAGE */
.premium-img {
  height: 220px;
  overflow: hidden;
}

.premium-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.premium-card:hover .premium-img img {
  transform: scale(1.1);
}

/* CONTENT */
.premium-content {
  padding: 22px;
  text-align: center;
}

.premium-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1e3a8a; /* Dark Blue */
}

.premium-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* FULL CONTENT (READ MORE) */
.full-content {
  display: none;
  text-align: left;
  margin-top: 12px;
  animation: fadeIn 0.3s ease;
}

.full-content p {
  margin-bottom: 10px;
}

.full-content ul {
  padding-left: 18px;
  margin-top: 8px;
}

.full-content li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #444;
}

/* BUTTON */
.read-more-btn {
  margin-top: 12px;
  padding: 8px 18px;
  border: none;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6); /* Blue gradient */
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  font-size: 13px;
  transition: 0.3s ease;
}

.read-more-btn:hover {
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
}

/* ACTIVE STATE */
.premium-card.active .full-content {
  display: block;
}

/* ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
  .premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-header h2 {
    font-size: 30px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .premium-grid {
    grid-template-columns: 1fr;
  }

  .premium-services {
    padding: 70px 15px;
  }

  .premium-header h2 {
    font-size: 26px;
  }

  .premium-content {
    padding: 18px;
  }

  .premium-img {
    height: 180px;
  }

  .premium-content p {
    font-size: 13px;
  }
}

/* Button Base */
.thm-btn {
  position: relative;
  padding: 14px 40px;
  background: #ff5a1f;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  overflow: hidden;
  transition: 0.3s ease;
}

/* Loader Circle */
.btn-loader {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-top: 3px solid #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 0.7s linear infinite;
  display: none;
}

/* Spin Animation */
@keyframes spin {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Loading State */
.thm-btn.loading .btn-text {
  visibility: hidden;
}

.thm-btn.loading .btn-loader {
  display: block;
}

.thm-btn:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

/* =========================
   PREMIUM COUNTER SECTION
/* SECTION */
/* =========================================
   STATS SECTION
========================================= */

.stats-section {
  /* background: #ffffff; */
  padding: 70px 20px;
}

/* =========================================
   GRID
========================================= */

.stats-wrapper {
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* =========================================
   CARD
========================================= */

.stat-box {
  background: #ffffff;

  border-radius: 24px;

  padding: 28px 25px;

  display: flex;
  align-items: center;
  gap: 18px;

  transition: 0.3s ease;

  /* SHADOW */
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.06),
    0 4px 10px rgba(0, 0, 0, 0.03);

  min-height: 120px;
}

/* HOVER */

.stat-box:hover {
  transform: translateY(-6px);

  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.09),
    0 6px 15px rgba(255, 90, 31, 0.08);
}

/* =========================================
   ICON
========================================= */

.stat-icon {
  font-size: 44px;
  color: #2e3192;

  flex-shrink: 0;
}

/* =========================================
   CONTENT
========================================= */

.stat-content {
  display: flex;
  flex-direction: column;
}

/* NUMBER */

.stat-number {
  font-size: 38px;
  font-weight: 700;
  color: #000000;

  margin: 0;
  line-height: 1;
}

/* TEXT */

.stat-text {
  font-size: 15px;
  color: #7c7c7c;

  margin-top: 10px;
  line-height: 1.5;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {
  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {
  .stats-wrapper {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stat-box {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .stat-icon {
    font-size: 38px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-text {
    font-size: 14px;
  }
}
/* =========================
   TRACK BOX - FINAL UI
========================= */
.track-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 14px;

  /* Glass Effect */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);

  /* Border Setup */
  border: 2px solid transparent;
  background-clip: padding-box;

  position: relative;
  transition: all 0.3s ease;
}

/* 🔥 Gradient Border Layer */
.track-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;

  background: linear-gradient(135deg, #fd5523, #1c1f5a);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none; /* ✅ FIX CLICK ISSUE */
}

/* Hover Effect */
.track-box:hover {
  box-shadow: 0 0 20px rgba(253, 85, 35, 0.35);
}

/* Focus Effect */
.track-box:focus-within {
  box-shadow: 0 0 0 2px rgba(253, 85, 35, 0.3);
}

/* =========================
   ICON
========================= */
.track-icon {
  display: flex;
  align-items: center;
}

/* =========================
   INPUT
========================= */
.track-box input {
  border: none;
  outline: none;
  background: transparent;

  color: #ffffff;
  font-size: 15px;
  width: 180px;
}

/* Placeholder */
.track-box input::placeholder {
  color: white;
}

/* =========================
   BUTTON
========================= */
.track-box button {
  display: flex;
  align-items: center;
  gap: 6px;

  background: #fd5523;
  color: #ffffff;

  border: none;
  padding: 7px 16px;
  border-radius: 10px;

  cursor: pointer;
  font-size: 13px;
  font-weight: 500;

  transition: all 0.3s ease;
}

/* Button Hover */
.track-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(188, 64, 64, 0.3);
}

/* Button Click */
.track-box button:active {
  transform: scale(0.95);
}

/* =========================
   SAFETY (CLICK FIX)
========================= */
.main-header-one__bottom-right {
  position: relative;
  z-index: 10;
}

.track-box {
  z-index: 10;
}

.track-box button {
  z-index: 11;
  pointer-events: auto;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
  .track-box input {
    width: 140px;
  }
}

/* Mobile Hide */
@media (max-width: 768px) {
  .track-box {
    display: none;
  }
}

/* ===============================
   loder
================================= */

.netflix-loader {
  position: fixed;
  inset: 0;
  background: #5153a0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 999999;
}

/* FLASH EFFECT */
.flash {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgb(194, 144, 58) 0%, transparent 70%);
  opacity: 0;
  animation: flashAnim 0.8s ease forwards;
}

@keyframes flashAnim {
  0% {
    opacity: 1;
    transform: scale(0.5);
  }
  100% {
    opacity: 0;
    transform: scale(3);
  }
}

/* CONTENT */
.content12 {
  text-align: center;
  z-index: 2;
}

/* LOGO */
.logo {
  width: 250px;
  margin-bottom: 25px;
  opacity: 0;
  transform: scale(0.5);
  animation: logoReveal 1.5s ease forwards;
  animation-delay: 0.5s;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.4));
}

@keyframes logoReveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* TEXT */
.text {
  font-size: 35px;
  letter-spacing: 6px;
  color: #fff;
  opacity: 0;
  animation: textFade 1.5s ease forwards;
  animation-delay: 1.2s;

  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.6),
    0 0 25px rgba(46, 49, 146, 0.5),
    0 0 40px rgba(244, 194, 13, 0.5);
}

@keyframes textFade {
  from {
    opacity: 0;
    letter-spacing: 12px;
  }
  to {
    opacity: 1;
    letter-spacing: 6px;
  }
}

/* EXIT */
.netflix-loader.hide {
  opacity: 0;
  visibility: hidden;
  transition: 0.8s ease;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .logo {
    width: 70px;
  }
  .text {
    font-size: 18px;
  }
}
