/* ============================================
   FAQ Section Styles
   ============================================ */

.faq-section {
	background: linear-gradient(180deg, var(--light-blue) 0%, var(--i2c-brand-25) 100%);
	padding: 160px 160px 240px;
	position: relative;
	overflow: hidden;
}

.faq-section-bg {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 798px;
	height: 772px;
	pointer-events: none;
	z-index: 0;
}

.container-small {
	max-width: 1162px;
	margin: 0 auto;
	padding: 0 20px;
}

.faq-title {
	font-family: var(--primaryFont);
	font-size: 80px;
	font-weight: var(--fontWeightMedium);
	line-height: var(--lineheightH1);
	text-align: center;
	color: var(--i2c-black);
	margin-bottom: 5rem;
	letter-spacing: -0.02em;
}

.faq-dot {
	color: var(--orange);
}

.faq-accordion {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 3.75rem;
}

.faq-item {
	width: 100%;
	background: var(--white);
	padding: 2.5rem;
	border-radius: var(--borderRadiusLarge);
	overflow: hidden;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	border: 1px solid var(--i2c-brand-100);
}

.faq-item.active {
	background: linear-gradient(90deg, var(--i2c-brand-900) 0%, var(--i2c-brand-600) 100%);
	border-color: var(--i2c-brand-600);
}

.faq-question {
	width: 100%;
	/* padding: 0; */
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: transparent;
	border: none;
	cursor: pointer;
	font-family: var(--primaryFont);
	font-size: var(--fontSizeH6);
	font-weight: var(--fontWeightMedium);
	line-height: var(--lineheightH6);
	color: var(--i2c-black);
	letter-spacing: 0;
	text-align: left;
	transition: all 0.3s ease;
}

.faq-item.active .faq-question {
	color: var(--white);
	padding-bottom: 2.5rem;
}

.faq-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	transition: transform 0.3s ease;
	color: var(--text-secondary);
}

.faq-item.active .faq-icon {
	transform: rotate(180deg);
	color: var(--white);
}

.faq-answer {
	max-width: 1082px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

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

.faq-answer p,
.faq-answer ol, 
.faq-answer ul {
	font-family: var(--primaryFont);
	font-size: var(--fontSizeExtraLarge);
	font-style: normal;
	font-weight: var(--fontWeightLight);
	line-height: 28px;
	letter-spacing: 0;
	color: var(--white);
}
.faq-answer ol {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq-answer ol li{
	margin: 0;
}
.faq-answer ol li:before {
    transform: translateX(-86%);
}
.faq-answer p a,
.faq-answer ol a, 
.faq-answer ul a{
	color: var(--white);
	text-decoration: underline;
}

.faq-contact-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
	position: relative;
	z-index: 1;
}

.faq-contact-card {
  position: relative;
  background: var(--light-blue);
  backdrop-filter: blur(10px);
  border-radius: var(--borderRadiusDefault);
  padding: 2.5rem;
  border: 1px solid var(--i2c-brand-100);
}

.faq-contact-card::before {
  content: "";
  position: absolute;
  inset: -5px;
  background: radial-gradient(
    circle at top left,
    color-mix(in srgb, var(--white) 80%, transparent) 0%,
    color-mix(in srgb, var(--white) 40%, transparent) 35%,
    color-mix(in srgb, var(--white) 0%, transparent) 70%
  );
  border-radius: inherit;
  z-index: -1;
  filter: blur(10px);
}

.faq-contact-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2.5rem;
}

.faq-contact-icon {
	width: 56px;
	height: 56px;
	background: var(--white);
	border: 1px solid var(--i2c-brand-100);
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.faq-contact-icon img {
	width: 35px;
	height: 35px;
	color: var(--white);
}

.faq-contact-title {
	font-family: var(--primaryFont);
	font-size: var(--text-24);
	font-weight: var(--fontWeightMedium);
	width: 300px;
	line-height: 28px;
	letter-spacing: 0;
	color: var(--i2c-brand-950);
}

.faq-contact-person {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.faq-contact-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
}

.faq-contact-info {
	display: flex;
	align-items: center;
	gap: 10px
}

.faq-contact-name,
.faq-contact-email {
	font-family: var(--primaryFont);
	font-size: var(--text-20);
	font-weight: 400;
	line-height: var(--lineheightLarge);
	color: var(--i2c-black);
	margin: 0;
	text-decoration: none;
}

.faq-contact-email:hover {
	color: var(--i2c-brand-600);
}

/* Responsive Styles */
@media screen and (max-width: 1600px) {
	.faq-icon {
		width: 32px;
		height: 32px;
	}
	.faq-section {
		padding: 120px 70px;

	}

	.faq-section-bg {
		width: 541.222px;
		height: 503.897px;
	}

	.faq-title {
		font-size: var(--fontSizeH1)
	}

	.faq-item {
		max-width: 835px;
		padding: 1.75rem;
	}

	.faq-accordion {
		margin-bottom: 3.75rem;
	}

	.faq-answer p,
	.faq-answer ol, 
	.faq-answer ul {
		font-size: var(--text-20);
		line-height: 24px;
	}

	.faq-contact-cards {
		gap: 0.5rem;
		max-width: 835px;
		margin-inline: auto;
	}

	.faq-contact-card {
		padding: 1.5rem;
	}

	.faq-contact-info {
		gap: 6px
	}

	.faq-contact-avatar {
		width: 40px;
		height: 40px;
	}

	.faq-contact-title {
		font-size: var(--text-20);
		line-height: 24px;
	}

	.faq-contact-name,
	.faq-contact-email {
		font-size: var(--text-18);
	}

	.faq-contact-icon {
		width: 40px;
		height: 40px;
	}

	.faq-contact-icon img {
		width: 25px;
		height: 25px;
		color: var(--white);
	}

}

@media screen and (max-width: 1199px) {
	.faq-contact-name, .faq-contact-email {
        font-size: 16px;
    }
	.faq-icon {
		width: 28px;
		height: 28px;
	}
	.faq-section {
		padding: 80px 100px;
	}


	.faq-title {
		font-size: 48px;
		margin-bottom: 3.75rem;
	}

	.faq-section-bg {
		width: 398px;
		height: 370px;
	}

	.faq-item {
		padding: 1.5rem;
	}

	.faq-question {
		font-size: var(--text-22);
		gap: 1rem;
		word-wrap: break-word;
	}

	.faq-answer p,
	.faq-answer ol, 
	.faq-answer ul {
		font-size: var(--text-16);
		line-height: 20px;
	}

	.faq-contact-cards {
		gap: 0.5rem;
	}

	.faq-contact-card {
		padding: 1.25rem;
	}

	.faq-contact-title {
		width: 270px;
		font-size: var(--text-16);
		line-height: 20px;
	}
}

@media screen and (max-width: 991px) {
	.faq-section {
		padding: 5rem 0;
	}

	.faq-section-bg {
		display: none;
	}

	.container-small {
		padding: 0 20px;
	}

	.faq-title {
		font-size: 36px;
		line-height: 44px;
		margin-bottom: 3rem;
		word-wrap: break-word;
	}

	.faq-accordion {
		margin-bottom: 2.5rem;
		gap: 0.75rem;
	}

	.faq-item {
		padding: 1.25rem;
	}

	.faq-question {
		font-size: var(--text-18);
		gap: 1rem;
	}

	.faq-item.active .faq-question {
		padding-bottom: 1.5rem;
	}

	.faq-answer p,
	.faq-answer ol, 
	.faq-answer ul {
		font-size: var(--text-14);
		line-height: 20px;
	}

	

	.faq-contact-card {
		padding: 1.5rem;
	}

	.faq-contact-header {
		margin-bottom: 2rem;
	}

	.faq-contact-icon {
		width: 40px;
		height: 40px;
	}

	.faq-contact-icon img {
		width: 24px;
		height: 24px;
	}

	.faq-contact-person {
		gap: 0.625rem;
	}

	.faq-contact-avatar {
		width: 40px;
		height: 40px;
	}

	.faq-contact-title {
		font-size: var(--text-18);
		line-height: 22px;
	}

	.faq-contact-info {
		gap: 6px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	.faq-contact-info img {
		display: none;
	}

	.faq-contact-name,
	.faq-contact-email {
		font-size: var(--text-16);
	}
}

@media screen and (max-width: 767px) {
	.faq-contact-cards {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.faq-section {
		padding: 3rem 0;
	}

	.container-small {
		padding: 0 16px;
	}

	.faq-title {
		font-size: 28px;
		line-height: 36px;
		margin-bottom: 2rem;
		word-wrap: break-word;
	}

	.faq-accordion {
		margin-bottom: 2rem;
		gap: 0.5rem;
	}

	.faq-item {
		padding: 1.5rem;
	}

	.faq-question {
		font-size: var(--text-16);
		word-wrap: break-word;
	}

	.faq-item.active .faq-question {
		padding-bottom: 1rem;
	}

	.faq-icon {
		width: 24px;
		height: 24px;
	}

	.faq-answer p,
	.faq-answer ol, 
	.faq-answer ul {
		font-size: 14px;
		line-height: 18px;
	}
	.faq-answer ol, .faq-answer ul {
		gap: 6px;
	}
	.faq-contact-card {
		padding: 1.5rem;
	}

	.faq-contact-header {
		margin-bottom: 1.25rem;
		gap: 1rem;
	}

	.faq-contact-icon {
		width: 36px;
		height: 36px;
	}

	.faq-contact-icon img {
		width: 20px;
		height: 20px;
	}

	.faq-contact-person {
		gap: 0.75rem;
	}

	.faq-contact-avatar {
		width: 36px;
		height: 36px;
	}

	.faq-contact-info {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	.faq-contact-title {
		font-size: var(--text-16);
		line-height: 20px;
		width: 80%;
	}

	.faq-contact-name,
	.faq-contact-email {
		font-size: 14px;
	}

	.faq-contact-icon {
		width: 40px;
		height: 40px;
	}
}