
#hero-9 {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 150px 20px;
  color: #fff;
  text-align: center;
}
#hero-9 .parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}
#hero-9 .container {
  position: relative;
  z-index: 2;
}
#hero-9 .hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}
#hero-9 .hero-subtitle {
  font-size: 24px;
  margin-bottom: 30px;
}



#how-it-works-30 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #eef2f7;
}
#how-it-works-30 .section-title-container {
  margin-bottom: 50px;
}
#how-it-works-30 .section-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e2b3c;
}
#how-it-works-30 .section-main-subtitle {
  font-size: 1.1rem;
  color: #5a677d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#how-it-works-30 .tier-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 35px 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-top: 5px solid #0d6efd;
}
#how-it-works-30 .tier-card.highlighted-tier {
  border-top-color: #ffc107;
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
#how-it-works-30 .tier-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
#how-it-works-30 .tier-card.highlighted-tier:hover {
  transform: translateY(-8px) scale(1.04);
}
#how-it-works-30 .tier-header {
  text-align: center;
  margin-bottom: 25px;
}
#how-it-works-30 .tier-icon-display {
  font-size: 3rem;
  color: #0d6efd;
  margin-bottom: 15px;
}
#how-it-works-30 .tier-card.highlighted-tier .tier-icon-display {
  color: #ffc107;
}
#how-it-works-30 .tier-name-title {
  font-size: 1.7rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}
#how-it-works-30 .tier-description-text {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
  min-height: 50px;
  margin-bottom: 20px;
}
#how-it-works-30 .tier-process-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
  flex-grow: 1;
}
#how-it-works-30 .tier-process-list li {
  font-size: 0.9rem;
  color: #495057;
  padding: 10px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}
#how-it-works-30 .tier-process-list li:last-child {
  border-bottom: none;
}
#how-it-works-30 .tier-process-list li i {
  color: #20c997;
  margin-right: 12px;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}
#how-it-works-30 .tier-process-list li.highlight-step {
  font-weight: 500;
  color: #0d6efd;
}
#how-it-works-30 .tier-process-list li.highlight-step i {
  color: #0d6efd;
}
#how-it-works-30 .tier-price-display {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 25px;
}
#how-it-works-30 .tier-card.highlighted-tier .tier-price-display {
  color: #ffc107;
}
#how-it-works-30 .tier-action-button {
  margin-top: auto;
  display: block;
  width: 100%;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 500;
}



#features-22 {
  padding: 50px 0; 
  overflow: hidden;
  background-color: {{ $data['features-22']['bg_color'] ?? '#ffffff' }};
}
#features-22 .section-title h2 {
  font-size: 30px; 
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
  color: #343a40;
}
#features-22 .section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--bs-primary, #0d6efd);
  bottom: 0;
  left: calc(50% - 20px);
}
#features-22 .section-title p {
  margin-bottom: 30px;
  color: #6c757d;
  font-size: 15px;
}
#features-22 .compact-feature {
  display: flex;
  align-items: center; 
  padding: 15px;
  background-color: #f8f9fa; 
  border-radius: 5px;
  transition: box-shadow 0.3s ease;
  height: 100%; 
}
#features-22 .compact-feature:hover {
   box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
#features-22 .compact-icon {
  flex-shrink: 0;
  margin-right: 15px;
}
#features-22 .compact-icon i {
  font-size: 24px; 
  color: var(--bs-primary, #0d6efd);
  line-height: 1;
  width: 30px; 
  text-align: center;
}
#features-22 .compact-content h5 {
  font-size: 16px; 
  font-weight: 600;
  margin-bottom: 3px; 
  color: #343a40;
}
#features-22 .compact-content p {
  font-size: 14px; 
  color: #6c757d;
  margin-bottom: 0;
  line-height: 1.4;
}
@media (max-width: 767.98px) {
  #features-22 .section-title h2 {
    font-size: 26px;
  }
}
@media (max-width: 575.98px) {
  #features-22 .compact-feature {
     padding: 12px;
  }
  #features-22 .compact-icon i {
     font-size: 22px;
  }
  #features-22 .compact-content h5 {
    font-size: 15px;
  }
  #features-22 .compact-content p {
    font-size: 13px;
  }
}



#why-choose-us-12 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff;
}
#why-choose-us-12 .section-header {
  margin-bottom: 3rem;
  text-align: center;
}
#why-choose-us-12 .section-header h2 {
  font-weight: 700;
  color: #343a40;
}
#why-choose-us-12 .numbered-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}
#why-choose-us-12 .item-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bs-primary, #0d6efd);
  background-color: rgba(13, 110, 253, 0.1);
  border-radius: 50%;
  min-width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}
#why-choose-us-12 .item-content {
  flex-grow: 1;
}
#why-choose-us-12 .item-icon-title {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
#why-choose-us-12 .item-icon-title i {
  font-size: 1.25rem;
  color: var(--bs-secondary, #6c757d);
  margin-right: 0.75rem;
  min-width: 1.5em;
  text-align: center;
}
#why-choose-us-12 .item-icon-title h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #495057;
}
#why-choose-us-12 .item-description {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
  padding-left: calc(1.25rem + 0.75rem);
}
@media (max-width: 575.98px) {
  #why-choose-us-12 .item-number {
    margin-right: 1rem;
  }
  #why-choose-us-12 .item-description {
    padding-left: 0;
  }
  #why-choose-us-12 .item-icon-title h4 {
    font-size: 1.1rem;
  }
}



#testimonials-12 {
  padding: 60px 0;
  background-color: #ffffff;
}
#testimonials-12 .container {
  max-width: 1140px;
}
#testimonials-12 .section-header {
  margin-bottom: 50px;
}
#testimonials-12 .section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #343a40;
}
#testimonials-12 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#testimonials-12 .testimonial-card {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#testimonials-12 .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
#testimonials-12 .testimonial-body {
  flex-grow: 1;
  margin-bottom: 20px;
}
#testimonials-12 .testimonial-body p {
  font-size: 1rem;
  color: #495057;
  line-height: 1.6;
  font-style: italic;
}
#testimonials-12 .testimonial-footer {
  display: flex;
  align-items: center;
}
#testimonials-12 .client-image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}
#testimonials-12 .client-details .client-name {
  font-weight: 600;
  color: #343a40;
  display: block;
  margin-bottom: 2px;
}
#testimonials-12 .client-details .client-position {
  font-size: 0.85rem;
  color: #6c757d;
  display: block;
}
#testimonials-12 .rating {
  margin-top: 8px;
  color: #ffc107;
  font-size: 0.9rem;
}
#testimonials-12 .rating .fa-star.empty {
  color: #e0e0e0;
}
@media (max-width: 991.98px) {
  #testimonials-12 .testimonial-card {
    padding: 25px;
  }
}
@media (max-width: 767.98px) {
  #testimonials-12 {
    padding: 40px 0;
  }
  #testimonials-12 .section-header h2 {
    font-size: 1.8rem;
  }
  #testimonials-12 .section-header p {
    font-size: 1rem;
  }
}



#customer-support-18 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  text-align: center;
  overflow: hidden;
}
#customer-support-18.bordered {
  border-top: 1px solid #dee2e6;
}
#customer-support-18 .container {
  max-width: 700px;
}
#customer-support-18 .support-text {
  font-size: 1.3rem;
  font-weight: 500;
  color: #343a40;
  margin-bottom: 1.5rem;
}
#customer-support-18 .primary-button .btn {
  padding: 0.8rem 2.5rem;
  font-weight: 500;
}
#customer-support-18 .primary-button .btn i {
  margin-right: 0.6rem;
}
#customer-support-18 .secondary-link {
  margin-top: 1rem;
}
#customer-support-18 .secondary-link a {
  font-size: 0.95rem;
  text-decoration: none;
}
#customer-support-18 .secondary-link a.text-muted {
  color: #6c757d !important;
}
#customer-support-18 .secondary-link a:hover {
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  #customer-support-18 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  #customer-support-18 .support-text {
    font-size: 1.15rem;
  }
  #customer-support-18 .primary-button .btn {
    padding: 0.7rem 1.8rem;
    font-size: 1rem;
  }
}



#call-to-action-23 {
  padding: 5rem 0;
  overflow: hidden;
}
.cta-form-content h2 {
  font-weight: 700;
  color: #312e81;
}
.cta-form-content p {
  color: #4f46e5;
  font-size: 1.1rem;
}
.cta-form-wrapper .input-group {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0.375rem;
}
.cta-form-wrapper .form-control {
  min-height: 3.5rem;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-color: #e0e7ff;
}
.cta-form-wrapper .form-control:focus {
  border-color: #a5b4fc;
  box-shadow: 0 0 0 0.25rem rgba(79, 70, 229, 0.25);
}
.cta-form-wrapper .btn {
  min-height: 3.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  background-color: #4f46e5;
  border-color: #4f46e5;
  color: #fff;
  font-weight: 600;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.cta-form-wrapper .btn:hover {
  background-color: #4338ca;
  border-color: #4338ca;
}
@media (max-width: 991.98px) {
  .cta-form-content {
    margin-bottom: 2rem;
    text-align: center;
  }
}



#faq-16 {
  padding: 80px 0;
  background-color: #fff;
}
#faq-16 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3.5rem;
  font-size: 2rem;
  color: #212529;
}
#faq-16 .faq-list-container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
#faq-16 .faq-minimal-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
}
#faq-16 .faq-minimal-item:last-child {
  border-bottom: none;
}
#faq-16 .faq-minimal-question {
  font-weight: 600;
  font-size: 1.15rem;
  color: #343a40;
  margin-bottom: 0.8rem;
  display: block;
}
#faq-16 .faq-minimal-answer {
  color: #495057;
  line-height: 1.7;
  margin-bottom: 0;
}



#offers-11 {
  padding: 80px 0;
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}
#offers-11 .offer-content-wrapper {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
#offers-11 .offer-section-title {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 2.2rem;
  color: #c82333;
  text-transform: uppercase;
}
#offers-11 .offer-description {
  color: #495057;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
#offers-11 .scratch-card-visual {
  margin-bottom: 2rem;
}
#offers-11 .scratch-card-image {
  max-width: 350px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
#offers-11 .scratch-card-image:hover {
  transform: scale(1.05);
}
#offers-11 .prizes-section {
  margin-bottom: 2.5rem;
}
#offers-11 .prizes-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: #343a40;
  margin-bottom: 1rem;
}
#offers-11 .prize-list {
  list-style: none;
  padding-left: 0;
  display: inline-block;
  text-align: left;
}
#offers-11 .prize-list li {
  margin-bottom: 0.5rem;
  color: #555;
  font-size: 0.95rem;
}
#offers-11 .prize-list li i {
  color: #198754;
  margin-right: 8px;
  width: 18px;
  text-align: center;
}
#offers-11 .btn-scratch-cta {
  padding: 0.8rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50rem;
  background-color: #c82333;
  border: none;
  color: #fff;
}
#offers-11 .btn-scratch-cta:hover {
  background-color: #a51e2a;
}


