/* why.css */
.why-section {
    background: #000;
    color: white;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.why-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.why-header {
    margin-bottom: 40px;
    animation: whyFadeIn 1s ease-out;
}

.why-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    background: linear-gradient(to right, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.why-tagline {
    font-size: 1.8rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #f8f9fa;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    display: block;
}

.why-highlight {
    color: #ffd700;
    font-weight: 700;
}

.why-counter-section {
    background: rgba(30, 30, 30, 0.9);
    border-radius: 12px;
    padding: 25px 40px;
    margin: 50px auto;
    max-width: 500px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: whySlideUp 1s ease-out;
}

.why-counter-text {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #e9ecef;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.why-counter-container {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 10px;
}

.why-counter {
    font-size: 4.5rem;
    font-weight: 800;
    color: #ffd700;
    margin: 0 10px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.why-k-plus {
    font-size: 5rem;
    font-weight: 700;
    color: #ffd700;
    margin-left: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.why-counter-label {
    font-size: 1.5rem;
    color: #ced4da;
    margin-top: 10px;
    letter-spacing: 1px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.why-tiles-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.why-tile {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 280px;
}

.why-tile:hover {
    transform: translateY(-10px);
    background: rgba(30, 30, 30, 0.9);
    box-shadow: 0 15px 30px rgba(255, 165, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.why-tile::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    background: linear-gradient(45deg, #ffd700, #ff8c00, #ffd700, #ff8c00);
    background-size: 400%;
    border-radius: 17px;
    opacity: 0;
    transition: opacity 0.5s;
}

.why-tile:hover::before {
    opacity: 1;
    animation: whyAnimateBorder 3s linear infinite;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2.2rem;
    color: #ffd700;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.why-tile:hover .why-icon {
    transform: scale(1.1);
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.why-tile-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffd700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.why-tile-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #e9ecef;
    padding: 0 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Animations */
@keyframes whyFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes whySlideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes whyAnimateBorder {
    0% { background-position: 0 0; }
    100% { background-position: 400% 0; }
}

/* Responsive design */
@media (max-width: 768px) {
    .why-title { font-size: 2.5rem; }
    .why-tagline { font-size: 1.4rem; }
    .why-counter { font-size: 3.5rem; }
    .why-k-plus { font-size: 2.5rem; }
    .why-counter-text { font-size: 1.5rem; }
    .why-counter-label { font-size: 1.3rem; }
    .why-tile { height: 260px; }
}

@media (max-width: 480px) {
    .why-title { font-size: 2rem; }
    .why-tagline { font-size: 1.2rem; }
    .why-counter { font-size: 3rem; }
    .why-k-plus { font-size: 2rem; }
    .why-counter-text { font-size: 1.2rem; }
    .why-counter-label { font-size: 1.1rem; }
    .why-counter-section { padding: 20px; }
    .why-tiles-container { grid-template-columns: 1fr; }
    .why-tile { height: 240px; padding: 25px 15px; }
}