/* ===== Project 0071 - Sporty Style ===== */
/* Custom angled card clip-paths */
.hero-card-angle {
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    transition: clip-path 0.3s ease;
}
.hero-card-angle:hover {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* Circular icon feature animation */
.circle-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.feature-card:hover .circle-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Sporty stripe accent */
.stripe-accent {
    position: relative;
    overflow: hidden;
}
.stripe-accent::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #2563EB, #F43F5E);
}

/* Stat number pulse */
@keyframes countPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.stat-number {
    animation: countPulse 2s ease-in-out infinite;
}

/* FAQ accordion custom */
.faq-item-active {
    border-color: #2563EB !important;
    box-shadow: 0 4px 20px rgba(37,99,235,0.1);
}

/* Mobile menu animation */
#mobileMenu {
    animation: slideDown 0.3s ease;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* About page timeline */
.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #2563EB;
    position: relative;
    z-index: 1;
}
.timeline-dot::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 7px;
    width: 2px;
    height: calc(100% + 40px);
    background: linear-gradient(180deg, #2563EB, #F43F5E);
}

/* Contact form styles */
.form-input:focus {
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
    outline: none;
}
