.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 0.75rem;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
@media (max-width: 575.98px) {
  .container {
    padding-inline: 0.5rem;
  }
}

.container-fluid {
  width: 100%;
  margin-inline: auto;
  padding-inline: 0.75rem;
}
@media (min-width: 768px) {
  .container-fluid {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1400px) {
  .container-fluid {
    max-width: 95%;
  }
}

.container-tight {
  width: 100%;
  margin-inline: auto;
  padding-inline: 0.75rem;
}
@media (min-width: 768px) {
  .container-tight {
    padding-inline: 1.5rem;
  }
}

.container-wide {
  width: 100%;
  margin-inline: auto;
  padding-inline: 0.75rem;
}
@media (min-width: 768px) {
  .container-wide {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .container-wide {
    max-width: 1440px;
  }
}
@media (min-width: 1400px) {
  .container-wide {
    max-width: 1600px;
  }
}

/* === Container === */
.productSection {
  padding-top: 50px;
}

.mainView {
  max-width: 1320px;
  margin: 0 auto;
}

/* === PART 1: TOP SECTION === */
.sectionHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.headerLeft {
  max-width: 65%;
  border-left: 3px solid #e8a83e;
  padding-left: 25px;
  padding-bottom: 10px;
}
@media (max-width: 767.98px) {
  .headerLeft {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

.headerLeft h1 {
  font-size: 40px;
  font-weight: 500;
  color: #151515;
  margin-bottom: 12px;
  line-height: 1.2;
  margin-top: 0;
}
@media (max-width: 767.98px) {
  .headerLeft h1 {
    font-size: 28px;
  }
}

.headerLeft .subtitle {
  font-size: 18px;
  color: #666;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
}
@media (max-width: 767.98px) {
  .headerLeft .subtitle {
    font-size: 16px;
  }
}

.headerBadge {
  background: transparent;
  border: 1px solid rgba(132, 91, 163, 0.7019607843);
  border-radius: 30px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #4a3f3a;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}

.headerBadge .star {
  color: #e8a83e;
  display: flex;
}

.headerBadge strong {
  color: #845ba3;
  letter-spacing: 1px;
}

/* === PART 2: PRODUCT GRID (4 cols) === */
.productGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 50px;
}
@media (max-width: 1199.98px) {
  .productGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .productGrid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.productCard {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.productCard .offBadge {
  position: absolute;
  background-color: #cf1b1b;
  color: #fff;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 4px;
  left: 10px;
  top: 10px;
  font-weight: 600;
  font-size: 16px;
  z-index: 3;
}
.productCard img {
  transition: all 0.4s;
}

span.buyNow {
  position: absolute;
  bottom: 10px;
  right: 10px;
  height: 0;
  padding: 18px;
  font-size: 15px;
}
span.buyNow:hover::before {
  left: -100%;
}

.productCard:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.productCard:hover img {
  transform: scale(1.03);
}
.productCard:hover .buyNow::before {
  left: 150%;
}

.cardImage {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background-color: #d9d0c5; /* fallback */
}
.cardImage img {
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #fff;
  display: block;
  height: 100%;
  width: 100%;
}
@media (max-width: 575.98px) {
  .cardImage {
    height: 200px;
  }
}

a {
  text-decoration: none;
}

.cardContent {
  padding: 15px;
  padding-bottom: 60px;
}

.cardTitle {
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.8px;
}

.cardTags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 10px 0;
  margin: 5px 0;
}

.cardTag {
  background: transparent;
  color: #444;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 5px;
  letter-spacing: 0.3px;
  border: 1px solid #e4e4e4;
}

.cardDesc {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  font-weight: 300;
}

/* === PART 3: MINIMAL BOX ICON (3 cols) === */
.featureBoxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 40px;
  border: 1px solid #e4e4e4;
  overflow: hidden;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.3098039216);
  backdrop-filter: blur(5px);
}
@media (max-width: 767.98px) {
  .featureBoxes {
    grid-template-columns: repeat(1, 1fr);
  }
}

.featureBox {
  padding: 24px 20px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 991.98px) {
  .featureBox {
    flex-direction: row;
    text-align: left;
    padding: 10px;
  }
  .featureBox .featureText h4 {
    margin-top: 0;
  }
  .featureBox .featureText p {
    margin: 0;
  }
}

.haveDevider {
  position: relative;
}
.haveDevider::after, .haveDevider::before {
  position: absolute;
  content: "";
  background-color: #e4e4e4;
  width: 2px;
  height: 60%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.haveDevider::after {
  left: 0;
}
.haveDevider::before {
  right: 0;
}

.featureIcon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .featureIcon {
    width: 50px;
    height: 50px;
  }
}

.featureText h4 {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.featureText p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  font-weight: 300;
}

/* === PART 4: Process Timeline (5 steps) === */
.processTimeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding-top: 20px;
}
@media (max-width: 991.98px) {
  .processTimeline {
    flex-wrap: wrap;
    gap: 15px;
  }
}
@media (max-width: 575.98px) {
  .processTimeline {
    padding-top: 0;
  }
}

/* === Process Swiper Styles === */
.processSwiperWrapper {
  display: none;
}

@media (max-width: 800px) {
  .processTimelineDesktop {
    display: none;
  }
  .processSwiperWrapper {
    display: block;
  }
  .processSwiper {
    padding: 20px 0;
    overflow: hidden;
  }
  .prozessSwiperSlide .stepIcon {
    margin-left: 0;
    margin-bottom: 15px;
  }
  .prozessSwiperSlide .stepNumber {
    margin-bottom: 10px;
  }
  .processSwiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
  }
  .processSwiper .swiper-pagination-bullet {
    background: #dca343;
    opacity: 0.3;
  }
  .processSwiper .swiper-pagination-bullet-active {
    opacity: 1;
  }
  .processSwiper .swiper-button-next,
  .processSwiper .swiper-button-prev {
    color: #dca343;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .processSwiper .swiper-button-next:after,
  .processSwiper .swiper-button-prev:after {
    font-size: 18px;
  }
}
@media (max-width: 575.98px) {
  .prozessSwiperSlide .stepIcon {
    width: 50px;
    height: 50px;
    padding: 8px;
  }
  .processSwiper .swiper-button-next,
  .processSwiper .swiper-button-prev {
    display: none;
  }
}
/* Connector line */
.processStep {
  display: flex;
  flex-direction: column;
  align-items: start;
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
  padding: 0 5px;
}
.processStep:before {
  content: "";
  position: absolute;
  height: 2px;
  background-color: #e8d5b7;
  z-index: 0;
  width: 50px;
  right: 25px;
  top: 35px;
}
.processStep:last-child::before {
  display: none;
}
@media (max-width: 991.98px) {
  .processStep {
    flex: 0 0 calc(50% - 15px);
    max-width: none;
    padding: 15px;
  }
  .processStep::before {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .processStep {
    flex: 0 0 100%;
    padding: 10px;
  }
}

.stepIcon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  margin-left: 30px;
  background-color: #f6f4f3;
  border-radius: 100%;
  border: 1px solid #dedede;
  padding: 15px;
  position: relative;
}
@media (max-width: 575.98px) {
  .stepIcon {
    width: 50px;
    height: 50px;
    padding: 8px;
    margin: 0;
  }
}

.stepIcon svg {
  width: 100%;
  height: 100%;
}

.stepContent {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: start;
  text-align: left;
  gap: 10px;
}

.stepNumber {
  display: block;
  font-size: 25px;
  font-weight: 700;
  color: #dca343;
  margin: 0;
  line-height: 1;
}

.stepContent h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 4px 0;
}

.stepContent p {
  font-size: 14px;
  color: #797979;
  line-height: 1.4;
  font-weight: 400;
  margin: 0;
}

/* === PART 5: Testimonials Section === */
.testimonialSection {
  padding: 60px 0;
}

.testimonialHeader {
  text-align: center;
  margin-bottom: 40px;
}

.testimonialBadge {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #a45ad1;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.testimonialTitle {
  font-size: 40px;
  font-weight: 500;
  color: #151515;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.testimonialTitle .text-gold {
  color: #dca343;
}

.testimonialSubtitle {
  font-size: 16px;
  color: #666;
  font-weight: 400;
  margin: 0;
}

.testimonialGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.testimonialCard {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonialCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.testimonialContentWrapper {
  display: flex;
  align-items: stretch;
  min-height: 280px;
}

.testimonialText {
  flex: 1;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonialText .stars {
  color: #e8a83e;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.testimonialText p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  font-weight: 400;
  margin: 0 0 15px 0;
}

.testimonialAuthor {
  margin-top: auto;
  position: relative;
  padding-top: 10px;
}
.testimonialAuthor::after {
  position: absolute;
  content: "";
  background-color: rgba(232, 168, 62, 0.431372549);
  width: 30px;
  height: 2px;
  top: 0;
  left: 0;
}

.testimonialAuthor strong {
  display: block;
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 600;
}

.testimonialAuthor span {
  font-size: 13px;
  color: #888;
  font-weight: 400;
}

.testimonialImage {
  flex: 0 0 230px;
  background-color: #d9d0c5;
  overflow: hidden;
}

.testimonialImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* === Updated Testimonials Section (Swiper) === */
.testimonialSwiperWrapper {
  position: relative;
}

.testimonialSwiper {
  overflow: hidden;
  padding: 20px 0 60px 0;
}

.testimonialSwiper .swiper-slide {
  height: auto;
}

.testimonialSwiper .swiper-pagination {
  bottom: 0;
}

.testimonialSwiper .swiper-pagination-bullet {
  background: #dca343;
  opacity: 0.3;
}

.testimonialSwiper .swiper-pagination-bullet-active {
  opacity: 1;
}

.testimonialSwiper .swiper-button-next,
.testimonialSwiper .swiper-button-prev {
  color: #dca343;
  background: rgba(255, 255, 255, 0.9);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.testimonialSwiper .swiper-button-next:hover,
.testimonialSwiper .swiper-button-prev:hover {
  background: #fff;
}

.testimonialSwiper .swiper-button-next:after,
.testimonialSwiper .swiper-button-prev:after {
  font-size: 18px;
  font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .testimonialSwiperWrapper {
    padding: 0 20px;
  }
  .testimonialSwiper .swiper-button-next,
  .testimonialSwiper .swiper-button-prev {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .testimonialSwiperWrapper {
    padding: 0 10px;
  }
  .testimonialSwiper {
    padding-bottom: 40px;
  }
}
/* Responsive adjustments */
@media (max-width: 991.98px) {
  .testimonialGrid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .testimonialTitle {
    font-size: 30px;
  }
  .testimonialImage {
    flex: 0 0 130px;
  }
}
@media (max-width: 575.98px) {
  .testimonialContentWrapper {
    flex-direction: column;
  }
  .testimonialImage {
    flex: 0 0 200px;
    order: -1;
  }
  .testimonialText {
    padding: 20px;
  }
  .testimonialTitle {
    font-size: 24px;
  }
}
/* === PART 6: Choose TEZA Section (Accordion) === */
.chooseTezaSection {
  padding: 80px 0;
}

.chooseTezaWrapper {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr;
  gap: 40px;
  align-items: stretch;
}

/* Left Column - Image */
.chooseTezaLeft {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 600px;
}

.chooseTezaLeft img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Right Column - Content */
.chooseTezaRight {
  position: relative;
  padding: 10px 0 10px 20px;
}

.ctlButtonArrowedLight {
  max-width: -moz-max-content;
  max-width: max-content;
  color: #fff;
}

.quoteFormWrapper .ctlButtonArrowedLight {
  max-width: unset;
  width: 100%;
  justify-content: center;
}

/* Top Header */
.tezaRightHeader {
  margin-bottom: 30px;
  max-width: 85%;
}

.tezaBadge {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #9b7b6e;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.tezaMainTitle {
  font-size: 40px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  line-height: 1.1;
}

.tezaMainTitle .text-gold {
  color: #e8a83e;
  font-weight: 500;
}

.tezaSubtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  padding-right: 80px;
}

/* Energy Badge (Top Right Absolute) */
.energyBadge {
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  width: 140px;
  text-align: center;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.energyText {
  font-size: 12px;
  color: #666;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 6px;
}

.energyValue {
  font-size: 40px;
  font-weight: 600;
  color: #7b5ea7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  line-height: 1;
}

.energyValue svg {
  color: #7b5ea7;
}

/* Accordion */
.tezaAccordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 30px;
}

.accordionItem {
  border-bottom: 1px solid #eaeaea;
}

.accordionItem:last-child {
  border-bottom: none;
}

.accordionItem.active {
  background-color: #fcfcfc;
}

.accordionHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.accordionHeader:hover {
  background-color: #f9f9f9;
}

.headerLeftAccordion {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.accordionIcon {
  width: 44px;
  height: 44px;
  background-color: #4a3f5e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.accordionIcon svg {
  width: 20px;
  height: 20px;
}

.accordionTitle {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.accordionDesc {
  font-size: 13px;
  color: #888;
  margin: 0;
  line-height: 1.3;
}

.accordionToggle {
  color: #888;
  transition: transform 0.3s ease;
}

.accordionItem.active .accordionToggle {
  transform: rotate(180deg);
}

.accordionBody {
  display: none;
  overflow: hidden;
  padding: 0px 24px 20px;
}

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

/* Bottom Badges */
.tezaBottomBadges {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  padding: 16px 0;
  margin-bottom: 24px;
  gap: 10px;
}

.bottomBadge {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
  border-right: 1px solid #eaeaea;
  padding: 0 10px;
}

.bottomBadge:last-child {
  border-right: none;
}

.bottomBadge svg {
  flex-shrink: 0;
}

.bottomBadge span {
  font-size: 12px;
  font-weight: 400;
  color: #333;
  line-height: 1.2;
}

/* CTA Button */
.tezaCtaButton {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #e8a83e;
  color: #fff;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.tezaCtaButton:hover {
  background-color: #d4972f;
  color: #fff;
}

/* Responsive */
@media (max-width: 991.98px) {
  .chooseTezaWrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .chooseTezaLeft {
    min-height: 350px;
  }
  .chooseTezaRight {
    padding: 0;
  }
  .energyBadge {
    display: none;
  }
  .tezaMainTitle {
    font-size: 32px;
  }
  .tezaRightHeader {
    max-width: 100%;
  }
  .bottomBadge span {
    font-size: 11px;
  }
}
@media (max-width: 575.98px) {
  .accordionHeader {
    padding: 14px 16px;
    flex-wrap: wrap;
  }
  .headerLeftAccordion {
    gap: 12px;
  }
  .accordionIcon {
    width: 36px;
    height: 36px;
  }
  .accordionIcon svg {
    width: 16px;
    height: 16px;
  }
  .accordionTitle {
    font-size: 14px;
  }
  .accordionBody p {
    font-size: 13px;
  }
  .tezaCtaButton {
    width: 100%;
    justify-content: center;
  }
  .energyValue {
    font-size: 20px;
  }
}
/* === PART 7: Request Quote Section (Light Version) === */
.quoteWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- Left Column: Content --- */
.quoteLeftContent {
  width: 50%;
}
@media (max-width: 575.98px) {
  .quoteLeftContent {
    width: 100%;
  }
}

.quoteBadge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid #b784ff;
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #4a3f3a;
  margin-bottom: 20px;
}

.quoteBadge .starIcon {
  color: #c5a05e;
  display: flex;
}

.quoteTitle {
  font-size: 48px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 15px 0;
  line-height: 1.1;
}

.quoteTitle .goldText {
  color: #c5a05e;
}

.quoteSubtitle {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Feature Grid in Left Column */
.quoteFeatureGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.quoteFeatureItem {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.quoteFeatureItem .iconWrap {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #f0ede8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quoteFeatureItem .iconWrap svg {
  width: 20px;
  height: 20px;
  color: #c5a05e;
}

.quoteFeatureItem h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 2px 0;
}

.quoteFeatureItem p {
  font-size: 13px;
  color: #777;
  margin: 0;
  line-height: 1.3;
}

/* --- Right Column: Form --- */
.quoteFormWrapper {
  width: 47%;
}
@media (max-width: 575.98px) {
  .quoteFormWrapper {
    width: 100%;
  }
}

.quoteFormWrapper .formHeader {
  text-align: center;
  margin-bottom: 30px;
}

.quoteFormWrapper .formHeader h3 {
  font-size: 28px;
  color: #1a1a1a;
  margin: 0 0 6px 0;
  font-weight: 600;
}

.quoteFormWrapper .formHeader p {
  font-size: 14px;
  color: #888;
  margin: 0;
}

.quoteForm .formGroup {
  margin-bottom: 18px;
}

.quoteForm label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  margin-bottom: 4px;
}

.quoteForm input,
.quoteForm select,
.quoteForm textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  background: #fafafa;
  transition: border-color 0.3s;
  font-family: inherit;
}

.quoteForm input:focus,
.quoteForm select:focus,
.quoteForm textarea:focus {
  outline: none;
  border-color: #b784ff;
  background: #fff;
}

.quoteForm textarea {
  resize: vertical;
  min-height: 80px;
}

.quoteForm .checkboxGroup {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 15px 0 20px;
}

.quoteForm .checkboxGroup input {
  width: auto;
  margin-top: 3px;
  width: 16px;
  height: 16px;
}

.quoteForm .checkboxGroup label {
  font-size: 13px;
  color: #666;
  font-weight: 400;
  margin: 0;
}

.quoteForm .submitBtn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ffc66a, #c78119);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: box-shadow 0.3s;
}

.quoteForm .submitBtn:hover {
  box-shadow: 0 6px 20px rgba(199, 129, 25, 0.3);
}

.quoteForm .submitBtn svg {
  width: 18px;
  height: 18px;
}

.quoteForm .trustBadge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 13px;
  color: #888;
}

/* === Responsive === */
@media (max-width: 991.98px) {
  .quoteWrapper {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .quoteLeftContent, .quoteFormWrapper {
    width: 100%;
  }
  .quoteTitle {
    font-size: 34px;
  }
}
@media (max-width: 575.98px) {
  .quoteTitle {
    font-size: 28px;
  }
  .quoteFormWrapper .formHeader h3 {
    font-size: 22px;
  }
  .quoteFeatureGrid {
    grid-template-columns: 1fr;
  }
}
.ctlHeroBoxesQuote {
  width: 100%;
  position: relative;
  padding: 0;
}
.ctlHeroBoxesQuote .ctlHeroTextBox {
  top: 0;
  bottom: 0;
  margin: auto;
  height: -moz-max-content;
  height: max-content;
  left: 10px;
}
@media (max-width: 575.98px) {
  .ctlHeroBoxesQuote .ctlHeroTextBox {
    left: 0;
    margin: 0;
    top: -35px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.ctlHeroBoxesQuote .ctlHeroImageBox {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin: 0;
  width: 100%;
}

.productSection .ctlButtonArrowedLight {
  margin: auto;
  margin-top: 30px;
}

.mainSection {
  padding-top: 50px;
}
@media (max-width: 575.98px) {
  .mainSection {
    padding-top: 25px;
  }
}

/* === NEW SECTION: Memorial Day Banner (Dark Theme) === */
.memorialDayBanner {
  padding: 40px 0;
  width: 100%;
}

.bannerWrapper {
  position: relative;
  background-color: #1a1a1a; /* Dark background */
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 400px;
  padding: 50px 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Left Content */
.bannerContent {
  position: relative;
  z-index: 2;
  max-width: 55%;
  color: #fff;
}

/* Background Image (Right side) */
.bannerImage {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  background-image: url("../t1.jpg"); /* Replace with your image */
  background-size: cover;
  background-position: center right;
  z-index: 1;
}

/* Add a subtle gradient overlay so text on left is readable */
.bannerImage::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  width: 150px;
  height: 100%;
  background: linear-gradient(to right, #1a1a1a 20%, transparent 100%);
}

/* Badge */
.bannerBadge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(232, 168, 62, 0.4);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #e8a83e;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.bannerBadge .star {
  font-size: 14px;
}

/* Title */
.bannerTitle {
  font-size: 42px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

/* Offer Line */
.bannerOffer {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.offerPercent {
  font-size: 48px;
  font-weight: 700;
  color: #e8a83e;
}

.offerDetails {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
}

/* Subtitle */
.bannerSubtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  line-height: 1.5;
  max-width: 90%;
}

/* Buttons */
.bannerButtons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.bannerBtnPrimary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #e8a83e;
  color: #1a1a1a;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.bannerBtnPrimary:hover {
  background-color: #d4972f;
  transform: translateY(-2px);
}

.bannerBtnSecondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.bannerBtnSecondary:hover {
  border-color: #e8a83e;
  transform: translateY(-2px);
}

/* Footer Icons */
.bannerFooter {
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  flex-wrap: wrap;
}

.footerItem {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footerItem svg {
  stroke: rgba(255, 255, 255, 0.6);
}

.footerDivider {
  color: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 991.98px) {
  .bannerWrapper {
    padding: 40px 30px;
    flex-direction: column;
    align-items: flex-start;
  }
  .bannerContent {
    max-width: 100%;
  }
  .bannerImage {
    position: relative;
    width: 100%;
    height: 250px;
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
  }
  .bannerImage::before {
    display: none;
  }
  .bannerTitle {
    font-size: 32px;
  }
  .offerPercent {
    font-size: 36px;
  }
}
@media (max-width: 575.98px) {
  .bannerWrapper {
    padding: 30px 20px;
  }
  .bannerTitle {
    font-size: 26px;
  }
  .offerPercent {
    font-size: 30px;
  }
  .offerDetails {
    font-size: 16px;
  }
  .bannerButtons {
    flex-direction: column;
  }
  .bannerBtnPrimary,
  .bannerBtnSecondary {
    width: 100%;
    justify-content: center;
  }
}
/* === Updated Product Section (Swiper) === */
.productSwiperWrapper {
  position: relative;
  margin-bottom: 50px;
}

.productSwiper {
  overflow: hidden;
  padding: 20px 0 60px 0;
}

.productSwiper .swiper-slide {
  height: auto;
}

.productSwiper .swiper-slide .productCard {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.productSwiper .swiper-slide .productCard .cardContent {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.productSwiper .swiper-slide .productCard .cardDesc {
  margin-top: auto;
}

.productSwiper .swiper-pagination {
  bottom: 0;
}

.productSwiper .swiper-pagination-bullet {
  background: #dca343;
  opacity: 0.3;
}

.productSwiper .swiper-pagination-bullet-active {
  opacity: 1;
}

.productSwiper .swiper-button-next,
.productSwiper .swiper-button-prev {
  color: #dca343;
  background: rgba(255, 255, 255, 0.9);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.productSwiper .swiper-button-next:hover,
.productSwiper .swiper-button-prev:hover {
  background: #fff;
}

.productSwiper .swiper-button-next:after,
.productSwiper .swiper-button-prev:after {
  font-size: 18px;
  font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .productSwiperWrapper {
    padding: 0 20px;
  }
  .productSwiper .swiper-button-next,
  .productSwiper .swiper-button-prev {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .productSwiperWrapper {
    padding: 0 10px;
  }
  .productSwiper {
    padding-bottom: 40px;
  }
}/*# sourceMappingURL=teza.css.map */