@charset "utf-8";

/* ==========================================================
   FAQ SECTION
========================================================== */
.tc-faq {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #fff5f3 0%, #fff 18%, #fff 82%, #fff7f5 100%);
    overflow: hidden;
}

.tc-faq::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -180px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 30, 36, .05), transparent 70%);
    z-index: 1;
}

.tc-faq::after {
    content: "";
    position: absolute;
    right: -160px;
    bottom: -160px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 30, 36, .04), transparent 70%);
    z-index: 1;
}

.tc-faq .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================
   Section Heading (Centered)
========================================================== */
.tc-faq .tc-section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.tc-faq .tc-section-heading .tc-section-subtitle {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--tc-primary);
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-size: .85rem;
}

.tc-faq .tc-section-heading h2 {
    font-size: 2.4rem;
    line-height: 1.25;
    margin: 0 0 15px;
    color: var(--tc-heading);
}

.tc-faq .tc-section-heading p {
    color: var(--tc-text);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================
   Grid
========================================================== */
.tc-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
	align-items: start;
}

/* ==========================================================
   FAQ Item
========================================================== */
.tc-faq-item {
    background: #fff;
    border: 1px solid var(--tc-border);
    border-radius: 18px;
    overflow: hidden;
    transition: .35s ease;
    box-shadow: 0 10px 30px rgba(17, 24, 39, .05);
    animation: tcFaqFade .6s ease both;
}

.tc-faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(227, 30, 36, .18);
    box-shadow: 0 18px 45px rgba(17, 24, 39, .08);
}

.tc-faq-item.active {
    border-color: var(--tc-primary);
    box-shadow: 0 12px 30px rgba(227, 30, 36, .08);   /* was .12, softer now */
}

/* ==========================================================
   Question
========================================================== */
.tc-faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 26px 28px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--tc-heading);
    transition: color .3s ease;
    font-family: inherit;
}

.tc-faq-question:hover {
    color: var(--tc-primary);
}

.tc-faq-question span {
    flex: 1;
    line-height: 1.6;
}

/* ==========================================================
   Icon (SVG)
========================================================== */
.tc-faq-question .tc-faq-icon {
    width: 36px;
    height: 36px;
    padding: 10px;
    border-radius: 50%;
    background: var(--tc-primary-soft);
    color: var(--tc-primary);
    transition: .35s;
    flex-shrink: 0;
    box-sizing: border-box;
}

.tc-faq-item.active .tc-faq-question .tc-faq-icon {
    background: var(--tc-primary);
    color: #fff;
    transform: rotate(45deg);
}

.tc-faq-item:hover .tc-faq-question .tc-faq-icon {
    transform: scale(1.08);
}

.tc-faq-item.active:hover .tc-faq-question .tc-faq-icon {
    transform: rotate(45deg) scale(1.08);
}

/* ==========================================================
   Answer
========================================================== */
.tc-faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .45s ease, opacity .35s ease;
}

.tc-faq-item.active .tc-faq-answer {
    max-height: 500px;
    opacity: 1;
}

.tc-faq-answer p {
    margin: 0;
    padding: 4px 28px 26px;   /* small top gap so text isn't glued to the question */
    color: var(--tc-text);
    line-height: 1.9;
}

/* ==========================================================
   Bottom CTA
========================================================== */
.tc-faq-bottom {
    margin-top: 70px;
    padding: 60px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #fff8f8);
    border: 1px solid var(--tc-border);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(17, 24, 39, .06);
    position: relative;
    overflow: hidden;
}

.tc-faq-bottom::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 30, 36, .08), transparent 70%);
}

.tc-faq-bottom h3 {
    margin-bottom: 15px;
    font-size: 2rem;
    color: var(--tc-heading);
    position: relative;
    z-index: 2;
}

.tc-faq-bottom p {
    max-width: 650px;
    margin: 0 auto 30px;
    color: var(--tc-text);
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.tc-faq-bottom .tc-btn {
    min-width: 230px;
    position: relative;
    z-index: 2;
}

/* ==========================================================
   Animation
========================================================== */
@keyframes tcFaqFade {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.tc-faq-item:nth-child(2)  { animation-delay: .06s; }
.tc-faq-item:nth-child(3)  { animation-delay: .12s; }
.tc-faq-item:nth-child(4)  { animation-delay: .18s; }
.tc-faq-item:nth-child(5)  { animation-delay: .24s; }
.tc-faq-item:nth-child(6)  { animation-delay: .30s; }

/* ==========================================================
   Responsive
========================================================== */
@media (max-width: 991px) {
    .tc-faq { padding: 90px 0; }
    .tc-faq-grid { grid-template-columns: 1fr; gap: 20px; }
    .tc-faq-bottom { padding: 45px 30px; margin-top: 55px; }
    .tc-faq .tc-section-heading h2 { font-size: 2rem; }
}

@media (max-width: 767px) {
    .tc-faq { padding: 80px 0; }
    .tc-faq-grid { margin-top: 45px; }
    .tc-faq .tc-section-heading h2 { font-size: 1.7rem; }
    .tc-faq-question { padding: 22px 20px; font-size: 1rem; gap: 16px; }
    .tc-faq-question .tc-faq-icon { width: 32px; height: 32px; padding: 9px; }
    .tc-faq-answer p { padding: 0 20px 22px; line-height: 1.8; }
    .tc-faq-bottom { padding: 36px 24px; border-radius: 20px; }
    .tc-faq-bottom h3 { font-size: 1.6rem; }
    .tc-faq-bottom p { margin-bottom: 25px; }
    .tc-faq-bottom .tc-btn { width: 100%; }
}

@media (max-width: 480px) {
    .tc-faq-question { padding: 20px 18px; font-size: .95rem; }
    .tc-faq-question .tc-faq-icon { width: 30px; height: 30px; padding: 8px; }
    .tc-faq-answer p { padding: 0 18px 20px; font-size: .95rem; }
}
/* FAQ polish */
.tc-faq {
	padding: clamp(5rem, 8vw, 7.5rem) 0;
	background: linear-gradient(145deg, #f7fbfb 0%, #fff 55%, #fffaf7 100%);
}
.tc-faq .tc-section-heading .tc-section-badge { margin-bottom: 1.1rem; }
.tc-faq .tc-section-heading h2 { font-size: clamp(2.25rem, 4vw, 3.4rem); line-height: 1.08; letter-spacing: -.045em; }
.tc-faq .tc-section-heading p { max-width: 60ch; margin-inline: auto; font-size: 1rem; line-height: 1.8; color: var(--tc-text-light); }
.tc-faq-grid { margin-top: clamp(2.5rem, 5vw, 4rem); }
.tc-faq-item.is-hidden { display: none; }
.tc-faq-grid.is-expanded .tc-faq-item.is-hidden { display: block; animation: tcFaqFade .45s ease both; }
.tc-faq-question { padding: 1.25rem 1.4rem; font-size: 1rem; }
.tc-faq-answer p { padding: .25rem 1.4rem 1.35rem; font-size: 1rem; line-height: 1.85; color: var(--tc-text-light); }
.tc-faq-more { display: inline-flex; align-items: center; gap: .6rem; margin: 2rem auto 0; padding: .75rem 1.1rem; border: 1px solid rgba(227,30,36,.2); border-radius: 999px; background: #fff; color: var(--tc-primary); cursor: pointer; font: inherit; font-size: .82rem; font-weight: 800; box-shadow: 0 8px 22px rgba(17,24,39,.05); transition: background .3s ease, color .3s ease, transform .3s ease; }
.tc-faq-more:hover { background: var(--tc-primary); color: #fff; transform: translateY(-2px); }
.tc-faq-more svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; transition: transform .3s ease; }
.tc-faq-more[aria-expanded="true"] svg { transform: rotate(45deg); }
.tc-faq-more[aria-expanded="true"] .tc-faq-more__label { font-size: 0; }
.tc-faq-more[aria-expanded="true"] .tc-faq-more__label::after { content: "Show fewer questions"; font-size: .82rem; }
.tc-faq-bottom { margin-top: 3.5rem; padding: clamp(2.5rem, 5vw, 4rem); background: linear-gradient(135deg, #fff, #fff8f8); }

@media (max-width: 767px) {
	.tc-faq { padding: 4.5rem 0; }
	.tc-faq .tc-section-heading h2 { font-size: clamp(2.15rem, 10vw, 3rem); }
	.tc-faq-question { padding: 1.1rem 1rem; font-size: .95rem; }
	.tc-faq-answer p { padding: .2rem 1rem 1.2rem; font-size: .94rem; }
}