/* ========================================
   YOGAMATE PROFESSIONAL THEME
   Primary Color: Orange (#FF5722)
   Secondary: Warm tones with calming gradients
   ======================================== */

html, body {
  /* Warm gradient background inspired by yoga/wellness */
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 50%, #FFCCBC 100%);
  min-height: 100vh;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100vw;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.mobile-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100vw;
  max-width: 100%;
}

*, *:before, *:after {
  box-sizing: border-box;
}

.container {
  width: 50%;
  max-width: 50%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  overflow-x: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.d-flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.row {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.col-lg-6 {
  width: 50%;
}

.col-md-10 {
  width: 83.333%;
}

.col-sm-12, .col-12 {
  width: 100%;
  max-width: 100%;
}

.font-weight-bold {
  font-weight: bold;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mb-0 {
  margin-bottom: 0;
}

.p-1 {
  padding: 0.25rem;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-lg-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.px-lg-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-pill {
  border-radius: 50rem;
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.transition-all {
  transition: all 0.3s ease;
}

.hover-shadow-lg:hover {
  box-shadow: 0 10px 15px -3px rgba(255, 87, 34, 0.2), 0 4px 6px -2px rgba(255, 87, 34, 0.1);
}

.text-gray-700 {
  color: #4a5568;
}

.d-none {
  display: none;
}

/* ========================================
   LOGO STYLING
   ======================================== */
.logo-container {
  max-width: 400px;
  margin: 15px auto;
  padding: 0px;
  border-radius: 15px;
  transition: transform 0.3s ease;
  position: relative;
}

.logo-container:hover {
  transform: scale(1.05);
}

@keyframes logoZoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.logo-container img {
  width: 70%;
  filter: drop-shadow(0 6px 12px rgba(255, 87, 34, 0.3));
  transition: all 0.3s ease;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.main h2 {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 22px;
  margin-bottom: 5px;
  margin-top: 15px;
  color: #FF5722;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-text {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 19px;
  text-align: center;
  color: #5D4037;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

/* ========================================
   FORM ELEMENTS
   ======================================== */
form {
  padding: 0;
  margin: 0;
}

.success-msg {
  color: #2E7D32;
  font-weight: 600;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.spinner {
  width: 25px;
  height: 25px;
  border: 4px solid #FFE0B2;
  border-top: 4px solid #FF5722;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: auto;
  display: inline-block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.pulse {
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ========================================
   MODERN CARD DESIGN
   ======================================== */
.modern-card {
  position: relative;
  padding: 30px 40px;
  background: linear-gradient(145deg, #FFFFFF 0%, #FFF8F3 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 87, 34, 0.15);
  transition: all 0.3s ease;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: auto;
  border: 2px solid #FF5722;
}

.modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF5722 0%, #FF8A65 50%, #FF5722 100%);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.modern-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 87, 34, 0.25);
}

/* ========================================
   INPUT FIELDS
   ======================================== */
.form-control {
  border: 2px solid #FF8A65;
  border-radius: 30px;
  padding: 12px 20px;
  font-size: 18px;
  line-height: 20px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  color: #5D4037;
}

.form-control:focus {
  border-color: #FF5722;
  box-shadow: 0 0 15px rgba(255, 87, 34, 0.3);
  transform: scale(1.02);
  outline: none;
  background: #FFFFFF;
}

.input-group {
  max-width: 100%;
  border-radius: 2rem;
}

.input-group span {
  background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
  display: inline-block;
  height: 100%;
  min-width: 80px;
  line-height: 56px;
  height: 56px;
  font-weight: 700;
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  border-radius: 50px 0 0 50px;
  box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
}

.form-control.error {
  border-color: #D32F2F;
  box-shadow: 0 0 8px rgba(211, 47, 47, 0.5);
}

.phone-input {
  height: 56px;
}

.form-control:disabled {
  background-color: #F5F5F5;
  border-color: #BDBDBD;
}

.error {
  color: #D32F2F;
  font-size: 14px;
  font-weight: 600;
}

.success {
  color: #2E7D32;
  font-size: 14px;
  font-weight: 600;
}

.input-group .form-control {
  border-radius: 0 30px 30px 0;
  overflow: hidden;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  border-radius: 30px;
  font-weight: bold;
}

.text-lg {
  font-size: 16px;
  font-weight: 700;
  color: #FF5722;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.theme-btn {
  background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
  color: #ffffff;
  transition: all 0.4s ease;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 700;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
  letter-spacing: 1px;
}

.theme-btn:disabled {
  background: linear-gradient(135deg, #9E9E9E 0%, #757575 100%);
  cursor: not-allowed;
  opacity: 0.6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.theme-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #E64A19 0%, #FF5722 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(255, 87, 34, 0.5);
  transform: translateY(-2px);
}

.AFsubmitbtn:hover:not(:disabled) {
  background: linear-gradient(135deg, #E64A19 0%, #FF5722 100%);
  transform: translateY(-2px) scale(1.02);
}

/* ========================================
   PRICE POINT & TERMS
   ======================================== */
.price-point {
  font-size: 13px;
  color: #FF5722;
  font-weight: 700;
  background-color: transparent;
  display: block;
  text-align: center;
  width: 100vw;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
  left: 0;
  right: 0;
}

.terms-agreement {
  font-size: 11px;
  color: #5D4037;
  padding: 8px 10px;
  line-height: 1.5;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  margin-top: 5px;
}

.terms-agreement a {
  color: #FF5722;
  text-decoration: underline;
  font-weight: bold;
  transition: all 0.3s ease;
}

.terms-agreement a:hover {
  color: #E64A19;
}

/* Custom checkbox styling */
.terms-agreement input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #FF5722;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  position: relative;
  top: -1px;
  vertical-align: middle;
  margin-right: 6px;
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.terms-agreement input[type="checkbox"]:checked {
  background-color: #FF5722;
  border-color: #FF5722;
}

.terms-agreement input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  color: white;
  font-size: 15px;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.terms-agreement input[type="checkbox"]:hover {
  border-color: #E64A19;
  box-shadow: 0 0 8px rgba(255, 87, 34, 0.4);
}

/* ========================================
   LANGUAGE SWITCHER
   ======================================== */
.down-arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #FF5722;
  position: absolute;
  top: 14px;
  right: 8px;
}

.dropdown.lang-swticher {
  position: absolute;
  display: inline-block;
  right: 10px;
  top: 10px;
  z-index: 100;
}

.lang-swticher .dropdown-button {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F3 100%);
  color: #FF5722;
  padding: 10px 30px 10px 12px;
  font-size: 13px;
  text-align: center;
  border-radius: 12px;
  cursor: pointer;
  text-transform: uppercase;
  min-width: 90px;
  border: 2px solid #FF5722;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(255, 87, 34, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.lang-swticher .dropdown-button:hover {
  background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
}

.lang-swticher .dropdown-button:hover .down-arrow {
  border-top-color: white;
}

.w-100 {
  width: 100%;
}

.dropdown.lang-swticher .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 100%;
  background-color: white;
  border: 2px solid #FF8A65;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(255, 87, 34, 0.2);
  z-index: 10;
  text-align: center;
  overflow: hidden;
  margin-top: 5px;
}

.lang-swticher .dropdown-content a {
  color: #5D4037;
  padding: 10px 15px;
  text-decoration: none;
  font-size: 13px;
  display: block;
  white-space: nowrap;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 138, 101, 0.2);
  font-weight: 600;
}

.lang-swticher .dropdown-content a:last-child {
  border-bottom: none;
}

.lang-swticher .dropdown-content a:hover {
  background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
  color: #ffffff !important;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ========================================
   LEGAL TEXT
   ======================================== */
.legal-text {
  margin: 10px auto;
  padding: 10px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  color: #5D4037;
  max-width: 100%;
  width: 100%;
  border: 1px solid rgba(255, 138, 101, 0.3);
}

.legal-text p {
  font-size: 12px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  line-height: 1.4;
  color: #5D4037;
  max-width: 100%;
}

.legal-text ul {
  padding-left: 20px;
  margin-bottom: 0;
  list-style-type: disc;
}

.legal-text li {
  font-size: 12px;
  margin-bottom: 0px;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
  color: #5D4037;
}

.legal-text a {
  color: #FF5722;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.legal-text a:hover {
  text-decoration: underline;
  color: #E64A19;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

/* ========================================
   DEVICE ICONS
   ======================================== */
.device-icon {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.device-icon svg {
  width: 60px;
  color: #FF5722;
  transition: transform 0.3s ease, filter 0.3s ease, color 0.3s ease;
  filter: drop-shadow(0 3px 6px rgba(255, 87, 34, 0.3));
}

.device-icon:hover svg {
  color: #E64A19;
  transform: rotate(-12deg) scale(1.15);
  filter: drop-shadow(0 5px 10px rgba(255, 87, 34, 0.5));
}

/* ========================================
   PROGRESS BAR
   ======================================== */
.user-progressbar {
  display: none;
}

.progressbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 400px;
  margin: 0px auto 15px auto;
  position: relative;
}

.step {
  flex: 1;
  position: relative;
}

.number {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #FFE0B2 0%, #FFCCBC 100%);
  border: 2px solid #FF8A65;
  border-radius: 50%;
  line-height: 31px;
  color: #5D4037;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 12;
  margin: auto;
}

.step.active .number {
  background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
  color: #ffffff;
  border-color: #FF5722;
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.4);
}

.label {
  margin-top: 5px;
  font-size: 12px;
  color: #5D4037;
  text-align: center;
  font-weight: 600;
}

.progressbar .step::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 25px;
  right: 15px;
  height: 4px;
  width: 100%;
  background: #FFE0B2;
  z-index: 0;
}

.progressbar .step::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 25px;
  height: 4px;
  background: #FF5722;
  z-index: 1;
}

.progressbar .step:last-child::before,
.progressbar .step:last-child::after {
  content: none;
}

.progressbar .step.active::before,
.progressbar .step.active::after {
  width: 100%;
}

/* ========================================
   FOOTER LINKS
   ======================================== */
.footer-links {
  text-align: center;
  margin-top: 15px;
}

.footer-links a {
  font-size: 12px;
  color: #5D4037;
  transition: color 0.3s ease;
  font-weight: 600;
}

.footer-links a:hover {
  color: #FF5722;
  text-decoration: underline;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.transform {
  transform-origin: center;
}

.transform.-rotate-12 {
  transform: rotate(-12deg);
}

.transform.rotate-12 {
  transform: rotate(12deg);
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.justify-content-center {
  justify-content: center;
}

/* ========================================
   ALERT STYLING
   ======================================== */
.alert-danger {
  color: #C62828;
  background-color: #FFEBEE;
  border: 1px solid #EF9A9A;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
}

.alert-success {
  color: #2E7D32;
  background-color: #E8F5E9;
  border: 1px solid #A5D6A7;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
}

/* ========================================
   SPINNER ANIMATION
   ======================================== */
.spinner-border {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  vertical-align: text-bottom;
  border: 0.2em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border .75s linear infinite;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@keyframes spinner-border {
  to { transform: rotate(360deg); }
}

/* ========================================
   LEGAL SUBSCRIPTION TABLE
   ======================================== */
.legal-subscription-container {
  max-width: 100%;
  border-radius: 15px;
  overflow: hidden;
  font-family: Arial, sans-serif;
  border: 2px solid #FF8A65;
  margin: 10px auto;
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.2);
}

.legal-subscription-header {
  background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  padding: 12px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legal-subscription-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: #FFFFFF;
}

.legal-subscription-table tr:nth-child(odd) {
  background: #FFF8F3;
}

.legal-subscription-table tr:nth-child(even) {
  background: #FFFFFF;
}

.legal-subscription-table td {
  padding: 8px;
  border-bottom: 1px solid #FFE0B2;
}

.legal-subscription-table td:first-child {
  width: 140px;
  font-weight: 700;
  color: #5D4037;
}

.legal-subscription-table a {
  color: #FF5722;
  text-decoration: underline;
  font-weight: 600;
}

.legal-subscription-table a:hover {
  color: #E64A19;
}

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */
@media (max-width: 991px) {
  .img-wrapper {
    min-height: 400px;
  }
  
  .logo-container {
    max-width: 240px;
  }
  
  .modern-card {
    padding: 25px 30px;
  }
  
  .price-point {
    font-size: 14px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .device-icon svg {
    width: 70px;
  }
  
  .theme-btn {
    font-size: 20px;
  }
  
  .text-lg {
    font-size: 17px;
  }
  
  .legal-text p {
    font-size: 11px;
    line-height: 1.3;
  }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */
@media (max-width: 767px) {
  body {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 50%, #FFCCBC 100%);
    height: 100vh;
    overflow: hidden;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
  }

  .logo-container img {
    width: 100%;
  }

  .main h2{
      font-size: 18px;
  }
  
  .mobile-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
    width: 100%;
  }
  
  .user-progressbar {
    display: none;
  }
  
  .modern-card {
    padding: 15px;
    margin-bottom: 10px;
    width: 100%;
    max-width: 100%;
  }
  
  .form-section {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .text-lg {
    font-size: 15px;
    margin-bottom: 8px;
  }
  
  .device-icon svg {
    width: 45px;
    margin: 0 2px;
  }
  
  .d-flex.justify-content-center.my-2 {
    flex-wrap: wrap;
    gap: 5px;
    justify-content: space-around;
    margin-bottom: 5px !important;
    margin-top: 5px !important;
  }
  
  .service-text {
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  .logo-container {
    max-width: 180px;
    margin: 5px auto;
    padding: 0px;
  }
  
  .price-point {
    font-size: 12px;
    padding: 3px 0px;
    width: 100%;
    background-color: transparent;
    margin-bottom: 3px;
  }
  
  .theme-btn {
    font-size: 17px;
    padding: 8px 15px;
    margin-bottom: 8px;
  }
  
  .input-group span {
    min-width: 65px;
    line-height: 44px;
    height: 44px;
    font-size: 16px;
  }
  
  .phone-input {
    height: 44px;
    font-size: 16px;
  }
  
  .form-control {
    padding: 10px 15px;
    font-size: 16px;
  }
  
  .legal-text {
    margin: 5px auto;
    padding: 8px;
    font-size: 10px;
    background: rgba(255, 255, 255, 0.8);
    color: #5D4037;
    max-width: 100%;
    width: 100%;
  }
  
  .legal-text p {
    font-size: 11px;
    line-height: 1.4;
    color: #5D4037;
    max-width: 100%;
  }
  
  .legal-text ul {
    padding-left: 15px;
    margin-bottom: 0;
    margin-top: 2px;
  }
  
  .legal-text li {
    font-size: 10px;
    margin-bottom: 1px;
    line-height: 1.2;
  }
  
  .legal-text a {
    font-size: 11px;
    color: #FF5722;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }
  
  .footer-links a {
    font-size: 11px;
    margin: 0 3px;
    padding: 5px 8px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    color: #5D4037;
  }
  
  .dropdown.lang-swticher {
    right: 5px;
    top: 5px;
  }
  
  .lang-swticher .dropdown-button {
    font-size: 11px;
    padding: 8px 25px 8px 8px;
    min-width: 75px;
  }
  
  .down-arrow {
    top: 13px;
    right: 7px;
  }
  
  /* Landscape mode on mobile */
  @media (max-width: 767px) and (orientation: landscape) {
    body {
      height: auto;
      min-height: 100vh;
    }
    
    .container {
      padding-top: 10px;
      padding-bottom: 10px;
      width: 100%;
      max-width: 100%;
    }
    
    .logo-container {
      max-width: 200px;
      margin: 5px auto;
      padding: 5px;
    }
    
    .price-point {
      font-size: 12px;
      padding: 3px 5px;
      margin-bottom: 5px;
      background-color: transparent;
    }
    
    .modern-card {
      padding: 12px;
      margin-bottom: 10px;
    }
    
    .text-lg {
      font-size: 15px;
      margin-bottom: 8px;
    }
    
    .theme-btn {
      font-size: 16px;
      padding: 8px 12px;
    }
    
    .legal-text {
      margin: 5px auto;
      padding: 8px;
      font-size: 10px;
      background: rgba(255, 255, 255, 0.8);
      color: #5D4037;
      max-width: 100%;
      width: 100%;
    }
    
    .legal-text p {
      font-size: 10px;
      line-height: 1.3;
      color: #5D4037;
      max-width: 100%;
    }
    
    .legal-text ul {
      padding-left: 12px;
      margin-bottom: 0;
    }
    
    .legal-text li {
      font-size: 10px;
      margin-bottom: 2px;
      line-height: 1.2;
    }
    
    .legal-text a {
      font-size: 10px;
      color: #FF5722;
    }
    
    .footer-links {
      margin-top: 8px;
    }
    
    .footer-links a {
      font-size: 10px;
    }
  }
}

/* ========================================
   EXTRA SMALL DEVICES
   ======================================== */
@media (max-width: 375px) {
  .logo-container {
    max-width: 170px;
  }
  
  .price-point {
    font-size: 11px;
    padding: 3px 5px;
    width: 100%;
    background-color: transparent;
  }
  
  .theme-btn {
    font-size: 16px;
  }
  
  .device-icon svg {
    width: 35px;
  }
  
  .modern-card {
    padding: 12px;
  }
  
  .form-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .form-wrapper,
  .price-point,
  .logo-container,
  .legal-text,
  .w-100,
  .btn,
  .input-group,
  .form-control,
  #responseMessage,
  .text-lg,
  .service-text {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .input-group,
  .form-control,
  .theme-btn {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .d-flex.justify-content-center.my-2 {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .text-lg {
    font-size: 14px;
  }
  
  .service-text {
    font-size: 14px;
  }
}

/* ========================================
   ADDITIONAL EFFECTS & ANIMATIONS
   ======================================== */
.card {
  background-color: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(255, 87, 34, 0.15);
}

#error-message {
  display: none;
  color: #D32F2F;
  font-size: 14px;
  margin-top: 10px;
  font-weight: 600;
}

.img-banner {
  margin: 10px auto;
}

.img-banner img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.2);
}

/* Splash screen */
#splash {
  display: none;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.splash-container {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 50%, #FFCCBC 100%);
}

.splash-container img {
  width: 100%;
  margin: auto;
  animation: sizzle 0.6s infinite ease-in-out;
  transform-origin: center;
}

@keyframes sizzle {
  0% {
    transform: scale(1) rotate(0deg);
    filter: blur(0);
  }
  25% {
    transform: scale(1.01) rotate(0.5deg);
    filter: blur(0.3px);
  }
  50% {
    transform: scale(0.99) rotate(-0.5deg);
    filter: blur(0.6px);
  }
  75% {
    transform: scale(1.02) rotate(0.3deg);
    filter: blur(0.3px);
  }
  100% {
    transform: scale(1) rotate(0deg);
    filter: blur(0);
  }
}

/* Ripple effect */
.ripple-wrapper {
  position: absolute;
  width: 200px;
  height: 200px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}

.ripple {
  width: 200px;
  height: 200px;
  background: rgba(255, 87, 34, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: scale(0);
  animation: rippleEffect 3s ease-out infinite;
}

.circle1 {
  animation-delay: 0s;
}

.circle2 {
  animation-delay: 1s;
}

.circle3 {
  animation-delay: 2s;
}

@keyframes rippleEffect {
  0% {
    transform: scale(0.2);
    opacity: 0.6;
  }
  30% {
    transform: scale(0.7);
    opacity: 0.8;
  }
  60% {
    transform: scale(1.8);
    opacity: 0.3;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Theme icon color */
.theme-icon {
  color: #FF5722;
}

/* Exit button */
.exit-btn {
  background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
  display: inline-block;
  margin: auto;
  color: #ffffff;
  padding: 8px 25px;
  line-height: 24px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  margin: 10px auto;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
  transition: all 0.3s ease;
}

.exit-btn:hover {
  background: linear-gradient(135deg, #E64A19 0%, #FF5722 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 87, 34, 0.4);
}
