.video-container {
  position: relative;
  /*width: 640px;*/
  max-width: 100%;
}

video {
  width: 100%;
  display: block;
}

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

.footer-link {
  cursor: pointer;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.footer-link a {
  color: black;
  margin: 30px;
  text-decoration: none;
}

.hidden-content {
  display: none;
}

#spotsContainer {
  display: none;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 10px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .spot svg {
    width: 25px;
    height: 25px;
  }
}

.spot svg {
  width: 40px;
  height: 40px;
}

.spot-free {
  background-color: #2ecc71;
}

.message {
  text-align: center;
  margin: 40px 0;
}

.message h2 {
  font-size: 32px;
  color: #555;
  margin-bottom: 10px;
}

.spots-count {
  font-size: 40px;
  font-weight: bold;
  color: #8860ff;
  display: inline-block;
  animation: pop 0.5s ease infinite alternate;
}

@keyframes pop {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.Availability-button {
  background-color: #6357ff;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 24px;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s;
}

.access-button {
  background-color: #6357ff;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 24px;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s;
  display: none; /* Initially hidden */
}

.access-button:hover {
  background-color: #5247ee;
}

.open-link {
  margin-bottom: 20px;
  color: #3498db;
  cursor: pointer;
  text-decoration: underline;
}

/* Loader styles */
.loader-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.loader {
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid #6357ff;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

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

  100% {
    transform: rotate(360deg);
  }
}

/* Main container styles */

/* Heading styles */

.metrics__heading span {
  color: #6366f1;
}

.metrics__subheading {
  color: #4b5563;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 40px;
}

/* Metrics content layout */
.metrics__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

/* Individual metric item */
.metrics__item {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  flex: 1;
  min-width: 275px;
  max-width: 350px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Totals block styling */
.totals-block {
  text-align: left;
}

.totals-icon {
  background-color: #5d5fef;
  height: 6rem;
  width: 6rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.totals-icon svg {
  color: white;
  width: 40px;
}
.totals-title {
  color: #4b5563;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 5px;
}

/* Counter values */
.badge-counter {
  font-size: 1.8rem;
  font-weight: 700;
}

#total_users_count {
  color: #059669;
}

#total_profits_count,
#avg_profit_count {
  color: #059669;
}

/* Profit calculator section */
.metrics__footer {
  width: 100%;
  margin-top: 20px;
}

.profit-calculator {
  max-width: 800px;
  margin: 0 auto;
}

.profit-calculator__container {
  background-color: white;
  border-radius: 16px;
  padding: 20px;
}

.profit-calculator__heading {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.profit-calculator__content {
  padding: 20px 0;
}

.profit-calculator__text {
  text-align: center;
  margin-bottom: 20px;
}

.profit-calculator__label {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.profit-calculator__value {
  font-size: 3.5rem;
  font-weight: 700;
  color: #6366f1;
  display: block;
}

/* Range slider styling */
.profit-calculator__form {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.profit-calculator__form-label {
  display: flex;
  /*justify-content: space-between;*/
  margin-bottom: 10px;
  font-weight: 500;
}

input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: black;
  outline: none;
  appearance: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #6366f1;
  cursor: pointer;
  border: 4px solid white;
  box-shadow: 0 0 0 1px #6366f1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .metrics__content {
    flex-direction: column;
    align-items: center;
  }

  .metrics__item {
    width: 100%;
    max-width: 100%;
  }

  .profit-calculator__value {
    font-size: 2.5rem;
  }
}

#days_display {
  margin-right: 10px;
}

/* contact css */
/* Arrows styling */
.arrows-container {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  height: 300px;
  justify-content: space-between;
  z-index: 1;
}

.arrow {
  display: flex;
  align-items: center;
}

.arrow-head {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 16px solid #6366f1;
}

.arrow-line {
  height: 4px;
  width: 30px;
  background-color: #6366f1;
  margin-right: -2px;
}

/* Contact form container */

/* Form styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  /*margin-bottom: 30px;*/
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.form-group label {
  font-weight: 500;
  color: #4b5563;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  max-width: 400px;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Form footer */
.form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.submit-button {
  background-color: #6366f1;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  max-width: 250px;
}

.submit-button:hover {
  background-color: #4f46e5;
}

.privacy-note {
  font-size: 0.8rem;
  color: #6b7280;
}

.privacy-note a {
  color: #6366f1;
  text-decoration: none;
}

.privacy-note a:hover {
  text-decoration: underline;
}

/* Contact info section */
.contact-info {
  margin-top: 40px;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #e5e7eb;
  padding-top: 30px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #6366f1;
  opacity: 0.9;
}

.contact-method h5 {
  font-weight: 600;
  margin-bottom: 5px;
  color: #4b5563;
}

.contact-method p {
  color: #6b7280;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .arrows-container {
    display: none; /* Hide arrows on mobile */
  }

  .contact-info {
    flex-direction: column;
    gap: 20px;
  }
}
.iti {
  width: 100%;
  max-width: 400px;
}
/*end contact css*/

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 9999; /* Sit on top */
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
.close-otp {
  float: right;
  font-size: 57px;
  font-weight: bold;
  background: transparent;
  border: transparent;
  position: absolute;
  right: 0px;
  top: -24px;
}

.close-otp:hover,
.close-otp:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.heading-first {
  font-size: 32px;
  margin-top: 20px;
}

.form-control {
  margin: 5.5px;
  height: 60px;

  padding: 0.675rem 1.75rem !important;
}

/* === VIDEO CONTAINER & OVERLAY === */
.video-container {
  position: relative;
  max-width: 100%;
}

video {
  width: 100%;
  display: block;
}

.overlay img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  background-color: white;
  border-radius: 50%;
  padding: 10px;
}

/* === BUTTONS === */
.Availability-button,
.access-button {
  background-color: #6357ff;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 24px;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s;
  display: inline-block;
}

.access-button:hover,
.Availability-button:hover {
  background-color: #5247ee;
}

/* === HIDDEN CONTENT === */
.hidden-content {
  display: none;
}

#spotsContainer {
  display: none;
}

/* === GRID SPOTS === */
.grid-container {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 10px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}

.spot-free {
  background-color: #2ecc71;
}

/* === MESSAGE AND COUNTER === */
.message {
  text-align: center;
  margin: 40px 0;
}

.message h2 {
  font-size: 32px;
  color: #555;
}

.spots-count {
  font-size: 40px;
  font-weight: bold;
  color: #8860ff;
  animation: pop 0.5s ease infinite alternate;
}

@keyframes pop {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* === METRICS CONTAINER === */

/* === HEADINGS === */
.metrics__heading {
  font-size: 3.75rem;
  font-weight: 800;
  margin-bottom: 30px;
  text-transform: uppercase;
  line-height: 1;
}

.metrics__heading span {
  color: #6366f1;
}

.metrics__subheading {
  color: #4b5563;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 40px;
}

/* === METRICS BOXES === */
.metrics__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.metrics__item {
  background-color: #f9fafb;
  border: 2px solid #c7d2fe;
  border-radius: 18px;
  padding: 24px;
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 5px 10px rgba(99, 102, 241, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.totals-icon {
  background-color: #7c3aed;
  height: 60px;
  width: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.totals-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

.totals-title {
  color: #4b5563;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 5px;
}

.badge-counter {
  font-size: 1.7rem;
  font-weight: 800;
  color: #16a34a;
}

/* === PROFIT CALCULATOR === */
.metrics__footer {
  width: 100%;
  margin-top: 20px;
}

.profit-calculator {
  max-width: 800px;
  margin: 0 auto;
}

.profit-calculator__container {
  background-color: white;
  border-radius: 16px;
  padding: 20px;
}

.profit-calculator__heading {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.profit-calculator__content {
  padding: 20px 0;
}

.profit-calculator__text {
  text-align: center;
  margin-bottom: 20px;
}

.profit-calculator__label {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 8px;
}

.profit-calculator__value {
  font-size: 3.5rem;
  font-weight: 900;
  color: #6366f1;
}

.profit-calculator__form {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === SLIDER === */

/* === FOOTER === */
.footer-link {
  text-align: center;
  font-size: 20px;
  font-weight: 350;
  text-transform: uppercase;
  margin: 40px 0;
}

.footer-link a {
  color: black;
  margin: 0 20px;
  text-decoration: none;
}

.footer-link a:hover {
  text-decoration: underline;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .metrics__item {
    width: 100%;
    max-width: 100%;
  }

  .profit-calculator__value {
    font-size: 2.5rem;
  }

  .contact-form__heading {
    font-size: 2rem;
  }

  .arrows-container {
    display: none;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #f4faff 0%);
  color: #333;
  line-height: 1.6;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
    position: relative; /* Add this */
  z-index: 0;
}

.video-container {
  position: relative;
  width: 89%;
  max-width: 100%;
  height: 100vh;
  /* 85% of the screen height */
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  z-index: 1;
}

#mainVideo {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: none;
  --media-object-fit: cover !important;
  --media-object-position: center !important;
}

#videoPlaceholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.8); */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  z-index: 10;
  border-radius: 0;
}

@media (max-width: 768px) {
  .video-container {
    height: 50vh;
  }

  #mainVideo {
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .checking-mobile {
    height: 50px !important;
    width: 50px !important;
    border-radius: 12px !important;
  }

  .mobile {
    font-size: 10px !important;
  }
  .spot svg {
    width: 25px;
    height: 25px;
  }
  .spot.free {
    background: #22c55e;
    color: white;
    height: 50px !important;
    width: 50px !important;
    border-radius: 12px !important;
  }

  .video-container {
    width: 100%;
    height: auto;
    /* padding-top: 56.25%; */
    /* 16:9 Aspect Ratio */
    position: relative;
  }

  #mainVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

#videoPlaceholder img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.overlay {
  /* position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; */
  /* background: rgba(0, 0, 0, 0.8); */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  z-index: 10;
  font-size: 60px;
  font-weight: 600;
}

.overlay img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.metrics__container {
  max-width: 463px;
  /* wider */
  margin: 60px auto;
  /* more space above/below */
  padding: 40px 60px;
  /* more inner space */
  background: white;
  border-radius: 80px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.metrics__heading {
  font-size: 3.75rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  color: #291e0f;
}

.metrics__heading span {
  color: #6c63ff;
}

.metrics__subheading {
  font-size: 1.2rem;
  color: #444;
  text-align: center;
  text-transform: none;
  margin-bottom: 30px;
}

.metrics__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  margin-bottom: 40px;
  margin-left: 250px;
  margin-right: 250px;
}

.totals-block {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.totals-icon {
  background-color: #6c63ff;
  border-radius: 50%;
  width: 70px;
  /* increased size */
  height: 70px;
  /* increased size */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(108, 99, 255, 0.2);
  flex-shrink: 0;
  /* prevents resizing in flex */
  margin-right: 15px;
  /* spacing between icon and text */
  font-size: 28px;
  /* for $ symbol or icon font */
  color: white;
}

.totals-icon svg {
  width: 36px;
  height: 36px;
  fill: white;
}

.totals-title {
  font-size: 1rem;
  color: #444;
  margin-bottom: 5px;
}

.badge-counter {
  font-size: 1.6rem;
  font-weight: bold;
  color: #2ecc71;
  /* green */
}

.profit-calculator {
  background: white;
  color: black;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

.profit-calculator__heading {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.profit-calculator__content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.profit-calculator__value {
  font-size: 3.5rem;
  color: #6c63ff;
  font-weight: 900;
}

#days_range {
  accent-color: #6c63ff;
  height: 8px;
  border-radius: 10px;
}

.hidden-content {
  display: none;
}

.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .spot.checking {
    height: 50px !important;
    width: 50px !important;
  }
  .grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
    /* Even smaller gap */
    justify-content: center;
    padding: 0 10px;
    /* Add some side padding */
  }

  .spot {
    padding: 6px 2px;
    /* Much smaller padding */
    font-size: 10px;
    /* Smaller text */
    border-radius: 6px;
    /* Smaller border radius */
    min-height: auto;
    /* Remove any fixed height */
  }

  .spot span {
    font-size: 10px !important;
    /* Make the emoji and text even smaller */
    line-height: 1.1;
    /* Tighter line spacing */
  }

  .metrics__content {
    margin-bottom: 37px !important;
    margin-left: 35px;
    margin-right: -10px !important;
  }
}

.spot {
  padding: 20px;
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.spot.taken {
  background: #e74c3c;
  color: white;
  height: 80px;
  width: 77px;
}

.spot.free {
  background: #27ae60;
  color: white;
  height: 80px;
  width: 77px;
}

.message {
  margin: 15px 0;
}

.spots-count {
  color: #e74c3c;
  font-weight: bold;
}

.loader-container {
  margin: 15px 0;
}

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #667eea;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

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

  100% {
    transform: rotate(360deg);
  }
}

button {
  background: rgb(93 95 239);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.3rem;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin: 10px;
  font-weight: 600;
}

button:hover {
  transform: translateY(-2px);
}

button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.form-group input {
  width: 100%;
  padding: 18px 25px;
  border: 1px solid #625bf5;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  /* text-transform: uppercase; */
  color: #333;
  outline: none;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

.form-group input::placeholder {
  color: #999;
  font-weight: 500;
}

.form-group input:focus {
  border-color: #4c44ec;
}

.submit-button {
  width: 100%;
  background: #5b5df6;
  padding: 22px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 60px;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  text-transform: uppercase;
}

.submit-button:hover {
  background: #4c44ec;
}

.form-group input:focus {
  outline: none;
  border-color: #667eea;
}

.submit-button {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 15px;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
}

.arrows-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.arrow {
  margin: 0 10px;
  animation: bounce 2s infinite;
}

.arrow-head {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid #667eea;
  margin: 0 auto;
}

.arrow-line {
  width: 2px;
  height: 30px;
  background: #667eea;
  margin: 0 auto;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.text-center {
  text-align: center;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .metrics__container {
    padding: 5px;
    max-width: 95%;
  }

  .metrics__subheading {
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 20px !important;
  }

  .metrics__item.totals-block {
    width: 90% !important;
    height: 100px !important;
  }

  .profit-calculator {
    padding: 19px !important;
  }
}

.viewer-count {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  bottom: auto;
  background: rgba(70, 72, 206, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.9rem;
  z-index: 5;
  white-space: nowrap;
  font-weight: bold;
}

.footer-link {
  text-align: center;
  margin: 40px 0;
}

.footer-link a {
  color: rgb(75 64 50);
  text-decoration: none;
  margin: 0 20px;
  cursor: pointer;
  font-weight: bolder;
}

footer {
  text-align: center;
  padding: 20px;
  color: rgb(75 64 50);
  font-weight: bolder;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
}

.modal-terms {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  max-width: 1000px;
  margin: 5% auto;
  line-height: 1.8;
  color: #333;
  position: relative;

  /* overflow-y: scroll; */
}

.close {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  float: right;
  cursor: pointer;
  background: #f2f2f2;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close:hover {
  color: #fff;
  background: #e74c3c;
}

.metrics__item.totals-block {
  border: 2px solid #6c63ff;
  border-radius: 15px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 8px 16px rgba(108, 99, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
}

.profit-calculator__label {
  font-weight: 600;
  font-size: 1rem;
  color: #222;
}

.profit-calculator__form-label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-top: 10px;
}

.form-container {
  background: white;
  border-radius: 50px;
  padding: 80px 100px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}

.left-section {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.headings-row {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 7px;
}

.heading {
  font-size: 3.2rem;
  font-weight: 900;
  color: #000;
  line-height: 1.1;
}

.blue-text {
  color: #6b7fff;
}

.arrows-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 60px;
  margin: 20px 0 40px 0;
}

.arrow-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.pause-bars {
  display: flex;
  gap: 8px;
}

.bar {
  width: 12px;
  height: 50px;
  background: #6b7fff;
  border-radius: 2px;
}

.arrow-triangle {
  width: 0;
  height: 0;
  border-left: 40px solid #6b7fff;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
}

.security-badges {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #333;
  font-weight: 600;
}

.mcafee-logo {
  width: 20px;
  height: 20px;
  background: #e74c3c;
  border-radius: 3px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
}

.check-mark {
  color: #27ae60;
  font-weight: bold;
  font-size: 1.1rem;
}

.geo-icon {
  color: #3498db;
  font-size: 1.1rem;
}

.ssl-icon {
  color: #f39c12;
  font-size: 1.1rem;
}

.right-section {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-field {
  width: 100%;
  padding: 25px 35px;
  border: 3px solid #6b7fff;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #999;
  background: white;
  outline: none;
  transition: all 0.3s ease;
}

.form-field:focus {
  border-color: #5a68ff;
  color: #333;
}

.phone-wrapper {
  position: relative;
}

.phone-field {
  padding-left: 100px;
}

.country-code {
  position: absolute;
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
}

.submit-btn {
  width: 82%;
  background: #5d5fef;
  color: white;
  border: none;
  padding: 17px 40px;
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;

  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(107, 127, 255, 0.3);
  line-height: 1.2;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(107, 127, 255, 0.4);
}

@media (max-width: 1024px) {
  .form-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 60px 50px;
  }
}

@media (max-width: 768px) {
  .form-container {
    padding: 40px 30px;
    border-radius: 30px;
  }

  .heading {
    font-size: 2.5rem;
  }

  .arrows-container {
    gap: 40px;
    justify-content: center;
  }

  .arrow-triangle {
    border-left: 30px solid #6b7fff;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
  }

  .bar {
    width: 10px;
    height: 40px;
  }

  .security-badges {
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .heading {
    font-size: 1.3rem;
  }

  .form-field {
    padding: 20px 30px;
    font-size: 0.8rem;
  }

  .phone-field {
    padding-left: 90px;
  }

  .country-code {
    left: 30px;
  }

  .submit-btn {
    padding: 14px 25px !important;
    font-size: 18px !important;
    border-radius: 40px !important;
  }
}

.right-section {
  padding-left: 40px;
  /* adjust as needed */
}

.right-wrap {
  display: flex;
  justify-content: center;
}

/* DESKTOP: push form to the right */
/* FORCE center the form ONLY on mobile */
@media (max-width: 768px) {
  .form-container {
    grid-template-columns: 1fr !important;
    text-align: center;
    justify-items: center;
  }

  .right-section {
    width: 95% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .form-field {
    width: 105% !important;
  }

  .submit-btn {
    width: 90% !important;
  }

  .contact-form {
    margin-top: 0px;
    gap: 0 !important;
  }
}

/* Ensure base responsiveness */
.grid-container,
.message,
.loader-container,
.text-center {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
}

/* Center text and elements on mobile */
@media (max-width: 768px) {
  /* .grid-container {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 15px;
                justify-content: center;
            } */

  .message h2 {
    font-size: 1.2rem;
    text-align: center;
  }

  .loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 0;
  }

  #gainAccessBtn {
    width: 1000px;
    max-width: 300px;
    font-size: 1.3rem;
    padding: 14px 20px;
    border-radius: 40px;
  }

  .text-center {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 0;
  }

  .button {
    font-size: 1.3rem !important;
  }
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
  #video-timer {
    font-size: 1.2rem;
    margin: 15px auto 0 auto;
    padding: 12px 20px;
    max-width: 250px;
    border-radius: 20px;
  }

  .viewer-count {
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 12px;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute !important;
  }

  .video-container {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 480px) {
  #video-timer {
    font-size: 1rem;
    margin: 10px auto 0 auto;
    padding: 10px 15px;
    max-width: 200px;
    border-radius: 15px;
  }

  .viewer-count {
    font-size: 0.75rem;
    padding: 3px 6px;
    border-radius: 10px;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute !important;
  }

  .video-container {
    margin-bottom: 0 !important;
  }
}

#introVideo {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  display: block;
}

#mainVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  display: none;
  align-items: center;
  gap: 15px;
  z-index: 15;
}

.control-btn {
  background: transparent;
  border: none;
  color: white;
  padding: 0px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

/* .control-btn:hover {
  background: rgba(255, 255, 255, 0.3);
} */

.fullscreen-btn {
  background: transparent;
  border: none;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

/* .fullscreen-btn:hover {
  background: rgba(255, 255, 255, 0.3);
} */

#mainContent,
#spotsSection,
#statsSection,
#formSection {
  display: none;
  transition: opacity 0.3s ease;
}

#mainContent.visible,
#spotsSection.visible,
#statsSection.visible,
#formSection.visible {
  display: block;
  opacity: 1;
}

#checkAvailabilityBtn {
  background: #6357ff;
  color: white;
  border: none;
  padding: 10px 30px;
  font-size: 38px;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s;
}

#checkAvailabilityBtn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

#checkAvailabilityBtn:hover:not(:disabled) {
  background: #5247ee;
}

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

/* Spot styling to match image */
.spot {
  background: #f3f4f6;
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
  font-weight: 600;
  font-size: 11px;
  line-height: 1.2;
  transition: all 0.3s ease;
  min-height: 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.spot.checking {
  background: #666;
  color: white;
  height: 80px;
}

/* Form input focus states */
.contact-form input:focus {
  border-color: #6366f1 !important;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
  .spots-form-layout {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

@media (max-width: 768px) {
  #spotsGrid,
  #spotsGridCombined {
    grid-template-columns: repeat(5, 1fr) !important;
    grid-template-rows: repeat(2, 1fr) !important;
  }

  .form-headings .heading {
    font-size: 1.5rem !important;
  }
}

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

/* Spot styling to match image */
.spot {
  background: #f3f4f6;
  border-radius: 13px;
  padding: 15px 10px;
  text-align: center;
  font-weight: 600;
  font-size: 11px;
  line-height: 1.2;
  transition: all 0.3s ease;
  min-height: 65px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Form input focus states */
.contact-form input:focus {
  border-color: #6366f1 !important;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  #spotsGrid {
    grid-template-columns: repeat(5, 1fr) !important;
    grid-template-rows: repeat(2, 1fr) !important;
    gap: 8px !important;
    max-width: 100% !important;
  }

  .form-headings .heading {
    font-size: 1.8rem !important;
    text-align: center !important;
  }

  .arrows-container {
    justify-content: center !important;
    gap: 20px !important;
  }

  .contact-form {
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  .form-headings .heading {
    font-size: 1.5rem !important;
  }

  .spot {
    padding: 12px 8px !important;
    min-height: 55px !important;
    font-size: 10px !important;
  }
}

.form-container-center {
  width: 100%;
}

.single-column-container {
  max-width: 1536px !important;
  margin: 60px auto !important;
  padding: 40px 60px;
  background: white;
  border-radius: 80px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* responsive devices */

/* Mobile Responsive Changes - Add these to your existing CSS */

/* Mobile Video Container Fixes */
@media (max-width: 768px) {
  .video-container {
    width: 100% !important;
    height: 50vh !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }

  #mainVideo,
  #introVideo {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  #videoPlaceholder {
    border-radius: 0 !important;
  }

  .viewer-count {
    font-size: 0.8rem !important;
    padding: 4px 8px !important;
  }
}

/* Mobile Main Content */
@media (max-width: 768px) {
  .metrics__container {
    max-width: 95% !important;
    padding: 10px 15px !important;
    margin: 20px auto !important;
    border-radius: 40px !important;
  }

  .metrics__heading br {
    display: none !important;
  }

  .metrics__subheading {
    font-size: 0.9rem !important;
    margin-bottom: 15px !important;
  }

  #checkAvailabilityBtn {
    font-size: 1rem !important;
    padding: 9px 25px !important;
    border-radius: 25px !important;
    margin-top: 15px !important;
  }
}

/* Mobile Spots Section */
@media (max-width: 768px) {
  .single-column-container {
    max-width: 95% !important;
    padding: 1.5rem !important;
    margin: 20px auto !important;
    border-radius: 20px !important;
  }

  .single-column-container .metrics__heading {
    font-size: 1.3rem !important;
    line-height: 1.2 !important;
    margin-bottom: 25px !important;
    text-align: center !important;
  }

  #spotsGrid {
    grid-template-columns: repeat(5, 1fr) !important;
    grid-template-rows: repeat(2, 1fr) !important;
    gap: 6px !important;
    max-width: 100% !important;
    margin-bottom: 20px !important;
  }

  .spot {
    padding: 8px 4px !important;
    min-height: 45px !important;
    font-size: 9px !important;
    border-radius: 15px !important;
    line-height: 1.1 !important;
  }

  .message h2 {
    font-size: 1.1rem !important;
    margin: 15px 0 !important;
  }

  .spots-count {
    font-size: 1.3rem !important;
  }

  .loader {
    width: 35px !important;
    height: 35px !important;
    border-width: 3px !important;
  }
}

/* Mobile Form Section */
@media (max-width: 768px) {
  #formBelowSpots {
    margin-top: 30px !important;
  }

  .iti-mobile .iti__country-list {
    max-height: 100%;
    width: 90%;
  }

  .flex {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .form-headings {
    text-align: center !important;
    margin-bottom: 0px !important;
  }

  .form-headings .heading {
    font-size: 20px !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
  }

  .arrows-container {
    justify-content: center !important;
    gap: 15px !important;
    margin-bottom: 20px !important;
  }

  .arrow-item .pause-bars div {
    width: 4px !important;
    height: 20px !important;
  }

  .arrow-item div[style*="border-left"] {
    border-left-width: 15px !important;
    border-top-width: 10px !important;
    border-bottom-width: 10px !important;
  }

  .form-container-center {
    max-width: 100% !important;
    width: 100% !important;
  }

  .contact-form {
    max-width: 100% !important;
  }

  .form-input,
  .form-group input {
    width: 100% !important;
    padding: 15px 20px !important;
    font-size: 0.9rem !important;
    border-radius: 25px !important;
    margin-bottom: 15px !important;
  }

  .submit-btn {
    padding: 7px 25px !important;
    font-size: 18px !important;
    border-radius: 40px !important;
    width: 95% !important;
  }

  #phone1 {
    padding-left: 50px !important;
  }
}

/* Mobile Footer */
@media (max-width: 768px) {
  .footer-link {
    font-size: 10px !important;
    margin: 20px 0 !important;
  }

  .footer-link a {
    margin: 0 10px !important;
    display: inline-block !important;
    margin-bottom: 10px !important;
  }

  footer {
    padding: 15px !important;
    font-size: 0.65rem !important;
  }
}

/* Mobile Modal Fixes */
@media (max-width: 768px) {
  .modal {
    padding-top: 50px !important;
  }

  .modal-terms {
    width: 95% !important;
    margin: 5% auto !important;
    padding: 20px !important;
    height: 80% !important;
    border-radius: 8px !important;
  }

  .close {
    width: 28px !important;
    height: 28px !important;
    font-size: 20px !important;
    top: 10px !important;
    right: 10px !important;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .spot {
    padding: 6px 2px !important;
    min-height: 35px !important;
    font-size: 8px !important;
  }

  #spotsGrid {
    gap: 4px !important;
  }

  .form-input,
  .form-group input {
    padding: 12px 15px !important;
    font-size: 0.8rem !important;
  }
}

/* Replace the existing .overlay styles with this */
/* z */

/* Remove the old .overlay img styles and replace with this */
/* .overlay .mute-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  position: relative;
} */

.overlay .mute-icon::before {
  content: "🔊";
  font-size: 32px;
  color: #333;
}

.overlay .mute-icon::after {
  content: "×";
  position: absolute;
  top: -5px;
  right: 10px;
  font-size: 40px;
  color: #333;
  font-weight: bold;
  line-height: 1;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .icon-mobile {
    width: 80px !important;
    height: 80px !important;
  }
  .overlay .mute-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }

  .overlay .mute-icon::before {
    font-size: 24px;
  }

  .overlay .mute-icon::after {
    font-size: 30px;
    top: -3px;
    right: 8px;
  }

  .overlay {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .overlay .mute-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
  }

  .overlay .mute-icon::before {
    font-size: 20px;
  }

  .overlay .mute-icon::after {
    font-size: 24px;
    top: -2px;
    right: 6px;
  }

  .overlay {
    font-size: 16px;
  }
}

.arrows-desktop {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  margin-bottom: 30px;
  margin-top: 40px;
  overflow: visible;
  position: relative;
}

.arrow1 {
  animation: smoothOscillate 8s linear infinite;
  will-change: transform;
}

/* Staggered delays for wave effect */
.arrow1:nth-child(1) {
  animation-delay: 0s;
}
.arrow1:nth-child(2) {
  animation-delay: 0.6s;
}
.arrow1:nth-child(3) {
  animation-delay: 1.2s;
}

/* Smooth oscillation animation */
@keyframes smoothOscillate {
  0% {
    transform: translateX(0px);
  }
  25% {
    transform: translateX(40px);
  }
  50% {
    transform: translateX(0px);
  }
  75% {
    transform: translateX(-40px);
  }
  100% {
    transform: translateX(0px);
  }
}

/* Base responsive improvements */

/* Tablet styles (768px - 1024px) */
@media (max-width: 1024px) {
  .video-container {
    width: 95%;
    height: 60vh;
  }

  .metrics__container {
    max-width: 90%;
    padding: 30px 20px;
  }

  .form-headings {
    width: 100%;
  }

  .arrows-desktop {
    justify-content: center;
    margin: 30px 0;
  }

  .submit-btn {
    width: 98%;
    background: #5d5fef;
    color: white;
    border: none;
    padding: 10px 40px;
    font-size: 23px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(107, 127, 255, 0.3);
    line-height: 1.2;
  }

  .spot {
    padding: 12px 8px;
    min-height: 50px;
    font-size: 10px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px !important;
  }
}

/* Mobile styles (320px - 768px) */
@media (max-width: 768px) {
  .video-container {
    width: 100%;
    height: 50vh;
    margin: 0;
    border-radius: 0;
  }

  .metrics__container {
    max-width: 95%;
    padding: 20px 15px;
    margin: 10px auto;
    border-radius: 20px;
  }

  .metrics__subheading {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  #checkAvailabilityBtn {
    font-size: 1.1rem;
    padding: 15px 30px;
    border-radius: 30px;
  }

  .single-column-container {
    max-width: 95%;
    padding: 1.5rem;
    margin: 10px auto;
    border-radius: 45px !important;
  }

  .single-column-container .metrics__heading {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    text-align: center;
  }

  #spotsGrid {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    max-width: 100%;
    margin-bottom: 25px;
  }

  .spot {
    padding: 10px 6px;
    min-height: 45px;
    font-size: 9px;
    border-radius: 8px;
  }

  .message h2 {
    font-size: 1.2rem;
    margin: 20px 0;
  }

  .spots-count {
    font-size: 1.4rem;
  }

  .loader {
    width: 35px;
    height: 35px;
    border-width: 3px;
  }

  .form-headings .heading {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 15px;
    text-align: center;
  }

  .arrows-desktop {
    justify-content: center !important;
    gap: 15px;
    margin: 20px 0;
  }

  .arrows-desktop img {
    width: 30px;
    height: auto;
  }

  .contact-form {
    max-width: 100%;
  }

  .form-input,
  .form-group input {
    width: 100%;
    padding: 18px 25px;
    font-size: 1rem;
    border-radius: 30px;
    margin-bottom: 15px;
    border: 2px solid #6366f1;
  }

  #phone1 {
    padding-left: 50px;
  }

  .submit-btn {
    width: 60%;
    padding: 20px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    margin-top: 20px;
  }

  .viewer-count {
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 15px;
    top: 10px;
  }

  .overlay {
    font-size: 18px;
  }

  .overlay .mute-icon {
    width: 60px;
    height: 60px;
  }

  .footer-link {
    font-size: 0.9rem;
    margin: 30px 0;
  }

  .footer-link a {
    margin: 0 15px;
    display: inline-block;
    margin-bottom: 10px;
  }

  .modal-terms {
    width: 95%;
    margin: 5% auto;
    padding: 20px;
    height: 80%;
    border-radius: 15px;
  }
}

/* Small mobile styles (320px - 480px) */
.spot.checking {
  height: 80px;
  width: 77px;
  border-radius: 12px !important;
}
@media (max-width: 480px) {
  .spot.taken {
    height: 50px !important;
    width: 50px !important;
    border-radius: 12px !important;
  }
  .video-container {
    height: 40vh;
  }

  .metrics__heading {
    font-size: 22px !important;
    line-height: 1.2 !important;
  }

  .metrics__subheading {
    font-size: 0.9rem;
  }

  #checkAvailabilityBtn {
    font-size: 1rem;
    padding: 12px 25px;
  }

  .single-column-container .metrics__heading {
    font-size: 1.2rem;
  }

  #spotsGrid {
    gap: 6px;
  }

  .spot {
    padding: 8px 4px;
    min-height: 40px;
    font-size: 8px;
    border-radius: 6px;
  }

  .message h2 {
    font-size: 1rem;
  }

  .spots-count {
    font-size: 1.2rem;
  }

  .arrows-desktop img {
    width: 25px;
  }

  .form-input,
  .form-group input {
    padding: 15px 20px;
    font-size: 0.9rem;
    border-radius: 25px;
  }

  #phone1 {
    padding-left: 50px !important;
  }

  .submit-btn {
    padding: 18px 25px;
    font-size: 1rem;
    border-radius: 25px;
  }

  .viewer-count {
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 12px;
  }

  .overlay {
    font-size: 32px;
  }

  .overlay .mute-icon {
    width: 50px;
    height: 50px;
  }

  .footer-link {
    font-size: 0.8rem;
  }

  footer {
    font-size: 0.75rem;
    padding: 15px 10px;
  }

  .modal-terms {
    padding: 15px;
    border-radius: 10px;
  }
}

@media (max-width: 375px) {
  .metrics__heading {
    font-size: 1rem !important;
  }
}

/* Extra small devices (portrait phones, less than 375px) */
@media (max-width: 375px) {
  .metrics__heading {
    font-size: 1rem;
  }

  .form-headings .heading {
    font-size: 1.2rem;
  }

  .spot {
    padding: 6px 3px;
    min-height: 35px;
    font-size: 7px;
  }

  .form-input,
  .form-group input {
    padding: 12px 18px;
    font-size: 0.85rem;
  }

  .submit-btn {
    padding: 15px 20px;
    font-size: 0.9rem;
  }

  .arrows-desktop img {
    width: 20px;
  }
}

/* Landscape orientation fixes for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .spot.taken {
    height: 65px !important;
    width: 65px !important;
  }

  .video-container {
    height: 80vh;
  }

  .metrics__container {
    margin: 5px auto;
  }

  .single-column-container {
    padding: 1rem;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .form-input:focus,
  .form-group input:focus {
    transform: scale(1.02);
    transition: transform 0.2s ease;
  }

  .submit-btn:active {
    transform: scale(0.98);
  }

  button:active {
    transform: scale(0.95);
  }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .arrows-desktop img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    width: 70%;
    transform: rotate(90deg);
  }

  .overlay .mute-icon {
    transform: translateZ(0);
  }
}

/* Mobile-only up/down animation */
@media (max-width: 768px) {
  .arrows-desktop {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    margin-bottom: 20px !important;
    margin-top: 30px !important;
  }

  .arrow1 {
    animation: mobileUpDown 7s linear infinite;
    will-change: transform;
  }

  .arrow1:nth-child(1) {
    animation-delay: 0.4s;
  }

  .arrow1:nth-child(2) {
    animation-delay: 0.4s;
  }

  .arrow1:nth-child(3) {
    animation-delay: 0.4s;
  }

  .arrows-desktop img {
    transform: rotate(90deg);
  }

  @keyframes mobileUpDown {
    0% {
      transform: translateY(0px);
    }
    25% {
      transform: translateY(-20px);
    }
    50% {
      transform: translateY(0px);
    }
    75% {
      transform: translateY(20px);
    }
    100% {
      transform: translateY(0px);
    }
  }
}

/* Keep horizontal movement for desktop */
@media (min-width: 769px) {
  .arrows-desktop {
    display: flex !important;
    justify-content: center !important;
    gap: 30px;
    margin-bottom: 30px;
    margin-top: 40px;
  }

  .arrow1 {
    animation: smoothOscillate 8s linear infinite;
    will-change: transform;
  }

  .arrow1:nth-child(1) {
    animation-delay: 0s;
  }

  .arrow1:nth-child(2) {
    animation-delay: 0.4s;
  }

  .arrow1:nth-child(3) {
    animation-delay: 0.8s;
  }

  @keyframes smoothOscillate {
    0% {
      transform: translateX(0px);
    }
    25% {
      transform: translateX(35px);
    }
    50% {
      transform: translateX(0px);
    }
    75% {
      transform: translateX(-35px);
    }
    100% {
      transform: translateX(0px);
    }
  }
}

.mobile-br {
  display: none;
}

/* Show mobile breaks only on mobile devices */
@media (max-width: 768px) {
  .mobile-br {
    display: block !important;
  }

  /* Hide desktop breaks on mobile */
  .desktop-br {
    display: none !important;
  }

  .metrics__heading {
    font-size: 21px !important;
    line-height: 1.3 !important;
    margin-bottom: 2px !important;
    text-align: center !important;
  }
}

@media (max-width: 375px) {
  .metrics__heading {
    font-size: 20px !important;
  }
}

@media (max-width: 600px) {
  .metrics__heading .break-after::after {
    content: "\A";
    white-space: pre;
  }
}

.footer__link {
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(75 64 50 / var(--tw-text-opacity));
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .form-container-center {
    max-width: 1200px !important;
  }

  .submit-btn {
    width: 65%;
    background: #5d5fef;
    color: white;
    border: none;
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(107, 127, 255, 0.3);
    line-height: 1.2;
  }
}

@media (min-width: 500px) and (max-width: 770px) {
  .submit-btn {
    width: 64%;
    background: #5d5fef;
    color: white;
    border: none;
    padding: 10px 40px;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(107, 127, 255, 0.3);
    line-height: 1.2;
  }
}

/* Update the progress container */
.progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: black;
  cursor: pointer;
  pointer-events: none;
  z-index: 999998;
  isolation: isolate;

}

/* Update the progress bar */
.progress-bar {
  height: 100%;
  background: #6357ff;
  width: 0%;
  position: relative;
  transition: width 0.1s ease;
  z-index: 999999;
  overflow: visible;
}

/* Update the circular handle */
.progress-bar::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  box-shadow: none;
 z-index: 999999;
}



/* Update video controls positioning */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 0px;
  display: none;
  align-items: center;
  gap: 15px;
  z-index: 15;
}

/* Update progress wrapper */
.progress-wrapper {
  flex: 1 !important;
  position: relative !important;
  height: 2px !important;
  display: flex !important;
  align-items: center !important;
}

.video-resume-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  border-radius: 12px;
}

.resume-content {
  text-align: center;
  color: white;
}

.resume-content h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.resume-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.resume-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.continue-btn {
  background: #6366f1;
  color: white;
}

.restart-btn {
  background: #6366f1;
  color: white;
}

.resume-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

@media (max-width: 768px) {
  .progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: black;
  cursor: pointer;
  pointer-events: none;
  z-index: 999998;
  isolation: isolate;

}

  .progress-bar::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  background: white;
  border-radius: 50%;
  box-shadow: none;
 z-index: 999999;
}
  .resume-content h2 {
    font-size: 1.2rem;
  }

  .resume-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

.video-resume-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  border-radius: 12px;
}

.video-resume-overlay.visible {
  display: flex;
}

.resume-content {
  text-align: center;
  max-width: 900px;
  padding: 40px 30px;
}

.resume-content h2 {
  color: black;
  font-size: 30px;
  font-weight: bold;
  margin: 0 0 30px 0;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.resume-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.resume-btn {
  background: #6366f1;
  color: white;
  border: none;
  padding: 7px 30px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  min-width: 200px;
  justify-content: center;
}

.resume-btn:hover {
  background: #6366f1;
  transform: translateY(-1px);
}

.resume-btn.restart-btn {
  background: #6366f1;
}

.resume-btn.restart-btn:hover {
  background: #6366f1;
}

.play-icon,
.restart-icon {
  font-size: 30px;
}

@media (max-width: 768px) {
  .resume-content h2 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .resume-buttons {
    flex-direction: column;
    align-items: center;
  }

  .resume-btn {
    min-width: 250px;
    padding: 5px 20px;
  }

  .play-icon,
  .restart-icon {
    font-size: 24px;
  }
}

.video-container {
  user-select: none;
}

.video-container:hover {
  /* Optional: Add subtle visual feedback */
  opacity: 0.95;
}

/* Prevent cursor change on control elements */
.video-controls,
.video-controls *,
.resume-btn,
.video-resume-overlay {
  cursor: default !important;
}

/* Desktop: Show desktop secure, hide mobile secure */

/* Complete responsive solution for secure images */
.secure-desktop {
  display: none;
}

.secure-mobile {
  display: none;
}

/* Mobile: up to 768px */
@media (max-width: 768px) {
  .secure-mobile {
    display: block;
    text-align: center;
    margin-top: 20px;
  }

  .secure-mobile img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
}

/* Tablet: 769px to 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
  .secure-desktop {
    display: block;
    text-align: center;
    margin-top: 20px;
  }

  .secure-desktop img {
    width: 100%;
  }
}

/* Desktop: 1025px and above */
@media (min-width: 1025px) {
  .secure-desktop {
    display: block;
  }
}

@media (min-width: 1020px) and (max-width: 1200px) {
  .metrics__container {
    max-width: 750px !important;
    margin: 30px auto;
    padding: 10px 60px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
    text-align: center;
    overflow: hidden;
  }
  .submit-btn {
    width: 90%;
    background: #5d5fef;
    color: white;
    border: none;
    padding: 10px 40px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(107, 127, 255, 0.3);
    line-height: 1.2;
  }
}

@media (min-width: 770px) and (max-width: 1020px) {
  .submit-btn {
    width: 95% !important;
    background: #5d5fef;
    color: white;
    border: none;
    padding: 10px 40px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(107, 127, 255, 0.3);
    line-height: 1.2;
  }

  .flex {
    flex-direction: row !important;
    gap: 30px !important;
  }

  #spotsGrid {
    grid-template-columns: repeat(10, 1fr) !important;
    gap: 6px !important;
    max-width: 500px !important;
  }

  .form-headings .heading {
    font-size: 21px !important;
    text-align: left;
    margin-bottom: 0px !important;
  }

  .spot.taken {
    background: #e74c3c;
    color: white;
    height: 55px !important;
    width: 55px !important;
  }

  .spot.checking {
    background: gray;
    color: white;
    height: 55px !important;
    width: 55px !important;
  }

  .arrows-desktop {
    margin-bottom: 60px !important;
    width: 95% !important;
    margin-top: 30px !important;
  }

  .secure-div {
    width: 45%;
  }

  .spot.free {
    background: #27ae60;
    color: white;
    height: 55px !important;
    width: 55px !important;
  }
  .message h2 {
    display: block;
    font-size: 20px !important;
    color: rgb(41, 30, 15);
    margin: 0px;
  }

  .spots-count {
    font-size: 20px !important;
  }

  .arrows-desktop img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    width: 100% !important;
    transform: rotate(0deg) !important;
  }

  .form-group input {
    width: 100% !important;
    padding: 10px 25px !important;
    border: 1px solid #625bf5 !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    font-weight: 500;
    text-transform: uppercase;
    color: #333;
    outline: none;
    background-color: #fff;
    transition: border-color 0.3s ease;
  }

  .form-container-center {
    width: 50% !important;
  }

  .spot svg {
    width: 25px;
    height: 25px;
  }

  .mobile {
    font-size: 10px !important;
  }
  .metrics__container {
    max-width: 750px !important;
    margin: 30px auto;
    padding: 10px 60px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
    text-align: center;
    overflow: hidden;
  }

  .form-headings {
    margin-bottom: 30px;
    text-align: left;
  }

  #checkAvailabilityBtn {
    background: #6357ff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 0px;
    transition: background-color 0.3s;
    margin-bottom: 20px;
  }

  .metrics__heading {
    font-size: 23px !important;
    line-height: 1.2 !important;
    margin-top: 50px !important;
    margin-bottom: 25px !important;
  }

  .single-column-container {
    max-width: 750px !important;
    margin: 40px auto !important;
    padding: 0px 60px !important;
    background: white;
    border-radius: 80px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    padding-top: 1px !important;
  }

  .footer-link a {
    color: rgb(75 64 50);
    text-decoration: none;
    margin: 0 20px;
    cursor: pointer;
    font-weight: bolder;
    font-size: 16px !important;
  }
}

@media (min-width: 1021px) and (max-width: 1450px) {
  .submit-btn {
    width: 95%;
    background: #5d5fef;
    color: white;
    border: none;
    padding: 10px 40px;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(107, 127, 255, 0.3);
    line-height: 1.2;
  }

  .flex {
    flex-direction: row !important;
    gap: 30px !important;
  }

  #spotsGrid {
    grid-template-columns: repeat(10, 1fr) !important;
    gap: 6px !important;
    max-width: 500px !important;
  }

  .form-headings .heading {
    font-size: 30px !important;
    text-align: left;
    margin-bottom: 15px !important;
  }

  .spot.taken {
    background: #e74c3c;
    color: white;
    height: 80px !important;
    width: 80px !important;
  }

  .spot.checking {
    background: gray;
    color: white;
    height: 80px !important;
    width: 80px !important;
  }

  .arrows-desktop {
    margin-bottom: 70px !important;
    width: 95% !important;
    margin-top: 30px !important;
  }

  .secure-div {
    width: 45%;
  }
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;

    justify-content: center;
  }

  .spot.free {
    background: #27ae60;
    color: white;
    height: 80px !important;
    width: 80px !important;
  }
  .message h2 {
    display: block;
    font-size: 25px !important;
    color: rgb(41, 30, 15);
    margin: 0px;
  }

  .spots-count {
    font-size: 25px !important;
  }

  .arrows-desktop img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    width: 100% !important;
    transform: rotate(0deg) !important;
  }

  .form-group input {
    width: 100% !important;
    padding: 10px 25px !important;
    border: 1px solid #625bf5 !important;
    border-radius: 50px !important;
    font-size: 22px !important;
    font-weight: 500;
    text-transform: uppercase;
    color: #333;
    outline: none;
    background-color: #fff;
    transition: border-color 0.3s ease;
  }

  .form-container-center {
    width: 50% !important;
  }

  .spot svg {
    width: 35px;
    height: 35px;
  }

  .mobile {
    font-size: 15px !important;
  }
  .metrics__container {
    max-width: 1000px !important;
    margin: 30px auto;
    padding: 10px 60px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
    text-align: center;
    overflow: hidden;
  }

  .form-headings {
    margin-bottom: 0px !important;
    text-align: left;
  }

  #checkAvailabilityBtn {
    background: #6357ff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 0px;
    transition: background-color 0.3s;
    margin-bottom: 20px;
  }

  .metrics__heading {
    font-size: 35px !important;
    line-height: 1.2 !important;
    margin-top: 50px !important;
    margin-bottom: 25px !important;
  }

  .single-column-container {
    max-width: 990px !important;
    margin: 40px auto !important;
    padding: 0px 60px !important;
    background: white;
    border-radius: 80px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    padding-top: 1px !important;
  }

  .secure-desktop img {
    width: 100% !important;
  }
}

@media (min-width: 1451px) and (max-width: 1600px) {
  .submit-btn {
    width: 95%;
    background: #5d5fef;
    color: white;
    border: none;
    padding: 10px 40px;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(107, 127, 255, 0.3);
    line-height: 1.2;
  }

  .flex {
    flex-direction: row !important;
    gap: 30px !important;
  }

  #spotsGrid {
    grid-template-columns: repeat(10, 1fr) !important;
    gap: 6px !important;
    max-width: 500px !important;
  }

  .form-headings .heading {
    font-size: 30px !important;
    text-align: left;
    margin-bottom: 15px !important;
  }

  .spot.taken {
    background: #e74c3c;
    color: white;
    height: 80px !important;
    width: 80px !important;
  }

  .spot.checking {
    background: gray;
    color: white;
    height: 80px !important;
    width: 80px !important;
  }

  .arrows-desktop {
    margin-bottom: 30px !important;
    width: 95% !important;
    margin-top: 30px !important;
  }

  .secure-div {
    width: 45%;
  }
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;

    justify-content: center;
  }

  .spot.free {
    background: #27ae60;
    color: white;
    height: 80px !important;
    width: 80px !important;
  }
  .message h2 {
    display: block;
    font-size: 25px !important;
    color: rgb(41, 30, 15);
    margin: 0px;
  }

  .spots-count {
    font-size: 25px !important;
  }

  .arrows-desktop img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    width: 100% !important;
    transform: rotate(0deg) !important;
  }

  .form-group input {
    width: 100% !important;
    padding: 10px 25px !important;
    border: 1px solid #625bf5 !important;
    border-radius: 50px !important;
    font-size: 22px !important;
    font-weight: 500;
    text-transform: uppercase;
    color: #333;
    outline: none;
    background-color: #fff;
    transition: border-color 0.3s ease;
  }

  .form-container-center {
    width: 50% !important;
  }

  .spot svg {
    width: 35px;
    height: 35px;
  }

  .mobile {
    font-size: 15px !important;
  }
  .metrics__container {
    max-width: 1350px !important;
    margin: 30px auto;
    padding: 10px 60px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
    text-align: center;
    overflow: hidden;
  }

  .form-headings {
    margin-bottom: 0px !important;
    text-align: left;
  }

  #checkAvailabilityBtn {
    background: #6357ff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 0px;
    transition: background-color 0.3s;
    margin-bottom: 20px;
  }

  .metrics__heading {
    font-size: 45px !important;
    line-height: 1.2 !important;
    margin-top: 50px !important;
    margin-bottom: 25px !important;
  }

  .single-column-container {
    max-width: 1400px !important;
    margin: 40px auto !important;
    padding: 0px 60px !important;
    background: white;
    border-radius: 80px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    padding-top: 1px !important;
  }

  .secure-desktop img {
    width: 100% !important;
    margin-bottom: 25px !important;
  }
}

@media (min-width: 1600px) and (max-width: 1800px) {
  .arrows-desktop img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    width: 100%;
    transform: rotate(0deg);
  }
}

@media (min-width: 600px) and (max-width: 770px) {
  .submit-btn {
    width: 62% !important;
    background: #5d5fef;
    color: white;
    border: none;
    padding: 10px 40px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(107, 127, 255, 0.3);
    line-height: 1.2;
  }
}

@media (min-width: 500px) and (max-width: 600px) {
  .submit-btn {
    width: 80% !important;
    background: #5d5fef;
    color: white;
    border: none;
    padding: 10px 40px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(107, 127, 255, 0.3);
    line-height: 1.2;
  }
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent !important;
}

@media (min-width: 500px) and (max-width: 769px) {
  .metrics__container {
    .metrics__heading {
      font-size: 30px;
      line-height: 1.3 !important;
      /* margin-bottom: 2px !important; */
      text-align: center !important;
    }
  }
}

.close-ok {
  background: #6366f1;
  color: white;
  border: none;
  padding: 7px 30px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 25px !important;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  min-width: 140px;
  justify-content: center;
  height: 50px !important;
}

@media (min-width: 600px) and (max-width: 770px) {
  .submit-btn {
    width: 95% !important;
    background: #5d5fef;
    color: white;
    border: none;
    padding: 10px 40px;
    font-size: 13px !important;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(107, 127, 255, 0.3);
    line-height: 1.2;
  }

  .flex {
    flex-direction: row !important;
    gap: 30px !important;
  }

  #spotsGrid {
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 6px !important;
    max-width: 500px !important;
  }

  .form-headings .heading {
    font-size: 17px !important;
    text-align: left;
    margin-bottom: 0px !important;
  }

  .spot.taken {
    background: #e74c3c;
    color: white;
    height: 55px !important;
    width: 55px !important;
  }

  .spot.checking {
    background: gray;
    color: white;
    height: 55px !important;
    width: 55px !important;
  }

  .arrows-desktop {
    margin-bottom: 40px !important;
    width: 95% !important;
    margin-top: 50px !important;
  }

  .secure-div {
    width: 45%;
  }

  .spot.free {
    background: #27ae60;
    color: white;
    height: 55px !important;
    width: 55px !important;
  }
  .message h2 {
    display: block;
    font-size: 17px !important;
    color: rgb(41, 30, 15);
    margin: 0px;
  }

  .spots-count {
    font-size: 17px !important;
  }

  .arrows-desktop img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    width: 100% !important;
    transform: rotate(0deg) !important;
  }

  .form-group input {
    width: 100% !important;
    padding: 5px 25px !important;
    border: 1px solid #625bf5 !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    font-weight: 500;
    text-transform: uppercase;
    color: #333;
    outline: none;
    background-color: #fff;
    transition: border-color 0.3s ease;
  }

  .form-container-center {
    width: 50% !important;
  }

  .spot svg {
    width: 25px;
    height: 25px;
  }

  .mobile {
    font-size: 10px !important;
  }
  .metrics__container {
    max-width: 550px !important;
    margin: 30px auto !important;
    padding: 0px 60px !important;
    background: white;
    border-radius: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
    text-align: center;
    overflow: hidden;
  }

  .form-headings {
    margin-bottom: 30px;
    text-align: left;
  }

  #checkAvailabilityBtn {
    background: #6357ff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 0px;
    transition: background-color 0.3s;
    margin-bottom: 20px;
  }

  .metrics__heading {
    font-size: 20px !important;
    line-height: 1.2 !important;
    margin-top: 15px !important;
    /* margin-bottom: 25px !important; */
  }

  .single-column-container {
    max-width: 550px !important;
    margin: 40px auto !important;
    padding: 15px 60px !important;
    background: white;
    border-radius: 80px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    padding-top: 1px !important;
  }

  .secure-desktop {
    display: block !important;
    text-align: center;
    margin-top: 20px;
  }

  .secure-desktop img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .secure-mobile {
    display: none;
    text-align: center;
    margin-top: 20px;
  }

  .metrics__heading .ipad-break::after {
    content: none !important;
    white-space: pre !important;
  }

  .arrow1 {
    animation: smoothOscillate 8s linear infinite !important;
    animation-delay: 0s !important;
    will-change: transform !important;
  }

  .arrow1:nth-child(1) {
    animation-delay: 0s !important;
  }

  .arrow1:nth-child(2) {
    animation-delay: 0.4s !important;
  }

  .arrow1:nth-child(3) {
    animation-delay: 0.8s !important;
  }
}

@media (min-width: 1800px) and (max-width: 1920px) {
  .arrows-desktop img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    width: 100% !important;
    transform: rotate(0deg) !important;
  }
}
