/* ==========================================
   CSS Variables - Liquidation Theme
   ========================================== */
:root {
    --liq-primary: #F07A4F;
    --liq-secondary: #C75427;
    --liq-light: #FFF7F3;
    --liq-white: #FFFFFF;
    --liq-shadow: rgba(199, 84, 39, 0.14);
    --liq-shadow-hover: rgba(199, 84, 39, 0.22);
    --liq-gradient: linear-gradient(135deg, #F07A4F 0%, #D96A3E 55%, #C75427 100%);
    --liq-gradient-soft: linear-gradient(135deg, #F3A282 0%, #E7875F 58%, #D26B45 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-image:
        linear-gradient(100deg, rgba(11, 17, 28, 0.76) 0%, rgba(11, 17, 28, 0.58) 42%, rgba(11, 17, 28, 0.22) 70%, rgba(11, 17, 28, 0.1) 100%),
        linear-gradient(135deg, rgba(255, 107, 53, 0.18) 0%, rgba(233, 60, 5, 0.08) 55%, rgba(10, 16, 28, 0.28) 100%),
        url("../img2/company-liquidation.png");
    background-size: cover, cover, cover;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: center, center, 72% center;
    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.12);
    top: -100px;
    right: -100px;
    animation: liqFloat 8s ease-in-out infinite;
    z-index: 2;
}

.liq-circle-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    bottom: -50px;
    left: -50px;
    animation: liqFloatSlow 10s ease-in-out infinite;
    z-index: 2;
}

/* Gradient Overlay */
.liq-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.12) 0%, rgba(12, 18, 30, 0.3) 100%);
    z-index: 1;
    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 - Hero Decorative Accent */
.liq-graffiti-box {
    position: absolute;
    top: 84px;
    right: 8%;
    width: 160px;
    height: 160px;
    border: 2px dashed rgba(255, 255, 255, 0.48);
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(255, 107, 53, 0.14), rgba(233, 60, 5, 0.05));
    transform: rotate(-12deg);
    opacity: 0.5;
    z-index: 2;
    animation: liqPulse 3s ease-in-out infinite;
    pointer-events: none;
}

.liq-hero-spacer {
    min-height: 340px;
}


/* ==========================================
   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-soft);
    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 {
    position: relative;
    min-height: 420px;
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(circle at 88% 14%, rgba(255, 107, 53, 0.2) 0%, transparent 44%),
        radial-gradient(circle at 14% 88%, rgba(233, 60, 5, 0.16) 0%, transparent 48%),
        linear-gradient(135deg, #fff9f6 0%, #fff3ec 45%, #fff8f4 100%);
    border: 1px solid rgba(255, 107, 53, 0.25);
}

.liq-problems-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(233, 60, 5, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(233, 60, 5, 0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.35;
    pointer-events: none;
}

.liq-art-grid,
.liq-art-caption,
.liq-art-graffiti {
    position: relative;
    z-index: 1;
}

.liq-art-grid {
    display: grid;
    grid-template-columns: minmax(140px, 1fr) 100px minmax(140px, 1fr);
    align-items: center;
    gap: 14px;
    margin-top: 16px;
}

.liq-art-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.liq-art-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.1);
}

.liq-art-column-risk .liq-art-chip {
    color: #8a2300;
    background: linear-gradient(135deg, #ffe2d7 0%, #ffd3c4 100%);
    border: 1px solid rgba(233, 60, 5, 0.25);
}

.liq-art-column-solved .liq-art-chip {
    color: #0b5d47;
    background: linear-gradient(135deg, #dcfce7 0%, #c8f7dc 100%);
    border: 1px solid rgba(22, 163, 74, 0.28);
}

.liq-art-flow {
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.liq-art-flow-line {
    width: 76px;
    height: 6px;
    border-radius: 99px;
    background: linear-gradient(90deg, rgba(233, 60, 5, 0.45) 0%, rgba(255, 107, 53, 0.95) 40%, rgba(22, 163, 74, 0.85) 100%);
    box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.08);
    animation: liqShimmer 3.8s linear infinite;
    background-size: 200% 100%;
}

.liq-art-flow-arrow {
    position: absolute;
    right: 6px;
    width: 16px;
    height: 16px;
    border-top: 4px solid #16a34a;
    border-right: 4px solid #16a34a;
    transform: rotate(45deg);
}

.liq-art-caption {
    margin-top: 22px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: #3d3d3d;
}

.liq-art-graffiti {
    position: absolute;
    border: 2px dashed rgba(233, 60, 5, 0.36);
    border-radius: 14px;
    pointer-events: none;
}

.liq-art-graffiti-top {
    top: 16px;
    right: 18px;
    width: 74px;
    height: 74px;
    transform: rotate(-12deg);
    animation: liqPulse 3.2s ease-in-out infinite;
}

.liq-art-graffiti-bottom {
    left: 14px;
    bottom: 52px;
    width: 56px;
    height: 56px;
    transform: rotate(8deg);
    animation: liqPulse 3.2s ease-in-out infinite 0.8s;
}

.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-soft);
    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-soft);
    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-soft);
    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;
        background-position: center, center, center;
    }

    .liq-hero-title {
        font-size: 2rem;
    }

    .liq-hero-subtitle {
        font-size: 1.1rem;
    }

    .liq-graffiti-box {
        top: auto;
        bottom: 18px;
        right: 14px;
        width: 92px;
        height: 92px;
        opacity: 0.35;
    }

    .floating-info-card {
        right: 10px;
        bottom: 10px;
    }

    .liq-process-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .liq-problems-placeholder {
        min-height: 390px;
        padding: 24px 18px;
    }

    .liq-art-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .liq-art-flow {
        height: 44px;
    }

    .liq-art-flow-line {
        width: 90px;
        height: 5px;
    }

    .liq-art-flow-arrow {
        right: calc(50% - 50px);
    }

    .liq-art-graffiti-top {
        width: 58px;
        height: 58px;
    }

    .liq-art-graffiti-bottom {
        bottom: 46px;
    }
}
