/* HERO CURVED SECTION - MATCHING REFERENCE MOCKUP EXACTLY */
.hero-curved-section {
    position: relative;
    padding: 55px 0 45px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('../img/background.png') center/cover no-repeat;
}

.hero-curved-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
    pointer-events: none;
}

.hero-curved-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    display: block;
    animation: hero-bg-curve-enter 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0s both;
}

.hero-curved-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-curve-desktop {
    display: block;
}

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

.hero-curved-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.hero-curved-left-content {
    max-width: 580px;
    width: 100%;
    color: #ffffff;
    text-align: left;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.hero-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffccd5;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 204, 213, 0.35);
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: hero-text-enter-left 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
    will-change: transform, opacity;
}

.hero-badge-tag i {
    color: #ff2b43;
}

.hero-curved-title {
    font-family: 'Plus Jakarta Sans', 'Montserrat', 'Outfit', sans-serif;
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -0.8px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 55%, #ffccd5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.6));
    animation: hero-text-enter-left 1.25s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
    will-change: transform, opacity;
}

.hero-curved-desc {
    font-size: 1.08rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 400;
    margin-bottom: 0;
    max-width: 520px;
    margin-left: 0;
    margin-right: 0;
    animation: hero-text-enter-left 1.25s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
    will-change: transform, opacity;
}

/* RIGHT SIDE PRODUCT PHOTO DISPLAY OVER WEBSITE BACKGROUND PHOTO */
.hero-curved-right-content {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    animation: hero-round-enter-right 1.35s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
    will-change: transform, opacity;
}

@keyframes hero-bg-curve-enter {
    0% {
        opacity: 0;
        transform: translateX(-120px) scaleX(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scaleX(1);
    }
}

@keyframes hero-text-enter-left {
    0% {
        opacity: 0;
        transform: translateX(-100vw);
        filter: blur(12px);
    }
    60% {
        opacity: 0.85;
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes hero-round-enter-right {
    0% {
        opacity: 0;
        transform: translateX(100vw) scale(0.65) rotate(18deg);
        filter: blur(12px);
    }
    75% {
        opacity: 0.95;
        transform: translateX(-15px) scale(1.02) rotate(-2deg);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1) rotate(0deg);
        filter: blur(0);
    }
}

@keyframes hero-round-float {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), inset 0 0 25px rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: translateY(-14px) scale(1.025) rotate(1.5deg);
        box-shadow: 0 35px 75px rgba(217, 4, 41, 0.3), 0 20px 45px rgba(0, 0, 0, 0.45), inset 0 0 30px rgba(255, 255, 255, 0.35);
    }
    100% {
        transform: translateY(0) scale(1) rotate(0deg);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), inset 0 0 25px rgba(255, 255, 255, 0.2);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-curved-bg-wrapper,
    .hero-curved-left-content,
    .hero-curved-right-content,
    .curved-product-card {
        animation: none !important;
    }
}

.curved-product-card {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 35px;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), inset 0 0 25px rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
    animation: hero-round-float 5s ease-in-out 1.25s infinite alternate;
}

.curved-product-card:hover {
    border-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 35px 80px rgba(217, 4, 41, 0.45), 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 35px rgba(255, 255, 255, 0.5);
}

.hero-product-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-product-slides {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: scale(0.95);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-product-slide.active .curved-product-img {
    animation: 
        productImagePop 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) both,
        floatCurvedProduct 4s ease-in-out 0.75s infinite alternate;
}

.curved-product-img {
    width: 100%;
    height: 100%;
    max-height: 330px;
    object-fit: contain;
    mix-blend-mode: multiply;
    animation: floatCurvedProduct 4s ease-in-out infinite alternate;
}

@keyframes productImagePop {
    0% {
        opacity: 0;
        transform: scale(0.65) rotate(-10deg);
        filter: blur(6px);
    }
    70% {
        opacity: 0.95;
        transform: scale(1.06) rotate(2deg);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: blur(0);
    }
}

@keyframes floatCurvedProduct {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* DOTS INDICATOR BELOW THE PRODUCT SLIDER */
.hero-product-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    z-index: 10;
}

.hero-product-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-product-dots .dot.active {
    width: 28px;
    border-radius: 20px;
    background: #b3001e;
}

/* RESPONSIVE MEDIA QUERIES FOR CURVED HERO */
@media (max-width: 1024px) {
    .hero-curved-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .curved-product-card {
        margin: 0 auto;
        width: 380px;
        height: 380px;
        padding: 25px;
    }

    .hero-product-slides {
        height: 260px;
    }

    .curved-product-img {
        max-height: 240px;
    }

    .hero-curved-left-content {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .hero-curved-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-curved-actions {
        justify-content: center;
    }

    .hero-curved-title {
        font-size: 2.6rem;
    }

    @keyframes hero-text-enter-left {
        0% {
            opacity: 0;
            transform: translateX(-350px);
            filter: blur(8px);
        }
        100% {
            opacity: 1;
            transform: translateX(0);
            filter: blur(0);
        }
    }

    @keyframes hero-round-enter-right {
        0% {
            opacity: 0;
            transform: translateX(350px) scale(0.7) rotate(15deg);
            filter: blur(8px);
        }
        100% {
            opacity: 1;
            transform: translateX(0) scale(1) rotate(0deg);
            filter: blur(0);
        }
    }
}

@media (max-width: 868px) {
    .hero-curved-section {
        padding: 85px 0 80px;
        min-height: auto;
        background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.35)), url('../img/background.png') center/cover no-repeat;
    }

    .hero-curved-bg-wrapper {
        display: block;
    }

    .hero-curve-desktop {
        display: none;
    }

    .hero-curve-mobile {
        display: block;
    }

    .hero-curved-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-curved-title {
        font-size: 2.4rem;
        margin-bottom: 20px;
    }

    .hero-curved-left-content {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        padding: 0 15px;
    }

    .hero-curved-desc {
        font-size: 1.05rem;
        margin: 0 auto;
        max-width: 580px;
    }

    .hero-curved-right-content {
        margin-top: 20px;
        z-index: 4;
    }

    .curved-product-card {
        margin: 0 auto;
        width: 360px;
        height: 360px;
        padding: 25px;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }

    .hero-product-slides {
        height: 250px;
    }

    .curved-product-img {
        max-height: 230px;
    }
}

@media (max-width: 480px) {
    .hero-curved-section {
        padding: 60px 0 50px;
    }

    .hero-badge-tag {
        font-size: 0.72rem;
        padding: 5px 12px;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
    }

    .hero-curved-title {
        font-size: 1.9rem;
        line-height: 1.2;
    }

    .hero-curved-desc {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .curved-product-card {
        width: 290px;
        height: 290px;
        padding: 15px;
    }

    .hero-product-slides {
        height: 220px;
    }

    .curved-product-img {
        max-height: 190px;
    }

    .btn-curved-yellow {
        width: 100%;
        text-align: center;
        padding: 13px 20px;
    }

    .hero-curved-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* COUNTER SECTION */
.counters-section {
    background-color: transparent;
    margin-top: -60px;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.counters-container {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 0;
    border-top: none;
}

.counter-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    text-align: center;
    padding: 30px 15px;
    border-top: 4px solid var(--primary-red);
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.3s ease;
    will-change: opacity, transform;
}

.counters-container.animate-in .counter-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.counters-container.animate-in .counter-card:nth-child(1) { transition-delay: 0.1s; }
.counters-container.animate-in .counter-card:nth-child(2) { transition-delay: 0.25s; }
.counters-container.animate-in .counter-card:nth-child(3) { transition-delay: 0.4s; }
.counters-container.animate-in .counter-card:nth-child(4) { transition-delay: 0.55s; }

.counters-container.animate-in .counter-card:hover,
.counters-container.animate-in .counter-card:active,
.counters-container.animate-in .counter-card.touch-active {
    transform: translateY(-8px) scale(1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    transition-delay: 0s !important;
}

.counter-num {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 5px;
    display: inline-block;
}

.counter-label {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* WHY CHOOSE US - HOME PAGE UNIQUE THEME */
.why-choose-us {
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/why.png') no-repeat center center/cover;
    filter: blur(4px);
    transform: scale(1.05);
    z-index: 1;
}

.why-choose-us .container {
    position: relative;
    z-index: 2;
}

.why-choose-us .section-title {
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(92, 6, 6, 0.9), 0 0 20px rgba(92, 6, 6, 0.6);
}

.why-choose-us .section-title::after {
    background-color: var(--white);
}

.why-choose-us .section-title-wrapper {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.why-choose-us.animate-in .section-title-wrapper,
.why-choose-us .section-title-wrapper.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-us .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.choose-card {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.3s ease, 
                border-color 0.3s ease, 
                background-color 0.3s ease;
    will-change: opacity, transform;
}

.choose-grid.animate-in .choose-card,
.why-choose-us.animate-in .choose-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.choose-grid.animate-in .choose-card:nth-child(1),
.why-choose-us.animate-in .choose-card:nth-child(1) { transition-delay: 0.1s; }

.choose-grid.animate-in .choose-card:nth-child(2),
.why-choose-us.animate-in .choose-card:nth-child(2) { transition-delay: 0.25s; }

.choose-grid.animate-in .choose-card:nth-child(3),
.why-choose-us.animate-in .choose-card:nth-child(3) { transition-delay: 0.4s; }

.choose-grid.animate-in .choose-card:nth-child(4),
.why-choose-us.animate-in .choose-card:nth-child(4) { transition-delay: 0.55s; }

.why-choose-us .choose-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--border-grey);
    box-shadow: 0 8px 25px rgba(26, 2, 4, 0.05);
}

.why-choose-us .choose-card:hover {
    background-color: var(--white);
    transform: translateY(-5px) scale(1);
    box-shadow: 0 12px 30px rgba(26, 2, 4, 0.15);
    border-color: var(--primary-red);
    transition-delay: 0s !important;
}

.choose-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-dark-red);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.choose-card:hover .choose-icon-box {
    background-color: var(--accent-red);
    color: var(--white);
    transform: rotateY(360deg);
    transition: transform 0.6s ease;
}

.why-choose-us .choose-title {
    font-size: 1.2rem;
    color: var(--primary-dark-red);
    margin-bottom: 12px;
}

.why-choose-us .choose-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* CLIENT REVIEWS & TESTIMONIAL SLIDER */
.reviews {
    background: linear-gradient(180deg, #ffffff 0%, #fff6f6 50%, #fdf0f0 100%);
    border-top: 2px solid rgba(179, 0, 30, 0.08);
}

/* CLIENT REVIEWS SCROLL ENTRANCE ANIMATIONS */
.reviews .section-title-wrapper {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reviews.animate-in .section-title-wrapper {
    opacity: 1;
    transform: translateY(0);
}

.reviews-slider-container {
    opacity: 0;
    transform: translateY(50px) scale(0.96);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
    max-width: 860px;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 45px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.reviews.animate-in .reviews-slider-container {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.2s;
}

.slider-nav {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reviews.animate-in .slider-nav {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}

.reviews-track {
    display: flex;
    align-items: stretch;
    transition: transform 0.5s ease-in-out;
}

.review-slide {
    min-width: 100%;
    width: 100%;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* === NEW CLIENT REVIEW CARD DESIGN (MATCHED TO SITE BRAND COLORS) === */
.review-content-box {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 68px 38px 36px 38px;
    box-shadow: 0 14px 35px rgba(179, 0, 30, 0.08), 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1.5px solid rgba(179, 0, 30, 0.14);
    border-bottom: 6px solid var(--primary-red);
    border-right: 5px solid var(--primary-red);
    position: relative;
    text-align: left;
    width: 100%;
    height: 100%;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease;
    cursor: pointer;
}

/* CARD HOVER EFFECT */
.review-content-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(179, 0, 30, 0.16), 0 6px 16px rgba(0, 0, 0, 0.04);
    border-color: rgba(179, 0, 30, 0.3);
    border-bottom-color: var(--primary-dark-red);
    border-right-color: var(--primary-dark-red);
}

/* TOP LEFT RIBBON TITLE TAG */
.review-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-dark-red) 100%);
    color: #ffffff;
    padding: 14px 34px 14px 28px;
    border-top-left-radius: 22px;
    border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;
    box-shadow: 0 6px 18px rgba(179, 0, 30, 0.3);
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 3px;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.review-content-box:hover .review-ribbon {
    box-shadow: 0 8px 24px rgba(179, 0, 30, 0.42);
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-red) 100%);
}

.review-ribbon .reviewer-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.2px;
}

.review-ribbon .reviewer-company {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* TOP RIGHT CIRCULAR AVATAR WITH FACE ICON */
.reviewer-avatar {
    position: absolute;
    top: -35px;
    right: 25px;
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark-red) 0%, #4a000c 100%);
    border: 4px solid #ffffff;
    box-shadow: 0 10px 25px rgba(179, 0, 30, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 3.2rem;
    z-index: 6;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.4s ease, 
                background 0.4s ease;
}

.reviewer-avatar i {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.review-content-box:hover .reviewer-avatar {
    transform: scale(1.1) rotate(4deg);
    box-shadow: 0 14px 32px rgba(179, 0, 30, 0.45);
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-dark-red) 100%);
}

.review-content-box:hover .reviewer-avatar i {
    transform: scale(1.08);
}

/* CARD BODY (STARS & REVIEW TEXT) */
.review-body {
    width: 100%;
}

.rating-stars {
    color: #f59e0b;
    font-size: 1.3rem;
    margin-bottom: 16px;
    margin-top: 10px;
    display: flex;
    gap: 4px;
    transition: transform 0.3s ease;
}

.review-content-box:hover .rating-stars {
    transform: scale(1.04);
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #334155;
    font-weight: 500;
    margin: 0;
    text-align: left;
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--primary-red);
    background-color: var(--white);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.slider-btn:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-red);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-red);
    width: 25px;
    border-radius: 5px;
}

/* RESPONSIVE LAYOUT */
@media (max-width: 1024px) {
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 70px 0 50px;
        min-height: auto;
    }

    .hero-bg-slide {
        background-position: center 35% !important;
    }

    .hero-bg-slide:nth-child(1) {
        background-image: url('../img/phoneview1.png') !important;
    }

    .hero-bg-slide:nth-child(2) {
        background-image: url('../img/phoneview2.png') !important;
    }

    .hero-bg-slide:nth-child(3) {
        background-image: url('../img/phoneview3.png') !important;
    }

    .hero-bg-slide:nth-child(4) {
        background-image: url('../img/phoneview1.png') !important;
    }

    .hero-bg-slide:nth-child(5) {
        background-image: url('../img/phoneview2.png') !important;
    }

    .hero-container-centered {
        padding: 0 15px;
        max-width: 100%;
    }

    .hero-content {
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 1.85rem;
        line-height: 1.25;
        overflow-wrap: break-word;
        word-wrap: break-word;
        margin-bottom: 18px;
    }

    .hero-title span {
        display: inline-block;
    }

    .hero-desc {
        font-size: 1rem;
        line-height: 1.55;
        overflow-wrap: break-word;
        word-wrap: break-word;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .counters-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0;
    }
    
    .counter-card {
        border-right: none;
    }
    
    .counter-card:nth-child(even) {
        border-left: none;
    }

    .review-content-box {
        padding: 30px 20px;
    }

    .review-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 50px 0 40px;
    }

    .hero-title {
        font-size: 1.45rem;
        line-height: 1.3;
        letter-spacing: -0.5px;
        margin-bottom: 15px;
    }

    .hero-desc {
        font-size: 0.88rem;
        line-height: 1.5;
        margin-bottom: 22px;
        padding: 0 4px;
    }

    .counters-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .counter-card {
        border-left: none !important;
        border-bottom: none;
        padding-bottom: 20px;
    }
    
    .counter-card:last-child {
        border-bottom: none;
        padding-bottom: 20px;
    }
    
    .choose-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.6rem;
    }

    .review-content-box {
        padding: 22px 15px;
        border-radius: 12px;
    }

    .quote-icon {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .review-text {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }

    .products-marquee-track .product-card {
        width: 270px;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.3rem;
    }
}

/* HOMEPAGE PRODUCT MARQUEE & HOVER OVERLAY STYLE */
.products-marquee-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    max-width: 100%;
    touch-action: pan-x;
    position: relative;
    padding: 30px 0;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
    -ms-overflow-style: none;  /* IE/Edge: hide scrollbar */
    scrollbar-width: none;     /* Firefox: hide scrollbar */
}

.products-marquee-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari: hide scrollbar */
}

.products-marquee-wrapper.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.products-marquee-wrapper.is-dragging .product-card {
    pointer-events: none;
}

.products-marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

/* Marquee Navigation Buttons */
.marquee-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.marquee-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary-dark-red);
    background-color: var(--white);
    color: var(--primary-dark-red);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(92, 6, 6, 0.15);
}

.marquee-btn:hover {
    background-color: var(--primary-dark-red);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(92, 6, 6, 0.35);
    transform: scale(1.08);
}

.marquee-btn:active {
    transform: scale(0.95);
}



/* FEATURED PRODUCTS SCROLL ENTRANCE ANIMATIONS */
.section-title-wrapper {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.section-title-wrapper.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.products-marquee-wrapper {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.products-marquee-wrapper.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.products-marquee-track .product-card {
    width: 290px;
    min-height: auto !important;
    height: auto !important;
    flex-shrink: 0;
    white-space: normal;
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1.5px solid #e2e8f0;
    text-decoration: none;
    opacity: 0;
    transform: translateY(45px) scale(0.94);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.3s ease, 
                border-color 0.3s ease;
    will-change: opacity, transform;
    display: flex;
    flex-direction: column;
}

.products-marquee-track .product-img-wrapper {
    height: 190px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
}

.products-marquee-track .product-img-wrapper img {
    max-width: 85%;
    max-height: 85%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.products-marquee-wrapper.animate-in .product-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.products-marquee-wrapper.animate-in .product-card:nth-child(1) { transition-delay: 0.1s; }
.products-marquee-wrapper.animate-in .product-card:nth-child(2) { transition-delay: 0.22s; }
.products-marquee-wrapper.animate-in .product-card:nth-child(3) { transition-delay: 0.34s; }
.products-marquee-wrapper.animate-in .product-card:nth-child(4) { transition-delay: 0.46s; }
.products-marquee-wrapper.animate-in .product-card:nth-child(5) { transition-delay: 0.58s; }
.products-marquee-wrapper.animate-in .product-card:nth-child(6) { transition-delay: 0.70s; }

.products-marquee-wrapper.animate-in .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(179, 0, 30, 0.15);
    border-color: var(--primary-red);
    transition-delay: 0s !important;
}

.products-marquee-wrapper.animate-in .product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

.product-badge-spec {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-dark-red);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 2;
}

.product-info-home {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: transparent;
    border-top: 1px solid rgba(139, 0, 0, 0.1);
}

.product-title-home {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.product-hover-hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    padding: 9px 24px;
    background-color: rgba(179, 0, 30, 0.07);
    color: var(--primary-red);
    border: 1.5px solid rgba(179, 0, 30, 0.35);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
    text-align: center;
    width: fit-content;
    cursor: pointer;
    font-family: inherit;
    outline: none;
}

.product-hover-hint i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.product-card:hover .product-hover-hint,
.product-hover-hint:hover {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-dark-red) 100%);
    color: #ffffff;
    border-color: var(--primary-dark-red);
    box-shadow: 0 6px 18px rgba(179, 0, 30, 0.28);
    transform: translateY(-2px);
}

.product-card:hover .product-hover-hint i,
.product-hover-hint:hover i {
    transform: translateX(4px);
    color: #ffffff;
}



@media (max-width: 768px) {
    .hero {
        padding: 60px 0 10px;
        min-height: 570px;
        display: flex;
        align-items: flex-start;
    }

    .hero::before {
        content: '';
        display: block !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.25) 100%);
        z-index: 2;
        pointer-events: none;
    }

    .hero-bg-slide {
        background-position: center 35% !important;
    }

    .hero-bg-slide:nth-child(1) {
        background-image: url('../img/phoneview.png') !important;
    }

    .hero-bg-slide:nth-child(2) {
        background-image: url('../img/phoneview3.png') !important;
    }

    .hero-bg-slide:nth-child(3) {
        background-image: url('../img/phoneview2.png') !important;
    }

    .hero-content {
        margin-top: 25px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.15;
        margin-bottom: 15px;
        -webkit-text-stroke: 1.2px #000000;
    }

    .hero-title span {
        display: block;
        margin-top: 4px;
        -webkit-text-stroke: 1.2px #000000;
    }

    .hero-desc {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 15px;
        padding: 0 10px;
        -webkit-text-stroke: 0.6px #000000;
    }

    .counters-section {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .counters-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .products-marquee-track {
        animation: marquee-scroll 25s linear infinite;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0 10px;
        min-height: 530px;
    }

    .hero-content {
        margin-top: 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-desc {
        font-size: 1.05rem;
    }

    .review-content-box {
        padding: 55px 20px 25px 20px;
        border-radius: 20px;
    }

    .review-ribbon {
        top: 0;
        left: 0;
        padding: 10px 22px 10px 18px;
        border-top-left-radius: 18px;
    }

    .review-ribbon .reviewer-name {
        font-size: 1.05rem;
    }

    .review-ribbon .reviewer-company {
        font-size: 0.76rem;
    }

    .reviewer-avatar {
        top: -28px;
        right: 15px;
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .review-text {
        font-size: 0.98rem;
        line-height: 1.6;
    }
}

/* EXTRACTED INDEX STYLES */
.hero-container-fluid {
    overflow: hidden;
    padding: 0;
}

/* Deep linking target product highlight pulse */
@keyframes pulse-highlight {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
    50% { transform: scale(1.03); box-shadow: 0 0 20px 10px rgba(220, 38, 38, 0.4); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}
.product-card.highlight-pulse {
    animation: pulse-highlight 1.5s ease-in-out;
    z-index: 10;
}
