/* CSS Error: Expected semicolon or closing curly-brace, found '@Model' */

.focus-custom-teal:focus {
    background-color: rgba(255,255,255,0.12) !important;
    color: #ffffff !important;
    border: 1px solid @Model.AccentColor !important;
    box-shadow: 0 0 0 0.25rem rgba(20, 184, 166, 0.2) !important;
    outline: none;
}

.btn-submit-ancu:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.btn-submit-ancu:active {
    transform: translateY(1px);
}

.transition-all {
    transition: all 0.2s ease-in-out;
}

.site-footer {
    padding: 70px 0 36px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 30px;
}

.site-footer__logo img {
    max-height: 72px;
    width: auto;
    display: block;
    margin-bottom: 18px;
}

.site-footer__title {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.site-footer__desc,
.site-footer__contact-item {
    line-height: 1.8;
    font-size: 14px;
}

.site-footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__menu li + li {
    margin-top: 10px;
}

.site-footer__menu a,
.site-footer__contact-item a {
    color: inherit;
    text-decoration: none;
}

.site-footer__menu a:hover,
.site-footer__contact-item a:hover {
    color: #4fb2c2;
}

.site-footer__newsletter {
    position: relative;
}

.site-footer__newsletter input {
    width: 100%;
    min-height: 44px;
    border: 1px solid #ddd;
    border-radius: 999px;
    padding: 0 110px 0 16px;
    outline: none;
}

.site-footer__newsletter button {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 90px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: #4fb2c2;
    color: #fff;
    font-weight: 700;
}
.site-footer .social-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white !important;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.site-footer .social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    color: white;
}


.site-footer .facebook {
    background: #3b5998;
}

.site-footer .instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.site-footer .youtube {
    background: #ff0000;
}

.site-footer .pinterest {
    background: #bd081c;
}

.site-footer .twitter {
    background: #1da1f2;
}

.site-footer .tumblr {
    background: #35465c;
}


.site-footer .zalo {
    background: #0088ff;
    padding: 6px;
}

.site-footer .zalo img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.social-btn i {
    line-height: 1;
}
@media (max-width: 991.98px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767.98px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
    }
}
.fab-wrapper {
    position: fixed;
    right: 20px;
    bottom: 80px; 
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    z-index: 9999;
}

.fab-item,
.fab-item1 {
    display: flex;
    align-items: center;
    background: #2b366a; 
    border-radius: 50px;
    color: white !important;
    text-decoration: none !important;
    width: 50px; 
    height: 50px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}


.fab-item:hover {
    width: 220px; 
    background: #3f4d8c;
}


.fab-icon {
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.fab-wrapper .zalo img {
    width: 24px;
    height: 24px;
}

.fab-text {
    white-space: nowrap;
    padding-right: 20px;
    font-weight: 500;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.fab-item:hover .fab-text {
    opacity: 1;
    transform: translateX(0);
}


.hotline:hover {
    background: #ce1126;
}

.register:hover {
    background: #009999;
}



.fab-zalo {
    background: #0088ff;
}

.sticky-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
    background: rgba(43, 54, 106, 0.9); 
    padding: 15px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.sticky-sidebar .sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15); 
    border-radius: 40px;
    transition: 0.3s;
    font-weight: 500;
    white-space: nowrap;
}

.sticky-sidebar .sidebar-item:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateX(-5px);
}

.sticky-sidebar .sidebar-item i {
    font-size: 20px;
}


.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 9999;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #555;
    font-size: 12px;
    flex: 1;
}

.mobile-bottom-nav .nav-item i {
    font-size: 22px;
    margin-bottom: 4px;
    color: #2b366a;
}

.mobile-bottom-nav .nav-item img {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

.mobile-bottom-nav .nav-item span {
    font-weight: 500;
}
.footer-map-container {
    position: relative;
    width: 100%;
    height: 200px; 
    background: #eee;
}


.footer-map-container iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
}


.rounded-xl {
    border-radius: 1rem !important;
}
.pro-footer-map {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 50px;
}


.map-bg {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) contrast(0.8) opacity(0.8); 
    transition: all 0.5s ease;
}

.pro-footer-map:hover .map-bg {
    filter: grayscale(0%) contrast(1) opacity(1); 
}


.contact-floating-card {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    width: 320px;
    backdrop-filter: blur(10px); 
    border: 1px solid rgba(255,255,255,0.3);
}

.contact-floating-card h3 {
    color: #8b5e3c;
    margin-bottom: 20px;
    font-size: 18px;
    letter-spacing: 1px;
}

.card-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #555;
    font-size: 14px;
}

.card-item i {
    color: #56b2c2; 
    width: 20px;
}

.btn-direction {
    display: block;
    text-align: center;
    background: #56b2c2;
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-direction:hover {
    background: #3d8f9d;
    box-shadow: 0 5px 15px rgba(86, 178, 194, 0.4);
}


@media (max-width: 768px) {
    .contact-floating-card {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
    }

    .pro-footer-map {
        height: auto;
    }
}
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.site-header {
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.site-header.is-sticky {
    position: sticky;
    top: 0;
}

.site-header__inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}


@media (min-width: 992px) {
    .site-header__logo {
        position: absolute; 
        top: 0;
        left: 90px; 
        z-index: 1001;
        background: #fff;
        padding: 15px; 
        border-radius: 0 0 15px 15px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        margin-top: 0;
        transition: all 0.3s ease;
    }

    .site-header__logo img {
        height: 100px !important; 
        width: 100px !important; 
        object-fit: contain;
    }

    
    .site-header__nav {
        margin-left: 160px;
    }
}


@media (max-width: 991.98px) {
    .site-header__logo {
        position: relative; 
        z-index: 10;
        background: transparent; 
        padding: 5px 0;
        border-radius: 0;
        box-shadow: none;
        margin-top: 0;
    }

    .site-header__logo img {
        height: 40px !important; 
        width: auto !important;
        object-fit: contain;
    }

    
    .site-header__inner {
        height: 50px; 
    }
}



.is-sticky .site-header__logo {
    padding:5px 10px;
}

.is-sticky .site-header__logo img {
    height: 100px !important;
    width: 100px !important;
}

.site-header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.site-header__menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header__menu-item {
    position: relative;
}

.site-header__menu-item > a {
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: color .2s ease;
}

.site-header__menu-item > a:hover {
    color: #f1b282 !important;
}

.site-header__dropdown {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 14px;
    padding: 10px 0;
    box-shadow: 0 14px 36px rgba(0,0,0,0.12);
    list-style: none;
    margin: 0;
    display: none;
}

.site-header__menu-item:hover .site-header__dropdown {
    display: block;
}

.site-header__dropdown a {
    display: block;
    padding: 10px 16px;
    color: #603913;
    text-decoration: none;
    font-weight: 600;
}

.site-header__dropdown a:hover {
    background: #fff7f2;
    color: #f1b282;
}

.site-header__search-btn {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: #f7f7f7;
    cursor: pointer;
}

@media (max-width: 991.98px) {
    .site-header__nav {
        display: none;
    }
}

.mobile-menu-drawer__content {
    position: absolute;
    left: 0;
    width: 85%; 
    max-width: 320px;
    height: 100%;
    background: #fff;
    z-index: 2;
    overflow-y: auto;
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
}


.btn-close-menu-top {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    z-index: 3;
    cursor: pointer;
}


.mobile-search-box .form-control {
    border-right: none;
    font-size: 14px;
    padding: 10px;
}

.mobile-search-box .input-group-text {
    border-left: none;
    cursor: pointer;
}


.mobile-nav-item a {
    letter-spacing: 0.5px;
}

.submenu-toggle {
    padding: 0 10px;
    transition: 0.3s;
}

.submenu-toggle.active i {
    transform: rotate(180deg);
}

.mobile-menu-drawer__mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 9999;
}

.mobile-menu-drawer.active + .mobile-menu-drawer__mask {
    display: block;
}


body.overflow-hidden {
    overflow: hidden;
}

.mobile-menu-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #000; 
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}


.hamburger-icon {
    width: 20px;
    height: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease-in-out;
}


.mobile-menu-btn.is-active .hamburger-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn.is-active .hamburger-icon span:nth-child(2) {
    opacity: 0; 
}

.mobile-menu-btn.is-active .hamburger-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 80%;
    height: 100%;
    z-index: 9999;
    transition: right 0.4s ease; 
}

.mobile-menu-drawer.active {
    right: 0; 
}

.mobile-menu-btn {
    border: 2px solid var(--primary-color, #3e1919);
    background: transparent;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001; 
}


.hamburger-icon {
    width: 20px;
    height: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color, #3e1919);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}


.mobile-menu-btn.is-active .hamburger-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.is-active .hamburger-icon span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.is-active .hamburger-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 300px;
    max-width: 80%;
    height: 100%;
    background: #fff;
    z-index: 10000;
    transition: all 0.4s ease-in-out;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}


.mobile-menu-drawer.active {
    right: 0;
}


.mobile-menu-drawer__mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 9999;
}

.mobile-menu-drawer.active + .mobile-menu-drawer__mask {
    display: block;
}


body.overflow-hidden {
    overflow: hidden;
}

.btn-close-menu-top {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 24px;
    z-index: 10001;
}



.hero-swiper {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: block;
}


.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
    height: 100% !important; 
}


.hero-slide-item {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}


.hero-picture {
    display: block;
    width: 100%;
    height: 100%;
}


.hero-img {
    width: 100%;
    height: 100% !important; 
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1; 
}


.hero-slide-item1::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7)); 
    z-index: 2; 
}


.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10; 
    width: 100%;
    max-width: 1200px; 
    padding: 0 20px;
    pointer-events: none;
}

.hero-inner {
    pointer-events: auto;
}


.hero-btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-btn:hover {
    transform: translateY(-2px) scale(1.05); 
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    opacity: 1;
}


@media (max-width: 768px) {
    .hero-swiper {
        
    }
}

.intro-media-text .main-image-frame {
    border-radius: 30px 80px 30px 80px; 
    overflow: hidden;
    border: 8px solid #fff;
    position: relative;
    z-index: 2;
}

.intro-media-text .play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5b68a;
    font-size: 24px;
    transition: 0.3s;
}

.intro-media-text .play-btn-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
}

.intro-media-text .media-subtext span {
    background-color: #fff;
    color: #4eb4c1;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}


.decor-sun {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: url('/assets/icons/sun.png') no-repeat center;
    background-size: contain;
    z-index: 1;
}

.news-grid-module .module-title {
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.news-grid-module .module-subtitle {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.news-grid-module .module-desc {
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

.news-grid-module .news-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #f1f1f1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all .25s ease;
}

.news-grid-module .news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}

.news-grid-module .news-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
    display: block;
}

.news-grid-module .news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.news-grid-module .news-card:hover .news-thumb img {
    transform: scale(1.06);
}

.news-grid-module .news-body {
    padding: 22px;
}

.news-grid-module .news-date {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
}

.news-grid-module .news-title {
    font-size: 1.1rem;
    line-height: 1.45;
    font-weight: 800;
    margin-bottom: 12px;
}

.news-grid-module .news-title a {
    color: #603913;
    text-decoration: none;
}

.news-grid-module .news-title a:hover {
    color: #f1b282;
}

.news-grid-module .news-desc {
    color: #666;
    font-size: .95rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-grid-module .news-link,
.news-grid-module .module-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: all .25s ease;
}

.news-grid-module .news-link {
    color: #603913;
    padding-left: 0;
}

.news-grid-module .news-link:hover {
    color: #f1b282;
}

.news-grid-module .module-main-btn {
    background: #603913;
    color: #fff;
}

.news-grid-module .module-main-btn:hover {
    background: #f1b282;
    color: #fff;
}
.news-grid-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding: 10px 0 30px 0;
    scrollbar-width: none;
}
.news-grid-item {
    flex: 0 0 85%;
    scroll-snap-align: center;
}
@media (min-width: 992px) {
    .news-grid-item {
        flex: none;
    }
}

.member-price-section .pricing-card {
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid #eee;
    position: relative;
}


.member-price-section .pricing-card {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}


.member-price-section .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}


@media (min-width: 992px) {
    .member-price-section .pricing-card.popular-plan {
        transform: scale(1.05);
        z-index: 10;
        border: 1px solid transparent;
        background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #f12711, #f5af19) border-box;
    }

    .member-price-section .pricing-card.popular-plan:hover {
        transform: scale(1.05) translateY(-10px);
        box-shadow: 0 25px 70px rgba(241, 39, 17, 0.25);
    }
}


@media (max-width: 991.98px) {
    .member-price-section .pricing-card.popular-plan {
        transform: none !important;
        margin-top: 30px;
    }
}
.vip-badge-wrapper {
    position: relative;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 85%; 
    margin: 25px auto 10px auto; 
    padding: 14px 28px !important; 
    border-radius: 12px !important;
}

.vip-badge-wrapper .badge {
    padding: 16px 26px !important;
    font-size: 1.2rem !important;
    letter-spacing: 1.2px;
    backdrop-filter: blur(6px);
}


.popular-plan .vip-badge-wrapper .badge {
    background: linear-gradient(135deg, #ff7a18, #ffb347) !important;
    box-shadow: 0 8px 20px rgba(255, 122, 24, 0.4);
}


.pricing-card .display-5 {
    font-size: 2.5rem;
    letter-spacing: -1px;
}


.pricing-card ul li {
    transition: transform 0.2s ease;
}

    .pricing-card ul li:hover {
        transform: translateX(4px);
    }



.yoweb-pricing-btn {
    border-radius: 10px !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

    
    .yoweb-pricing-btn::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
        transform: translateX(-100%);
        transition: 0.6s;
    }

    .yoweb-pricing-btn:hover::before {
        transform: translateX(100%);
    }


.popular-plan .yoweb-pricing-btn {
    background: linear-gradient(135deg, #f12711, #f5af19) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(241, 39, 17, 0.3);
}

    .popular-plan .yoweb-pricing-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(241, 39, 17, 0.4);
    }
.pricing-card.popular-plan::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: radial-gradient(circle at top, rgba(241,39,17,0.15), transparent 70%);
    z-index: -1;
}
.pricing-card .border-bottom {
    border-color: rgba(0,0,0,0.05) !important;
}
.pricing-card h4 {
    letter-spacing: -0.3px;
}

.pricing-card p {
    font-size: 0.9rem;
}


.testimonial-section-wrapper {
    background-color: var(--testimonial-bg);
    font-family: var(--testimonial-font, inherit);
    position: relative;
    overflow: hidden;
}

    .testimonial-section-wrapper .testimonial-heading-tag {
        color: var(--testimonial-accent);
        letter-spacing: 2px;
    }

    .testimonial-section-wrapper .testimonial-main-title {
        color: var(--testimonial-title-color);
        line-height: 1.3;
    }


.testimonial-carousel-container {
    display: flex;
    width: 100%;
    overflow-x: auto; 
    scroll-behavior: smooth; 
    scroll-snap-type: x mandatory; 
    position: relative;
    padding: 20px 0;
    scrollbar-width: none; 
}

    .testimonial-carousel-container::-webkit-scrollbar {
        display: none; 
    }


.testimonial-carousel-track {
    display: flex;
    gap: 1.5rem;
    padding: 0 1rem;
}


.testimonial-section-wrapper .review-card {
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.25rem;
    padding: 2rem;
    width: 380px; 
    flex-shrink: 0;
    scroll-snap-align: center; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 576px) {
    .testimonial-section-wrapper .review-card {
        width: 290px; 
    }
}

.testimonial-section-wrapper .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(15, 23, 42, 0.1) !important;
}

.testimonial-section-wrapper .avatar-circle {
    width: 48px;
    height: 48px;
    background-color: var(--testimonial-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.testimonial-section-wrapper .quote-mark {
    color: var(--testimonial-accent);
    font-family: serif;
    font-size: 2rem;
    line-height: 1;
    margin-right: 4px;
}


.testimonial-nav-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.testimonial-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.15);
    background-color: #ffffff;
    color: var(--testimonial-title-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.testimonial-nav-btn:hover {
    background-color: var(--testimonial-accent);
    color: #ffffff;
    border-color: var(--testimonial-accent);
    transform: scale(1.05);
}

