/* ========================================
   HOME PAGE STYLES
   ======================================== */

.home-container {
    max-width: 1100px;
}

.home-content {
    padding: 40px;
}

.home-intro {
    padding: 25px 35px 25px 35px;
    font-size: 1.1em;
    line-height: 1.7;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.choice-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.choice-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    text-align: center;
}

.choice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #1a472a 0%, #d4af37 100%);
}

.choice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.choice-card h2 {
    color: #1a472a;
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 15px;
}

.choice-card p {
    color: #666;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1a472a 0%, #2d5f3f 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
}

.choice-card:hover .card-btn {
    background: linear-gradient(135deg, #1a472a 0%, #d4af37 100%);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .home-content {
        padding: 20px;
    }

    .choice-cards {
        grid-template-columns: 1fr;
    }

    .choice-card {
        padding: 30px 20px;
    }

    .card-icon {
        font-size: 3em;
    }

    .choice-card h2 {
        font-size: 1.4em;
    }
}
