/* goADK Directory custom styles */

:root {
    --adk-emerald: #047857;
    --adk-forest: #065f46;
    --adk-cream: #f8faf0;
    --adk-gold: #f59e0b;
}

.hero {
    background:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.4)),
        url('https://picsum.photos/id/1015/1920/800') center/cover no-repeat;
}

.listing-card {
    transition: all 0.3s ease;
}

.listing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.gold {
    border: 3px solid var(--adk-gold);
    box-shadow: 0 14px 35px rgba(245, 158, 11, 0.18);
}

.silver {
    border-left: 6px solid #94a3b8;
}

.bronze {
    border-left: 6px solid #b45309;
}

.free {
    border-left: 6px solid #d1d5db;
}

.ad-slot {
    background: linear-gradient(135deg, #ecfdf5, #fef3c7);
    border-color: #a7f3d0;
    color: #065f46;
}

.category-btn {
    border: 1px solid #d1d5db;
    border-radius: 0.9rem;
    padding: 0.85rem 1rem;
    font-weight: 700;
    background: white;
    color: #374151;
    transition: 0.2s ease;
}

.category-btn:hover,
.category-btn.active {
    background: #047857;
    border-color: #047857;
    color: white;
}

.form-label {
    display: block;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.45rem;
}

.form-input {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 0.85rem;
    padding: 0.9rem 1rem;
    outline: none;
    background: white;
}

.form-input:focus {
    border-color: #047857;
    box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.12);
}

.price-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.price-card.featured {
    border: 3px solid var(--adk-gold);
}

.price-card h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111827;
}

.price-card .price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--adk-emerald);
    margin: 0.7rem 0 1rem;
}

.price-card ul {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1.1rem;
    list-style: disc;
}

.price-card a {
    margin-top: auto;
    text-align: center;
    background: #047857;
    color: white;
    font-weight: 800;
    border-radius: 0.8rem;
    padding: 0.85rem 1rem;
}

.price-card.featured a {
    background: #d97706;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #047857;
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 0.8rem;
    font-weight: 700;
}

.contact-btn:hover {
    background: #065f46;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .listing-card:hover {
        transform: none;
    }
}
