.nova-meeting-button-wrap,
.nova-help-button-wrap {
	display: inline-block;
}

/* Base button styles */
.nova-meeting-button,
.nova-help-button {
	--nova-button-angle: 12px;
	display: inline-block;
	padding: 0;
	text-decoration: none;
	border-radius: 8px;
	clip-path: polygon(var(--nova-button-angle) 0, calc(100% - var(--nova-button-angle)) 0, 100% 50%, calc(100% - var(--nova-button-angle)) 100%, var(--nova-button-angle) 100%, 0 50%);
	transition: transform 0.25s ease;
}

.nova-meeting-button:hover,
.nova-meeting-button:focus,
.nova-help-button:hover,
.nova-help-button:focus {
	transform: translateY(-2px);
}

/* Solid Button (Meeting) */
.nova-meeting-button {
	background: transparent;
}

.nova-meeting-button__inner {
	--nova-button-angle: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 12px 28px;
	background: #111111;
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	border-radius: inherit;
	clip-path: inherit;
	transition: background-color 0.25s ease, color 0.25s ease;
}

/* Outline Button (Help) */
.nova-help-button {
	background: #111111; /* Border color */
	padding: 1px; /* Border width */
}

.nova-help-button__inner {
	--nova-button-angle: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 12px 28px;
	background: #ffffff;
	color: #111111;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	border-radius: inherit;
	clip-path: polygon(var(--nova-button-angle) 0, calc(100% - var(--nova-button-angle)) 0, 100% 50%, calc(100% - var(--nova-button-angle)) 100%, var(--nova-button-angle) 100%, 0 50%);
	transition: background-color 0.25s ease, color 0.25s ease;
}

/* Shared Inner Elements */
.nova-meeting-button__text,
.nova-help-button__text {
	text-align: left;
	display: block;
}

.nova-meeting-button__icon,
.nova-help-button__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.nova-meeting-button__icon svg,
.nova-help-button__icon svg {
	width: 20px;
	height: 20px;
	transition: transform 0.25s ease;
}

.nova-meeting-button:hover .nova-meeting-button__icon svg,
.nova-help-button:hover .nova-help-button__icon svg {
	transform: translateX(3px);
}

/* Sticky Scroll Widget */
.nova-sticky-scroll {
	padding: 80px 0;
}

.nova-sticky-scroll__container {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

.nova-sticky-scroll__left {
	flex: 1;
	position: sticky;
	top: 100px;
	height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nova-sticky-scroll__images {
	position: relative;
	width: 100%;
	height: 100%;
}

.nova-sticky-scroll__image-item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease;
	transform: translateY(20px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.nova-sticky-scroll__image-item img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

.nova-sticky-scroll__image-item.is-active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nova-sticky-scroll__right {
	flex: 1;
}

.nova-sticky-scroll__content-item {
	padding-bottom: 200px;
	min-height: 60vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.nova-sticky-scroll__content-item:last-child {
	padding-bottom: 0;
	margin-bottom: 20vh;
}

.nova-sticky-scroll__title {
	font-size: 56px;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 20px;
	color: #111111;
}

.nova-sticky-scroll__description {
	font-size: 20px;
	line-height: 1.5;
	color: #444444;
	margin-bottom: 30px;
	max-width: 500px;
}

.nova-sticky-scroll__button-wrap {
	margin-top: 10px;
}

@media (max-width: 1024px) {
	.nova-sticky-scroll__container {
		flex-direction: column;
	}
	.nova-sticky-scroll__left {
		position: relative;
		top: 0;
		height: auto;
		width: 100%;
		margin-bottom: 40px;
	}
	.nova-sticky-scroll__image-item {
		position: relative;
		display: none;
	}
	.nova-sticky-scroll__image-item.is-active {
		display: flex;
	}
	.nova-sticky-scroll__content-item {
		min-height: auto;
		padding-bottom: 80px;
	}
}

/* Accordion Grid Widget (Forced Specificity) */
.elementor-widget-nova_accordion_grid .nova-accordion-grid {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	column-gap: 60px !important;
	row-gap: 0 !important;
	width: 100% !important;
	margin: 0 auto !important;
}

/* Base Fallback */
.nova-accordion-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 60px;
}

.nova-accordion-grid__item {
	padding: 40px 0;
	border-bottom: 1px solid #e1e1e1;
	display: flex;
	flex-direction: column;
	width: 100%;
}

/* Add top border to the first two items if they are in the first row */
.nova-accordion-grid__item:nth-child(1),
.nova-accordion-grid__item:nth-child(2) {
	border-top: none; /* Already clean, but can add if needed */
}

.nova-accordion-grid__header {
	cursor: pointer;
	margin-bottom: 20px;
}

.nova-accordion-grid__title {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
	color: #111111;
	margin: 0;
}

.nova-accordion-grid__content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
	opacity: 0;
}

.nova-accordion-grid__item.is-active .nova-accordion-grid__content {
	max-height: 1000px; /* Large enough to hold content */
	opacity: 1;
	margin-bottom: 20px;
}

.nova-accordion-grid__inner-content {
	font-size: 16px;
	line-height: 1.6;
	color: #555555;
}

.nova-accordion-grid__footer {
	margin-top: auto;
}

.nova-accordion-grid__toggle {
	background: none;
	border: none;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	cursor: pointer;
	font-family: inherit;
}

.nova-accordion-grid__toggle-text {
	font-size: 14px;
	font-weight: 700;
	color: #111111;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.nova-accordion-grid__toggle-icon {
	position: relative;
	width: 14px;
	height: 14px;
}

.nova-accordion-grid__toggle-icon::before,
.nova-accordion-grid__toggle-icon::after {
	content: '';
	position: absolute;
	background-color: #111111;
	transition: transform 0.3s ease;
}

/* Horizontal line (always visible) */
.nova-accordion-grid__toggle-icon::before {
	width: 100%;
	height: 2px;
	top: 6px;
	left: 0;
}

/* Vertical line (hidden when active) */
.nova-accordion-grid__toggle-icon::after {
	width: 2px;
	height: 100%;
	top: 0;
	left: 6px;
}

.nova-accordion-grid__item.is-active .nova-accordion-grid__toggle-icon::after {
	transform: rotate(90deg);
	opacity: 0;
}

@media (max-width: 1024px) {
	.elementor-widget-nova_accordion_grid .nova-accordion-grid {
		grid-template-columns: 1fr !important;
		column-gap: 0 !important;
	}
}

/* Footer Widget */
.nova-footer {
	background-color: #000000;
	color: #ffffff;
	padding: 80px 0 40px;
	font-family: inherit;
}

.nova-footer__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.nova-footer__top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 60px;
}

.nova-footer__logo-col {
	flex: 0 0 200px;
}

.nova-footer__logo img {
	max-width: 100%;
	height: auto;
}

.nova-footer__nav-cols {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.nova-footer__col-title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	display: inline-block;
	width: 100%;
}

.nova-footer__col-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.nova-footer__col-links li {
	margin-bottom: 12px;
}

.nova-footer__col-links a {
	text-decoration: none;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	transition: color 0.3s ease;
}

.nova-footer__col-links a:hover {
	color: #ffffff;
}

.nova-footer__divider {
	height: 1px;
	background-color: rgba(255, 255, 255, 0.1);
	margin-bottom: 30px;
}

.nova-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.nova-footer__socials {
	display: flex;
	gap: 20px;
	align-items: center;
}

.nova-footer__social-icon {
	color: #ffffff;
	font-size: 20px;
	transition: opacity 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.nova-footer__social-icon svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.nova-footer__social-icon img {
	width: 20px;
	height: auto;
	object-fit: contain;
}

.nova-footer__social-icon:hover {
	opacity: 0.7;
}

.nova-footer__copyright {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
}

.nova-footer__legal-links {
	display: flex;
	gap: 20px;
}

.nova-footer__legal-links a {
	text-decoration: none;
	font-size: 14px;
	color: #ffffff;
	transition: opacity 0.3s ease;
}

.nova-footer__legal-links a:hover {
	opacity: 0.7;
}

@media (max-width: 1024px) {
	.nova-footer__nav-cols {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.nova-footer__top {
		flex-direction: column;
	}
	.nova-footer__nav-cols {
		grid-template-columns: 1fr;
		width: 100%;
	}
	.nova-footer__bottom {
		flex-direction: column;
		text-align: center;
	}
	.nova-footer__legal-links {
		justify-content: center;
		flex-wrap: wrap;
	}
}

