/* ==========================================
   CSS Variables - Liquidation Theme
   ========================================== */
:root {
    --liq-primary: #FF6B35;
    --liq-secondary: #E93C05;
    --liq-light: #FFF4F0;
    --liq-white: #FFFFFF;
    --liq-shadow: rgba(255, 107, 53, 0.15);
    --liq-shadow-hover: rgba(255, 107, 53, 0.25);
    --liq-gradient: linear-gradient(135deg, #FF6B35 0%, #E93C05 100%);
}

/* ==========================================
   Keyframe Animations (7 Required)
   ========================================== */

/* 1. Float Animation - Gentle Vertical Float */
@keyframes liqFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* 2. FloatSlow Animation - Slow Diagonal Drift */
@keyframes liqFloatSlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -15px); }
}

/* 3. Pulse Animation - Opacity + Scale Effect */
@keyframes liqPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* 4. Shimmer Animation - Horizontal Shine Effect */
@keyframes liqShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* 5. FadeInUp Animation - Fade from Bottom */
@keyframes liqFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 6. ScaleIn Animation - Scale from Small to Normal */
@keyframes liqScaleIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 7. Bounce Animation - Icon Bounce Effect */
@keyframes liqBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}


/* ==========================================
   Hero Section
   ========================================== */
.liq-hero {
    background: var(--liq-gradient);
    min-height: 600px;
    position: relative;
    overflow: hidden;
    padding-top: 180px;
    padding-bottom: 100px;
}

/* Floating Decorative Circles */
.liq-circle-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    top: -100px;
    right: -100px;
    animation: liqFloat 8s ease-in-out infinite;
    z-index: 1;
}

.liq-circle-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    bottom: -50px;
    left: -50px;
    animation: liqFloatSlow 10s ease-in-out infinite;
    z-index: 1;
}

/* Gradient Overlay */
.liq-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(233, 60, 5, 0.1) 0%, rgba(255, 107, 53, 0.15) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Pill Badge */
.liq-hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: liqFadeInUp 0.8s ease-out;
}

.liq-hero-pill i {
    font-size: 1.1rem;
}

/* Hero Title */
.liq-hero-title {
    color: white;
    font-weight: 700;
    line-height: 1.2;
    animation: liqFadeInUp 1s ease-out;
}

/* Hero Subtitle */
.liq-hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    line-height: 1.6;
    animation: liqFadeInUp 1.2s ease-out;
}

/* Hero Buttons */
.liq-hero-buttons {
    animation: liqFadeInUp 1.4s ease-out;
}

.liq-hero-buttons .btn {
    transition: all 0.3s ease;
}

.liq-hero-buttons .btn-primary {
    background: white;
    color: var(--liq-primary);
    border: 2px solid white;
}

.liq-hero-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.liq-hero-buttons .btn-outline-primary {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.liq-hero-buttons .btn-outline-primary:hover {
    background: white;
    color: var(--liq-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Hero Image Card */
.liq-hero-image-card {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: liqScaleIn 1s ease-out;
    position: relative;
    overflow: visible;
}

.liq-hero-image-content {
    text-align: center;
}

.liq-hero-image-content i {
    color: var(--liq-primary);
    animation: liqBounce 2s ease-in-out infinite;
}

.liq-hero-image-content h5 {
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.liq-hero-image-content p {
    color: #666;
    font-size: 0.95rem;
}

/* Graffiti Decoration Box - Bottom Left, Rotated 10deg */
.liq-graffiti-box {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--liq-primary), var(--liq-secondary));
    border-radius: 15px;
    transform: rotate(10deg);
    opacity: 0.15;
    z-index: -1;
    animation: liqPulse 3s ease-in-out infinite;
}


/* ==========================================
   Why It Matters Section
   ========================================== */
.liq-why-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--liq-shadow);
    transition: all 0.4s ease;
}

.liq-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px var(--liq-shadow-hover);
}

.liq-why-icon {
    width: 100px;
    height: 100px;
    background: var(--liq-gradient);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    animation: liqBounce 2s ease-in-out infinite;
}

.liq-checklist-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--liq-shadow);
}

.liq-checklist-item {
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 20px;
    background: var(--liq-light);
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    animation: liqFadeInUp 0.6s ease-out backwards;
}

.liq-checklist-item:hover {
    transform: translateX(8px);
    box-shadow: 0 5px 20px var(--liq-shadow);
}

.liq-check-icon {
    width: 40px;
    height: 40px;
    background: var(--liq-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    animation: liqPulse 2s ease-in-out infinite;
}


/* ==========================================
   Process Cards Section
   ========================================== */
.liq-process-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--liq-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
}

.liq-process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--liq-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.liq-process-card:hover::before {
    transform: scaleX(1);
}

.liq-process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--liq-shadow-hover);
}

.liq-process-number {
    width: 60px;
    height: 60px;
    background: var(--liq-gradient);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.liq-process-card:hover .liq-process-number {
    transform: rotate(360deg) scale(1.1);
}

.liq-process-card h5 {
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.liq-process-card:hover h5 {
    color: var(--liq-primary);
}

/* Staggered Animation Delays for Process Cards */
.liq-process-card:nth-child(1) { animation: liqFadeInUp 0.6s ease-out 0.1s backwards; }
.liq-process-card:nth-child(2) { animation: liqFadeInUp 0.6s ease-out 0.2s backwards; }
.liq-process-card:nth-child(3) { animation: liqFadeInUp 0.6s ease-out 0.3s backwards; }
.liq-process-card:nth-child(4) { animation: liqFadeInUp 0.6s ease-out 0.4s backwards; }
.liq-process-card:nth-child(5) { animation: liqFadeInUp 0.6s ease-out 0.5s backwards; }


/* ==========================================
   Benefits Section
   ========================================== */
.liq-benefits-section {
    background: var(--liq-gradient);
    position: relative;
    overflow: hidden;
}

.liq-benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.liq-benefit-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
}

.liq-benefit-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.liq-benefit-icon {
    width: 80px;
    height: 80px;
    background: white;
    color: var(--liq-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.liq-benefit-card:hover .liq-benefit-icon {
    transform: scale(1.1) rotate(5deg);
    animation: liqBounce 0.6s ease;
}

.liq-benefit-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* Staggered Animation Delays for Benefit Cards */
.liq-benefit-card:nth-child(1) { animation: liqFadeInUp 0.6s ease-out 0.1s backwards; }
.liq-benefit-card:nth-child(2) { animation: liqFadeInUp 0.6s ease-out 0.2s backwards; }
.liq-benefit-card:nth-child(3) { animation: liqFadeInUp 0.6s ease-out 0.3s backwards; }
.liq-benefit-card:nth-child(4) { animation: liqFadeInUp 0.6s ease-out 0.4s backwards; }
.liq-benefit-card:nth-child(5) { animation: liqFadeInUp 0.6s ease-out 0.5s backwards; }
.liq-benefit-card:nth-child(6) { animation: liqFadeInUp 0.6s ease-out 0.6s backwards; }


/* ==========================================
   Problems We Solve Section
   ========================================== */
.liq-problems-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px var(--liq-shadow);
}

.liq-problems-placeholder {
    background: var(--liq-gradient);
    padding: 80px 40px;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.liq-problem-item {
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 25px;
    background: var(--liq-light);
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    animation: liqFadeInUp 0.6s ease-out backwards;
}

.liq-problem-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px var(--liq-shadow);
}

.liq-problem-icon {
    width: 45px;
    height: 45px;
    background: var(--liq-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.liq-problem-item h6 {
    color: #333;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Staggered Animation for Problem Items */
.liq-problem-item:nth-child(1) { animation-delay: 0.1s; }
.liq-problem-item:nth-child(2) { animation-delay: 0.2s; }
.liq-problem-item:nth-child(3) { animation-delay: 0.3s; }
.liq-problem-item:nth-child(4) { animation-delay: 0.4s; }
.liq-problem-item:nth-child(5) { animation-delay: 0.5s; }


/* ==========================================
   FAQ Section
   ========================================== */
.liq-faq-section {
    position: relative;
    overflow: hidden;
}

/* Decorative Floating Circles */
.decorative-circle-1 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    left: -50px;
    animation: liqFloat 6s ease-in-out infinite;
}

.decorative-circle-2 {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 15%;
    right: -30px;
    animation: liqFloatSlow 8s ease-in-out infinite;
}

.liq-faq-image-wrapper {
    position: relative;
}

.liq-faq-image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--liq-shadow);
}

.liq-faq-placeholder {
    background: var(--liq-gradient);
    padding: 80px 40px;
    text-align: center;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Floating Info Card */
.floating-info-card {
    position: absolute;
    bottom: 20px;
    right: -30px;
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: liqFloat 4s ease-in-out infinite;
}

.floating-info-card .icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--liq-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.floating-info-card h6 {
    margin: 0;
    font-weight: 700;
    color: #333;
}

.floating-info-card small {
    color: #666;
}

/* FAQ Accordion */
.liq-faq-accordion .liq-faq-item {
    background: white;
    border: none;
    border-radius: 15px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--liq-shadow);
    transition: all 0.3s ease;
}

.liq-faq-accordion .liq-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--liq-shadow-hover);
}

.liq-faq-button {
    background: white;
    border: none;
    color: #333;
    font-weight: 600;
    padding: 20px 25px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.liq-faq-button:not(.collapsed) {
    background: var(--liq-gradient);
    color: white;
}

.liq-faq-button i {
    color: var(--liq-primary);
    transition: color 0.3s ease;
}

.liq-faq-button:not(.collapsed) i {
    color: white;
}

.liq-faq-accordion .accordion-body {
    padding: 20px 25px;
    color: #666;
    line-height: 1.8;
    background: var(--liq-light);
}


/* ==========================================
   CTA Section
   ========================================== */
.liq-cta-card {
    background: var(--liq-gradient);
    box-shadow: 0 20px 60px var(--liq-shadow);
    position: relative;
    overflow: hidden;
}

.liq-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: liqShimmer 3s infinite;
}

.liq-cta-card .btn {
    transition: all 0.3s ease;
}

.liq-cta-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.85);
}


/* ==========================================
   Responsive Media Queries
   ========================================== */
@media (max-width: 768px) {
    .liq-hero {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .liq-hero-title {
        font-size: 2rem;
    }

    .liq-hero-subtitle {
        font-size: 1.1rem;
    }

    .liq-hero-image-card {
        margin-top: 40px;
    }

    .floating-info-card {
        right: 10px;
        bottom: 10px;
    }

    .liq-process-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
