/* ===============================
   ULTRA PREMIUM SERVICES
================================ */

.premium-services {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.container1 {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* Header */

.premium-header {
  text-align: center;
  margin-bottom: 80px;
}

.premium-header h5 {
  color: #fd5523;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 15px;
}

.premium-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
}

.premium-header span {
  color: #fd5523;
}

/* ===============================
   HEADING
================================= */

.review-heading {
  text-align: center;
  margin-bottom: 70px;
}

.sec-title__tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.sec-title__tagline .line {
  width: 40px;
  height: 2px;
  background: #ff5e14;
}

.sec-title__tagline h4 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff5e14;
}

.sec-title__title {
  font-size: 38px;
  font-weight: 700;
}

.sec-title__title span {
  color: #ff5e14;
}

/* ===============================
   GRID SYSTEM (FIXED 3 PER ROW)
================================ */

.premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* EXACTLY 3 */
  gap: 40px;
}

/* ===============================
   CARD
================================ */

.premium-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Gradient Border Effect */

.premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, #fd5523, transparent, #fd5523);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Hover */

.premium-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* ===============================
   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: 30px;
  text-align: center;
}

.premium-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #fff;
}

.premium-content p {
  font-size: 14px;
  color: #d6d6d6;
  line-height: 1.6;
}

/* ===============================
   RESPONSIVE
================================ */

/* Tablet */
@media (max-width: 992px) {
  .premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-header h2 {
    font-size: 34px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .premium-grid {
    grid-template-columns: 1fr;
  }

  .premium-header h2 {
    font-size: 28px;
  }

  .premium-services {
    padding: 80px 0;
  }
}

/* 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 {
  background: white;
  padding: 80px 20px;
}

/* GRID WITH GAP 🔥 */
.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px; /* ✅ MAIN FIX */
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.stat-box {
  background: rgba(201, 194, 194, 0.756);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 30px;
  border-radius: 18px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;

  position: relative;
  overflow: hidden;
}

/* GLOW EFFECT */
.stat-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, #ff5a1f22, transparent);
  opacity: 0;
  transition: 0.4s;
}

.stat-box:hover::before {
  opacity: 1;
}

/* ICON */
.stat-icon {
  color: #ff5a1f;
  font-size: 32px;
  transition: 0.3s;
}

/* NUMBER */
.stat-number {
  color: #030303;
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}

/* TEXT */
.stat-text {
  font-size: 14px;
  color: #858586;
  margin: 0;
}

/* HOVER 🔥 */
.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid #ff5a1f;
}

.stat-box:hover .stat-icon {
  transform: scale(1.2);
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .stats-wrapper {
    grid-template-columns: 1fr;
  }
}

/* =========================
   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: #1e5bb8;
  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;
  }
}

.shivam-process {
  padding: 80px 20px;
  background: #f4f6fb;
}

/* Grid */
.shivam-process .process-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* Card */
.shivam-process .process-card {
  background: linear-gradient(135deg, #1e4fa3, #2c6ed5);
  color: #fff;
  padding: 50px 25px;
  border-radius: 18px;
  text-align: center;
  position: relative;
  transition: 0.4s;
  overflow: hidden;
}

/* Middle Highlight */
.shivam-process .process-card.highlight {
  background: linear-gradient(135deg, #e53935, #ff3d3d);
}

/* Step Number */
.process-card .step-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 40px;
  font-weight: bold;
  opacity: 0.15;
}

/* Icon */
.process-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

/* Title */
.process-card h3 {
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* Text */
.process-card p {
  font-size: 15px;
  line-height: 1.6;
}

/* Hover Effect */
.process-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Glow Effect */
.process-card::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: 0.5s;
}

.process-card:hover::before {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .shivam-process .process-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .shivam-process .process-container {
    grid-template-columns: 1fr;
  }
}
