/* Custom Accordion Premium Styles */
.lt-custom-accordion-container {
    width: 100%;
    max-width: var(--lt-accordion-max-width, 800px);
    margin: 40px auto;
    font-family: var(--e-global-typography-primary-font-family, 'Inter', sans-serif);
}

.lt-custom-accordion-title {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--lt-accordion-title-color, #1a1a1a);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lt-custom-accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.lt-custom-accordion-item:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.lt-custom-accordion-item.active {
    border-color: var(--lt-accordion-accent-color, #006CB4);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.lt-custom-accordion-header {
    background: #ffffff;
    padding: 20px 25px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    user-select: none;
    transition: background 0.3s ease;
}

.lt-custom-accordion-header:hover {
    background: rgba(0, 108, 180, 0.02);
}

.lt-custom-accordion-header-text {
    flex: 1;
    padding-right: 30px;
}

.lt-custom-accordion-header span,
.lt-custom-accordion-header h2 {
    font-size: 17px;
    margin: 0;
    display: inline;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.lt-custom-accordion-header h2 {
    color: var(--lt-accordion-accent-color, #006CB4);
    font-size: 18px;
}

.lt-custom-accordion-item.active .lt-custom-accordion-header span {
    color: #000;
}

.lt-custom-accordion-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lt-custom-accordion-icon::before,
.lt-custom-accordion-icon::after {
    content: '';
    position: absolute;
    background-color: var(--lt-accordion-accent-color, #888);
    transition: all 0.3s ease;
}

/* Horizontal line */
.lt-custom-accordion-icon::before {
    width: 14px;
    height: 2px;
}

/* Vertical line */
.lt-custom-accordion-icon::after {
    width: 2px;
    height: 14px;
}

.lt-custom-accordion-item.active .lt-custom-accordion-icon {
    transform: translateY(-50%) rotate(45deg);
}

.lt-custom-accordion-item.active .lt-custom-accordion-icon::after {
    opacity: 0;
}

.lt-custom-accordion-content {
    background: #ffffff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lt-custom-accordion-content-inner {
    padding: 0 25px 25px 25px;
}

.lt-custom-accordion-content p {
    margin: 0;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
    font-weight: 400;
}

/* Glassmorphism variation (Optional via class if needed) */
.lt-custom-accordion-item.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .lt-custom-accordion-header {
        padding: 15px 20px;
    }
    .lt-custom-accordion-header span,
    .lt-custom-accordion-header h2 {
        font-size: 15px;
    }
    .lt-custom-accordion-header h2 {
        font-size: 16px;
    }
}
