 .warranty-section {
  background-color: hwb(220 98% 0%);
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  color: #1e293b;
}

.warranty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.warranty-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.warranty-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.warranty-card .icon-box {
  font-size: 30px;
  margin-bottom: 15px;
}

.warranty-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0f172a;
}

.warranty-card p {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 20px;
}

.warranty-card.premium {
  border: 2px solid #0f4c81;
}

   /* Full Desktop Section */
.warranty-check-section {
  min-height: 100vh;
  background: linear-gradient(to bottom, #e9f8fc, #f9f9f9);
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* Two Column Layout */
.warranty-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Panel */
.warranty-left h1 {
  font-size: 48px;
  color: #020617;
  margin-bottom: 15px;
}

.warranty-left p {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 30px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  background: #f8fafc;
  padding: 16px 20px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.feature-item span {
  font-size: 13px;
  font-weight: 400;
  color: #64748b;
}

/* Contact Section */
.contact-box {
  margin-top: 25px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-box h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.contact-box p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 15px;
}

.contact-buttons {
  display: flex;
  gap: 12px;
}

.call-support,
.whatsapp-support {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.call-support {
  background: #0f4c81;
  color: white;
}

.whatsapp-support {
  background: #147337;
  color: white;
}

/* Right Card UI */
.warranty-card-box {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

/* Header */
.warranty-header {
  text-align: center;
  margin-bottom: 25px;
}

.warranty-header img {
  width: 60px;
  margin-bottom: 10px;
}

.warranty-header h2 {
  font-size: 28px;
}

.warranty-header p {
  font-size: 14px;
  color: #64748b;
}

/* Form */
.warranty-form {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.warranty-form input {
  flex: 1;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  font-size: 15px;
}

.warranty-form button {
  padding: 14px 24px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg,#0f4c81,#1e40af);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.warranty-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(15,76,129,0.4);
}

/* Result Box */
.warranty-result {
  margin-top: 30px;
  padding: 24px;
  border-radius: 18px;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  text-align: center;
}

.result-grid p {
  margin: 8px 0;
  font-size: 15px;
}

.call-btn {
  display: inline-block;
  margin-top: 15px;
  background: #22c55e;
  padding: 12px 26px;
  color: white;
  text-decoration: none;
  border-radius: 14px;
  font-size: 14px;
}

/* Terms */
.terms-box {
  margin-top: 35px;
  padding: 24px;
  background: #f8fafc;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
}

.terms-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.terms-box li {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* Hidden */
.hidden {
  display: none;
}

/* Mobile Responsive */
@media(max-width: 768px) {
  .warranty-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}


   .city-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.city-popup-box {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(to bottom, #e9f8fc, #f9f9f9);
  border-radius: 24px;
  padding: 30px 25px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  animation: popupZoom 0.3s ease-in-out;
}

@keyframes popupZoom {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.city-popup-header {
  text-align: center;
  position: relative;
}

.city-popup-header h2 {
  font-size: 24px;
  color: #020617;
}

.city-popup-header p {
  font-size: 14px;
  color: #64748b;
  margin-top: 5px;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: -10px;
  right: -5px;
  font-size: 18px;
  cursor: pointer;
  background: #f1f5f9;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Search */
.city-search {
  margin: 20px 0 10px;
}

.city-search input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  outline: none;
}

/* City List */
.city-list {
  max-height: 260px;
  overflow-y: auto;
  margin-bottom: 20px;
}

.city-item {
  padding: 14px 15px;
  border-radius: 14px;
  font-size: 14px;
  border: 1px solid #f1f5f9;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.city-item:hover {
  background: #0f4c81;
  color: #fff;
  transform: translateY(-2px);
}

/* Continue Button */
.confirm-btn {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg,#0f4c81,#1e40af);
  color: white;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}

/* ========================= */
/* ✅ Tablet Responsive (1024px) */
/* ========================= */
@media (max-width: 1024px) {

  .warranty-left h1 {
    font-size: 38px;
  }

  .warranty-container {
    gap: 40px;
  }

  .warranty-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .warranty-card-box {
    padding: 30px 25px;
  }
}

/* ========================= */
/* ✅ Mobile Responsive (768px) */
/* ========================= */
@media (max-width: 768px) {

  .warranty-check-section {
    padding: 60px 15px;
  }

  .warranty-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .terms-box li {
   text-align: left;
}

  .warranty-left h1 {
    font-size: 30px;
  }

  .warranty-left p {
    font-size: 16px;
  }

  .features {
    align-items: center;
  }

  .feature-item {
    width: 100%;
  }

  .contact-box {
    width: 100%;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .warranty-form {
    flex-direction: column;
  }

  .warranty-form button {
    width: 100%;
  }

  .warranty-card-box {
    padding: 28px 20px;
  }

  .warranty-header h2 {
    font-size: 22px;
  }

}

/* ========================= */
/* ✅ Small Mobile (480px) */
/* ========================= */
@media (max-width: 480px) {

  .section-title {
    font-size: 22px;
  }

  .warranty-left h1 {
    font-size: 24px;
  }

  .warranty-left p {
    font-size: 14px;
  }

  .feature-item {
    font-size: 14px;
    padding: 14px 16px;
  }

  .contact-box {
    padding: 16px;
  }

  .warranty-card-box {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .warranty-form input {
    font-size: 14px;
    padding: 12px;
  }

  .city-popup-box {
    max-width: 95%;
  }

  .city-popup-header h2 {
    font-size: 20px;
  }
}

/*------------------------------------------------- Footer style -------------------------------------*/
.premium-footer {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 15px;
  border-left: 4px solid #22c55e;
  padding-left: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: hsl(0, 0%, 100%);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

.social-icons img {
  width: 25px;
  transition: 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.store-links img {
  width: 130px;
  margin-right: 10px;
  margin-top: 10px;
  cursor: pointer;
}

.footer-location {
  text-align: center;
  margin-top: 30px;
  color: #94a3b8;
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  font-size: 13px;
  border-top: 1px solid #1e293b;
  margin-top: 15px;
  color: #64748b;
}


/* Overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

/* Box */
.popup-box {
  background: #fff;
  padding: 25px;
  width: 90%;
  max-width: 420px;
  border-radius: 12px;
  animation: popIn 0.3s ease;
  box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

@keyframes popIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Title */
.popup-title {
  margin-top: 0;
  font-size: 22px;
  font-weight: 600;
  color: #1b1b1b;
  text-align: center;
}

.popup-subtext {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  text-align: center;
}

/* Labels */
.popup-label {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}

/* Inputs */
.popup-input {
  margin-bottom: 15px;
}

.popup-input input,
.popup-input textarea,
.popup-input select {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  color: #1b1b1b;
  outline: none;
}

.popup-input textarea {
  height: 110px;
  resize: vertical;
}

/* Info */
.popup-info p {
  font-size: 13px;
  margin: 3px 0;
  color: #444;
}

/* T&C */
.popup-tnc {
  margin-top: 12px;
  font-size: 13px;
  color: #444;
}

.popup-tnc a {
  color: #007bff;
  text-decoration: underline;
}

/* Buttons */
.popup-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.cancel-btn {
  background: #ccc;
  border: none;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 15px;
}

.ok-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 15px;
}

.loader-booking {
  border: 3px solid #fff;
  border-top: 3px solid transparent;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: inline-block;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.rrcity-selector {
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #e9f8fc, #f9f9f9);
}

.rrcity-selector h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

/* FLEX container */
.rrcity-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Text jitna ho utna hi box */
.rrcity-card {
    padding: 10px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 999px; /* pill style */
    cursor: pointer;
    background: #fff;
    transition: all 0.2s ease;
    white-space: nowrap; /* text break na ho */
    font-size: 15px;
}

/* Hover */
.rrcity-card:hover {
    border: 1px solid #2563eb;
    transform: translateY(-1px);
}

/* Active */
.rrcity-card.active {
    border-color: #2563eb;
    background: #eff6ff;
}

/* Mobile optimization */
@media (max-width: 480px) {
    .rrcity-card {
        font-size: 14px;
        padding: 8px 14px;
    }
}

.rrcity-info {
    max-width: 520px;
    margin: 0 auto 20px;
    font-size: 14px;
    color: #475569;
}

.rrcity-note {
    margin-top: 18px;
    font-size: 13px;
    color: #64748b;
}
.rrcity-link{
    text-decoration: none;
    color: inherit;
}
