h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 45px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

@media only screen and (max-width: 768px) {
  h1 {
    font-size: 34px;
  }
}

@media only screen and (max-width: 768px) {
  h2 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 768px) {
  h3 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 768px) {
  h4 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 768px) {
  h5 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 768px) {
  h6 {
    font-size: 18px;
  }
}

p {
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.btn-sm {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
}

::selection {
  color: #ffffff;
  background: #0054ad;
  text-shadow: none;
}

.form-range {
  color: #0054ad;
}

.blur {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.slider {
  width: 100%;
  /*max-width: 90%;*/
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  animation: scroll 30s linear infinite;
}

.slide {
  flex: 0 0 auto;
  width: 120px;
  height: 60px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-80px * 6));
  }
}

@media (max-width: 768px) {
  .slide {
    width: 100px;
    height: 60px;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-80px * 6));
  }
}

@media (max-width: 480px) {
  .slide {
    width: 80px;
    height: 40px;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-80px * 6));
  }
}

@media (min-width: 576px) {
  h2 {
    font-size: 23px;
    font-family: 'Poppins', sans-serif;
  }
}

@media (max-width: 600px) {
  .btn {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  .btn-group {
    width: 100%;
    box-sizing: border-box;
  }
}

h2 {
  font-size: 23px;
  font-family: 'Poppins', sans-serif;
}

@media (min-width: 576px) {
  h2 {
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
  }
}

.separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
}

.separator hr {
  flex: 1;
  border: 1px;
  height: 1px;
  background-color: #0054ad !important;
}

.separator span {
  padding: 0 10px;
  color: #0054ad;
}

.auth-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.auth-button img {
  position: absolute;
  left: 16px;
  width: 20px;
  height: 20px;
}

input:-internal-autofill-selected {
  appearance: menulist-button;
  background-color: #0054ad !important;
  background-image: none !important;
  color: #000000;
}

.mt-2 {
  margin-top: 0rem !important;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: #0054ad;
}

.alert-info {
  background-color: var(--bs-info-text-emphasis);
  border-color: var(--bs-info);
  color: var(--bs-info);
}

.timeline {
  border-left: 2px solid #0054ad;
  padding-left: 20px;
  margin-left: 10px;
}

.timeline-item {
  position: relative;
  margin-bottom: 20px;
}

.timeline-item::before {
  content: '';
  width: 12px;
  height: 12px;
  background-color: #0054ad;
  border-radius: 50%;
  position: absolute;
  left: -27px;
  top: 5px;
}

.card-ui:hover {
  transform: translateY(-3px);
}

.logo-container {
  margin-top: 30px;
}

.logo-row {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 20px;
}

.logo {
  width: 60px;
  height: 60px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  perspective: 1000px;
  position: relative;
  border-radius: 8px;
}

.logo .front, .logo .back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background-size: cover;
  border-radius: 8px;
}

.logo .front {
  transform: rotateX(0deg);
}

.logo .back {
  transform: rotateX(180deg);
}

.flip {
  transform: rotateX(0deg);
}

.flip.active {
  transform: rotateX(180deg);
}

.carousel-controls-container {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  align-items: center;
}

.carousel-control-prev, .carousel-control-next {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  opacity: 1;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
  background-color: #ccddef;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

#pausePlayBtn {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  color: black;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}

#pausePlayBtn:hover {
  background-color: #ccddef;
}

.text-success {
  color: var(--bs-success);
}

.text-danger {
  color: var(--bs-danger);
}

.availability-check {
  font-size: 13px;
}

.spinner-border {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bs-primary);
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: var(--bs-body-bg);
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--bs-primary);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.password-strength {
  height: 6px;
  margin-top: 5px;
  transition: width 0.3s ease;
  border-radius: 3px;
}

.strength-weak {
  background-color: var(--bs-danger);
}

.strength-medium {
  background-color: var(--bs-warning);
}

.strength-strong {
  background-color: var(--bs-success);
}

.checkbox-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.checkbox-container .form-check {
  flex-basis: calc(50% - 0.25rem);
}

#copyButton {
  transition: all 0.3s ease;
}

#copyButton.copied {
  background-color: var(--bs-success);
  color: var(--bs-light);
}

.toast-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1100;
}

#toast-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1100;
}

.app-auth-container {
  max-width: 450px;
  margin: 5vh auto;
  padding: 40px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.app-auth-section {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.app-auth-section.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 10;
}

.app-auth-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
  padding: 12px;
  font-weight: 500;
}

.app-auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 25px 0;
  color: var(--secondary-color);
}

.app-auth-divider::before, .app-auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e0e0e0;
}

.app-auth-divider span {
  padding: 0 15px;
  background: white;
}

.iti {
  width: 100%;
}

@media (max-width: 480px) {
  .app-auth-container {
    width: 95%;
    margin: 2vh auto;
    padding: 20px;
  }
}

* {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.availability-container {
  max-width: 500px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bs-primary);
  transition: .4s;
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: var(--bs-primary-bg-subtle);
  transition: .4s;
  border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--bs-primary);
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

.max-load-input {
  transition: all 0.3s ease;
}

.max-load-input:focus {
  outline: none;
  border-bottom-color: var(--bs-primary);
}

.availableDriverListCard {
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.auth-container {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-card {
  background: var(--bs-body-bg);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 450px;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h2 {
  font-weight: 700;
  color: var(--primary-color);
}

.form-floating {
  margin-bottom: 1rem;
}

.form-floating > label {
  transition: all 0.3s ease;
}

.social-login {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F0F0F5;
  border: none;
  padding: 0.75rem;
  border-radius: 12px;
  transition: background-color 0.3s ease;
}

.social-btn:hover {
  background-color: #E0E0E5;
}

.social-btn img {
  width: 24px;
  margin-right: 0.5rem;
}

.auth-switch {
  text-align: center;
  margin-top: 1.5rem;
}

.iti {
  width: 100%;
}

.login-divider {
  position: relative;
  text-align: center;
  margin: 1.5rem 0;
  color: #A0A0A0;
}

.login-divider::before, .login-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background-color: #E0E0E0;
}

.login-divider::before {
  left: 0;
}

.login-divider::after {
  right: 0;
}

.back-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-color);
  text-decoration: none;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.bento-card {
  background: var(--bs-body-bg);
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.bento-card-icon {
  font-size: 2.5rem;
  color: var(--bs-primary);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.bento-card-placeholder {
  position: absolute;
  bottom: -20px;
  right: -20px;
  opacity: 0.4;
  font-size: 6rem;
  color: var(--bs-primary);
  z-index: 1;
}

.bento-card-description {
  font-size: 0.9rem;
  color: var(--bs-secondary);
  flex-grow: 1;
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .bento-card {
    margin-bottom: 1rem;
  }
}

.hero-section {
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-info) 100%);
  padding: 4rem 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/api/placeholder/1920/400') center/cover;
  opacity: 0.1;
}

.search-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.search-input {
  background: transparent;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  width: 100%;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-input:focus {
  outline: none;
}

.category-card {
  background: white;
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
  border: none;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.category-icon {
  width: 48px;
  height: 48px;
  background: #f5f7ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.stats-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-top: 2rem;
}

.support-stat {
  text-align: center;
  padding: 0.5rem;
}

.support-stat h4 {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 600;
}

.support-stat {
  margin: 0;
  opacity: 0.8;
}

.text-container {
  text-align: center;
}

@media (min-width: 768px) {
  .text-container {
    text-align: left;
  }
}

.safe-energy {
  color: var(--bs-primary);
}

.delivered-fast {
  color: var(--bs-body-color);
}

h1 {
  display: block;
  margin: 0;
  line-height: 1.2;
}

.offer-special-offers {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.offer-special-offers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/api/placeholder/1200/800');
  background-size: cover;
  opacity: 0.03;
  z-index: 0;
}

.offer-container {
  position: relative;
  z-index: 1;
}

.offer-section-heading {
  margin-bottom: 3rem;
  position: relative;
}

.offer-section-heading::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 70px;
  height: 4px;
  background-color: var(--bs-primary);
}

.offer-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.offer-card .card-body {
  padding: 2rem;
}

.offer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  margin-bottom: 1.5rem;
  color: var(--bs-primary);
  font-size: 1.8rem;
}

.offer-title {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.offer-subtitle {
  color: var(--bs-gray-600);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.offer-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.offer-benefit-icon {
  margin-right: 15px;
  color: var(--bs-primary);
  font-size: 1.2rem;
  padding-top: 3px;
}

.offer-benefit-text {
  flex: 1;
}

.offer-btn {
  padding: 12px 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.offer-btn:hover {
  transform: translateY(-3px);
}

.offer-testimony-section {
  background-color: var(--bs-light);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 4rem;
  position: relative;
}

.offer-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--bs-primary);
}

.offer-stat-label {
  color: var(--bs-gray-600);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-testimony-quote {
  position: relative;
  padding-left: 25px;
  border-left: 3px solid var(--bs-primary);
  font-style: italic;
  color: var(--bs-gray-700);
}

.offer-animated-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(var(--bs-primary-rgb), 0.05) 50%, rgba(255,255,255,0) 100%);
  background-size: 200% 100%;
  animation: offer-shimmer 3s infinite;
  z-index: 0;
}

@keyframes offer-shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.offer-countdown-timer {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.offer-countdown-item {
  background-color: var(--bs-primary);
  color: white;
  width: 70px;
  height: 70px;
  margin: 0 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.offer-countdown-number {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.offer-countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-avatar-group {
  display: flex;
  margin-top: 1.5rem;
}

.offer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid white;
  margin-left: -15px;
  background-color: #f8f9fa;
}

.offer-avatar:first-child {
  margin-left: 0;
}

.offer-avatar-count {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bs-light);
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bs-primary);
  margin-left: -15px;
}

.offer-referral-link-form {
  position: relative;
  margin-top: 1.5rem;
}

.offer-referral-input {
  padding: 15px 120px 15px 15px;
  border: 1px solid #ced4da;
  border-radius: 8px;
  font-size: 0.9rem;
}

.offer-copy-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 10px 20px;
  border-radius: 6px;
}

.support-launcher-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: none;
}

.support-launcher-main {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--bs-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.support-launcher-main:hover {
  transform: scale(1.05);
}

.support-launcher-main img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.support-launcher-main.active img {
  transform: rotate(45deg);
}

.support-launcher-options {
  position: absolute;
  bottom: 75px;
  right: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.support-launcher-options.show {
  opacity: 1;
  pointer-events: all;
}

.support-launcher-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.support-launcher-button.show-button {
  transform: translateY(0);
  opacity: 1;
}

.support-launcher-button i {
  font-size: 20px;
  color: white;
}

.support-launcher-label {
  position: absolute;
  right: 65px;
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  padding: 5px 10px;
  border-radius: 8px;
  border: 1px var(--bs-primary-border-subtle);
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.support-launcher-button:hover .support-launcher-label {
  opacity: 1;
}

.support-launcher-intercom {
  background-color: var(--bs-info);
}

.support-launcher-whatsapp {
  background-color: var(--bs-success);
}

.support-launcher-help {
  background-color: var(--bs-danger);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
  }
}

.support-launcher-pulse {
  animation: pulse 2s infinite;
}

.support-card {
  border-radius: 32px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--bs-body-bg);
  margin: 2rem auto;
}

.card-content {
  padding: 2.5rem;
}

.qr-container {
  background: var(--bs-secondary);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: white;
  text-align: center;
}

.qr-code {
  background: white;
  padding: 8px;
  border-radius: 16px;
  max-width: 200px;
  margin: 1.5rem 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.support-link:hover {
  border-color: var(--bs-primary);
}

@media (max-width: 767.98px) {
  .card-content {
    padding: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .qr-container {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .card-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .card-text {
    font-size: 1rem;
  }
}

.brand-primary-bg {
  background-color: var(--bs-primary);
}

.brand-hero {
  background-color: var(--bs-light);
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.brand-section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--bs-gray-200);
}

.brand-logo-preview {
  background-color: var(--bs-gray-100);
  padding: 2rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.brand-color-swatch {
  height: 100px;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}

.brand-download-btn {
  transition: all 0.3s ease;
}

.brand-download-btn:hover {
  transform: translateY(-2px);
}

.logo-container {
  margin-top: 30px;
}

.logo-row {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 20px;
}

.logo {
  width: 60px;
  height: 60px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  perspective: 1000px;
  position: relative;
  border-radius: 8px;
}

.logo .front, .logo .back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background-size: cover;
  border-radius: 8px;
}

.logo .front {
  transform: rotateX(0deg);
}

.logo .back {
  transform: rotateX(180deg);
}

.flip {
  transform: rotateX(0deg);
}

.flip.active {
  transform: rotateX(180deg);
}

.offcanvas-header {
  display: flex;
  align-items: center;
  padding: 8px var(--bs-offcanvas-padding-x);
}

.seamium-404-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--bs-primary);
}

.seamium-404-animation {
  animation: 404-pulse 2s infinite;
}

@keyframes 404-pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

.btn {
  padding: 8px 16px;
  border-radius: 32px;
}

.form-control {
  padding: 8px 16px;
  border-radius: 32px;
}

.form-select {
  padding: 8px 16px;
  border-radius: 32px;
}

