
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #eaf6ff, #b2d8ff, #72e7ff, #003366);
  color: #222;
  line-height: 1.6;
}
.site-header {
  background: #00e1f5;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 999;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: linear-gradient(to right, #001b28, #0f5a7a, #289ea9, #3f93b9, #001b28);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-right {
  display: none;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  width: 100%;
}

.mobile-logo {
  height: 36px;
  width: 36px;
  object-fit: contain;
  border-radius: 6px;
  display: inline-block;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #111;
}

.hamburger {
  font-size: 22px;
  background: #00e1f5;
  color: #003366;
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-btn {
  background: #76cdf3;
  border: 1px solid #111;
  padding: 6px 14px;
  font-weight: bold;
  color: #111;
  text-decoration: none;
}

.login-btn {
  background: linear-gradient(to right, #0f5a7a, #00e1f5, #3f93b9, #001b28);
  color: white;
  font-weight: bold;
  padding: 6px 16px;
  border: none;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
  cursor: pointer;
  text-decoration: none;
}
/* ===================
   MOBILE NAV MENU
=================== */
.mobile-menu {
  position: absolute;
  top: 110px;
  right: 10px;
  width: 200px;
  background: #ffffff;
  border: 1px solid #ccc;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
  flex-direction: column;
  padding: 10px 0;
  border-radius: 8px;
  animation: slideIn 0.3s ease forwards;
}

.mobile-menu.show {
  display: flex;
}

.mobile-menu a,
.mobile-menu button {
  background: #4eb7e9;
  padding: 10px;
  margin: 4px 12px;
  font-weight: bold;
  color: #000;
  border: 1px solid #0077b6;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1rem;
  transition: 0.3s;
}

.mobile-menu a:hover,
.mobile-menu button:hover {
  background: #0077b6;
  color: white;
  transform: scale(1.02);
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ===================
   RESPONSIVE RULES
=================== */
@media (max-width: 768px) {
  .desktop-nav {
    display: none !important;
  }
  .logo-text {
    display: none;
  }
  .mobile-logo {
    display: inline-block;
  }
  .mobile-right {
    display: flex;
    justify-content: flex-end;
  }
  .site-header {
    flex-direction: column;
    align-items: stretch;
  }
  .header-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .hamburger {
    display: block;
    margin-left: auto;
  }
}

@media (min-width: 769px) {
  .mobile-logo,
  .mobile-right,
  .mobile-menu
  .hamburger {
    display: none !important;
  }
}
/* Final Updated Mobile-Friendly HERO SECTION STYLES */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: transparent;
  padding: 40px 20px;
  border-radius: 2px;
  margin: 20px auto;
  max-width: 1200px;
  gap: 50px;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #72e7ff;
  z-index: -1;
  top: 0;
  left: 0;
}

.hero-left {
  min-width: unset;
  width: 100%;
  text-align: center;
}

.hero-cta-wrapper {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.hero-left h1 {
  font-size: 4rem;
  color: #494949;
  margin-bottom: 20px;
}

.hero-left h1 span {
  color: #0400ff;
}

.hero-left p {
  font-size: 1.2rem;
  margin-bottom: 50px;
  color: #001668;
}

.hero-btn, .hero-bt {
  background: linear-gradient(90deg, #ff6600, #ff3300);
  color: #ffffff;
  padding: 22px 34px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.hero-bt {
  background: linear-gradient(90deg, #003cff, #03819d);
}

.hero-btn:hover {
  box-shadow: 0 0 12px #ff4d00;
  transform: scale(1.05);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.hero-right {
  flex: 1;
  text-align: center;
  min-width: 280px;
}

.hero-image {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    padding: 30px 16px;
    text-align: center;
  }

  .hero-left, .hero-right {
    width: 100%;
    min-width: unset;
    text-align: center;
  }

  .hero-cta-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta-wrapper a,
  .hero-btn,
  .hero-bt {
    width: 100%;
    max-width: 280px;
    margin-bottom: 16px;
  }

  .hero-left h1 {
    font-size: 2.5rem;
  }

  .hero-left p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}


/* Updated CSS for Service Section */

.services-section {
  padding: 50px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #b2d8ff, #eaf6ff, #72e7ff, #003366);
}

.services-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #003366;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  justify-items: center;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
  animation: zoomIcon 3s infinite ease-in-out;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.service-card h3 {
  font-size: 0.85rem;
  color: #003366;
  margin-top: 5px;
  line-height: 1.2;
}
.services-section a {
  text-decoration: none;
  color: inherit;
}
.lottie-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}


@keyframes zoomIcon {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.smart-savings-section {
  background: linear-gradient(to bottom, #b2d8ff, #eaf6ff, #72e7ff, #003366);
  padding: 60px 20px;
  text-align: center;
}

.smart-savings-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #00284a;
  font-weight: bold;
}

.smart-tips-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.tip-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}

.tip-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.tip-content {
  padding: 20px;
  text-align: left;
}

.tip-content h3 {
  font-size: 1.1rem;
  color: #003973;
  margin-bottom: 10px;
}

.tip-content .problem {
  color: #b00020;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.tip-content .solution {
  color: #004785;
  font-size: 0.95rem;
}

@media (max-width: 480px) {
  .tip-content h3 {
    font-size: 1rem;
  }
  .tip-content .problem,
  .tip-content .solution {
    font-size: 0.9rem;
  }
}
/* ====================
   SUBTITLE & CTA STYLING
==================== */
.subtitle {
  font-size: 1.1rem;
  color: #025db8;
  margin-top: -25px;
  margin-bottom: 35px;
}

.services-cta {
  margin-top: 50px;
  font-size: 1.1rem;
}
.showroom-offer {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #eaf6ff, #b2d8ff, #72e7ff, #003366);
    text-align: center;
  }
  .showroom-header h2 {
    font-size: 2rem;
    color: #003973;
    margin-bottom: 10px;
  }
  .showroom-header .tagline {
    font-size: 1.1rem;
    color: #003973;
  }
  .showroom-header span {
    color: #ff0000;
    font-weight: bold;
  }
  .showroom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto 0;
  }
  .showroom-card {
    background: #003973;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
  }
  .showroom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  }
  .showroom-card img {
    width: 100%;
    border-radius: 6px;
    height: auto;
    object-fit: cover;
  }
  .showroom-card p {
    margin-top: 10px;
    font-weight: 600;
    color: #ffffff;
  }

  @media (max-width: 480px) {
    .showroom-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  .insurance-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #b2d8ff, #eaf6ff, #72e7ff, #003366);
  text-align: center;
}

.insurance-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.insurance-text {
  flex: 1 1 350px;
  text-align: left;
}

.insurance-text h2 {
  font-size: 2rem;
  color: #020071;
  margin-bottom: 10px;
}

.insurance-text p {
  font-size: 1rem;
  color: #020071;
  margin-bottom: 20px;
}

.insurance-logos {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  align-items: center;
}

.insurance-logos img {
  max-width: 120px;
  height: auto;
}

.insurance-cta {
  font-weight: bold;
  color: #022e43;
}

.insurance-button {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 18px;
  background: linear-gradient(90deg, #000e4e, #00295f);
  color: #00eeff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background 0.3s, transform 0.3s;
}
.insurance-button:hover {
  background: linear-gradient(90deg, #3f93b9, #87d9ff, #0f5a7a);
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .insurance-section {
    padding: 36px 6vw;
  }
  .insurance-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .insurance-text {
    text-align: center;
    width: 100%;
    flex: 1 1 100%;
    padding: 0 2vw;
  }
  .insurance-logos {
    justify-content: center;
    gap: 12px;
    margin: 16px 0;
  }
  .insurance-logos img {
    max-width: 80px;
  }
  .insurance-button {
    width: 100%;
    font-size: 1rem;
    padding: 12px 0;
  }
}
@media (max-width: 480px) {
  .insurance-section {
    padding: 24px 2vw;
  }
  .insurance-text h2 {
    font-size: 1.3rem;
  }
  .insurance-text p {
    font-size: 0.95rem;
  }
  .insurance-logos img {
    max-width: 60px;
  }
}
/* ====================
   WHY CHOOSE US SECTION
==================== */
.why-choose-us {
  background: linear-gradient(to bottom,#eaf6ff, #72e7ff, #003366);
  padding: 60px 20px;
  text-align: center;
  color: #111;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #00295f;
}

.why-choose-us .subline {
  font-size: 1rem;
  color: #00295f;
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: white;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.benefit-card i {
  font-size: 2rem;
  color: #0077b6;
  margin-bottom: 15px;
}

.benefit-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .why-choose-us h2 {
    font-size: 2rem;
  }
  .benefit-card {
    padding: 20px 15px;
  }
}
/* ==============================
   Redesigned App Promo Section CSS
   ============================== */

.app-promo-section {
  background: linear-gradient(to bottom, #006dda, #72e7ff, #eaf6ff, #b2d8ff);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.app-promo-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
}

/* Big promo image (left side) */
.app-image {
  flex: 1;
  text-align: center;
}

.app-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* App info and buttons (right side) */
.app-info {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.app-info h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: #111;
}

.app-info p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

.store-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.store-badges img {
  height: 48px;
  width: auto;
  cursor: pointer;
}

/* ==============================
   Mobile Responsive Styling
   ============================== */

@media (max-width: 768px) {
  .app-promo-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .app-info {
    text-align: center;
  }

  .app-image img {
    max-width: 360px;
  }

  .app-info h2 {
    font-size: 1.8rem;
  }

  .store-badges {
    justify-content: center;
  }

  .store-badges img {
    height: 44px;
  }
}

@media (max-width: 420px) {
  .app-image img {
    max-width: 280px;
  }

  .app-info h2 {
    font-size: 1.6rem;
  }

  .store-badges img {
    height: 40px;
  }
}
/* =======================
   PREMIUM PACKAGE SECTION
========================== */
.premium-package-section {
  display: flex;
  flex-wrap: wrap;
  background: linear-gradient(to bottom, #ffffff, #eaf6ff, #72e7ff, #003366);
  padding: 60px 20px;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.premium-content {
  flex: 1 1 350px;
  max-width: 500px;
}

.premium-content h2 {
  font-size: 2rem;
  color: #004b5c;
  margin-bottom: 10px;
}

.premium-content .sub {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #15007c;
}

.pricing-box {
  display: flex;
  gap: 15px;
  align-items: baseline;
  margin-bottom: 10px;
}

.original-price {
  text-decoration: line-through;
  color: #ff0000;
  font-size: 1.2rem;
}

.final-price {
  font-size: 2rem;
  font-weight: bold;
  color: #000060;
}

.final-price .tax {
  font-size: 0.8rem;
  color: #000dff;
  margin-left: 5px;
}

.note {
  font-size: 0.9rem;
  color: #00132f;
  margin: 10px 0 20px;
}

.book-btn {
  padding: 12px 24px;
  background-color: #ffffff;
  color: #007BFF;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.book-btn:hover {
  background-color: #005fbd;
}

.premium-image {
  flex: 1 1 300px;
  max-width: 500px;
  text-align: center;
}

.premium-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .premium-package-section {
    flex-direction: column;
    text-align: center;
  }

  .pricing-box {
    justify-content: center;
  }
}
/* ====================
   MODAL STYLING
==================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 999;
}
.modal-content {
  background: white;
  width: 90%;
  max-width: 400px;
  margin: 10% auto;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}
.modal-content h2 {
  color: #2c3e50;
}
.modal-content button {
  margin-top: 20px;
  background: #007BFF;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}
.modal .close {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

/* ====================
   FOOTER
==================== */
.site-footer {
  background: linear-gradient(135deg, #025db8, #000000);
  color: white;
  padding: 40px 20px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.footer-links h4 {
  margin-bottom: 10px;
  color: #f39c12;
}
.footer-links a {
  color: white;
  text-decoration: none;
}
.footer-links a:hover {
  color: #f39c12;
}
.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 15px;
}

/* ====================
   RESPONSIVE STYLES
==================== */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .main-nav {
    display: none;
    width: 100%;
  }
  .main-nav.show {
    display: block;
    margin-top: 10px;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 10px;
  }
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .header-right {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .header-left {
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
  .carousel-track img {
    max-height: 220px;
  }
  .main-nav {
  width: 100%;
  margin-top: 10px;
}
.main-nav ul {
  padding-left: 10px;
}
.desktop-nav {
    display: none !important;
  }
  .logo-text {
    display: none;
  }

  @media (max-width: 500px) {
  .custom-packages-section {
    padding: 30px 10px;
  }
}
}
/* Preloader */
#loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.spinner {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #007BFF;
  border-radius: 50%;
  width: 60px; height: 60px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}
.auth-container {
  max-width: 400px;
  margin: 80px auto;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.auth-form input,
.auth-form select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.auth-form button {
  padding: 12px;
  background: #003366;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.auth-form button:hover {
  background: #002244;
}

.car-deal-section {
  background: linear-gradient(to right, #83f9ff, #84d0ff);
  padding: 60px 20px;
  color: #003d63;
  text-align: center;
}

.car-deal-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.deal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.deal-text h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #002e4b;
}

.deal-text .subtext {
  font-size: 1rem;
  color: #00385b;
}

.deal-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.deal-box {
  background: rgb(255, 255, 255);
  border-radius: 12px;
  padding: 20px;
  min-width: 150px;
  max-width: 180px;
  flex: 1 1 150px;
  text-align: center;
  color: #0b0080;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.deal-box:hover {
  transform: translateY(-5px);
}

.zoom-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 16px;
  border-radius: 8px;
}

.deal-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.deal-box p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 12px;
}

.deal-box button {
  padding: 10px 20px;
  background: #047190;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.deal-box button:hover {
  background: #0056b3;
}

/* ===============
   FORM POPUPS
================= */

.form-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.form-popup.active {
  display: flex;
}

.form-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: left;
}

.form-content h2 {
  margin-bottom: 20px;
  color: #222;
}

.form-content .close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #888;
}

.form-content form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-content input,
.form-content select,
.form-content textarea {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.form-content textarea {
  resize: vertical;
  min-height: 80px;
}

.form-content button[type="submit"] {
  background: #007BFF;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.form-content button[type="submit"]:hover {
  background: #0056b3;
}

/* ==============
   RESPONSIVE
=============== */

@media (max-width: 480px) {
  .deal-options {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .deal-box {
    flex: 1 1 140px;
    width: 45%;
    max-width: unset;
    min-width: unset;
  }

  .form-content {
    padding: 20px;
  }
}  
