* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
body {
  overflow-x: hidden;
  margin: 0;
}
.rapodq-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 900;
  cursor: pointer;
  color: white;
  transition: color 0.5s ease;
}
.hero {
  min-height: 100vh;
  padding: 100px 80px 0;
  background: radial-gradient(circle at 75% center, #ffa0a0, #ff5252);
  color: white;
}
.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-text {
  display: flex;
  flex-direction: column;
}
.hero-image img {
  width: auto;
  height: 70vh;
  max-width: 100%;
  object-fit: contain;
}
.footer {
  background: radial-gradient(circle at center, #353535, #000000);
  color: #fff;
  padding: 40px 20px;
  font-size: 14px;
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 30px 20px;
}
.footer-logo {
  height: 50px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.footer-bottom p {
  margin: 5px 0;
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  transition: background 0.5s, color 0.5s;
  z-index: 1000;
}
.navbar.transparent {
  background: transparent;
  color: white;
}
.navbar.solid {
  background: white;
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.navbar.solid .rapodq-text {
  color: #ff5252;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 40px;
  transition: filter 0.5s, opacity 0.5s;
  cursor: pointer;
}
.nav-links {
  display: flex;
  gap: 20px;
}
.nav-links a {
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}
.navbar.transparent .logo img {
  filter: brightness(0) invert(1);
}
.navbar.solid .logo img {
  filter: none;
}
.navbar.transparent .nav-links a {
  color: white;
}
.navbar.solid .nav-links a {
  color: black;
}
.menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
}
.navbar.transparent .menu-btn {
  color: white;
}
.navbar.solid .menu-btn {
  color: black;
}
.country-flag {
  padding-left: 8px;
  filter: none !important;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  letter-spacing: 1.5px;
  font-weight: 600;
  line-height: 1.5;
  gap: 15px;
  padding: 0px 15px;
}
@media (max-width: 768px) {
  .container {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
  .hero-container {
    flex-direction: column;
    align-items: center;
  }
  .hero-image img {
    height: auto;
    max-width: 100%;
    padding-top: 30px;
  }
  .hero-text {
    text-align: center;
  }
  .hero-title {
    font-size: 32px;
    flex-direction: column;
    align-items: center;
  }
  .menu-btn {
    display: block !important;
  }
  .nav-links {
    display: none;
  }
}
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
  }
  .hero-image img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
  }
  .hero-text {
    text-align: center;
  }
  .hero-title {
    font-size: 32px;
    align-items: center;
  }
}
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 1000;
}
.sidebar {
  position: fixed;
  top: 0;
  right: -70%;
  width: 70%;
  height: 100vh;
  background: white;
  box-shadow: -4px 0 6px rgba(0, 0, 0, 0.2);
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  padding: 20px;
  z-index: 1001;
}
.sidebar.active {
  right: 0;
}
.sidebar-header {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
.logo-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.spacer {
  flex: 1;
}
.sidebar-header .logo {
  font-size: 22px;
}
.close-btn {
  font-size: 24px;
  cursor: pointer;
}
.sidebar a {
  text-decoration: none;
  font-size: 18px;
  color: black;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}
.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}
.pricing-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.pricing-item {
  background: white;
  color: black;
  border-radius: 20px;
  height: 350px;
  width: 400px;
  box-shadow: 0 0 20px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100%;
}
.bullet-list li {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.bullet-symbol {
  font-size: 16px;
  margin-right: 10px;
  line-height: 1;
}
.bullet-text {
  font-family: 'Comfortaa', sans-serif;
  font-size: 14px;
}
#priceDisplay {
  font-size: 40px;
  font-weight: bold;
  font-family: 'Prompt', sans-serif;
}
.email-button {
  background-color: #ff5252;
  border: none;
  border-radius: 10px;
  padding: 20px 70px;
  width: 300px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s ease;
}
.email-button span.text {
  font-family: 'Comfortaa', sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: white;
  margin-right: 20px;
  line-height: 25px;
  transition: color 0.5s ease, margin 0.5s ease;
  white-space: nowrap;
}
.email-button.activated span.text {
  font-size: 16px;
  margin-right: 0;
}
.email-button:hover {
  transform: scale(1.1);
}
.email-button span.material-symbols-outlined {
  font-family: 'Material Symbols Outlined' !important;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
  font-size: 30px;
  color: white;
  transition: color 0.5s ease;
}
.email-button.activated span.text,
.email-button.activated span.material-symbols-outlined {
  color: #ff5252;
}
.email-button.activated {
  background-color: white;
  border: 2px solid #ff5252;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  appearance: textfield;
  padding: 5px;
  text-align: center;
}
#customerInput {
  width: 9ch;
}
.tooltip-icon {
  position: relative;
  margin-left: 5px;
  cursor: pointer;
  font-size: 18px;
  color: gray;
  vertical-align: middle;
}
.bottom-sheet-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 9999;
}
.bottom-sheet-overlay.show {
  display: block;
}
.bottom-sheet-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding: 20px;
  max-height: 50%;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
}
.close-bottom-sheet {
  float: right;
  font-size: 24px;
  cursor: pointer;
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

#iframeContainer {
  position: relative;
  height: 600px;
  max-width: 700px;
  margin: 0 auto;
  transition: height 0.5s ease;
}

#iframeContainer iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Overlay layer to absorb touches */
.iframeTouchShield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: transparent;
}

/* Only activate the shield on small/mobile devices */
@media (min-width: 769px) {
  .iframeTouchShield {
    display: none;
  }
}
