body {
    background: #0F0F0F;
    color: #e8e8e8;
    font-family: 'Inter', sans-serif;
}

a { color: #D4AF37; transition: color 250ms ease; }
a:hover { color: #e6c14d; }

::selection { background: rgba(212, 175, 55, 0.3); color: #fff; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #3a3a3a; }

.btn-gold {
    background: #D4AF37;
    color: #0F0F0F;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 0.4rem 1.25rem;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background: #e6c14d;
    color: #0F0F0F;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline-gold {
    background: transparent;
    color: #D4AF37;
    font-weight: 500;
    border: 1px solid #D4AF37;
    border-radius: 50px;
    padding: 0.4rem 1.25rem;
    transition: all 0.3s ease;
}
.btn-outline-gold:hover {
    background: #D4AF37;
    color: #0F0F0F;
    transform: translateY(-1px);
}

/* Directory List */
.directory-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.directory-item {
    display: flex;
    gap: 1rem;
    background: #141414;
    border: 1px solid #1e1e1e;
    border-radius: 12px;
    padding: 0.75rem;
    transition: all 0.2s ease;
}
.directory-item:hover {
    border-color: #D4AF37;
}
.directory-item.is-featured {
    border: 1px solid rgba(212, 175, 55, 0.15);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, #141414 100%);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.06);
}
.directory-item.is-featured:hover {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.12), 0 0 0 1px rgba(212, 175, 55, 0.12);
}
.directory-item.is-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #D4AF37 15%, #f0d060 30%, #c49a2e 50%, #f0d060 70%, #D4AF37 85%, transparent 100%);
    z-index: 2;
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.directory-item.is-featured::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    bottom: 2px;
    width: 3px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.5), rgba(212, 175, 55, 0.02));
    border-radius: 0 0 2px 0;
    pointer-events: none;
}
.directory-item.is-featured .featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.5rem;
    color: #0F0F0F;
    background: linear-gradient(135deg, #D4AF37, #b8962e, #D4AF37);
    background-size: 200% 200%;
    padding: 0.12rem 0.6rem 0.12rem 0.45rem;
    border-radius: 0 0 4px 0;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 1;
    box-shadow: 0 1px 6px rgba(212, 175, 55, 0.25);
}


.directory-photos {
    flex-shrink: 0;
    width: 140px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.directory-main-photo {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #1a1a1a;
}
.directory-main-photo .main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.directory-main-photo .stretched-link::after {
    content: '';
    position: absolute;
    inset: 0;
}

.directory-thumbs {
    display: none;
}

.directory-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
}

.directory-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.directory-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}
.directory-name a {
    color: #fff;
    text-decoration: none;
    transition: color 250ms ease;
}
.directory-name a:hover {
    color: #D4AF37;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.6rem;
    color: #198754;
    background: rgba(25, 135, 84, 0.12);
    padding: 0.1rem 0.5rem;
    border-radius: 20px;
    white-space: nowrap;
}

.directory-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}
.meta-pill {
    font-size: 0.65rem;
    color: #bbb;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #2a2a2a;
    padding: 0.1rem 0.5rem;
    border-radius: 20px;
    white-space: nowrap;
}

.directory-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
}
.service-tag {
    font-size: 0.6rem;
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
    white-space: nowrap;
}

.directory-desc {
    color: #999;
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.directory-footer {
    display: none;
}

@media (max-width: 767.98px) {
    .directory-list {
        gap: 0.5rem;
    }
    .directory-item {
        flex-direction: row;
        padding: 0.5rem;
        gap: 0.5rem;
    }
    .directory-photos {
        width: 80px;
    }
    .directory-name {
        font-size: 0.85rem;
    }
    .directory-desc {
        -webkit-line-clamp: 1;
    }
}

/* Pagination */
.page-link {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #ccc;
    padding: 0.5rem 0.9rem;
    transition: all 0.2s ease;
}
.page-link:hover {
    background: #2a2a2a;
    border-color: #D4AF37;
    color: #D4AF37;
}
.page-item.active .page-link {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #0F0F0F;
    font-weight: 600;
}
.page-item.disabled .page-link {
    background: #111;
    border-color: #1e1e1e;
    color: #444;
}

/* Form Controls */
.form-control, .form-select {
    background: #111111;
    border: 1px solid #1e1e1e;
    color: #fff;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-control:focus, .form-select:focus {
    background: #111111;
    border-color: #c9a84c;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
    color: #fff;
}
.form-control::placeholder { color: #666; }
.form-select { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23aaaaaa' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); }
textarea.form-control { min-height: 100px; }

.form-label { color: #aaa; font-size: 0.85rem; margin-bottom: 0.3rem; }
.form-text { color: #555; }

/* Alerts */
.alert { border-radius: 12px; border: none; }
.alert-success { background: rgba(25, 135, 84, 0.15); color: #75b798; }
.alert-error, .alert-danger { background: rgba(220, 53, 69, 0.15); color: #ea868f; }
.alert-warning { background: rgba(255, 193, 7, 0.15); color: #ffda6a; }
.alert-info { background: rgba(13, 202, 240, 0.15); color: #6edff6; }

/* Card */
.card { background: #141414; border: 1px solid #1e1e1e; border-radius: 16px; }

/* Dropdown */
.dropdown-menu-dark { background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 12px; }
.dropdown-item { color: #ccc; }
.dropdown-item:hover { background: rgba(212, 175, 55, 0.1); color: #D4AF37; }
