/* ── Root ──────────────────────────────────────────────────── */
.konf-section {
    font-family: 'DM Sans', sans-serif;
    background: #0a0f1e;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

/* Dekorativ fon elementlari */
.konf-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 60px solid rgba(201, 168, 76, 0.05);
    pointer-events: none;
}
.konf-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 50px solid rgba(201, 168, 76, 0.04);
    pointer-events: none;
}
.konf-bg-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.konf-bg-lines svg {
    width: 100%;
    height: 100%;
}

/* ── Header ────────────────────────────────────────────────── */
.konf-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}
.konf-eyebrow {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c9a84c;
    font-weight: 500;
    margin-bottom: 10px;
}
.konf-divider {
    width: 40px;
    height: 2px;
    background: #c9a84c;
    border-radius: 2px;
    margin-bottom: 12px;
}
.konf-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 38px);
    color: #f0ece0;
    line-height: 1.15;
    margin: 0;
}
.konf-title span {
    color: #c9a84c;
}
.konf-btn-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c9a84c;
    border: 1px solid rgba(201, 168, 76, 0.35);
    padding: 11px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, gap 0.2s;
    white-space: nowrap;
}
.konf-btn-all:hover {
    background: #c9a84c;
    color: #0a0f1e;
    gap: 12px;
}
.konf-btn-all .flaticon-next {
    font-size: 13px;
}

/* ── Grid ──────────────────────────────────────────────────── */
.konf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.25rem;
    position: relative;
    z-index: 2;
}

/* ── Card ──────────────────────────────────────────────────── */
.konf-card {
    background: #111827;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(.22,.68,0,1.2),
                border-color 0.3s,
                box-shadow 0.35s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.konf-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}

/* Image area */
.konf-img-wrap {
    position: relative;
    overflow: hidden;
    height: 195px;
    background: #0d1627;
    flex-shrink: 0;
}
.konf-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.konf-card:hover .konf-img-wrap img {
    transform: scale(1.05);
}
.konf-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,15,30,0.85) 0%, transparent 55%);
    pointer-events: none;
}
.konf-date-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #c9a84c;
    color: #0a0f1e;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 2;
}
/* No-image fallback icon */
.konf-no-img {
    width: 100%;
    height: 195px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a2c4e 0%, #0d1a30 100%);
}
.konf-no-img svg {
    opacity: 0.45;
}

/* Body */
.konf-card-body {
    padding: 1rem 1.2rem 1.3rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.konf-card-tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 7px;
}
.konf-card-title {
    font-size: 14.5px;
    font-weight: 500;
    color: #e8e0d0;
    line-height: 1.55;
    margin: 0 0 8px;
    flex: 1;
}
.konf-card-desc {
    font-size: 12px;
    color: #7a8494;
    line-height: 1.65;
    margin-bottom: 14px;
}
.konf-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 11px;
    margin-top: auto;
}
.konf-card-loc {
    font-size: 11.5px;
    color: #5a6575;
    display: flex;
    align-items: center;
    gap: 5px;
}
.konf-card-loc .flaticon-location,
.konf-card-loc i {
    font-size: 13px;
}
.konf-detail-link {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c9a84c;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}
.konf-card:hover .konf-detail-link {
    gap: 9px;
}

/* ── Stats bar ─────────────────────────────────────────────── */
.konf-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 2;
}
.konf-stat-item {
    text-align: center;
    min-width: 80px;
}
.konf-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #c9a84c;
    line-height: 1;
}
.konf-stat-label {
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #4a5568;
    margin-top: 5px;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
    .konf-section {
        padding: 60px 0 40px;
    }
    .konf-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .konf-stats {
        gap: 1.25rem;
    }
}