/* =================================
   PREMIUM UI COMPONENTS
================================= */

/* Glow effect used across cards */
.glow {
    position: relative;
}

.glow::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg,#ff8c1a,#ff6a00,#ff8c1a);
    border-radius: 14px;
    z-index: -1;
    opacity: .35;
    filter: blur(8px);
}

/* Hover lift animation */
.hover-lift {
    transition: transform .25s ease, box-shadow .25s ease;
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.4);
}

/* Premium buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg,#ff8c1a,#ff6a00);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(255,140,26,.35);
}

.btn-primary:hover {
    filter: brightness(1.1);
}

.btn-secondary {
    border: none;
    background: rgba(255,255,255,0.03);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.06);
}

/* Badge */
.badge {
    display: inline-block;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
}

/* Glass effect container */
.glass {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 12px;
}

/* Neon line background (tech style) */
.tech-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255,140,26,.10), transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(255,106,0,.10), transparent 40%);
    pointer-events: none;
}

/* Card component */
.card {
    padding: 25px;
    border-radius: 12px;
    border: none;
    background: rgba(255,255,255,0.02);
    transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

/* Icon circle */
.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg,#ff8c1a,#ff6a00);
    color: #fff;
    font-weight: bold;
}

/* Section spacing helper */
.section {
    padding: 80px 0;
}

/* Container max width */
.container-wide {
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
}

/* Subtle hover highlight */
.hover-glow:hover {
    box-shadow: 0 0 28px rgba(255,140,26,.28);
}
