/* ============================================
   SMS HEADER STYLES
   ============================================ */

.sms-header {
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sms-header__logo {
    max-width: 200px;
    height: auto;
    display: block;
}

/* ============================================
   SMS HERO STANDARD OVERLAY COMPONENT
   ============================================ */

.sms-hero-standard-overlay {
    position: relative;
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
    height: 700px;
    background: url(/media/eokheid1/carpet-1y-bg.png?width=1920&format=webp&quality=80) top center / cover no-repeat;
    text-align: center;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding-bottom: 30px;
    padding-top: 40px;
    padding-left: 25px;
    padding-right: 25px;
}

.sms-hero-standard-overlay::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 69px;
    background: linear-gradient(182deg, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
}

.sms-hero-standard-overlay__background {
    display: none;
}

.sms-hero-standard-overlay__overlay {
    display: none;
}

.sms-hero-standard-overlay__content {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    flex-grow: 1;
}

.sms-hero-standard-overlay__container {
    width: 100%;
    max-width: 570px !important;
    margin: 0 auto !important;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.sms-hero-standard-overlay__top-badge {
    font-family: 'Avenir LT Std 95 Black', 'Open Sans', sans-serif;
    color: #f00;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 13px;
    text-wrap: nowrap;
}

.sms-hero-standard-overlay__headline {
    font-size: 35px;
    font-weight: bold;
    line-height: normal;
    text-align: center;
    color: #004185;
    margin: 0 auto;
    font-family: 'Avenir LT Std 95 Black', 'Open Sans', sans-serif;
    max-width: 400px;
}

.sms-hero-standard-overlay__price-text {
    font-size: 35px;
    font-weight: bold;
    color: #004185;
    display: inline;
}

.sms-hero-standard-overlay__loyalty-text {
    font-size: 40px;
    font-weight: 700;
    color: #004185;
    margin-top: 7px;
    margin-bottom: 0;
    text-align: center;
    font-family: 'Avenir LT Std 95 Black', 'Open Sans', sans-serif;
    display: flex;
    justify-content: center;
    /* Hidden by default, shown via JS when ?base is not present */
    display: none;
}

.sms-hero-standard-overlay__primary-button {
    margin-top: auto;
}

.sms-hero-standard-overlay__fine-print {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    padding-bottom: 0;
    /* Hidden by default, shown via JS when ?base is not present */
    display: none;
}

/* Show promo variant when ?base is not present */
.sms-show-promo .sms-hero-standard-overlay__loyalty-text,
.sms-hero-standard-overlay__loyalty-text.sms-show-promo {
    display: flex !important;
    justify-content: center;
}

.sms-show-promo .sms-hero-standard-overlay__fine-print,
.sms-hero-standard-overlay__fine-print.sms-show-promo {
    display: block !important;
}

/* ============================================
   SMS ABOUT COMPONENT
   ============================================ */

.sms-about {
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
    padding: 70px 25px 50px 25px;
    background-color: #ffffff;
}

.sms-about__container {
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
}

.sms-about__headline {
    font-family: 'Avenir LT Std 95 Black', 'Open Sans', sans-serif;
    font-size: 35px;
    font-weight: bold;
    color: #004185;
    text-align: center;
    margin: 0 0 20px 0;
    line-height: normal;
}

.sms-about__intro {
    font-family: 'Avenir LT Std 95 Black', 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 22px;
    color: #333333;
    text-align: center;
    margin-bottom: 40px;
}

.sms-about__benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.sms-about__benefits .benefit-item {
    border-radius: 8px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    align-items: flex-start;
}

.sms-about__benefits .benefit-icon {
    flex-shrink: 0;
    margin-top: 0;
}

.sms-about__benefits .benefit-icon .icon-circle {
    width: 40px;
    height: 40px;
    background-color: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sms-about__benefits .benefit-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.sms-about__benefits .benefit-title {
    margin: 0;
    font-family: 'Avenir LT Std 95 Black', 'Open Sans', sans-serif;
}

.sms-about__benefits .benefit-title h3 {
    font-size: 18px;
    font-weight: 700;
    color: #004185;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.sms-about__benefits .benefit-description {
    font-size: 16px;
    color: #666666;
    line-height: 19px;
}

.sms-about__benefits .benefit-description p {
    font-family: 'Avenir LT Std 55 Roman', 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 0;
}

/* About List Checked */
.about-desc {
    font-family: 'Avenir LT Std 95 Black', 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 22px;
}

.about-lists {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    padding-left: 0;
}

.about-list-content {
    display: flex;
    flex-direction: row;
    align-items: start;
    margin-bottom: 25px;
    gap: 15px;
}

.about-list-content img {
    width: 40px;
}

.about-content {
    text-align: left;
}

.about-content p:first-child {
    font-family: 'Avenir LT Std 95 Black', 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: normal;
}

.about-content p:nth-of-type(2) {
    font-family: 'Avenir LT Std 55 Roman', 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 19px;
}

/* ============================================
   SMS RESULTS BEFORE/AFTER COMPONENT
   ============================================ */

.sms-results-before-after {
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
}

.sms-results-before-after__container {
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
    padding: 70px 25px 50px 25px;
}

.sms-results-before-after__headline {
    font-family: 'Avenir LT Std 95 Black', 'Open Sans', sans-serif;
    font-size: 35px;
    font-weight: bold;
    color: #004185;
    text-align: center;
    margin: 0 0 20px 0;
    line-height: normal;
}

.sms-results-before-after__intro {
    font-family: 'Avenir LT Std 95 Black', 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 22px;
    color: #333333;
    text-align: center;
    margin-bottom: 40px;
}

/* CAROUSEL - Swiper.js */
.sms-results-before-after__carousel {
    position: relative;
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
    overflow: hidden;
}

.sms-results-before-after__carousel .swiper-wrapper {
    display: flex;
}

.sms-results-before-after__carousel .swiper-slide {
    width: 85% !important;
    flex: 0 0 auto !important;
    height: 400px;
    overflow: hidden;
}

.sms-results-before-after__carousel .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

/* Result Badge */
.result-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    font-family: 'Avenir LT Std 95 Black', 'Open Sans', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Legacy styles */
.b-a-text {
    font-family: 'Avenir LT Std 95 Black', 'Open Sans', sans-serif;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    top: 7%;
    left: 5%;
    letter-spacing: .5px;
    text-shadow: 0 3px 6px #00000066;
}

/* Animation Classes */
.sms-animate-in {
    animation: sms-fade-in 0.6s ease forwards;
}

@keyframes sms-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ripple Effect */
.sms-ripple {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.sms-ripple-animate {
    animation: sms-ripple-animation 0.6s ease-out forwards;
}

@keyframes sms-ripple-animation {
    to {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/* ============================================
   SMS TESTIMONIALS COMPONENT
   ============================================ */

/* Image section wrapper - separate, centered with max-width */
.content-testimonials-wrapper {
    max-width: 570px;
    margin: 0 auto;
}

.content-testimonials {
    position: relative;
}

.mid-quote {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 2;
}

/* Testimonials section - separate */
.sms-testimonials {
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
    background-color: #004185;
    padding: 70px 25px 50px 25px;
}

/* Testimonials carousel section */
.sms-testimonials-content {
    width: 100%;
}

.sms-testimonials-carousel {
    margin-top: 0;
    position: relative;
    min-height: 200px;
    overflow: hidden;
}

.sms-testimonials-carousel .testimonial-slide {
    width: 100%;
    padding: 0 10px;
    transition: opacity 0.5s ease;
}

.sms-testimonials-carousel .testimonial-card {
    text-align: center;
    background-color: transparent;
    border-radius: 8px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sms-testimonials-carousel .testimonials-text {
    font-family: 'Avenir LT Std 55 Roman', 'Open Sans', sans-serif;
    font-size: 18px;
    color: #ffffff;
    line-height: 24px;
    margin-bottom: 15px;
    font-style: italic;
    text-align: center;
    font-weight: bold;
}

.sms-testimonials-carousel .testimonial-author {
    font-family: 'Avenir LT Std 95 Black', 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.sms-testimonials-carousel .testimonial-location {
    font-family: 'Avenir LT Std 55 Roman', 'Open Sans', sans-serif;
    font-size: 12px;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.sms-testimonials-carousel .testimonial-location .location-icon {
    width: 18px;
    height: auto;
    display: inline-block;
}

.sms-testimonials-carousel .testimonial-location .location-icon svg {
    width: 100%;
    height: 100%;
    fill: #ff0000;
}

/* Testimonials Swiper Buttons */
.sms-swiper-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.sms-swiper-button-prev,
.sms-swiper-button-next {
    width: 40px;
    height: 40px;
    background-color: #004185;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.sms-swiper-button-prev:hover,
.sms-swiper-button-next:hover {
    background-color: #003060;
}

.sms-swiper-button-prev::after,
.sms-swiper-button-next::after {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
}

/* Swiper Scrollbar */
.swiper-scrollbar {
    background: rgba(255, 255, 255, 0.2) !important;
    height: 6px !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
}

.swiper-scrollbar-drag {
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 3px;
}

.swiper-scrollbar-drag:hover {
    background: rgba(255, 255, 255, 1) !important;
}

/* ============================================
   SMS SERVICE STEPS COMPONENT
   ============================================ */

.sms-service-steps {
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
    padding: 70px 25px 50px 25px;
    background-color: #ffffff;
}

.sms-service-steps__container {
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
}

.sms-service-steps__headline {
    font-family: 'Avenir LT Std 95 Black', 'Open Sans', sans-serif;
    font-size: 35px;
    font-weight: bold;
    color: #004185;
    text-align: center;
    margin: 0 0 20px 0;
    line-height: normal;
}

.sms-service-steps__intro {
    font-family: 'Avenir LT Std 95 Black', 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 22px;
    color: #333333;
    text-align: center;
    margin-bottom: 40px;
}

.sms-service-steps__list {
    width: 100%;
}

.sms-service-steps__swiper .swiper-slide {
    height: auto !important;
    flex: 0 0 auto !important;
    width: 85% !important;
}

.sms-service-steps__swiper .sms-service-steps__item {
    height: 100%;
}

.sms-service-steps__item {
    display: flex;
    flex-direction: column;
}

.margin-top-40 {
    margin-top: 40px;
}

.margin-top-40 .btn {
    width: 100%;
    display: block;
}

.sms-service-steps__item-header {
    display: flex;
    align-items: self-start;
    gap: 15px;
    padding: 30px 20px;
    background-color: #004185;
}

.sms-count-step {
    margin-bottom: 0;
    color: #004185;
    background: #fff;
    border-radius: 50%;
    font-size: 25px;
    line-height: 32px;
    font-weight: bold;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sms-service-steps__item-name {
    font-family: 'Avenir LT Std 95 Black', 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.sms-service-steps__item-description {
    font-family: 'Avenir LT Std 55 Roman', 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 20px;
    color: #666666;
}

.sms-service-steps__item-description p {
    margin: 0;
}

.sms-service-steps__item-image {
    width: 100%;
    overflow: hidden;
}

.sms-service-steps__item-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ============================================
   SMS SPECIALS AREA OFFER COMPONENT
   ============================================ */

.sms-specials-area-offer {
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
    padding: 57px 25px 63px 25px;
    background: linear-gradient(160deg, rgba(0, 143, 213, 1) 0%, rgba(0, 65, 133, 1) 100%);
}

.sms-specials-area-offer__container {
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
}

.sms-specials-area-offer__headline {
    font-family: 'Avenir LT Std 95 Black', 'Open Sans', sans-serif;
    font-size: 35px;
    font-weight: bold;
    line-height: 44px;
    color: #ffffff;
    text-align: center;
    padding-bottom: 50px;
}

.sms-specials-area-offer__banner {
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
}

.sms-specials-area-offer__banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.sms-specials-area-offer__intro {
    font-family: 'Avenir LT Std 55 Roman', 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 22px;
    color: #333333;
    text-align: center;
    margin-bottom: 40px;
}

.sms-specials-area-offer__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-bottom: 40px;
}

.sms-specials-area-offer__item {
    border-bottom: 1px solid #fff;
    padding-top: 30px;
    padding-bottom: 40px;
}

.sms-specials-area-offer__item:first-child {
    border-top: none;
}

.sms-specials-area-offer__item:last-child {
    border-bottom: none;
}

.sms-specials-area-offer__item-name {
    font-family: 'Avenir LT Std 55 Roman', 'Open Sans', sans-serif;
    font-size: 12px;
    margin-bottom: 0;
    color: #FFDD00;
}

.sms-specials-area-offer__item-description {
    font-family: 'Avenir LT Std 95 Black', 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 21px;
    color: #ffffff;
    font-weight: bold;
    width: 50%;
    margin-bottom: 0;
}

.sms-specials-area-offer__item-link {
    font-size: 12px !important;
    padding: 10px 15px;
    background-color: #fd0;
    color: #004185;
    font-weight: bold;
    text-decoration: none;
}

.sms-specials-area-offer__item-link:hover {
    background-color: #e6c200;
    color: #003060;
}

.sms-specials-area-offer__cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.sms-specials-area-offer__cta .btn,
.sms-specials-area-offer__cta .btn-outline-yellow {
    width: 100%;
    display: block;
}

.btn-outline-yellow {
    font-family: 'Avenir LT Std 95 Black', 'Open Sans', sans-serif;
    font-size: 16px;
    display: block;
    font-weight: bold;
    border: 2px solid #FFDD00;
    color: #FFDD00;
    border-radius: 2px;
    padding: 20.5px 40px;
    height: auto;
    text-shadow: none;
    text-decoration: none;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}

.btn-outline-yellow:hover {
    background: #fd0;
    color: #004185;
    border: 2px solid #fd0;
}

/* ============================================
   SMS FOOTER COMPONENT
   ============================================ */

.sms-footer {
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
    padding: 30px;
    background-color: #ebf9ff;
}

.sms-footer__container {
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
    text-align: center;
}

.sms-footer__logo {
    margin-bottom: 20px;
}

.sms-footer__logo img {
    max-width: 200px;
    height: auto;
    display: inline-block;
}

.sms-footer__intro {
    font-family: 'Avenir LT Std 55 Roman', 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: #004185;
    font-weight: bold;
    text-align: center;
    margin: 0 0 20px 0;
}

.sms-footer__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.sms-footer__link {
    font-family: 'Avenir LT Std 55 Roman', 'Open Sans', sans-serif;
    font-size: 14px;
    color: #004185;
    text-decoration: underline;
    text-align: center;
}

.sms-footer__link:hover {
    color: #003060;
}

/* SMS Footer Unsubscribe Button */
.btn-unsub {
    padding: 10px 15px;
    background: #D3E6FB;
    font-size: 12px;
    line-height: normal;
    font-weight: bold;
    font-family: 'Avenir LT Std 95 Black', 'Open Sans', sans-serif;
    text-decoration: none;
    display: inline-block;
    color: #004185;
    border-radius: 4px;
}

.btn-unsub:hover {
    background: #C2D8F0;
    color: #003060;
    text-decoration: none;
}

/* SMS Footer Contact Section */
.sms-footer-contact {
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
    background-color: #ffffff;
}

.sms-footer-contact__container {
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
    text-align: center;
}

.sms-footer-contact__links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 25px;
}

.sms-footer-contact__item {
    text-align: center;
    font-size: 14px;
    margin: 0;
}

.sms-footer-contact__link {
    font-family: 'Avenir LT Std 55 Roman', 'Open Sans', sans-serif;
    color: #004185;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.sms-footer-contact__link img {
    width: 18px;
    height: auto;
    display: inline-block;
}

.sms-footer-contact__link:hover {
    color: #003060;
    text-decoration: underline;
}
