@import url("https://fonts.googleapis.com/css2?family=Anton&family=Barlow:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
	--color-white: #ffffff;
	--color-orange: #eb6e10;
	--color-black: #080808;
	--color-dark: #141414;
	--color-dark-input: #0f0f0f;
	--color-gray: #333333;
	--color-orange-hover: #d45f0e;
	--color-light-gray: #666666;

	--font-primary: "Poppins", sans-serif;
	--font-heading: "Barlow", sans-serif;
	--font-stats: "Anton", sans-serif;

	--spacing-xs: 10px;
	--spacing-sm: 20px;
	--spacing-md: 40px;
	--spacing-lg: 60px;
	--spacing-xl: 80px;

	--transition: all 0.3s ease;

	--border-color: rgba(255, 255, 255, 0.2);
	--border-light: rgba(255, 255, 255, 0.1);
	--text-secondary: rgba(255, 255, 255, 0.7);
	--text-placeholder: rgba(255, 255, 255, 0.5);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 70px;
	background-color: var(--color-black);
	width: 100%;
	max-width: 100vw;
	overflow-x: hidden;
}

body {
	font-family: var(--font-primary);
	background-color: var(--color-black);
	color: var(--color-white);
	line-height: 1.6;
	overflow-x: hidden;
	width: 100%;
	max-width: 100vw;
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 500;
	font-family: var(--font-heading);
	line-height: 1.2;
	margin-bottom: var(--spacing-sm);
	color: var(--color-white);
	text-transform: uppercase;
	letter-spacing: -0.02em;
}

h1 {
	font-size: 48px;
	letter-spacing: -1.92px;
}

h2 {
	font-size: 48px;
	letter-spacing: -1.92px;
}

h3 {
	font-size: 24px;
	letter-spacing: -0.96px;
}

h4 {
	font-size: 20px;
	text-transform: none;
}

p {
	margin-bottom: var(--spacing-sm);
	font-size: 16px;
	line-height: 1.4;
	font-weight: 300;
}

a {
	color: var(--color-white);
	text-decoration: none;
	transition: var(--transition);
}

a:hover {
	color: var(--color-orange);
}

.uk-text-warning {
	color: var(--color-orange) !important;
}

/* HEADER */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background-color: transparent;
	padding: var(--spacing-xs) 0;
}

@media (min-width: 1035px) { 
	.uk-navbar {
		gap: var(--spacing-md);
	}
}
a.uk-navbar-item.uk-logo.uk-padding-remove.uk-position-relative {
		max-width: 125px;
		color: #fff;
}
a.uk-logo.uk-position-relative {
		max-width: 210px;
}

.header .uk-navbar-nav {
	flex-wrap: nowrap;
	overflow: visible;
}

.header .uk-navbar-nav > li > a {
	color: var(--color-white);
	font-family: var(--font-primary);
	font-weight: 500;
	font-style: normal;
	font-size: 16px;
	line-height: 16px;
	text-transform: none;
	text-align: center;
	transition: color var(--transition);
	padding: 0 12px;
	white-space: nowrap;
	position: relative;
}

.header .uk-navbar-nav > li > a::after {
	content: "";
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0;
	height: 5px;
	border-radius: 3px 3px 0 0;
	background: var(--color-orange);
	transform: scaleX(0);
	transition: transform 0.3s ease;
	transform-origin: center;
}

.header .uk-navbar-nav > li > a:hover {
	color: var(--color-white);
}

.header .uk-navbar-nav > li > a:hover::after {
	transform: scaleX(1);
}

.header .uk-navbar-nav > li.uk-active > a {
	color: var(--color-white);
}

.header .uk-navbar-nav > li.uk-active > a::after {
	transform: scaleX(1);
}

@media (max-width: 959px) {
	.header-logo-wrapper {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		z-index: 10;
	}
}

@media (min-width: 960px) {
	.header-logo-wrapper {
		flex-shrink: 0;
		z-index: 10;
		position: relative;
		left: auto;
		transform: none;
	}
}

.header-logo {
	height: 29px;
	width: auto;
	display: block;
	flex-shrink: 0;
	min-width: 100px;
	max-height: 29px;
}

.header-mobile-menu {
	display: flex;
	align-items: center;
}

.header-mobile-menu .uk-navbar-toggle {
	color: var(--color-white);
	padding: 5px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	background-color: transparent;
	text-decoration: none;
}

.header-mobile-menu .uk-navbar-toggle:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.header-mobile-menu-icon {
	width: 30px;
	height: 30px;
	display: block;
	flex-shrink: 0;
}

.header-mobile-login {
	display: flex;
	align-items: center;
}

.header-mobile-login-btn {
	width: 40px;
	height: 40px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	background-color: transparent;
	border: none;
}

.header-mobile-login-btn:hover {
	background-color: transparent;
}

.header-mobile-login-icon {
	width: 40px;
	height: 40px;
	display: block;
	flex-shrink: 0;
}

.header-desktop-menu {
	display: flex;
}

.header-desktop-buttons {
	display: flex;
}

.header-buttons {
	display: flex;
	gap: 15px;
	align-items: center;
}

#offcanvas-menu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1100;
}

#offcanvas-menu .uk-offcanvas-bar {
	background-color: var(--color-black);
	padding: 40px 20px;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	width: 270px;
	height: 100vh;
}

#offcanvas-menu .uk-offcanvas-close {
	color: var(--color-white);
}

#offcanvas-menu .uk-nav-default > li > a {
	color: var(--color-white);
	font-family: var(--font-primary);
	font-weight: 500;
	font-size: 16px;
	padding: 15px 0;
	border-bottom: 1px solid var(--border-light);
}

#offcanvas-menu .uk-nav-default > li > a:hover {
	color: var(--color-orange);
}

#offcanvas-menu .uk-nav-default > li:last-child > a {
	border-bottom: none;
}

#offcanvas-menu .uk-nav-divider {
	margin: 20px 0;
	border-top: 1px solid var(--border-color);
}

#offcanvas-menu .uk-button-default {
	margin-top: 20px;
	width: 100%;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	border: 1px solid #a62805;
	border-radius: 5px;
	color: var(--color-white);
	font-size: 14px;
	text-transform: none;
}

#offcanvas-menu .uk-button-default:hover {
	background-color: var(--color-white);
	color: var(--color-black);
}

/* HERO SECTION */
.hero-section {
	position: relative;
	overflow: hidden;
	background-color: #080808;
}

@media (max-width: 959px) {
	.hero-section {
		background-image: url("../img/back-bg-mob-det.png") !important;
	}
}

.hero-container {
	z-index: 1;
	position: relative;
}

.hero-partners {
	width: 100%;
	margin-top: auto;
	padding-top: 60px;
	flex-shrink: 0;
}

.hero-title {
	margin-bottom: var(--spacing-sm);
}

.hero-description {
	font-size: 16px;
	line-height: 1.4;
	margin-bottom: var(--spacing-lg);
	color: var(--color-white);
	max-width: 584px;
	font-weight: 300;
}

.stat-number {
	font-size: 39px;
	font-family: var(--font-stats);
	font-weight: 700;
	line-height: 0.7;
	color: var(--color-white);
	margin-bottom: 10px;
}

.stat-label {
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	color: var(--color-white);
}

/* PARTNERS SECTION */
.partners-section {
	overflow: hidden;
}

.partner-logo {
	height: 69px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
	opacity: 1;
}

.partner-logo-img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
	object-fit: contain;
	opacity: 0.5;
	filter: grayscale(100%);
	transition: opacity 0.3s ease;
	display: block;
}

.partner-logo:hover .partner-logo-img {
	opacity: 0.8;
}

@media (min-width: 960px) {
	.partner-logo:nth-child(1),
	.partner-logo:nth-child(3),
	.partner-logo:nth-child(4),
	.partner-logo:nth-child(6),
	.partner-logo:nth-child(7),
	.partner-logo:nth-child(8) {
		width: 188px;
	}

	.partner-logo:nth-child(2) {
		width: 127px;
	}

	.partner-logo:nth-child(5) {
		width: 160px;
	}
}

@media (max-width: 959px) {
	.partner-logo {
		width: 100%;
		justify-content: center;
	}
}

/* WHY US SECTION */
.section-title {
	margin-bottom: 30px;
}

.benefit-card {
	background-color: var(--color-dark);
	border: none;
	border-radius: 15px;
	padding: 25px;
	min-height: 127px;
	transition: var(--transition);
}

.benefit-card:hover {
	transform: translateY(-5px);
}

.benefit-icon {
	width: 21px;
	height: 21px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.benefit-icon svg {
	width: 100%;
	height: 100%;
}

.benefit-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.benefit-card h3 {
	font-size: 16px;
	font-family: var(--font-heading);
	margin: 0;
	color: var(--color-orange);
	line-height: 1.4;
}

.benefit-card p {
	color: var(--color-white);
	font-size: 16px;
	line-height: 1.4;
	font-weight: 300;
	margin: 0;
}

.feature-card {
	background-color: var(--color-dark);
	border: 1px solid var(--border-light);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.feature-card:hover {
	border-color: rgba(235, 110, 16, 0.3);
}

.feature-icon {
	width: 30px;
	height: 30px;
}

/* COOPERATION SECTION */
.cooperation-section .section-title {
	margin-bottom: 50px;
}

h2.section-title.uk-h2.uk-text-center.uk-margin-large-bottom {
	color: white;
}

.cooperation-card {
	background-color: var(--color-dark);
	border: 1px solid var(--border-color);
	border-radius: 0;
	overflow: hidden;
	transition: var(--transition);
	flex-shrink: 0;
}

.cooperation-card-first {
	background-color: transparent;
}

.cooperation-card-bg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: inherit;
	height: 500px;
	background-image: url("../img/ellipse_back.svg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: opacity 0.3s ease;
	pointer-events: none;
	z-index: 0;
}

.cooperation-card:hover .cooperation-card-bg {
	opacity: 1;
}

.cooperation-card-content {
	position: relative;
	z-index: 1;
	padding: 15px;
	height: 100%;
	display: flex;
	flex-direction: column;
	width: auto;
	max-width: 390px;
}

.cooperation-card h3 {
	font-size: 24px;
	font-family: "TTLakesNeueExp-DBold", var(--font-heading);
	letter-spacing: -0.96px;
	margin: 0;
	color: var(--color-orange);
	line-height: 1.4;
	text-transform: uppercase;
	white-space: nowrap;
}

.cooperation-card-text {
	margin-top: 100px;
}

.cooperation-card-text p {
	color: var(--color-white);
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 300;
}

.cooperation-card-text p:first-child {
	margin-bottom: 10px;
}

.cooperation-link {
	color: var(--color-orange);
	text-decoration: underline;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
}

.cooperation-link:hover {
	color: var(--color-orange);
	text-decoration: underline;
}

.cooperation-card:hover {
	border-color: rgba(255, 255, 255, 0.3);
}

.cooperation-card:hover .cooperation-card-bg {
	opacity: 1;
}

.cooperation-card:not(:hover) .cooperation-card-bg {
	opacity: 0;
}

/* HOW WE WORK SECTION */
.how-we-work-section {
	padding: var(--spacing-xl) 0;
}

.how-we-work-section .section-title {
	margin-bottom: 50px;
}

.how-we-work-v2 {
	background-color: var(--color-black);
}

.how-we-work-v2 .section-title {
	margin-bottom: 50px;
}

.work-step {
	position: relative;
	text-align: center;
}

.work-step-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 15px;
	background-color: var(--color-dark);
	border-radius: 10px;
	font-family: "TTLakesNeueExp-DBold", var(--font-heading);
	font-size: 16px;
	line-height: 1.4;
	color: var(--color-white);
	opacity: 0.8;
}

.work-step-badge.active {
	background-color: var(--color-orange);
	border-radius: 5px;
	opacity: 1;
}

.work-step-text {
	font-family: var(--font-primary);
	font-weight: 300;
	font-size: 16px;
	line-height: 1.4;
	color: var(--color-white);
	margin: 0;
	max-width: 346px;
}

.work-step-number {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background-color: var(--color-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "TTLakesNeueExp-DBold", var(--font-heading);
	font-size: 16px;
	line-height: 1.4;
	color: var(--text-placeholder);
	position: relative;
	margin: 40px auto;
}

.work-step-number::before {
	content: "";
	position: absolute;
	top: 50%;
	width: 120px;
	height: 2px;
	background: repeating-linear-gradient(
		to right,
		#fff 0 6px,
		transparent 6px 12px
	);
}

.work-step-number::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 120px;
	height: 2px;
	background: #fff 6px;
}

.work-step-number::before {
	right: 100%;
	margin-right: 20px;
}

.work-step-number::after {
	left: 100%;
	margin-left: 20px;
}

.work-step-number.active {
	border-color: var(--color-orange);
	color: var(--color-white);
}

.work-step-badge,
.work-step-number {
	transition: all 0.5s ease;
}

.work-step.active .work-step-badge {
	background-color: var(--color-orange);
	color: var(--color-white);
}

.work-step.active .work-step-number {
	border-color: var(--color-orange);
	color: var(--color-white);
}

/* GEOGRAPHY SECTION */
.geography-section {
	background-color: var(--color-dark);
}

.geography-section .uk-container {
	padding-bottom: 60px;
}

.geography-text-block {
	max-width: 538px;
	display: flex;
	flex-direction: column;
}

/* CTA SECTION */
.cta-section {
	position: relative;
	overflow: hidden;
	min-height: 980px;
}

.cta-background {
	max-width: 1200px;
	left: 50% !important;
	right: auto !important;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
}

.cta-bg-image {
	object-position: center center;
}

@media (max-width: 960px) {
	.cta-section {
		min-height: auto;
		padding-bottom: 80px; 
	}
	
	.cta-background {
		 height: 100%;
		 min-height: 500px;
	}
}

.cta-bottom-gradient {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 195px;
	background: linear-gradient(
		to top,
		rgba(8, 8, 8, 1) 0%,
		rgba(8, 8, 8, 0) 100%
	);
	z-index: 1;
}

.cta-content {
	position: relative;
	z-index: 2;
}

/* FAQ SECTION */
.faq-section {
	background-color: var(--color-black);
}

.faq-section .uk-accordion-title {
	color: var(--color-white);
	font-size: 16px;
	font-family: "TTLakesNeueExp-DBold", var(--font-heading);
	letter-spacing: -0.64px;
	padding: 25px 0;
	background-color: transparent;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	border-left: none;
	border-right: none;
	border-radius: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	text-align: left;
}

.faq-section .uk-accordion-title span:first-child {
	flex: 1;
	margin-right: 20px;
}

.faq-section .uk-accordion-title:hover {
	background-color: transparent;
	border-color: var(--border-color);
}

.faq-section .uk-accordion-title::before {
	display: none;
}

.faq-section .uk-accordion-title {
	position: relative;
	padding-right: 40px;
}

.faq-section .uk-accordion-title::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	background-image: url("../img/arrow-down.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: all 0.3s ease;
}

.faq-section .uk-open > .uk-accordion-title::after {
	background-image: url("../img/arrow-up.svg");
}

.faq-section li:first-child .uk-accordion-title {
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}

.faq-section li:not(:first-child) .uk-accordion-title {
	border-top: none;
	border-bottom: 1px solid var(--border-color);
}

.faq-arrow {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	display: block;
	transition: opacity 0.3s ease;
}

.faq-section li:not(.uk-open) .faq-arrow {
	opacity: 1;
}

.faq-section li.uk-open .faq-arrow {
	opacity: 1;
}

.faq-section .uk-accordion-content {
	padding: 0 0 25px 0;
	color: var(--color-white);
	background-color: transparent;
	border: none;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 300;
	font-family: var(--font-primary);
	margin-top: 20px;
}

/* JOIN TEAM SECTION */

.join-team-section .uk-container {
	margin: 0;
	padding: 0;
}

.join-team-bg-ellipse {
	width: 2076.99px;
	height: 769.972px;
	left: 0px;
	top: 0px;
	background-image: url("../img/back-ellipse.svg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 0;
}

.join-team-bg-text {
	position: absolute;
	bottom: -40px;
	font-family: "TTLakesNeueExp-DBold", var(--font-heading);
	font-size: 300px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.03);
	letter-spacing: 41px;
	line-height: 1;
	z-index: 0;
	pointer-events: none;
	white-space: nowrap;
}

.join-team-content {
	position: relative;
	z-index: 1;
	max-width: 672px;
}

/* CONTACT SECTION */
.contact-section {
	background-color: var(--color-black);
}

.contact-section .uk-container {
	position: relative;
	z-index: 2;
}

.contact-section .section-title span {
	color: var(--color-orange);
}

.contact-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.contact-electric-line {
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: auto;
	z-index: 1;
}

.contact-link {
	color: var(--color-white);
	text-decoration: none;
	border-bottom: 1px solid var(--border-light);
	padding: var(--spacing-sm);
	display: inline-flex;
	transition: var(--transition);
}

.contact-link:hover {
	color: var(--color-orange);
	border-bottom-color: var(--color-orange);
}

.contact-form {
	background-color: var(--color-dark);
	border: 1px solid var(--border-light);
	border-radius: 10px;
	padding: 40px;
}

.uk-form-label {
	color: var(--text-secondary);
	font-size: 13px;
	margin-bottom: 10px;
}

.uk-input {
	background-color: var(--color-dark-input);
	border: 1px solid var(--border-color);
	color: var(--color-white);
	height: 50px;
	border-radius: 5px;
}

.uk-input:focus {
	border-color: var(--color-orange);
	background-color: var(--color-dark-input);
}

.cooperation-radio-group {
	width: 100%;
}

.cooperation-radio-label {
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--color-white);
	font-size: 16px;
}

.uk-radio {
	background-color: transparent;
	border: 1px solid var(--color-light-gray);
	width: 20px;
	height: 20px;
}

.uk-radio:checked {
	background-color: var(--color-orange);
	background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2210%22%20height%3D%2210%22%20viewBox%3D%220%200%2010%2010%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ccircle%20cx%3D%225%22%20cy%3D%225%22%20r%3D%225%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
	border-color: var(--color-orange);
	background-size: 8px 8px;
}

/* Login Modal styles now handled by standard UIkit classes */
.uk-modal-body {
	padding: 50px 50px 40px 50px;
}

/* Ensure inputs in modal have correct colors if not covered globally */
.uk-modal-body .uk-input {
	background-color: var(--color-dark-input);
	border: 1px solid var(--border-color);
	color: var(--color-white);
}

.uk-modal-body .uk-input:focus {
	border-color: var(--color-orange);
}

/* FOOTER */
.uk-button-primary {
	background-color: var(--color-white);
	color: var(--color-black);
}

.uk-button-primary:hover {
	background-color: var(--color-orange);
	color: var(--color-white);
}

.btn-icon {
	width: 32px;
	height: 32px;
	background: var(--color-dark);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.btn-icon svg {
	color: var(--color-white);
	width: 20px;
	height: 20px;
}

.uk-button-primary:hover .btn-icon {
	background: var(--color-white);
}

.uk-button-primary:hover .btn-icon svg {
	color: var(--color-orange);
	transform: translate(3px, -3px);
}

.uk-button-default {
	border: 1px solid var(--color-orange) !important;
	color: var(--color-white);
	border-radius: 5px;
	transition: var(--transition);
}

.uk-button-default:hover {
	background-color: var(--color-orange);
	color: var(--color-white);
	border-color: var(--color-orange) !important;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--color-dark);
}

::-webkit-scrollbar-thumb {
	background: var(--color-orange);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--color-orange-hover);
}
