/* Gallery Modal Styles */
.gallery-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}
.gallery-modal-img {
	max-width: 90vw;
	max-height: 80vh;
	border-radius: 16px;
	box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.gallery-modal-close {
	position: absolute;
	top: 30px;
	right: 50px;
	font-size: 3rem;
	color: #fff;
	cursor: pointer;
	font-weight: bold;
	z-index: 10000;
	transition: color 0.2s;
}
.gallery-modal-close:hover {
	color: var(--accent);
}
/* Gallery Section Styles */
.gallery {
	padding: var(--section-spacing) 0;
	background: #f8f9fa;
}
.gallery h2 {
	text-align: center;
	margin-bottom: 40px;
}
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}
.gallery-item {
	background: white;
	border-radius: 16px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.08);
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item:hover {
	transform: scale(1.03);
	box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
.gallery-item img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}
/* Poprawka widoczności emoji flag */
.country-flag {
	font-size: 2rem;
	font-family: 'Segoe UI Emoji', 'Noto Color Emoji', 'Apple Color Emoji', sans-serif;
	line-height: 1;
}

:root {
	--primary: #0056b3;
	--primary-dark: #003a7a;
	--secondary: #e63946;
	--accent: #2a9d8f;
	--accent-light: #4cc9b8;
	--dark: #1d3557;
	--darker: #0d1a2d;
	--light: #f8f9fa;
	--lighter: #ffffff;
	--gray: #6c757d;
	--transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
	--shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
	--shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.25);
	--radius: 16px;
            --section-spacing: 160px;
}
/* Screen-reader only helper */
.sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}
body {
	font-family: 'Roboto', sans-serif;
	line-height: 1.8;
	color: #333;
	background-color: #fff;
	overflow-x: hidden;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	position: relative;
}
body::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(0, 86, 179, 0.03)" stroke-width="1"/></svg>');
	z-index: -1;
	opacity: 0.8;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	margin-bottom: 1.5rem;
	color: var(--dark);
	line-height: 1.2;
}
h1 {
	font-size: clamp(2.8rem, 6vw, 4.5rem);
	letter-spacing: -0.03em;
}
h2 {
	position: relative;
	padding-bottom: 25px;
	text-align: center;
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	margin-bottom: 3rem;
}
h2:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 6px;
	background: var(--secondary);
	border-radius: 3px;
}
p {
	font-size: clamp(1rem, 1.8vw, 1.15rem);
	margin-bottom: 1.8rem;
	color: #444;
	line-height: 1.8;
}
.container {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 40px;
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 18px 42px;
	background: var(--primary);
	color: white;
	text-decoration: none;
	border-radius: 60px;
	font-weight: 700;
	transition: var(--transition);
	border: none;
	cursor: pointer;
	text-align: center;
	box-shadow: var(--shadow);
	font-size: clamp(1rem, 1.2vw, 1.1rem);
	letter-spacing: 0.8px;
	text-transform: uppercase;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--secondary);
	transform: translateX(-100%);
	transition: var(--transition);
	z-index: -1;
}
.btn:hover::before {
	transform: translateX(0);
}
.btn:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
}
.btn i {
	margin-left: 12px;
	transition: transform 0.4s ease;
}
.btn:hover i {
	transform: translateX(5px);
}
.btn-secondary {
	background: #c62835; /* darker red for better contrast */
	color: #ffffff;
}
.btn-secondary::before {
	background: var(--primary);
}
.btn-outline {
	background: transparent;
	border: 2px solid var(--primary);
	color: var(--primary);
	box-shadow: none;
}
.btn-outline::before {
	background: var(--primary);
}
.btn-outline:hover {
	color: white;
}
/* Header Styles */
header {
	background: rgba(255, 255, 255, 0.96);
	color: var(--dark);
	padding: 5px 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(12px);
	transition: var(--transition);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
header.scrolled {
	padding: 15px 0;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}
.logo-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	color: white;
	font-size: 1.8rem;
	font-weight: 700;
}
.logo-text {
	display: flex;
	flex-direction: column;
}
.logo-primary {
	font-size: clamp(1.4rem, 2vw, 1.8rem);
	font-weight: 900;
	color: var(--primary);
	line-height: 1.1;
}
.logo-secondary {
	font-size: clamp(0.9rem, 1.2vw, 1rem);
	font-weight: 600;
	color: var(--dark);
	letter-spacing: 1.5px;
}
nav ul {
	display: flex;
	list-style: none;
	gap: 35px;
}
nav li {
	position: relative;
}
nav a {
	color: var(--dark);
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	padding: 8px 0;
	position: relative;
	font-size: clamp(0.95rem, 1.2vw, 1.1rem);
	display: block;
}
nav a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--secondary);
	transition: var(--transition);
}
nav a:hover:after {
	width: 100%;
}
nav a:hover {
	color: var(--secondary);
}
.nav-cta {
	margin-left: 40px;
}
.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: var(--dark);
	font-size: 1.8rem;
	cursor: pointer;
	z-index: 1001;
}
/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 180px 0 100px;
	position: relative;
	overflow: hidden;
}
.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(110deg, rgba(29, 53, 87, 0.92) 40%, rgba(29, 53, 87, 0.85) 100%);
	/* ensure hero background sits behind content but above page background */
	z-index: -1;
}
/* Hero LCP image placed as <img>. Ensure it covers the bg */
.hero-bg .hero-lcp{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
.hero-content {
	max-width: 800px;
	color: white;
	position: relative;
	z-index: 2;
}
.hero {
	/* fallback background if .hero-bg image doesn't load or is hidden */
	background: linear-gradient(110deg, rgba(29, 53, 87, 0.92) 40%, rgba(29, 53, 87, 0.75) 70%);
}
.hero h1 {
	margin-bottom: 2rem;
	color: white;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.hero p {
	font-size: clamp(1.1rem, 1.8vw, 1.4rem);
	margin-bottom: 3rem;
	opacity: 0.9;
	max-width: 700px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.92);
}
.hero-btns {
	display: flex;
	gap: 25px;
	margin-top: 40px;
	flex-wrap: wrap;
}
.hero-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 100px;
	max-width: 1200px;
}
.stat-card {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(12px);
	border-radius: var(--radius);
	padding: 35px 30px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}
.stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(230, 57, 70, 0.2) 0%, rgba(42, 157, 143, 0.2) 100%);
	z-index: -1;
	opacity: 0;
	transition: var(--transition);
}
.stat-card:hover::before {
	opacity: 1;
}
.stat-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}
.stat-value {
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	font-weight: 900;
	color: white;
	margin-bottom: 10px;
	font-family: 'Montserrat', sans-serif;
	position: relative;
	display: inline-block;
}
.stat-value::after {
	content: '+';
	position: absolute;
	top: 0;
	right: -15px;
	font-size: 1.5rem;
}
.stat-label {
	font-size: clamp(1rem, 1.2vw, 1.1rem);
	opacity: 0.9;
    color: #e0e0e0;
	letter-spacing: 0.5px;
}
/* About Section */
.about {
	padding: var(--section-spacing) 0;
	background: var(--light);
	position: relative;
	overflow: hidden;
}
.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	position: relative;
	z-index: 2;
}
.about-image {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	height: 600px;
	background: url(../img/logo/about.webp) center/cover;
	position: relative;
}
.about-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, var(--primary) 0%, var(--accent) 100%);
	mix-blend-mode: multiply;
	opacity: 0.1;
}
.about-text h2 {
	text-align: left;
}
.about-text h2:after {
	left: 0;
	transform: none;
}
.about-text p {
	margin-bottom: 25px;
}
/* Ensure about section paragraphs are dark for readability */
.about .about-text p {
	color: var(--dark);
}
.highlight {
	background: linear-gradient(120deg, rgba(42, 157, 143, 0.1) 0%, rgba(42, 157, 143, 0) 100%);
	border-left: 4px solid var(--accent);
	padding: 35px;
	border-radius: 0 var(--radius) var(--radius) 0;
	margin: 40px 0;
	position: relative;
	overflow: hidden;
}
.highlight::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(42, 157, 143, 0.08)" stroke-width="1"/></svg>');
	opacity: 0.5;
}
.highlight p {
	font-style: italic;
	font-weight: 500;
	font-size: 1.3rem;
	margin-bottom: 0;
	color: var(--dark);
	position: relative;
	z-index: 1;
}
/* Services Section */
.services {
	padding: var(--section-spacing) 0;
	background: white;
	position: relative;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 50px;
	margin-top: 60px;
}
.service-card {
	background: var(--lighter);
	border-radius: var(--radius);
	padding: 60px 45px;
	text-align: center;
	transition: var(--transition);
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.03);
}
.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
	opacity: 0;
	transition: var(--transition);
	z-index: -1;
}
.service-card:hover::before {
	opacity: 0.05;
}
.service-card:hover {
	transform: translateY(-20px);
	box-shadow: var(--shadow-hover);
}
.service-icon {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 35px;
	color: white;
	font-size: 2.8rem;
	transition: var(--transition);
}
.service-card:hover .service-icon {
	transform: scale(1.1) rotate(5deg);
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.service-card h3 {
	margin-bottom: 25px;
	color: var(--dark);
	font-size: clamp(1.6rem, 2vw, 1.8rem);
}
.service-card p {
	color: var(--gray);
	line-height: 1.8;
}
/* Products Section */
.products {
	padding: var(--section-spacing) 0;
	background-attachment: fixed;
	position: relative;
}
.products::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, rgba(29, 53, 87, 0.03) 0%, rgba(42, 157, 143, 0.03) 100%);
	z-index: 0;
}
.categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-top: 60px;
	position: relative;
	z-index: 1;
}
.category-card {
	background: white;
	border-radius: var(--radius);
	padding: 45px 35px;
	text-align: center;
	transition: var(--transition);
	box-shadow: var(--shadow);
	border: 1px solid rgba(0, 0, 0, 0.05);
	position: relative;
	overflow: hidden;
}
.category-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: var(--primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: var(--transition);
}
.category-card:hover::before {
	transform: scaleX(1);
}
.category-card:hover {
	transform: translateY(-15px);
	box-shadow: var(--shadow-hover);
}
.category-icon {
	font-size: 3.5rem;
	color: var(--primary);
	margin-bottom: 30px;
	transition: var(--transition);
	display: inline-block;
}
.category-card:hover .category-icon {
	color: var(--secondary);
	transform: scale(1.1);
}
.category-card h3 {
	margin-bottom: 20px;
	font-size: clamp(1.5rem, 1.8vw, 1.7rem);
}
.category-card ul {
	list-style: none;
	text-align: left;
	margin-top: 25px;
}
.category-card li {
	padding: 12px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	display: flex;
	align-items: center;
	font-size: clamp(0.95rem, 1.1vw, 1.05rem);
}
.category-card li:before {
	content: '✓';
	color: var(--accent);
	font-weight: bold;
	margin-right: 12px;
	font-size: 1.2rem;
}
/* Global Section */
.global {
	padding: var(--section-spacing) 0;
	background: linear-gradient(135deg, var(--dark) 0%, #0d1a2d 100%);
	color: white;
	position: relative;
	overflow: hidden;
}
.global h2 {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}
.global p{
    margin-bottom: 25px;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.8;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.85);
}
.global-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	position: relative;
	z-index: 2;
}
.map-container {
	height: 600px;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	position: relative;
}
.global-text h2 {
	color: white;
	text-align: left;
}
.global-text h2:after {
	left: 0;
	transform: none;
	background: var(--accent-light);
}
.global-text p {
	margin-bottom: 25px;
	font-size: clamp(1rem, 1.3vw, 1.15rem);
	line-height: 1.8;
	opacity: 0.9;
	color: rgba(255, 255, 255, 0.85);
}
.countries-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 40px;
}
.country-item {
	display: flex;
	align-items: center;
	padding: 15px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	transition: var(--transition);
}
.country-item:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-5px);
}
.country-flag {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.15);
	font-size: 1.5rem;
	flex-shrink: 0;
}
.country-name {
	font-weight: 500;
	font-size: clamp(1rem, 1.2vw, 1.1rem);
}
/* Contact Section */
.contact {
	padding: var(--section-spacing) 0;
	background: white;
}
.contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	margin-top: 60px;
}
.contact-info {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	border-radius: var(--radius);
	padding: 60px;
	color: white;
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
}
.contact-info::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(255, 255, 255, 0.08)" stroke-width="1"/></svg>');
}
.contact-info h2 {
	color: white;
	text-align: left;
}
.contact-info h2:after {
	left: 0;
	transform: none;
	background: var(--accent-light);
}
.contact-details {
	margin-top: 50px;
}
.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 35px;
}
.contact-icon {
	background: var(--secondary);
	width: 70px;
	height: 70px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 25px;
	flex-shrink: 0;
	font-size: 1.8rem;
	transition: var(--transition);
}
.contact-item:hover .contact-icon {
	transform: rotate(10deg) scale(1.1);
	border-radius: 50% 20% 50% 20%;
}
.contact-text h4 {
	color: var(--accent-light);
	margin-bottom: 5px;
	font-size: clamp(1.2rem, 1.4vw, 1.3rem);
}
.contact-text p {
	font-size: clamp(1rem, 1.2vw, 1.1rem);
	opacity: 0.9;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 0;
}
.contact-form form {
	background: white;
	padding: 60px;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}
.contact-info p {
	font-size: clamp(1rem, 1.8vw, 1.15rem);
	color: #ffffff;
}
.form-group {
	margin-bottom: 30px;
}
.form-group label {
	display: block;
	margin-bottom: 15px;
	font-weight: 700;
	color: var(--dark);
	font-size: clamp(1rem, 1.1vw, 1.05rem);
}
.form-control {
	width: 100%;
	padding: 18px 24px;
	border-radius: 12px;
	border: 2px solid #e0e0e0;
	background: #f8f9fa;
	color: var(--dark);
	font-size: clamp(1rem, 1.1vw, 1.05rem);
	transition: var(--transition);
	font-family: 'Roboto', sans-serif;
}
.form-control:focus {
	outline: none;
	border-color: var(--primary);
	background: white;
	box-shadow: 0 0 0 5px rgba(0, 86, 179, 0.15);
}
textarea.form-control {
	min-height: 180px;
	resize: vertical;
}
/* Footer */
footer {
	background: var(--darker);
	color: rgba(255, 255, 255, 0.8);
	padding: 120px 0 50px;
	position: relative;
}

/* Ensure h3 inside footer is white (overrides global h1-h6 color) */
footer h3 {
	color: #ffffff;
}
footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}
.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 60px;
	margin-bottom: 80px;
}
.footer-logo {
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
}
.footer-logo-icon {
	font-size: 3rem;
	font-weight: 900;
	color: var(--accent-light);
	line-height: 1;
	margin-bottom: 15px;
}
.footer-logo-text {
	font-size: clamp(1.6rem, 2vw, 1.8rem);
	font-weight: 900;
	color: white;
}
.footer-about p {
	margin-bottom: 30px;
	font-size: clamp(1rem, 1.1vw, 1.05rem);
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.7);
}
.social-links {
	display: flex;
	gap: 18px;
}
.social-link {
	width: 55px;
	height: 55px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: white;
	transition: var(--transition);
}
.social-link:hover {
	background: var(--primary);
	transform: translateY(-8px);
}
.footer-links h4 {
	color: white;
	margin-bottom: 30px;
	padding-bottom: 12px;
	border-bottom: 3px solid var(--accent);
	display: inline-block;
	font-size: clamp(1.3rem, 1.5vw, 1.4rem);
}
.footer-links ul {
	list-style: none;
}
.footer-links li {
	margin-bottom: 18px;
}
.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: var(--transition);
	font-size: clamp(1rem, 1.1vw, 1.05rem);
	display: flex;
	align-items: center;
}
.footer-links a i {
	margin-right: 15px;
	width: 25px;
	color: var(--accent-light);
	transition: var(--transition);
}
.footer-links a:hover {
	color: var(--accent-light);
	padding-left: 8px;
}
.footer-links a:hover i {
	transform: rotate(15deg);
	color: var(--accent-light);
}
.footer-bottom {
	text-align: center;
	padding-top: 50px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: clamp(0.95rem, 1.1vw, 1rem);
	color: rgba(255, 255, 255, 0.5);
}
/* Footer credit: small white text and no text-decoration for links */
.footer-credit{
	font-size: 0.75rem;
	color: #ffffff;
	margin: 6px 0 0;
	opacity: 0.95;
	text-decoration: none;
}
.footer-credit a{
	color: inherit;
	text-decoration: none;
}
.footer-credit a:hover{
	color: var(--accent-light);
}
/* Animations */
@keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
            100% {
                transform: translateY(0px);
            }
        }
.floating {
	animation: float 8s ease-in-out infinite;
}
/* 3D Canvas */
#machine-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.15;
}
/* Responsive Styles */
@media (max-width: 1400px) {
.hero-stats {
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
}
}
@media (max-width: 1200px) {
:root {
	--section-spacing: 120px;
}
.about-content, .global-content, .contact-container {
	grid-template-columns: 1fr;
	gap: 60px;
}
.about-text h2, .global-text h2 {
	text-align: center;
}
.about-text h2:after, .global-text h2:after {
	left: 50%;
	transform: translateX(-50%);
}
.map-container {
	height: 500px;
	order: -1;
}
}
@media (max-width: 992px) {
nav ul {
	position: fixed;
	top: 0;
	right: -100%;
	width: 320px;
	height: 100vh;
	background: white;
	flex-direction: column;
	padding: 100px 40px 40px;
	box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
	transition: var(--transition);
	z-index: 1000;
	gap: 25px;
	/* center items horizontally in the mobile menu */
	align-items: center;
}
nav ul.active {
	right: 0;
}
nav li {
	margin: 0;
}
.nav-cta {
	margin: 30px auto 0;
	width: 100%;
	display: flex;
	justify-content: center;
}
.mobile-menu-btn {
	display: block;
}
.hero-btns {
	flex-direction: column;
	gap: 20px;
}
.hero-stats {
	margin-top: 60px;
}
.services-grid, .categories-grid {
	grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
:root {
	--section-spacing: 100px;
}
.container {
	padding: 0 30px;
}
.hero {
	padding: 150px 0 80px;
}
.about-image {
	height: 450px;
}
.service-card, .contact-form form, .contact-info {
	padding: 40px 30px;
}
.countries-grid {
	grid-template-columns: 1fr;
}
}
@media (max-width: 576px) {
.hero-stats {
	grid-template-columns: 1fr;
}
.stat-card {
	padding: 30px;
}
}

/* Accessibility: visible focus styles for keyboard users */
.lang-list a:focus, .lang-list a:focus-visible {
	outline: 3px solid rgba(0,86,179,0.18);
	background: #f1f6fb;
}
.lang-toggle:focus, .lang-toggle:focus-visible {
	outline: 3px solid rgba(42,157,143,0.18);
	box-shadow: 0 6px 18px rgba(10,20,40,0.12);
}
/* general focus-visible for interactive elements */
a:focus-visible, button:focus-visible, .btn:focus-visible {
	outline: 3px solid rgba(0,86,179,0.16);
	outline-offset: 3px;
}
