/* GLOBAL STYLES */
:root {
	--color-dark-blue: #0d1b2a;
	--color-muted-blue: #415a77;
	--color-light-gray: #e0e1dd;
	--color-accent: #fca311;
	--color-white: #ffffff;

	--font-primary: 'Lato', sans-serif;
	--font-secondary: 'Montserrat', sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-primary);
	background-color: var(--color-light-gray);
	color: var(--color-dark-blue);
	font-size: 16px;
	line-height: 1.6;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

a {
	color: var(--color-accent);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--color-dark-blue);
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

h1,
h2,
h3 {
	font-family: var(--font-secondary);
	font-weight: 700;
	color: var(--color-dark-blue);
}

/* HEADER */
.header {
	background-color: var(--color-light-gray);
	padding: 15px 0;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-secondary);
	font-weight: 700;
	font-size: 24px;
	color: var(--color-dark-blue);
}

.logo:hover {
	color: var(--color-dark-blue);
}

.logo__svg path:last-child {
	stroke: var(--color-dark-blue);
}

.nav__list {
	display: flex;
	gap: 30px;
}

.nav__link {
	color: var(--color-dark-blue);
	font-weight: 700;
	position: relative;
	padding-bottom: 5px;
}

.nav__link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--color-accent);
	transition: width 0.3s ease;
}

.nav__link:hover::after {
	width: 100%;
}

.burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: transparent;
	border: none;
	cursor: pointer;
}

.burger__line {
	width: 25px;
	height: 3px;
	background-color: var(--color-dark-blue);
	transition: all 0.3s ease;
}

/* FOOTER */
.footer {
	background-color: var(--color-dark-blue);
	color: var(--color-light-gray);
	padding: 60px 0 0;
}

.footer__container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer__column--about .logo {
	color: var(--color-white);
	margin-bottom: 15px;
}
.footer__tagline {
	color: var(--color-muted-blue);
}

.footer__title {
	font-family: var(--font-secondary);
	font-size: 18px;
	font-weight: 600;
	color: var(--color-white);
	margin-bottom: 20px;
}

.footer__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer__list--contact li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer__link,
.footer__text {
	color: var(--color-light-gray);
	transition: color 0.3s ease;
}

.footer__link:hover {
	color: var(--color-accent);
}

.footer__icon {
	width: 18px;
	height: 18px;
	color: var(--color-accent);
}

.footer__bottom {
	border-top: 1px solid var(--color-muted-blue);
	padding: 20px 0;
	text-align: center;
	font-size: 14px;
	color: var(--color-muted-blue);
}

/* MOBILE ADAPTIVE */
@media (max-width: 768px) {
	.nav {
		position: fixed;
		top: 70px; /* header height */
		left: -100%;
		width: 100%;
		height: calc(100vh - 70px);
		background-color: var(--color-light-gray);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transition: left 0.3s ease;
	}

	.nav.nav--active {
		left: 0;
	}

	.nav__list {
		flex-direction: column;
		align-items: center;
		gap: 40px;
	}

	.nav__link {
		font-size: 24px;
	}

	.burger {
		display: flex;
	}

	.burger.burger--active .burger__line:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}
	.burger.burger--active .burger__line:nth-child(2) {
		opacity: 0;
	}
	.burger.burger--active .burger__line:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -6px);
	}
}

/* assets/css/style.css */

/* BUTTON */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 30px;
	background-color: var(--color-accent);
	color: var(--color-dark-blue);
	font-family: var(--font-secondary);
	font-weight: 700;
	font-size: 16px;
	border: 2px solid var(--color-accent);
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn:hover {
	background-color: transparent;
	color: var(--color-accent);
}

.btn__icon {
	width: 20px;
	height: 20px;
}

/* HERO SECTION */
.hero {
	padding-top: 150px; /* Header height + extra space */
	padding-bottom: 80px;
	background-color: var(--color-light-gray);
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.hero__container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 50px;
}

.hero__title {
	font-size: 2rem;
	line-height: 1.2;
	margin-bottom: 20px;
}

.hero__subtitle {
	font-size: 18px;
	line-height: 1.7;
	margin-bottom: 30px;
	max-width: 500px;
}

.hero__image-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero__image {
	border-radius: 15px;
	box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.15);
}

/* MOBILE ADAPTIVE */
@media (max-width: 992px) {
	.hero__title {
		font-size: 1.5rem;
	}
}

@media (max-width: 768px) {
	.hero {
		padding-top: 120px;
		text-align: center;
	}
	.hero__container {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.hero__content {
		order: 2;
	}
	.hero__image-wrapper {
		order: 1;
	}
	.hero__subtitle {
		margin-left: auto;
		margin-right: auto;
	}
}

/* assets/css/style.css */

/* SECTION STYLES */
.section {
	padding: 80px 0;
}

.section:nth-of-type(odd) {
	background-color: var(--color-white);
}

.section__header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 50px;
}

.section__title {
	font-size: 36px;
	margin-bottom: 15px;
}

.section__subtitle {
	font-size: 18px;
	color: var(--color-muted-blue);
}

/* STRATEGIES SECTION & CARDS */
.strategies__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.card {
	background-color: var(--color-light-gray);
	padding: 40px 30px;
	border-radius: 10px;
	text-align: center;
	border: 1px solid transparent;
	transition: all 0.3s ease;
}

.card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	border-color: var(--color-accent);
}

.card__icon-wrapper {
	width: 70px;
	height: 70px;
	margin: 0 auto 25px;
	background-color: var(--color-accent);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.card__icon {
	width: 32px;
	height: 32px;
	color: var(--color-dark-blue);
}

.card__title {
	font-size: 22px;
	margin-bottom: 15px;
}

.card__description {
	font-size: 16px;
	color: var(--color-muted-blue);
}

/* MOBILE ADAPTIVE */
@media (max-width: 992px) {
	.section__title {
		font-size: 32px;
	}
}

/* assets/css/style.css */

/* SKILLS SECTION */
.skills__container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 60px;
}

.skills__title,
.skills__subtitle {
	text-align: left;
	margin-left: 0;
	margin-right: 0;
	max-width: none;
}

.skills__subtitle {
	margin-bottom: 30px;
}

.skills__image-wrapper {
	width: 100%;
	margin-top: 30px;
}
.skills__image {
	border-radius: 10px;
	box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.1);
}

/* ACCORDION */
.accordion__item {
	border-bottom: 1px solid var(--color-light-gray);
}
.accordion__item:first-child {
	border-top: 1px solid var(--color-light-gray);
}

.accordion__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 20px 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-secondary);
	font-size: 18px;
	font-weight: 600;
}

.accordion__icon {
	transition: transform 0.3s ease;
	flex-shrink: 0; /* Prevents icon from shrinking */
}

.accordion__content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out;
}

.accordion__text {
	padding-bottom: 20px;
	color: var(--color-muted-blue);
}

/* Accordion Active State */
.accordion__item.accordion__item--active .accordion__header {
	color: var(--color-accent);
}
.accordion__item.accordion__item--active .accordion__icon {
	transform: rotate(180deg);
}
.accordion__item.accordion__item--active .accordion__content {
	/* max-height is set in JS */
}

/* MOBILE ADAPTIVE */
@media (max-width: 992px) {
	.skills__container {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.skills__info {
		text-align: center;
	}
	.skills__title,
	.skills__subtitle {
		text-align: center;
		max-width: 600px;
		margin-left: auto;
		margin-right: auto;
	}
}

/* assets/css/style.css */

/* PLATFORM SECTION */
.platform {
	background-color: var(--color-white); /* White background for contrast */
}

.platform__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	gap: 60px;
	margin-top: 50px;
}

.platform__visual {
	width: 100%;
}

.platform__image {
	width: 100%;
	border-radius: 15px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* FEATURES LIST */
.features-list {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.features-list__item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.features-list__icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	color: var(--color-accent);
	margin-top: 5px;
}

.features-list__title {
	font-size: 20px;
	margin-bottom: 5px;
}

.features-list__text {
	color: var(--color-muted-blue);
}

/* MOBILE ADAPTIVE */
@media (max-width: 992px) {
	.platform__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

/* assets/css/style.css */

/* STEPS SECTION */
.steps__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 50px;
	position: relative;
}

/* Optional: decorative line connecting steps */
.steps__grid::before {
	content: '';
	position: absolute;
	top: 50px;
	left: 10%;
	width: 80%;
	height: 2px;
	background-color: var(--color-light-gray);
	z-index: 1;
}

.step-card {
	background: var(--color-white);
	padding: 30px;
	border-radius: 10px;
	position: relative;
	z-index: 2;
	border: 1px solid var(--color-light-gray);
	transition: all 0.3s ease;
}

.step-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	border-color: var(--color-accent);
}

.step-card__number {
	font-family: var(--font-secondary);
	font-size: 48px;
	font-weight: 700;
	color: var(--color-accent);
	margin-bottom: 15px;
}

.step-card__title {
	font-size: 22px;
	margin-bottom: 10px;
}

.step-card__description {
	color: var(--color-muted-blue);
}

/* MOBILE ADAPTIVE */
@media (max-width: 768px) {
	.steps__grid::before {
		display: none; /* Hide line on mobile */
	}
}

/* assets/css/style.css */

/* CONTACT SECTION */
.contact {
	background: var(--color-white);
}
.contact__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.contact__title,
.contact__subtitle {
	text-align: left;
	margin-left: 0;
}

.contact__details {
	list-style: none;
	margin-top: 30px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contact__details li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
}

/* CONTACT FORM */
.contact__form-wrapper {
	background: var(--color-light-gray);
	padding: 40px;
	border-radius: 10px;
}

.form-group {
	margin-bottom: 20px;
}

.form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 700;
	font-size: 14px;
}

.form-input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-family: var(--font-primary);
	font-size: 16px;
	transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus {
	outline: none;
	border-color: var(--color-accent);
	box-shadow: 0 0 0 3px rgba(252, 163, 17, 0.2);
}

.form-group--checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 15px;
}

.form-checkbox {
	margin-top: 5px;
	flex-shrink: 0;
}

.form-checkbox-label a {
	text-decoration: underline;
}
.form-checkbox-label a:hover {
	color: var(--color-accent);
}

.contact-form__btn {
	width: 100%;
}

/* SUCCESS MESSAGE */
.success-message {
	display: none; /* Hidden by default */
	text-align: center;
	padding: 20px;
}

.success-message__icon {
	width: 60px;
	height: 60px;
	color: #28a745;
	margin-bottom: 15px;
}
.success-message__title {
	font-size: 24px;
	margin-bottom: 10px;
}

/* MOBILE ADAPTIVE */
@media (max-width: 992px) {
	.contact__grid {
		grid-template-columns: 1fr;
	}
	.contact__info {
		text-align: center;
	}
	.contact__title,
	.contact__subtitle {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}
	.contact__details {
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
}

/* assets/css/style.css */

/* COOKIE POP-UP */
.cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--color-dark-blue);
	color: var(--color-light-gray);
	padding: 20px 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	z-index: 1100;
	transform: translateY(0);
	transition: transform 0.5s ease;
}

.cookie-popup--hidden {
	transform: translateY(100%);
}

.cookie-popup__text {
	margin: 0;
}
.cookie-popup__text a {
	color: var(--color-accent);
	text-decoration: underline;
}

.btn--cookie {
	padding: 8px 20px;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.cookie-popup {
		flex-direction: column;
		text-align: center;
	}
}

/* assets/css/style.css */

/* POLICY & TERMS PAGES STYLING */
.pages {
	padding: 120px 0 80px; /* Extra padding top for fixed header */
	background-color: var(--color-white);
}

.pages h1 {
	font-size: 1.5rem;
	margin-bottom: 30px;
}

.pages h2 {
	font-size: 1.5rem;
	margin-top: 40px;
	margin-bottom: 20px;
}

.pages p {
	margin-bottom: 20px;
	line-height: 1.7;
	color: var(--color-muted-blue);
}

.pages ul {
	list-style: disc;
	padding-left: 20px;
	margin-bottom: 20px;
}

.pages li {
	margin-bottom: 10px;
	color: var(--color-muted-blue);
}

.pages a {
	text-decoration: underline;
}

.pages a:hover {
	color: var(--color-dark-blue);
}

.pages strong {
	color: var(--color-dark-blue);
	font-weight: 700;
}

