.elementor-127 .elementor-element.elementor-element-1aef625{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-d109d09 *//* Next Home Decors - Premium Polished FAQ */

:root {
    --nhd-black: #1a1a1a;
    --nhd-gold-grad: linear-gradient(135deg, #c09a56 0%, #edcf8e 100%);
    --nhd-gold-solid: #c09a56;
    --nhd-text-main: #2d2d2d;
    --nhd-text-sub: #666;
    --nhd-bg-white: #ffffff;
    --nhd-shadow-sm: 0 6px 18px rgba(0,0,0,0.04);
    --nhd-shadow-hover: 0 18px 40px rgba(192, 154, 86, 0.16);
    --nhd-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nhd-faq-wrapper {
    max-width: 880px;
    margin: 70px auto;
    font-family: 'Poppins', sans-serif;
    padding: 0 18px;
}

/* Header */
.nhd-faq-header {
    text-align: center;
    margin-bottom: 55px;
}

.nhd-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nhd-black);
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.nhd-main-title::after {
    content: '';
    display: block;
    width: 65px;
    height: 3px;
    background: var(--nhd-gold-grad);
    margin: 14px auto 0;
    border-radius: 30px;
    opacity: 0.9;
}

/* Section */
.nhd-faq-section {
    margin-bottom: 32px;
}

.nhd-section-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 3px solid var(--nhd-gold-solid);
}

.nhd-section-trigger h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--nhd-black);
    margin: 0;
}

/* FAQ Card */
.nhd-faq-item {
    background: var(--nhd-bg-white);
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 12px;
    transition: var(--nhd-transition);
    overflow: hidden;
    box-shadow: var(--nhd-shadow-sm);
    position: relative;
}

/* subtle premium top highlight */
.nhd-faq-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--nhd-gold-grad);
    transition: width 0.4s ease;
}

.nhd-faq-item:hover::before {
    width: 100%;
}

/* Hover */
.nhd-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--nhd-shadow-hover);
}

/* Question */
.nhd-faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    color: var(--nhd-text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--nhd-transition);
}

/* subtle hover text effect */
.nhd-faq-item:hover .nhd-faq-question {
    letter-spacing: 0.2px;
}

/* Focus */
.nhd-faq-question:focus {
    outline: 2px solid rgba(192, 154, 86, 0.3);
    outline-offset: 2px;
}

/* Icon */
.nhd-faq-question i {
    font-size: 0.7rem;
    width: 26px;
    height: 26px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--nhd-transition);
    color: var(--nhd-black);
}

/* Active */
.nhd-faq-item.active {
    border: 1.2px solid var(--nhd-gold-solid);
    background: #fffaf3;
}

.nhd-faq-item.active .nhd-faq-question {
    color: var(--nhd-gold-solid);
    font-weight: 600;
}

.nhd-faq-item.active i {
    background: var(--nhd-gold-grad);
    color: #fff;
    transform: rotate(180deg) scale(1.05);
    box-shadow: 0 4px 10px rgba(192, 154, 86, 0.25);
}

/* Answer */
.nhd-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

/* smoother reveal */
.nhd-faq-answer p {
    padding: 0 24px 18px;
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--nhd-text-sub);
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.3s ease;
}

.nhd-faq-item.active .nhd-faq-answer p {
    opacity: 1;
    transform: translateY(0);
    padding-top: 6px;
}

/* Mobile & Responsive */
@media (max-width: 1024px) {
    .nhd-main-title { font-size: 2.2rem; }
    .nhd-faq-question { padding: 18px 20px; font-size: 1rem; }
    .nhd-faq-answer p { padding: 0 20px 16px; }
}

@media (max-width: 768px) {
    .nhd-main-title { font-size: 2rem; }
    .nhd-faq-question { padding: 16px 18px; font-size: 0.95rem; }
    .nhd-faq-answer p { padding: 0 18px 14px; }
}

@media (max-width: 600px) {
    .nhd-main-title { font-size: 1.8rem; }
    .nhd-faq-question { padding: 14px 16px; font-size: 0.9rem; }
    .nhd-faq-answer p { padding: 0 16px 12px; }
}

@media (max-width: 480px) {
    .nhd-main-title { font-size: 1.6rem; }
    .nhd-faq-question { padding: 12px 14px; font-size: 0.88rem; }
    .nhd-faq-answer p { padding: 0 14px 10px; }
}
/* Active Question Text */
.nhd-faq-item.active .nhd-faq-question {
    color: #ffffff; /* white text for active question */
    font-weight: 600;
}

/* Keep icon consistent */
.nhd-faq-item.active i {
    background: var(--nhd-gold-grad);
    color: #fff;
    transform: rotate(180deg) scale(1.05);
    box-shadow: 0 4px 10px rgba(192, 154, 86, 0.25);
}

/* Ensure hover does not override active color */
.nhd-faq-item.active:hover .nhd-faq-question {
    color: #ffffff;
}/* End custom CSS */