/*==================================================
PRODUCT LISTING SECTION
==================================================*/
.product-listing-section:nth-of-type(even) {
    position: relative;
    background: var(--light);
    overflow: hidden;
}

.product-listing-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(20, 175, 195, .05);
}

.product-listing-section::after {
    content: "";
    position: absolute;
    left: -150px;
    bottom: -150px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(20, 175, 195, .05);
}

.product-listing-section .container {
    position: relative;
    z-index: 2;
}

/*=========================================
PRODUCT IMAGE
=========================================*/
.product-gallery {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 35px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.product-gallery:hover {
    box-shadow: var(--shadow-md);
}

.product-gallery img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    transition: .6s;
}

.product-gallery:hover img {
    transform: scale(1.06);
}

/*=========================================
PRODUCT DETAILS
=========================================*/
.product-details {
    padding-left: 20px;
}

.product-category {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.product-category::before {
    content: "";
    width: 35px;
    height: 2px;
    background: var(--primary);
}

.product-details h2 {
    margin: 18px 0 20px;
}

.product-details p {
    color: var(--text);
    line-height: 1.9;
    /* margin-bottom: 30px; */
}

/*=========================================
FEATURE LIST
=========================================*/
.product-feature-list {
    list-style: none;
    margin: 0 0 35px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.product-feature-list li {
    position: relative;
    padding-left: 34px;
    font-weight: 500;
    color: var(--secondary);
}

.product-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(20, 175, 195, .12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/*=========================================
DOWNLOAD GRID
=========================================*/
.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--secondary);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.download-btn:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    color: var(--primary);
}

.download-btn i {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(20, 175, 195, .12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: .3s;
}

.download-btn:hover i {
    background: var(--primary);
    color: #fff;
}

.download-btn span {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
    font-weight: 600;
}

.download-btn span small {
    margin-top: 5px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
}

/*=========================================
RESPONSIVE
=========================================*/
@media(max-width:1199px) {
    .product-gallery img {
        height: 360px;
    }
}

@media(max-width:991px) {
    .product-details {
        padding-left: 0;
        margin-top: 20px;
    }
}

@media(max-width:767px) {
    .product-gallery {
        padding: 20px;
    }

    .product-gallery img {
        height: 280px;
    }

    .product-feature-list {
        grid-template-columns: 1fr;
    }

    .download-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:575px) {
    .product-gallery img {
        height: 220px;
    }

    .download-btn {
        padding: 16px;
    }

    .download-btn i {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/*==================================
PRODUCT SPECIFICATION
==================================*/
.product-specification {
    border: 1px solid rgba(20, 175, 195, .08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: #fff;
    margin-bottom: 30px;
}

.spec-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.spec-list li {
    display: grid;
    grid-template-columns: 280px 1fr;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.spec-list li:last-child {
    border-bottom: none;
}

.spec-list li:hover {
    background: rgba(20, 175, 195, .03);
}

.spec-title {
    padding: 18px 25px;
    font-weight: 600;
    color: var(--secondary);
    background: rgba(20, 175, 195, .06);
    border-right: 1px solid rgba(0, 0, 0, .06);
}

.spec-value {
    padding: 18px 25px;
    color: var(--text);
    line-height: 1.8;
}

/*=========================
Responsive
=========================*/
@media(max-width:767px) {
    .spec-list li {
        grid-template-columns: 1fr;
    }

    .spec-title {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, .06);
        padding: 14px 18px;
    }

    .spec-value {
        padding: 14px 18px;
    }
}

/*==================================
PRODUCT FEATURES
==================================*/
.product-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    list-style: none;
    margin: 35px 0;
    padding: 0;
}

.product-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid rgba(20, 175, 195, .10);
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .03);
}

.product-feature-list li:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.product-feature-list li i {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 175, 195, .10);
    color: var(--primary);
    font-size: 16px;
    transition: var(--transition);
}

.product-feature-list li:hover i {
    background: var(--primary);
    color: #fff;
    transform: rotate(10deg);
}

/* Tablet */
@media(max-width:991px) {
    .product-feature-list {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media(max-width:575px) {
    .product-feature-list {
        gap: 12px;
    }

    .product-feature-list li {
        padding: 15px;
    }

    .product-feature-list li i {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* ==================================
COMPANY INFO
================================== */
.company-info-section {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.company-info-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(20, 175, 195, .04);
}

.company-info-section::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(20, 175, 195, .05);
}

.company-info-section .container {
    position: relative;
    z-index: 2;
}

/* ==================================
BLOCK
================================== */
.info-block {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 35px;
    transition: var(--transition);
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: .4s;
}

.info-block:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.info-block:hover::before {
    transform: scaleX(1);
}

/* ==================================
TITLE
================================== */
.info-block-title {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 35px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.info-block-title i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(20, 175, 195, .08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: var(--transition);
}

.info-block:hover .info-block-title i {
    background: var(--primary);
    color: #fff;
    transform: rotate(10deg);
}

.info-block-title h3 {
    margin: 0;
}

/* ==================================
LIST
================================== */
.info-block ul {
    list-style: none;
    margin: 0;
    padding: 30px 35px;
}

.info-block ul li {
    position: relative;
    padding: 0 0 18px 35px;
    margin-bottom: 18px;
    border-bottom: 1px dashed rgba(0, 0, 0, .08);
    color: var(--text);
    line-height: 1.8;
}

.info-block ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Bullet */
.info-block ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(20, 175, 195, .12);
}

/* Highlight */
.info-block ul li strong {
    color: var(--secondary);
}

/* ==================================
RESPONSIVE
================================== */
@media(max-width:991px) {
    .info-block-title {
        padding: 24px 25px;
    }

    .info-block ul {
        padding: 25px;
    }
}

@media(max-width:767px) {
    .info-block {
        border-radius: var(--radius);
    }

    .info-block-title {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
    }

    .info-block ul {
        padding: 22px 20px;
    }

    .info-block ul li {
        padding-left: 28px;
        font-size: 15px;
        line-height: 1.7;
    }
}

@media(max-width:575px) {
    .info-block-title i {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }

    .info-block-title h3 {
        font-size: 22px;
    }
}

.info-block-content {
    padding: 30px 35px;
}

.info-block-content p {
    margin-bottom: 25px;
    color: var(--text);
    line-height: 1.9;
}

.info-block-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.info-block-content ul li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.info-block-content ul li:last-child {
    margin-bottom: 0;
}

.info-block-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(20, 175, 195, .12);
}

/* ==================================
FAQ
================================== */
.faq-section {
    background: var(--light);
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Item */
.faq-item {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

/* Active Top Border */
.faq-item.active {
    border-color: rgba(20, 175, 195, .25);
}

.faq-item.active::before {
    content: '';
    display: block;
    height: 4px;
    background: var(--primary);
}

/* Header */
.faq-header {
    padding: 28px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-header h5 {
    margin: 0;
    padding-right: 20px;
}

/* Custom Plus */
.faq-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background:
        rgba(20, 175, 195, .08);
    position: relative;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--primary);
    left: 50%;
    top: 50%;
    transition: var(--transition);
}

.faq-icon::before {
    width: 18px;
    height: 2px;
    transform:
        translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 18px;
    transform:
        translate(-50%, -50%);
}

/* Body */
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: .5s ease;
    padding: 0 30px;
}

.faq-body p {
    margin: 0;
    padding-bottom: 30px;
}

/* Active */
.faq-item.active .faq-body {
    max-height: 400px;
}

.faq-item.active .faq-icon {
    background: var(--primary);
}

.faq-item.active .faq-icon::before {
    background: #fff;
}

.faq-item.active .faq-icon::after {
    opacity: 0;
}