/* Ultimate Checklist Component Styles */
.ultimate-checklist-container {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border: 2px solid #24b2a5;
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem auto;
    max-width: 1000px;
    box-shadow: 0 8px 24px rgba(36, 178, 165, 0.12);
    position: relative;
    overflow: hidden;
}

/* Decorative corner accent */
.ultimate-checklist-container::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(36, 178, 165, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.ultimate-checklist-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a365d;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.ultimate-checklist-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #24b2a5 0%, #48c2b7 100%);
    border-radius: 2px;
}

.ultimate-checklist-intro {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #374151;
}

/* Main wrapper for list and image */
.ultimate-checklist-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

/* List styling */
.ultimate-checklist-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ultimate-checklist-item {
    display: grid;
    grid-template-columns: 40px 1fr 50px;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    margin: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(36, 178, 165, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

/* Alternating row colors */
.ultimate-checklist-item:nth-child(odd) {
    background: rgba(255, 255, 255, 0.9);
}

.ultimate-checklist-item:nth-child(even) {
    background: rgba(240, 253, 244, 0.3);
}

/* First and last item rounded corners */
.ultimate-checklist-item:first-child {
    border-radius: 12px 12px 0 0;
    border-bottom: none;
}

.ultimate-checklist-item:last-child {
    border-radius: 0 0 12px 12px;
}

.ultimate-checklist-item:not(:last-child) {
    border-bottom: none;
}

/* Hover effect */
.ultimate-checklist-item:hover {
    background: rgba(36, 178, 165, 0.08);
    transform: translateX(5px);
    box-shadow: -4px 0 0 0 #24b2a5;
}

/* Number styling */
.ultimate-checklist-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #24b2a5 0%, #1a9b8f 100%);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Text styling */
.ultimate-checklist-text {
    font-size: 1rem;
    color: #374151;
    line-height: 1.5;
    font-weight: 500;
}

/* Checkmark styling */
.ultimate-checklist-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
    transition: all 0.3s ease;
}

.ultimate-checklist-item:hover .ultimate-checklist-check {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

/* Image container */
.ultimate-checklist-image {
    position: relative;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.ultimate-checklist-img {
    display: block;
    max-width: 280px;
    height: auto;
    border-radius: 8px;
}

/* CTA section */
.ultimate-checklist-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.ultimate-checklist-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #24b2a5 0%, #1a9b8f 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(36, 178, 165, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ultimate-checklist-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ultimate-checklist-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(36, 178, 165, 0.4);
    color: white;
    text-decoration: none;
}

.ultimate-checklist-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .ultimate-checklist-container {
        padding: 1.5rem 0;
        margin: 2rem 1rem;
    }
    
    .ultimate-checklist-title {
        font-size: 1.4rem;
    }
    
    .ultimate-checklist-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ultimate-checklist-item {
        grid-template-columns: 32px 1fr 40px;
        padding: 0.8rem 1rem;
        gap: 0.8rem;
    }
    
    .ultimate-checklist-number {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .ultimate-checklist-text {
        font-size: 0.9rem;
    }
    
    .ultimate-checklist-check {
        width: 28px;
        height: 28px;
        font-size: 1.2rem;
    }
    
    .ultimate-checklist-image {
        display: none; /* Hide image on mobile to save space */
    }
    
    .ultimate-checklist-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: fit-content;
        max-width: 280px;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .ultimate-checklist-wrapper {
        grid-template-columns: 1.5fr 1fr;
        gap: 2rem;
    }
    
    .ultimate-checklist-img {
        max-width: 220px;
    }
}

/* Animation for entrance */
@keyframes checklist-item-entrance {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ultimate-checklist-item {
    animation: checklist-item-entrance 0.5s ease forwards;
}

.ultimate-checklist-item:nth-child(1) { animation-delay: 0.1s; }
.ultimate-checklist-item:nth-child(2) { animation-delay: 0.2s; }
.ultimate-checklist-item:nth-child(3) { animation-delay: 0.3s; }
.ultimate-checklist-item:nth-child(4) { animation-delay: 0.4s; }
.ultimate-checklist-item:nth-child(5) { animation-delay: 0.5s; }
.ultimate-checklist-item:nth-child(6) { animation-delay: 0.6s; }
.ultimate-checklist-item:nth-child(7) { animation-delay: 0.7s; }
