/* Premium Effects & Cinematic Transitions */

/* Global Layout Scaling (100% Zoom looks like 80% Zoom) */
html {
    zoom: 0.8;
    -moz-transform: scale(0.8);
    -moz-transform-origin: top center;
}

/* Reset zoom for mobile and tablet to prevent right-side white space */
@media (max-width: 991px) {
    html {
        zoom: 1;
        -moz-transform: none;
    }
}

body {
    overflow-x: hidden;
    background-color: #fff;
}

/* 1. Cinematic Reveal Animations - FORCED VISIBILITY */
.reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1 !important;
    transform: none !important;
}

/* Specific Drift Directions */
.reveal-drift-up {
    transform: translateY(60px);
}

.reveal-drift-left {
    transform: translateX(-60px);
}

.reveal-drift-right {
    transform: translateX(60px);
}

/* 2. Premium Product Card Upgrades */
.product-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card .product-img-container {
    overflow: hidden;
    position: relative;
}

.product-card img {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(209, 34, 41, 0.1);
}

.product-card:hover img {
    transform: scale(1.1) rotate(2deg);
}

/* Glassmorphism Badge */
.glass-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d12229;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* 3. Section Parallax & Depth */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: -1;
    transition: transform 0.1s ease-out;
}

/* 4. Premium Testimonial Slider Styles */
.testimonial-slider {
    padding-bottom: 50px;
}

.testimonial-card {
    background: white;
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: #fdf2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: #d12229;
}

.testimonial-text {
    font-size: 24px;
    line-height: 1.6;
    color: #1a1a1a;
    font-style: italic;
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
}

.testimonial-author {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d12229;
    font-size: 14px;
}

/* 5. Removed Decorative Background Effects */

/* 6. Premium Pillars Service Section */
.service-pillar {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 40px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.service-pillar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(209, 34, 41, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.service-pillar:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    border-color: rgba(209, 34, 41, 0.1);
}

.service-pillar:hover::before {
    opacity: 1;
}

.pillar-icon-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.service-pillar:nth-child(1) .pillar-icon-box {
    color: #f59e0b;
}

.service-pillar:nth-child(2) .pillar-icon-box {
    color: #f59e0b;
}

.service-pillar:nth-child(3) .pillar-icon-box {
    color: #d12229;
}

.service-pillar:hover .pillar-icon-box {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pillar-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.pillar-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.pillar-link {
    font-weight: 700;
    font-size: 14px;
    color: #d12229;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.pillar-link .arrow {
    transition: transform 0.3s ease;
}

.service-pillar:hover .pillar-link .arrow {
    transform: translateX(10px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 40px 20px;
    }

    .testimonial-text {
        font-size: 18px;
    }
}

/* 7. Combination Slider Styles */
.combination-slider {
    overflow: visible !important;
}

.combi-nav-prev,
.combi-nav-next {
    width: 50px !important;
    height: 50px !important;
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 50% !important;
    color: #d12229 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 20 !important;
}

.combi-nav-prev:after,
.combi-nav-next:after {
    display: none !important;
}

.combi-nav-prev svg,
.combi-nav-next svg {
    width: 24px;
    height: 24px;
}

.combi-nav-prev:hover,
.combi-nav-next:hover {
    background: #d12229 !important;
    color: #fff !important;
    transform: translateY(-50%) scale(1.1) !important;
    border-color: #d12229 !important;
}

.combi-nav-prev {
    left: -25px !important;
}

.combi-nav-next {
    right: -25px !important;
}

@media (max-width: 1024px) {
    .combi-nav-prev { left: 0px !important; }
    .combi-nav-next { right: 0px !important; }
}