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

@font-face{font-display:swap;font-family:'Poppins';font-style:normal;font-weight:400;src:url('https://motorenboerse24.de/assets/fonts/poppins-v23-latin-regular.woff2') format('woff2')}
@font-face{font-display:swap;font-family:'Poppins';font-style:normal;font-weight:500;src:url('https://motorenboerse24.de/assets/fonts/poppins-v23-latin-500.woff2') format('woff2')}
@font-face{font-display:swap;font-family:'Poppins';font-style:normal;font-weight:600;src:url('https://motorenboerse24.de/assets/fonts/poppins-v23-latin-600.woff2') format('woff2')}
@font-face{font-display:swap;font-family:'Poppins';font-style:normal;font-weight:700;src:url('https://motorenboerse24.de/assets/fonts/poppins-v23-latin-700.woff2') format('woff2')}

html,body{
	font-family:'Poppins',sans-serif !important;
    margin: 0;
    background-color: #F3F3F3;
	overflow-x: hidden;
	}



h1, h2, h3 {
	font-family:'Poppins',sans-serif !important;
    font-weight: 600; 
}

.body-bg-important {
    background-color: #fff !important;
}

.evnone {
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 80px;
    background-color: #fff;
    border-bottom: 5px solid #FF6600;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 1.7rem);
    color: #003366;
    letter-spacing: 1px;
    display: inline-block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.logo-text {
    color: #003366;
}

.logo-highlight {
    color: #F86A2E;
}

.logo-svg {
    max-width: 100%; 
    height: auto;
    max-height: 150px; 
}

.logo-container { 
padding-left: 10px;
 }

.contact-container {
  position: relative;
  width: 100%;
  height: 0;
  z-index: 10;
}

.contact-button {
  position: absolute;
  right: 0;
  top: -24px;
  transform: translateX(5%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  background: linear-gradient(45deg, #ff6600, #ff8533);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px 0 0 50px;
  border: none;
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);
  transition: all 0.3s ease;
}

.contact-button:hover {
  background: linear-gradient(45deg, #ff8533, #ff6600);
  box-shadow: 0 8px 24px rgba(255, 102, 0, 0.4);
}

.contact-button i {
  font-size: 18px;
}
@media (max-width: 768px) {
.header {
        flex-direction: column;
        align-items: center;
        text-align: center;
		padding-top: 10px;
}

.logo {
        max-height: 50px;
}
.subtext {
		display: none;
}

.contact-container {
		display: none;
        flex-direction: column;
}

.contact-info {
        margin-right: 0;
        margin-bottom: 10px;
}

.contact-image {
        height: 50px;
        width: 50px;
 }
}

.promo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    text-align: left;
	
    border-bottom: 4px solid #FAFAFA;
}

.promo-image {
    width: 150px;
    height: auto;
    object-fit: cover; 
}

.promo-content {
    max-width: 100%;
}

.promo-content h1 {
    font-size: 36px;
    color: #05233C;
    margin-bottom: 10px;
}

.promo-content p {
    font-size: 22px;
    color: #555;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .promo-container {
        flex-direction: column; 
        text-align: center;
    }

    .promo-image {
        margin-bottom: 15px;
    }

    .promo-content h1 {
        font-size: 28px;
    }

    .promo-content p {
        font-size: 14px;
    }
}

.form-background {
    position: relative;
    overflow: hidden;
}

.form-section {
    position: relative;
    padding: 20px 20px;
    background: #fff;
    overflow: hidden;
}

.custom-form {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
	padding: 15px;
}

.form-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

label {
    font-weight: bold;
    font-size: 18px;
    color: #333;
    text-align: left;
}

input {
    padding: 15px;
    font-size: 18px;
    border: 2px solid #244B65;
    border-radius: 5px;
    outline: none;
    transition: all 1s ease;
	pointer-events: auto;
	font-family:'Poppins',sans-serif !important;
}

small {
    font-size: 14px;
    color: #6c757d;
    text-align: left;
}

.form-footer {
    text-align: center;
}

.submit-btn {
    display: inline-block;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background-color: #FF6D00;
    border: none;
    border-radius: 5px;
    cursor: not-allowed;
    margin-top: 10px;
}

.submit-btn:enabled {
    background: #2BB049;
    cursor: pointer;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column; 
        align-items: center;
    }

    .form-group {
        width: 100%;
    }
	
	.form-footer {
    text-align: center;
	padding-top: 20px;
}

	    label {
        font-size: 15px;
    }

    input {
        font-size: 15px;
        padding: 15px;
        width: 100%;
    }

    .submit-btn {
        font-size: 15px;
		margin-top: -20px;
    }
}
.customer-reviews {
  padding: 60px 20px;
  position: relative;
  text-align: left;
  background: radial-gradient(circle at top left, rgba(254, 102, 0, 0.08), transparent 55%),
              radial-gradient(circle at bottom right, rgba(0, 51, 102, 0.08), transparent 55%),
              #ffffff;
  overflow: hidden;
}

.customer-reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), transparent 40%, transparent 60%, rgba(255, 255, 255, 0.7));
  pointer-events: none;
}

.reviews-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}

.reviews-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FF6D00;
  background: rgba(255, 109, 0, 0.08);
  border: 1px solid rgba(255, 109, 0, 0.25);
  margin-bottom: 10px;
}

.customer-reviews h2 {
  font-size: 26px;
  color: #003366;
  margin-bottom: 8px;
}

.customer-reviews p {
  font-size: 14px;
  color: #555;
}

.reviews-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.review-card {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border-radius: 16px;
  padding: 20px 20px 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at top right, rgba(254, 102, 0, 0.14), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.review-card::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #FF6D00, #FF9A3C);
  opacity: 0.9;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 51, 102, 0.08);
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffffff, #FF6D00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(255, 109, 0, 0.4);
}

.review-meta h4 {
  font-size: 15px;
  color: #003366;
  margin: 0;
  font-weight: 600;
}

.review-location {
  display: block;
  font-size: 12px;
  color: #888;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.star-icon svg {
  width: 16px;
  height: 16px;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
}

.review-card h5 {
  font-size: 14px;
  color: #003366;
  margin: 4px 0 6px;
  font-weight: 600;
}

.review-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .customer-reviews {
    padding: 40px 16px;
  }

  .customer-reviews h2 {
    font-size: 22px;
  }

  .review-card {
    padding: 18px 16px 20px;
  }
}

.facts-section {
  position: relative;
  color: #fff;
  padding: 90px 20px;
  text-align: center;
  overflow: hidden;
  border-top: 4px solid #ccc;
  border-bottom: 4px solid #ccc;
  background:
    linear-gradient(135deg, rgba(0, 34, 77, 0.9), rgba(0, 34, 77, 0.98)),
    url('https://motorenboerse24.de/assets/images/slider-image-1.webp')
      center center / cover no-repeat;
}

.facts-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 0%,
      rgba(254, 102, 0, 0.22),
      transparent 55%),
    radial-gradient(circle at 85% 100%,
      rgba(254, 102, 0, 0.15),
      transparent 55%);
  opacity: 0.9;
  z-index: 0;
}

.facts-section::after {
  content: "";
  position: absolute;
  inset: -40px;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px,
    transparent 9px
  );
  mix-blend-mode: soft-light;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.facts-section * {
  position: relative;
  z-index: 1;
}


.facts-section h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.facts-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto; 
}

.fact-box {
    background: transparent;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    text-align: center;
}

.fact-box h3 {
    font-size: 58px; 
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff; 
}

.fact-box p {
    font-size: 18px;
	font-weight: 600;
    line-height: 1.5;
    color: #fff;
}

.fact-box small {
	color: #D3D3D3;
	
}

@media (max-width: 768px) {
    .facts-container {
        flex-direction: column;
        gap: 40px; 
    }

    .fact-box {
        width: 100%;
        max-width: 300px;
    }
}

.top-navbar {
  background: linear-gradient(to right, rgba(0,51,102, 0.8), rgba(0, 51, 102, 0.9));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.2rem 2rem;
  box-shadow: 0 2px 3px rgba(0,0,0,0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999;
}


@media (min-width: 992px) {
    .top-navbar {
        display: block; 
    }
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.navbar-menu li a.active::after {
  width: 100%;
}


.navbar-menu li a,
.navbar-login a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.navbar-menu li a::after,
.navbar-login a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #ff6600;
  transition: width 0.3s ease;
}

.navbar-menu li a:hover::after,
.navbar-login a:hover::after {
  width: 100%;
}

.navbar-menu li a:hover,
.navbar-login a:hover {
  color: #fff;
}



.dropdown-menu {
    position: absolute;
    background-color: #ffffff;
    list-style: none;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
    top: 100%;
    left: 0;
    z-index: 10;
    width: 150px;
}

.dropdown-menu li {
    text-align: left;
}

.dropdown-menu a {
    color: #000;
    font-size: 14px;
    font-weight: normal;
    padding: 10px 15px;
    display: block;
}

.dropdown-menu a:hover {
    background-color: #F9F9F9;
    color: #000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.navbar-login a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar-login a:hover {
    color: #F86A2E;
}

.navbar-login i {
    font-size: 18px;
}
.highlight-text-cars {
    position: relative;
    color: #F86A2E;
    font-weight: bold;
    font-size: 38px;
    text-transform: uppercase;
    display: inline-block;
}
.highlight-text {
    position: relative;
    color: #2EBD52; 
    font-weight: bold;
    font-size: 38px;
    text-transform: uppercase;
    display: inline-block;
}

.highlight-text::after {
    content: "";
    position: absolute;
    bottom: -0px; 
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #B2E0BD, #2EBD52, #31C856);
    border-radius: 0px;
    animation: waveEffect 15s infinite;
}

@keyframes waveEffect {
    0% {
        transform: scaleX(1) translateX(0%);
    }
    50% {
        transform: scaleX(1.2) translateX(-10%);
    }
    100% {
        transform: scaleX(1) translateX(0%);
    }
}
.tabs-navigation {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.tab {
    text-align: center;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex: 1 1 calc(25% - 10px); 
    max-width: 150px;
    margin: 5px;
}

.tab i {
    font-size: 24px;
    color: #003366;
    margin-bottom: 5px;
    display: block;
}

.tab span {
    font-size: 14px;
    color: #003366;
    font-weight: bold;
}

.tab:hover {
    background-color: #003366;
    color: #fff;
}

.tab:hover i,
.tab:hover span {
    color: #fff;
}

.tab.active {
    background-color: #F86A2E;
    color: #fff;
}

.tab.active i,
.tab.active span {
    color: #fff;
}

.badges {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.badge-title {
    font-size: 16px;
    font-weight: bold;
    color: #003366;
    text-align: center;
	width: 100%;
    background: #FFF;
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
    margin: 0 auto;
}

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

.badge:hover {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border: 2px solid #DCDCDC;
    border-radius: 5px;
    background-color: #F7F7F7;
    color: #FF6D00;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border: 2px solid #F3F3F3;
    border-radius: 5px;
    background-color: #F7F7F7;
    color: #003366;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}


.badge.active {
    background-color: #FF6D00;
    color: #fff;
}


.badge i {
    font-size: 18px;
}

.badge-select {
    display: none; 
}

.badge-selectbox {
    width: 100%; 
    padding: 15px;
    font-size: 16px;
    border: 2px solid #FF6D00;
    border-radius: 8px;
    background-color: #FFF7F0;
    color: #333;
    font-weight: bold;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 109, 0, 0.1);
}

.badge-selectbox:hover {
    background-color: #FF6D00;
    color: #fff;
}

.badge-selectbox:focus {
    outline: none;
    border-color: #FF6D00;
    box-shadow: 0 0 5px rgba(255, 109, 0, 0.5);
}

.form-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .badge-buttons {
        display: none; 
    }

    .badge-select {
        display: block;
        margin-bottom: 20px;
    }

    .form-container {
        flex-direction: column;
        align-items: center;
    }

    .badges {
        order: -1;
        width: 100%;
    }

    .badge-selectbox {
        width: 100%;
    }
}


.form-container.visible {
    display: block; 
}

@media (max-width: 768px) {
    .tabs-navigation {
        flex-direction: column; 
        gap: 10px;
    }

    .tab {
        flex: 1 1 100%; 
        max-width: none;
    }
}
.ti-3x {
    font-size: 4rem;
}
.i-3x {
    font-size: 3rem;
}

.how-it-works {
    padding: 50px 20px;
    text-align: center;
}

.how-header h2 {
    font-size: 28px;
    color: #003366;
    font-weight: bold;
    margin-bottom: 10px;
}

.how-header p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.how-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.progress-container {
    margin: 10px auto;
    max-width: 620px;
    position: relative;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.progress-steps::before {
    content: "";
    position: absolute;
    top: 38%; 
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    border-top: 2px dotted rgba(200, 200, 200, 0.4);
    z-index: 0;
    transform: translateY(-50%);
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step .circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center; 
    font-size: 16px;
    background: rgba(243,243,243, 1.0); 
    color: rgba(189,189,189, 0.8); 
    font-weight: bold;
    transition: all 0.3s ease;
}

.step.active .circle {
    background: rgba(202,202,202, 1.0); 
    border-color: rgba(50, 50, 50, 0.8); 
    color: #fff; 
}

.step span {
	margin-left: 35px;
    font-size: 12px;
    color: rgba(50, 50, 50, 0.7); 
    display: block;
    transition: color 0.3s ease;
}

.step.active span {
    color: rgba(50, 50, 50, 1); 
}

.step h3 {
    font-size: 18px;
    color: #003366;
    margin: 15px 0;
}

.step p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.step-image {
    width: 135px;
    height: 135px;
    margin: 0 auto 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: none;
    box-shadow: none;
}

.step-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .how-steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .how-header h2 {
        font-size: 24px;
    }

    .how-header p {
        font-size: 14px;
    }

    .step h3 {
        font-size: 16px;
    }

    .step p {
        font-size: 12px;
    }
}
.how-cta {
  margin-top: 40px;
  text-align: center;
  width: 100%;
}

.faq-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #F9F9F9;
    text-align: center;
    border-bottom: 4px solid #F0F0F0;
}

.faq-header {
    margin-bottom: 40px;
}

.faq-header h2 {
    font-size: 36px;
    color: #003366;
    font-weight: bold;
    margin-bottom: 10px;
}

.faq-header p {
    font-size: 18px;
    color: #555;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.faq-question {
    cursor: pointer;
    padding: 20px;
	font-size: 16px;
	text-align: left;
    font-weight: bold;
    color: #003366;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-arrow {
    width: 12px;
    height: 12px;
    border: solid #003366;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    transition: max-height 0.3s ease, padding 0.3s ease;
    text-align: left; 
    padding-left: 20px;
}

.faq-item.active .faq-answer {
    max-height: 150px; 
    padding: 10px 20px; 
}


.faq-item.active .faq-arrow {
    transform: rotate(-135deg);
}

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 28px;
    }

    .faq-header p {
        font-size: 14px;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 14px;
    }
}
.hidden {
    display: none;
}

#brand:disabled, #model:disabled, #year:disabled {
    background-color: #f0f0f0;
    color: #aaa;
    cursor: not-allowed;
}

.form-input {
    appearance: none;
    width: 100%;
    padding: 15px;
    font-size: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    outline: none;
}

.form-input:focus {
    border-color: #FF6D00;
    box-shadow: 0 4px 10px rgba(255, 109, 0, 0.2);
}

.form-input.completed {
    border-color: #2BB049;
    background-color: rgba(241,255,244, 0.3);
}

.form-input:disabled {
    background-color: #f9f9f9;
    color: #aaa;
    cursor: not-allowed;
}
.footer {
    background-color: #003366; 
    color: #ffffff;
    padding: 80px 40px; 
    text-align: center;
    border-top: 4px solid #ccc;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-column {
    flex: 1 1 20%;
    text-align: left;
    min-width: 200px; 
}

.footer-column h3 {
    font-size: 20px; 
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-list li::before {
    content: "•"; 
    color: #fff;
    font-size: 10px;
}

.footer-list a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 10px;
  font-size: 14px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  max-width: 250px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; 
        align-items: flex-start; 
        gap: 30px;
    }

    .footer-column {
        text-align: left; 
    }

    .footer-column h3 {
        text-align: left; 
        font-size: 18px; 
    }

    .footer-list {
        text-align: left;
    }

    .footer-list li {
        justify-content: flex-start; 
    }

    .footer {
        padding: 40px 20px; 
    }

  .footer-logo {
    max-width: 100px;
  }

  .footer-bottom {
    font-size: 12px;
    padding-top: 20px;
  }
}
.reasons-section {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: 50px 20px;
    align-items: center;
    gap: 40px;
    background: #fff;
    overflow: hidden;
}

.reasons-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    clip-path: polygon(0 100%, 100% 80%, 100% 0, 0 0); 
    border-bottom: 30px solid #CCC;
    z-index: 0;
}

.reasons-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.reasons-image {
    flex: 1;
    max-width: 35%; 
    text-align: center;
}

.reasons-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
}

.reasons-content {
    flex: 2;
    text-align: center; 
}

.reasons-title {
    font-size: 35px;
    color: #003366;
    font-weight: bold;
    margin: 0 auto;
    padding-top: 3%;
    text-align: center;
}

.reason-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
  margin-top: 120px;
  margin-bottom: 120px;
}

.reason-card {
  background: radial-gradient(circle at top left, #fdfdfd, #f5f7fb);
  border-radius: 16px;
  padding: 24px 22px 30px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.reason-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(254, 102, 0, 0.16), transparent 60%);
  opacity: 0.85;
  pointer-events: none;
}

.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.09);
  border-color: rgba(0, 51, 102, 0.08);
}

.reason-icon-badge {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: conic-gradient(
    from 210deg,
    #ff6d00,
    #ff9a3c,
    #ffd9b3,
    #ff6d00
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 24px rgba(255, 109, 0, 0.35);
}

.reason-icon-badge::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffffff, #003366);
}

.reason-icon-symbol {
  position: relative;
  z-index: 1;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

.reason-card h4 {
  font-size: 18px;
  color: #003f7e;
  margin-bottom: 8px;
  font-weight: 700;
}

.reason-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}
.reason-icon-badge svg {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {
  .reason-card {
    padding: 20px 18px 26px;
  }

  .reason-card h4 {
    font-size: 16px;
  }

  .reason-card p {
    font-size: 13px;
  }
}

[data-aos="fade-in"] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-in"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .reasons-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .reasons-container {
        flex-direction: column;
    }

    .reasons-image {
        max-width: 80%;
    }

    .reasons-title {
        text-align: center;
    }
	.hidden-mob {
    display: none;
}
}

#pageloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 999999999;
    display: flex;
    justify-content: center;
    align-items: center;
	font-family:'Poppins',sans-serif !important;
    transition: opacity 0.5s ease-out;
}

#pageloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-circle {
    border: 6px solid #e6e6e6;
    border-top: 6px solid #F86A2E;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.loader-text {
    font-size: 18px;
    color: #003366;
    font-weight: bold;
    margin-top: 20px;
    letter-spacing: 1px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.logo img.responsive-logo {
  max-width: 500px; 
}
.hero-slider.enhanced-hero {
  position: relative;
  height: auto;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.1);
  border-radius: 0px;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.hero-phone-wrapper {
  margin-top: 14px;
  display: flex;
  justify-content: center; 
}

.hero-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.hero-phone-icon svg {
  display: block;
}

.hero-phone-text {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero-phone-wrapper {
    justify-content: center;
  }
}

.hero-play-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero-heading {
    margin-top: -10px;   
  }

  .half-circle-deco.icon-play {
    display: none;
  }

.hero-play-mobile{
  margin-top: 15px;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  isolation: isolate;

  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.70);

  box-shadow:
    0 14px 40px rgba(0,0,0,.22),
    0 10px 22px rgba(0,0,0,.14);

  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.hero-play-mobile svg{
  width: 46px;
  height: 46px;
  color: rgba(10, 18, 30, .92); 
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.18));
}

.hero-play-mobile::before{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255,255,255,.70), rgba(255,255,255,0) 60%);
  opacity: 1;
  z-index: -1;
}

.hero-play-mobile::after{
  content:"";
  position:absolute;
  inset:-6px;
  border-radius: inherit;
  border: 2px solid rgba(255,255,255,.85);
  z-index: -1;
  animation: heroPlayPing 2.0s ease-out infinite;
}

@keyframes heroPlayPing{
  0%   { transform: scale(.92); opacity: 0; }
  12%  { opacity: .85; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

.hero-play-mobile:hover{
  transform: translateY(-1px) scale(1.04);
  box-shadow:
    0 18px 55px rgba(0,0,0,.26),
    0 0 0 8px rgba(255,255,255,.22);
}

.hero-play-mobile:active{
  transform: translateY(0) scale(.98);
}


  .overlay-content.enhanced-overlay {
    padding-top: 8vh;
  }
}
.hero-secondary-pill {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0,51,102, 1);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.hero-secondary-icon svg {
  display: block;
}

.hero-secondary-text {
  white-space: nowrap;
}


.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}


.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.85));
  z-index: 2;
}

.enhanced-overlay {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-heading {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.hero-heading .highlighted.orange-small {
  font-size: clamp(1.1rem, 2.8vw, 1.6rem);
  color: #FF6D00;
  display: inline-block;
  margin-top: 10px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

@media (max-width: 576px) {
  .hero-heading {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  .hero-heading .highlighted.orange-small {
    font-size: 1.1rem;
    line-height: 1.3;
  }
}

.enhanced-overlay .hero-subtext {
  font-size: 1.25rem;
  color: #ddd;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .hero-slider.enhanced-hero {
    height: 300px;
  }
  .enhanced-overlay {
    font-size: 2rem;
  }
  .enhanced-overlay {
    font-size: 1rem;
  }
  .logo img.responsive-logo {
  width: 100%; 
}
}

.styled-section-title h2 {
  align-items: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #003366;
  gap: 1rem;
  margin: 0;
}

.styled-section-title .title-bar {
  width: 50px;
  height: 4px;
  background-color: #ff6600;
  border-radius: 2px;
}

.styled-section-title .subtitle {
  font-size: 1.15rem;
  color: #666;
  font-weight: 400;
  margin: 0;
}

.how-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  flex: 1 1 calc(33% - 2rem);
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.step h3 {
  color: #003366;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: #555;
  font-size: 0.95rem;
}

@media screen and (max-width: 992px) {
  .step {
    flex: 1 1 100%;
  }
  .styled-section-title h2 {
    font-size: 1.75rem;
  }
  .styled-section-title .subtitle {
    font-size: 1rem;
  }
  .half-circle-deco {
  visibility: hidden;
}
}

.half-circle-deco.icon-play {
  position: absolute;
  top: 32%;
  left: 80px;
  width: 86px;
  height: 86px;
  border-radius: 999px;

  background: radial-gradient(circle at 30% 30%,
              rgba(255, 255, 255, 0.12),
              rgba(0, 0, 0, 0.55));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.25);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  z-index: 4;

  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
  overflow: visible;
}

.half-circle-deco.icon-play::before {
  content: "";
  position: absolute;
  inset: -6px;              
  border-radius: inherit;
  padding: 2px;
  background:
    conic-gradient(
      from 210deg,
      transparent 0deg,
      rgba(254, 102, 0, 0.95) 60deg,
      rgba(255, 255, 255, 0.75) 130deg,
      transparent 220deg,
      transparent 360deg
    );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  animation: subtleOrbitRing 12s linear infinite;
}

.half-circle-deco.icon-play::after {
  content: "";
  position: absolute;
  inset: -10px;  
  border-radius: inherit;
  background: radial-gradient(circle,
              rgba(254, 102, 0, 0.18),
              rgba(255, 255, 255, 0.04) 45%,
              transparent 75%);
  opacity: 0.7;
  pointer-events: none;
}

.half-circle-deco.icon-play svg {
  display: block;
  width: 34px;
  height: 34px;
  transform: translateX(1px);
}

.half-circle-deco.icon-play:hover {
  cursor: pointer;
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
  background: radial-gradient(circle at 30% 30%,
              rgba(255, 255, 255, 0.18),
              rgba(0, 0, 0, 0.6));
}

@keyframes subtleOrbitRing {
  0% {
    transform: rotate(0deg);
    opacity: 0.95;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.95;
  }
}

@media (max-width: 768px) {
  .half-circle-deco.icon-play {
    top: 35%;
    left: 40px;
    width: 72px;
    height: 72px;
  }

  .half-circle-deco.icon-play svg {
    width: 28px;
    height: 28px;
  }
}

.services-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  gap: 9px;
  font-family:'Poppins',sans-serif !important;
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

.services-line i {
  margin-right: 5px;
  color: #fff;
  font-size: 1.1rem;
}

.services-line .dot {
  color: #FAFAFA;
  font-size: 1.3rem;
}
.map-partner-section {
  padding: 60px 20px;
  background-color: #fff;
  
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.1);
}
.map-partner-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.map-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
}
.map-text {
  flex: 1;
  min-width: 300px;
  max-width: 540px;
  text-align: left;
}
.mstx h2 {
  font-size: 2rem;
  color: #003366;
  margin-top: 2.4rem;
  margin-bottom: 1rem;
}
.mstx .highlight-orange {
  color: #FF6D00;
}
.mstx p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}
.map-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.map-benefits li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-benefits i {
  color: #2BB049;
}
.map-benefits .benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-right: 4px; 
  display: inline-block;
}

.cta-map-button {
  display: inline-block;
  background-color: #FF6D00;
  color: #fff;
  margin-top: 25px;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

@media (max-width: 768px) {
  .map-partner-container {
    flex-direction: column;
    text-align: center;
  }
  .map-text {
    max-width: 100%;
  }
  .map-text h2 {
    font-size: 1.5rem;
  }
  .services-line {
  visibility: hidden;
}
}
.enhanced-cta {
  position: relative;
  min-height: 300px;
  background-color: #003366;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-overlay-shape {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 1;
}

.cta-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.cta-text {
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.cta-button {
  border: 2px solid #fff;
  padding: 0.75rem 1.5rem;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-transform: uppercase;
}

.cta-button:hover {
  background-color: #fff;
  transform: scale(1.03);
  color: #003366;
}

@media screen and (max-width: 768px) {
  .cta-text {
    font-size: 1.5rem;
  }
  .cta-overlay-shape {
    width: 180px;
    height: 180px;
    top: -60px;
    right: -60px;
  }
  
  .cta-overlay-shape {
    width: 180px;
    height: 180px;
    top: -60px;
    right: -60px;
  }
}

.cta-overlay-shape {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 1;
}
.cta-triangle {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #003366;
  z-index: 2;
}
.cta-map-phone {
  margin-top: 12px;
}

.cta-map-phone a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #FE6600;
  text-decoration: none;
}

.cta-map-phone a svg {
  flex-shrink: 0;
}
.pricing-section {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.pricing-header h2 {
  font-size: 2.2rem;
  color: #003366;
  margin-bottom: 10px;
}

.pricing-header p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.price-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 30px 20px;
  width: 100%;
  max-width: 300px;
  position: relative;
  text-align: left;
}

.price-card.best {
  border: 2px solid #003366;
}

.ribbon {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #FF6D00;
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;
  z-index: 10;
}

.price-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 20px;
  text-align: center;
}

.price-value {
  font-size: 2rem;
  font-weight: bold;
  color: #F86A2E;
  text-align: center;
  margin-bottom: 20px;
}

.price-value small {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-top: 5px;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.features li {
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.features .feature-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}


.price-button {
  display: block;
  margin: 0 auto;
  text-align: center;
  padding: 12px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  background-color: #F86A2E;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 90%;
}

.price-button:hover {
  background-color: #FE8B05;
  color: #fff;
}

@media (max-width: 768px) {
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }
  .price-card {
    max-width: 100%;
  }
}
.faq-section,
.map-partner-section,
.pricing-section,
.reasons-section,
.customer-reviews,
.how-it-works {
  scroll-margin-top: 65px;
}
.navbar-menu li a.active {
  color: #fff;
}

.navbar-menu li a.active::after {
  width: 100%;
}
#videoModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999999;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#videoModal.active {
  visibility: visible;
  opacity: 1;
}

#videoModal video {
  max-width: 100vw;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
}

#videoModal .close-modal {
  position: absolute;
  top: 5px;
  right: 30px;
  font-size: 36px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.2s;
}

#videoModal .close-modal:hover {
  transform: scale(1.2);
}
#formModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999999;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease;
}

#formModal.active {
  visibility: visible;
  opacity: 1;
}

.animated-modal {
  animation: fadeIn 0.4s ease forwards;
  transform: translateY(10px);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  max-width: 800px;
  width: 95%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h2 {
  font-size: 28px;
  color: #003366;
  margin-bottom: 10px;
}

.form-header p {
  color: #555;
  font-size: 16px;
}

.highlight-select {
  background-color: #fff7f2;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 2px solid #FF6D00;
  font-weight: bold;
}

.close-modal {
  position: absolute;
  top: 5px;
  right: 5%;
  font-size: 32px;
  background: transparent;
  border: none;
  color: #003366;
  cursor: pointer;
  z-index: 3;
}

.hidden {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.show {
  display: block;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.angebot-formular-section {
  width: 100%;
  background-color: #fff; 
  padding: 40px 20px;
}

.angebot-formular-section .form-wrapper {
  max-width: 800px;
  margin: 0 auto; 
  padding: 40px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: none; 
}
.about-section {
  padding: 60px 20px;
  background-color: #fff;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.1);
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 5px;
}

.about-text {
  flex: 1;
  min-width: 300px;
  max-width: 540px;
  text-align: left;
}

.about-text h2 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 1rem;
}

.about-highlight {
  color: #FF6D00;
}

.about-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    max-width: 100%;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }
}
.improved-about-section {
  padding: 60px 20px;
  background-color: #fff;
}
.enhanced-about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-image.circle-frame {
  flex: 1;
  max-width: 400px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border: 8px solid #fff;
  background: linear-gradient(to bottom right, #F86A2E22, #00336611);
}
.about-image.circle-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.enhanced-about-text {
  flex: 2;
  min-width: 300px;
  max-width: 620px;
}
.enhanced-about-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.about-title-text {
  font-size: 2.2rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.highlight-orange {
  color: #F86A2E;
}
.title-bar.orange-bar {
  width: 60px;
  height: 4px;
  background-color: #F86A2E;
  border-radius: 2px;
  margin: 10px 0 20px;
}
@media (max-width: 768px) {
  .enhanced-about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-title-text {
    font-size: 1.5rem;
  }
  .enhanced-about-text p {
    font-size: 0.95rem;
  }
  .about-image.circle-frame {
    max-width: 260px;
  }
}
.about-top-title {
  font-size: 1.5rem;
  color: #003366;
  margin-bottom: 2rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-more-section {
  padding: 60px 20px;
  background-color: #F9F9F9;
}
.about-more-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-more-container .about-text {
  flex: 1;
  min-width: 300px;
  max-width: 620px;
}
.about-more-container .about-image {
  flex: 1;
  max-width: 400px;
}
.about-more-container .about-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .about-more-container {
    flex-direction: column;
    text-align: center;
  }
  .about-more-container .about-text,
  .about-more-container .about-image {
    max-width: 100%;
  }
}
.fade-container {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.fade-in {
  opacity: 1 !important;
  transform: translateY(0);
}
.fade-out {
  opacity: 0 !important;
  transform: translateY(10px);
}
.hidden {
  display: none !important;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
	font-family:'Poppins',sans-serif !important;
}

.form-step {
  margin-top: 2rem;
}

.step-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;

  background: linear-gradient(90deg, #ff6d00, #ff9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
}


.step-header p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: #222;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #FF6600;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 2rem;
}

.highlight-select.active {
  border-color: #2BB049;
  background-color: #F1FFF4;
  box-shadow: 0 0 0 2px #2BB04955;
}

.submit-green {
  background-color: #2BB049;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.submit-green:hover {
  background-color: #23913d;
}
.angebot-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 2rem;
	font-family:'Poppins',sans-serif !important;
  font-weight: 700;
  color: #FF6D00;
  width: 100%;
  padding: 0 15px;
  flex-wrap: wrap;
  text-align: center;
}

.angebot-title i {
  font-size: 2rem;
  color: #FF6D00;
}

@media (max-width: 768px) {
  .angebot-title {
    font-size: 1.3rem !important; 
    gap: 6px;
  }

  .angebot-title i {
    font-size: 1.3rem;
  }

  .form-header h2,
  .form-header p {
    text-align: center;
    width: 100%;
  }
}

.section-divider {
  margin: 20px auto 30px;
  width: 100%;
  max-width: 600px;
  border: none;
  height: 1px;
  background-color: #e0e0e0;
}
.benefit-box {
  background: linear-gradient(to bottom, #fff, #f0f4f9);
  padding: 40px 20px;
  border-radius: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.benefit-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.benefit-img img {
  width: 120px;
  height: auto;
  border-radius: 12px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 0.9rem;
  color: #111;
}

.benefit-list i {
  color: #2BB049;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .benefit-box {
    background: none;
    padding: 20px 10px;
  }

  .benefit-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .benefit-img {
    display: none;
  }

  .benefit-list {
    font-size: 0.75rem;
  }
}
.partner-section {
  padding: 60px 20px;
  background: #f5f5f5;
  text-align: center;
}

.partner-section .section-heading h2 {
  font-size: 2.2rem;
  color: #003366;
  margin-bottom: 10px;
}

.partner-section .section-heading p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.partner-logos img {
  height: 40px;
  object-fit: contain;
  
  border-radius: 999px;               
  background-color: #ffffff;      
  padding: 8px 18px;     
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-logos img:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.partner-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #f7f8fb);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.partner-card p {
  padding: 16px 18px 20px;
  font-size: 0.9rem;
  color: #333;
}

.partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    rgba(254, 102, 0, 0.95),
    rgba(254, 138, 40, 0.75)
  );
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.95;
}

.partner-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.45);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .partner-heading {
    font-size: 1.75rem;
  }
  .partner-subheading {
    font-size: 1rem;
  }
  .partner-card img {
    height: 180px;
  }
}
.angebot-formular-section {
  width: 100%;
  background-color: #ffffff;
  padding: 40px 20px 60px;
}

.angebot-formular-section .form-wrapper {
  max-width: 840px;
  margin: 0 auto;
  padding: 32px 26px 34px;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff, #f7f8fb);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.form-header p {
  font-size: 0.98rem;
  color: #555;
  margin-top: 6px;
}
.section-divider {
  margin: 18px auto 10px;
}

.service-form {
  margin-top: 28px;
}

.service-form-header {
  margin-bottom: 20px;
  padding: 24px 0;           
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-form-header h3 {
  font-size: 1.4rem;
  color: #003366;
  margin: 0 0 4px;
  font-weight: 700;
}

.service-form-header p {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
}

.service-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.form-field {
  position: relative;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 4px;
  color: #222;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #f3f6fb;
  color: #003366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.textarea-wrapper .input-icon {
  top: 16px;
  transform: none;
}

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3.1rem;
  border-radius: 10px;
  border: 2px solid #e1e4ec;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
  background-color: #ffffff;
}

.input-wrapper textarea {
  min-height: 130px;
  resize: vertical;
  padding-top: 0.95rem;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
  outline: none;
  border-color: #FF6D00;
  box-shadow: 0 0 0 3px rgba(255, 109, 0, 0.15);
  background-color: #fff;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
  color: #a0a6b5;
  font-size: 0.9rem;
}
.service-form-footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #e3e3e3;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: #555;
}

.privacy-label input[type="checkbox"] {
  margin-top: 3px;
}

.privacy-label a {
  color: #FF6D00;
  text-decoration: none;
}

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

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.submit-green {
  background: linear-gradient(135deg, #2BB049, #28a445);
  color: #fff;
  font-weight: 600;
  padding: 0.8rem 2.4rem;
  border: none;
  border-radius: 999px;
  font-size: 0.98rem;
  cursor: pointer;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.15s ease;
}

.submit-green:disabled {
  background: #cfd4dc;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.submit-green:not(:disabled):hover {
  background: linear-gradient(135deg, #28a445, #23913d);
  box-shadow: 0 10px 26px rgba(43, 176, 73, 0.35);
  transform: translateY(-1px);
}

.btn-reset {
  background: transparent;
  border: 1px solid #c5cad5;
  color: #555;
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-reset:hover {
  background: #f1f3f8;
  border-color: #aeb5c4;
}
@media (max-width: 768px) {
  .angebot-formular-section {
    padding: 30px 14px 40px;
  }

  .angebot-formular-section .form-wrapper {
    padding: 22px 16px 24px;
    border-radius: 16px;
  }

  .service-form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-full {
    grid-column: 1 / 2;
  }

  .service-form-header {
    text-align: center;
  }

  .button-row {
    justify-content: center;
  }

  .privacy-label {
    font-size: 0.8rem;
  }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
  margin-top: 25px;
}

.service-box {
  background: radial-gradient(circle at top left, #fdfdfd, #f5f7fb);
  border-radius: 16px;
  padding: 16px 14px 18px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.service-box iconify-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px !important;
  height: 42px !important;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff7ec, #ffd5ad);
  color: #FF6D00;
  margin-bottom: 8px;
  box-shadow: 0 4px 10px rgba(255, 109, 0, 0.25);
}

.service-box span {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #003366;
  line-height: 1.4;
}

.service-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 51, 102, 0.12);
}

.service-box.active {
  border-color: #FF6D00;
  box-shadow: 0 20px 50px rgba(255, 109, 0, 0.28);
  background: linear-gradient(135deg, #fff7f1, #ffe2cc);
}

.service-box.active iconify-icon {
  background: radial-gradient(circle at 30% 30%, #fff5e7, #ffb86a);
}

.service-box.active span {
  color: #003366;
}

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

  .service-box {
    padding: 14px 12px 16px;
  }
}

.btn-back-selection {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  padding: 0;
  border: none;
  background: transparent;
  color: #FF6D00;         
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-back-selection svg {
  flex-shrink: 0;
}

.btn-back-selection svg path {
  fill: #FF6D00;                
  transition: fill 0.2s ease;
}

.btn-back-selection span {
  border-bottom: 1px dashed rgba(255, 109, 0, 0.7);
  transition: border-color 0.2s ease;
}

.btn-back-selection:hover span {
  border-color: rgba(255, 109, 0, 1);
}

.btn-back-selection:hover svg path {
  fill: #ff8000;
}

@media (max-width: 768px) {
  .btn-back-selection {
    font-size: 0.9rem;
  }
}

.impressum-content {
  margin-top: 10px;
  padding: 10px 0 0;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
}

.impressum-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #003366;
  margin-top: 18px;
  margin-bottom: 6px;
}

.impressum-content p {
  margin-bottom: 10px;
}

.impressum-content a {
  color: #FF6D00;
  text-decoration: none;
}

.impressum-content a:hover {
  text-decoration: underline;
}

.impressum-content ul,
.impressum-content ol {
  margin: 0 0 10px 18px;
  padding-left: 18px;
}

.impressum-content li {
  margin-bottom: 4px;
}

.angebot-formular-section.impressum-section .form-wrapper,
body.impressum-page .angebot-formular-section .form-wrapper {
  max-width: 840px;
  margin: 0 auto;
  padding: 26px 24px 28px;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #f7f8fb);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.angebot-title.impressum-title,
body.impressum-page .angebot-title {
  color: #003366;
  font-size: 1.7rem;
}

.angebot-title.impressum-title i,
body.impressum-page .angebot-title i {
  color: #FF6D00;
}

.impressum-content .section-divider,
body.impressum-page .section-divider {
  margin: 20px auto 18px;
}

@media (max-width: 768px) {
  .impressum-content {
    font-size: 0.9rem;
  }

  .impressum-content h3 {
    font-size: 1.05rem;
  }

  .angebot-formular-section.impressum-section .form-wrapper,
  body.impressum-page .angebot-formular-section .form-wrapper {
    padding: 20px 16px 22px;
    border-radius: 14px;
  }
}

body.datenschutz-page .angebot-formular-section .form-wrapper {
  max-width: 840px;
  margin: 0 auto;
  padding: 26px 24px 28px;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #f7f8fb);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

body.datenschutz-page .angebot-title {
  color: #003366;
  font-size: 1.7rem;
  font-weight: 700;
}

body.datenschutz-page .angebot-title i {
  color: #FF6D00;
}

body.datenschutz-page .form-header p {
  font-size: 0.98rem;
  color: #555;
  margin-top: 6px;
}

body.datenschutz-page .section-divider {
  margin: 20px auto 18px;
}

.datenschutz-content {
  margin-top: 10px;
  padding: 10px 0 0;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
}

.datenschutz-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #003366;
  margin-top: 18px;
  margin-bottom: 6px;
}

.datenschutz-content p {
  margin-bottom: 10px;
}

.datenschutz-content a {
  color: #FF6D00;
  text-decoration: none;
}

.datenschutz-content a:hover {
  text-decoration: underline;
}

.datenschutz-content ul,
.datenschutz-content ol {
  margin: 0 0 10px 18px;
  padding-left: 18px;
}

.datenschutz-content li {
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  body.datenschutz-page .angebot-formular-section .form-wrapper {
    padding: 20px 16px 22px;
    border-radius: 14px;
  }

  .datenschutz-content {
    font-size: 0.9rem;
  }

  .datenschutz-content h3 {
    font-size: 1.05rem;
  }
}

body.agb-page .angebot-formular-section .form-wrapper {
  max-width: 840px;
  margin: 0 auto;
  padding: 26px 24px 28px;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #f7f8fb);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

body.agb-page .angebot-title {
  color: #003366;
  font-size: 1.7rem;
  font-weight: 700;
}

body.agb-page .angebot-title i {
  color: #FF6D00;
}

body.agb-page .form-header p {
  font-size: 0.98rem;
  color: #555;
  margin-top: 6px;
}

body.agb-page .section-divider {
  margin: 20px auto 18px;
}

.agb-content {
  margin-top: 10px;
  padding: 10px 0 0;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
}

.agb-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #003366;
  margin-top: 18px;
  margin-bottom: 6px;
}

.agb-content p {
  margin-bottom: 10px;
}

.agb-content a {
  color: #FF6D00;
  text-decoration: none;
}

.agb-content a:hover {
  text-decoration: underline;
}

.agb-content ul,
.agb-content ol {
  margin: 0 0 10px 18px;
  padding-left: 18px;
}

.agb-content li {
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  body.agb-page .angebot-formular-section .form-wrapper {
    padding: 20px 16px 22px;
    border-radius: 14px;
  }

  .agb-content {
    font-size: 0.9rem;
  }

  .agb-content h3 {
    font-size: 1.05rem;
  }
}
.mb24-callbar {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-top: 64px;
  }

.mb24-callbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: block;
  overflow: hidden;
  background-color: #003366;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06);

  opacity: 0;
  transform: translateY(-40px);
  animation: mb24-callbar-fade 1s ease-out 0.10s forwards;
}

@keyframes mb24-callbar-fade {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


  .mb24-callbar__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    text-decoration: none;
    position: relative;
    isolation: isolate; 
    backdrop-filter: blur(10px);
  }

  .mb24-callbar__inner::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -40%;
    width: 40%;
    height: 180%;
    pointer-events: none;

    background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.45) 45%,
      rgba(255, 255, 255, 0) 100%
    );

    opacity: 0.0;
    transform: translateX(-120%) skewX(-16deg);
    animation: mb24-callbar-shine 2.8s infinite;
  }

  @keyframes mb24-callbar-shine {
    0% {
      opacity: 0;
      transform: translateX(-140%) skewX(-16deg);
    }
    18% {
      opacity: 0;
    }
    28% {
      opacity: 0.9;
    }
    55% {
      opacity: 0;
      transform: translateX(160%) skewX(-16deg);
    }
    100% {
      opacity: 0;
      transform: translateX(160%) skewX(-16deg);
    }
  }

  .mb24-callbar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;

    background: radial-gradient(circle at 30% 0,
      #facc15 0%,
      #f97316 40%,
      #b91c1c 100%
    );
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.18),
      0 8px 18px rgba(0, 0, 0, 0.55);

    animation: mb24-callbar-pulse 1.8s ease-in-out infinite;
  }

  .mb24-callbar__icon svg {
    display: block;
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.65));
  }

  @keyframes mb24-callbar-pulse {
    0% {
      transform: scale(1);
    }
    40% {
      transform: scale(1.07);
      box-shadow:
        0 0 0 1px rgba(249, 115, 22, 0.6),
        0 10px 20px rgba(0, 0, 0, 0.65);
    }
    100% {
      transform: scale(1);
    }
  }

  .mb24-callbar__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .mb24-callbar__label {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #f9fafb;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
  }

  .mb24-callbar__sub {
    margin-top: 2px;
    font-size: 14px;
    font-weight: 500;
    color: #e5e7eb;
    opacity: 0.88;
  }

  .mb24-callbar__inner:active .mb24-callbar__icon {
    transform: scale(0.96);
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.5),
      0 4px 10px rgba(0, 0, 0, 0.7);
  }
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999999;
  background: linear-gradient(
    135deg,
    rgba(5, 5, 5, 0.88),
    rgba(15, 15, 15, 0.9)
  );
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-banner.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px 12px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.cookie-banner-text h3 {
  font-size: 18px;
  margin: 0 0 4px;
  font-weight: 700;
  color: #ffffff; 
}

.cookie-banner-text p {
  margin: 0 0 8px;
  color: #f5f5f5;
}

.cookie-link {
  color: #FE6600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-link:hover {
  opacity: 0.9;
}

.cookie-toggle {
  background: transparent;
  border: none;
  padding: 0;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #FE6600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-toggle::after {
  content: "▾";
  font-size: 11px;
  transition: transform 0.2s ease;
}

.cookie-toggle.cookie-toggle--open::after {
  transform: rotate(180deg);
}

.cookie-settings-panel {
  margin-top: 6px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}

.cookie-settings-panel.cookie-settings-panel--open {
  max-height: 260px; 
  opacity: 1;
}

.cookie-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.cookie-category {
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(18px);
  border-radius: 12px;
  padding: 8px 10px 8px 36px;
  position: relative;
  max-width: 260px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-category.disabled {
  border-style: dashed;
  opacity: 0.9;
}

.cookie-category input[type="checkbox"] {
  position: absolute;
  left: 10px;
  top: 11px;
  accent-color: #FE6600;
}

.cookie-category-title {
  display: block;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 2px;
  color: #ffffff; 
}

.cookie-category-desc {
  display: block;
  font-size: 12px;
  color: #e1e1e1; 
}

.cookie-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 210px;
}

.cookie-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.08s ease;
}

.cookie-btn-primary {
  background: #FE6600;
  color: #ffffff;
  box-shadow: 0 0 14px rgba(254, 102, 0, 0.8);
}

.cookie-btn-primary:hover {
  box-shadow: 0 0 20px rgba(254, 102, 0, 1);
  transform: translateY(-1px);
}

.cookie-btn-secondary {
  background: #ffffff;
  color: #111111;
}

.cookie-btn-secondary:hover {
  background: #f3f3f3;
}

.cookie-btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #FE6600;
}

.cookie-btn-outline:hover {
  background: rgba(254, 102, 0, 0.1);
}

.cookie-settings-link {
  background: none;
  border: none;
  padding: 0;
  color: #FE6600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-settings-link:hover {
  opacity: 0.85;
}

@media (max-width: 900px) {
  .cookie-banner-inner {
    flex-direction: column;
    padding: 14px 14px 10px;
  }

  .cookie-banner-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cookie-btn {
    flex: 1 1 auto;
  }
}

@media (max-width: 600px) {
  .cookie-banner-inner {
    padding-bottom: 8px;
  }

  .cookie-categories {
    flex-direction: column;
  }

  .cookie-category {
    max-width: 100%;
  }

  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }
}

.cookie-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(1px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.cookie-banner.cookie-banner--visible + .cookie-backdrop {
  opacity: 1;
  pointer-events: auto;
}
.wa-float {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 9999;

  width: 56px;
  height: 56px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #25D366 0%, #1EBE5D 45%, #128C7E 100%);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  text-decoration: none;

  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.wa-float:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
  filter: saturate(1.05);
}

.wa-float:active {
  transform: scale(0.98);
}

.wa-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, .35);
  outline-offset: 3px;
}

.wa-float svg {
  width: 26px;
  height: 26px;
  display: block;
}