/* ==================================================
   Hero Section Styles & Neon Effect
   ================================================== */
.hero-section {
    padding: 60px 0;
    background-color: #0B081D;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

/* Left Content */
.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 55px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-text {
    background: linear-gradient(90deg, #3b82f6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: #8c8c9a;
    font-size: 16px;
    margin-bottom: 35px;
    max-width: 90%;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #FFD700;
    color: #000;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #e6c200;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Middle Content & NEON GLOW */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.neon-glow-box {
    position: relative;
    background-color: #D3B9A3; /* Base color matching your image background */
    border-radius: 15px;
    padding: 20px;
    /* The Magic Neon Glow Effect */
    box-shadow: 0 0 60px rgba(124, 58, 237, 0.45), 0 0 120px rgba(124, 58, 237, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.neon-glow-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 80px rgba(124, 58, 237, 0.6), 0 0 150px rgba(124, 58, 237, 0.4);
}

.hero-product-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.sale-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #1a1635;
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    line-height: 1.4;
}

.sale-badge strong {
    font-size: 28px;
    color: #ffffff;
}

/* Right Content */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateX(-10px);
    border-color: rgba(124, 58, 237, 0.5);
}

.feature-text h4 {
    font-size: 15px;
    margin-bottom: 5px;
    color: #ffffff;
}

.feature-text p {
    font-size: 12px;
    color: #8c8c9a;
}

.feature-icon-box {
    background: rgba(255, 255, 255, 0.05);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
}

/* Bottom Trust Badges */
.trust-badges {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 30px;
    border-radius: 15px;
    margin-top: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
}

.trust-item i {
    font-size: 26px;
}

.trust-item span {
    color: #8c8c9a;
    font-size: 11px;
}