@charset "UTF-8";

/* =========================================
   Products Page Specific Styles (Fixed)
   ========================================= */

/* Products List */
.prod-list {
    background: #fff;
    padding-top: 100px;
}

.prod-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5%;
    margin-bottom: 120px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s, transform 0.8s;
}

.prod-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.prod-item.reverse {
    flex-direction: row-reverse;
}

.prod-img {
    width: 50%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.prod-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.prod-item:hover .prod-img img {
    transform: scale(1.05);
}

.prod-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: #fff;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.prod-info {
    width: 45%;
}

.prod-cat {
    display: block;
    color: var(--accent-neon);
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.prod-name {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.prod-name small {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
    margin-left: 10px;
}

.prod-catch {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.5;
    display: inline-block;
}

.prod-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 30px;
}

.prod-features {
    margin-bottom: 35px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    column-gap: 30px;
}

.prod-features li {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.prod-features i {
    color: var(--accent-color);
    margin-right: 10px;
}

.btn-lp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 400px;
    background: #fff;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-lp-sub {
    font-size: 0.8rem;
    display: block;
    color: #666;
    font-weight: normal;
}

.btn-lp:hover {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
    transform: translateY(-3px);
}

.btn-lp:hover .btn-lp-sub {
    color: rgba(255, 255, 255, 0.8);
}

/* -----------------------------------------
   Contact Area (Added)
----------------------------------------- */
.contact-area {
    background: #fff;
    padding-bottom: 100px;
}

.contact-box {
    background: #f4f8ff;
    padding: 80px 40px;
    text-align: center;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-desc {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #666;
}

.contact-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-contact-primary {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

.btn-contact-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.4);
}

.btn-contact-tel {
    background: #fff;
    color: #333;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-contact-tel:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* -----------------------------------------
   Responsive
----------------------------------------- */
@media (max-width: 768px) {
    .prod-item {
        flex-direction: column !important;
        margin-bottom: 80px;
        gap: 30px;
    }

    .prod-img,
    .prod-info {
        width: 100%;
    }

    .prod-name {
        font-size: 1.8rem;
    }

    .prod-features {
        display: block;
    }

    /* Contact Mobile */
    .contact-btns {
        flex-direction: column;
    }

    .contact-box {
        padding: 40px 20px;
    }
}

/* Disabled LP Button */
.btn-lp.disabled {
    background: #e6e6e6 !important;
    border-color: #e6e6e6 !important;
    color: #999 !important;
    pointer-events: none;
    cursor: not-allowed;
    box-shadow: none !important;
}

.btn-lp.disabled .btn-lp-sub {
    color: #999 !important;
}

.btn-lp.disabled:hover {
    transform: none !important;
    background: #e6e6e6 !important;
    color: #999 !important;
}