:root {
	--primary: #a5be00;
	--secondary: #1e1e1e; /* Darker secondary for dark theme */
	--text: #ffffff;
	--bg: #121212;
	--font-main: 'Inter', sans-serif;
	--color-gray: #71717a;
	--card-bg: #1e1e1e;
	--text-muted: #a1a1aa;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	font-family: var(--font-main);
	color: var(--text);
	background: var(--bg);
	line-height: 1.6;
	padding-bottom: 60px;
	overflow-wrap: break-word;
}
@media (min-width: 768px) {
	body {
		padding-bottom: 0;
	}
}
a {
	text-decoration: none;
	color: inherit;
}
ul {
	list-style: none;
}

html {
	scroll-behavior: smooth;
}
/* Utility */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
.section {
	padding: 60px 0;
	border-bottom: 1px solid #333;
}

/* Animation */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.btn {
	display: inline-block;
	padding: 10px 20px;
	background: var(--primary);
	color: #fff;
	border-radius: 4px;
	font-weight: 600;
	transition: box-shadow 0.3s ease;
}
.btn:hover {
	box-shadow: 0 0 15px rgba(165, 190, 0, 0.6);
}
.btn-outline {
	background: transparent;
	border: 2px solid var(--primary);
	color: #fff;
	transition: box-shadow 0.3s ease;
}
.btn-outline:hover {
	background: var(--primary);
	color: #fff;
	box-shadow: 0 0 15px rgba(165, 190, 0, 0.6);
}

/* CTA Section Specifics */
.cta-section .btn {
	background: #fff !important;
	border: 2px solid #fff !important;
	color: var(--primary) !important;
}
.cta-section .btn:hover {
	box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}
.cta-section .btn-outline {
	background: var(--primary) !important;
	border: 2px solid #fff !important;
	color: #fff !important;
}
.cta-section .btn-outline:hover {
	background: rgba(255, 255, 255, 0.1) !important;
	color: #fff !important;
	box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.grid {
	display: grid;
	gap: 20px;
}
.grid-2 {
	grid-template-columns: 1fr;
}
.grid-3 {
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.grid-2 {
		grid-template-columns: 1fr 1fr;
	}
	.grid-3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Header */
header {
	background: rgba(18, 18, 18, 0.95);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(10px);
}
nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	font-size: 1.2rem;
	color: var(--primary);
}
.logo img {
	height: 32px;
	width: auto;
}

.nav-links {
	display: none;
	gap: 20px;
} /* Hidden by default (mobile) */
@media (min-width: 768px) {
	.nav-links {
		display: flex;
	}
}

.nav-links a {
	font-weight: 500;
	font-size: 0.9rem;
	text-transform: uppercase;
	color: var(--text);
}
.nav-links a:hover, .nav-links a.active {
	color: var(--primary);
}

.lang-switch-desktop {
	margin-left: 20px;
	font-weight: bold;
}

.mobile-header-right {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: bold;
}
@media (min-width: 768px) {
	.mobile-header-right {
		display: none;
	}
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 15px;
}
.gallery-img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 4px;
	background: #333;
	transition: transform 0.3s;
}
.gallery-img:hover {
	transform: scale(1.02);
}

/* Service Card Grid (for Services Page) */
.service-card {
	background: var(--secondary);
	padding: 25px;
	border-radius: 8px;
	border: 1px solid #333;
	transition: transform 0.3s;
}
.service-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary);
}
.service-card h3 {
	color: var(--primary);
	margin-bottom: 10px;
	font-size: 1.3rem;
}
.service-card p {
	color: var(--text-muted);
	font-size: 0.95rem;
}

/* Reference Card (Fixed Labeling) */
.ref-card {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	aspect-ratio: 4/3;
	background: #000;
}
.ref-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
	opacity: 0.8;
}
.ref-card:hover img {
	transform: scale(1.05);
	opacity: 1;
}
.ref-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
	color: #fff;
	padding: 20px;
	pointer-events: none;
}
.ref-info strong {
	font-size: 1.1rem;
	display: block;
	margin-bottom: 4px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}
.ref-info small {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Bottom Nav */
.bottom-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #1e1e1e;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 10px 0;
	z-index: 1000;
	border-top: 1px solid #333;
}
@media (min-width: 768px) {
	.bottom-nav {
		display: none;
	}
}

.bottom-nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 0.65rem;
	color: var(--text-muted);
	text-transform: uppercase;
	text-align: center;
	padding: 5px;
	max-width: 70px;
}
.bottom-nav-item svg {
	width: 24px;
	height: 24px;
	margin-bottom: 4px;
	fill: currentColor;
}
.bottom-nav-item.active {
	color: var(--primary);
}

/* Footer */
.site-footer {
	background: #080808;
	color: #a1a1aa;
	padding: 80px 0 30px;
	border-top: 1px solid #222;
	font-size: 0.95rem;
	text-align: left;
}
.footer-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 50px;
	margin-bottom: 60px;
}
@media (min-width: 600px) and (max-width: 900px) {
	.footer-content {
		grid-template-columns: 1fr 1fr;
	} /* Tablet: 2 columns */
}
@media (min-width: 900px) {
	.footer-content {
		grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	} /* Desktop: 4 columns */
}

.footer-col h3 {
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 25px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}
.footer-col ul {
	list-style: none;
	padding: 0;
}
.footer-col ul li {
	margin-bottom: 12px;
}
.footer-col ul li a {
	color: #a1a1aa;
	transition: color 0.2s, padding-left 0.2s;
	display: inline-block;
}
.footer-col ul li a:hover {
	color: var(--primary);
	padding-left: 5px;
}

.footer-logo {
	font-weight: 800;
	font-size: 1.6rem;
	margin-bottom: 20px;
	display: block;
	color: #fff;
	letter-spacing: -0.5px;
}
.about-col p {
	line-height: 1.7;
	max-width: 300px;
	margin-bottom: 25px;
	color: #888;
}

.social-icons {
	display: flex;
	gap: 15px;
}
.social-icons a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: #222;
	color: #fff;
	border-radius: 50%;
	transition: background 0.3s, transform 0.3s;
}
.social-icons a:hover {
	background: var(--primary);
	transform: translateY(-3px);
}
.social-icons svg {
	width: 18px;
	height: 18px;
}

.contact-list li {
	position: relative;
	padding-left: 0;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}
.contact-list li a:hover {
	color: var(--primary);
}

.footer-bottom {
	border-top: 1px solid #222;
	padding-top: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	color: #666;
	font-size: 0.85rem;
}
@media (min-width: 768px) {
	.footer-bottom {
		flex-direction: row;
		justify-content: space-between;
	}
}
.legal-links {
	display: flex;
	align-items: center;
}
.legal-links span {
	opacity: 0.7;
	cursor: pointer;
	transition: opacity 0.2s;
}
.legal-links span:hover {
	opacity: 1;
}

@media (max-width: 768px) {
	.legal-links {
		flex-direction: column;
		gap: 10px;
	}
	.legal-links span:nth-child(2) {
		display: none;
	}
	.legal-links span {
		margin: 0 !important;
	}
}

/* Common Component Styles that were in HomePage */
.section-title {
	font-size: 2rem;
	color: var(--primary);
	margin-bottom: 40px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* About / Credentials */
.credential-card {
	padding: 30px;
	background: linear-gradient(145deg, var(--secondary), #252525);
	border-radius: 8px;
	border: 1px solid #333;
	border-left: 5px solid var(--primary);
	transition: transform 0.3s, box-shadow 0.3s;
}
.credential-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.credential-card h3 {
	color: var(--text);
	font-size: 1.5rem;
	margin-bottom: 5px;
}
.credential-card .cred-subtitle {
	color: var(--primary);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.85rem;
	margin-bottom: 15px;
	display: block;
	letter-spacing: 1px;
}
.credential-card p {
	color: var(--text-muted);
	font-size: 1rem;
	line-height: 1.7;
}

/* Blog Content Styles */
.blog-content {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-muted);
}
.blog-content h2 {
	color: var(--primary);
	margin-top: 50px;
	margin-bottom: 25px;
	font-size: 2rem;
	border-bottom: 1px solid #333;
	padding-bottom: 10px;
}
.blog-content h3 {
	color: var(--text);
	margin-top: 40px;
	margin-bottom: 20px;
	font-size: 1.5rem;
}
.blog-content h4 {
	color: var(--text);
	margin-top: 30px;
	margin-bottom: 15px;
	font-size: 1.2rem;
}
.blog-content p {
	margin-bottom: 20px;
}
.blog-content ul, .blog-content ol {
	margin-bottom: 25px;
	padding-left: 25px;
}
.blog-content li {
	margin-bottom: 10px;
}
.blog-content strong {
	color: var(--text);
	font-weight: 600;
}
.blog-content blockquote {
	border-left: 4px solid var(--primary);
	padding-left: 20px;
	font-style: italic;
	color: var(--text);
	margin: 30px 0;
}

.hero {
	background: var(--bg);
	padding: 100px 0;
}
.hero h1 {
	font-size: 2.5rem;
	color: var(--primary);
	margin-bottom: 15px;
}
.hero h2 {
	font-size: 1.5rem;
	margin-bottom: 20px;
	font-weight: 400;
	color: var(--text);
}
.hero p {
	max-width: 800px;
	margin: 0;
	font-size: 1.1rem;
	color: var(--text-muted);
}

/* Hero Summary Responsive Visibility */
.hero-summary-desktop {
	display: none;
}
.hero-summary-mobile {
	display: block;
}

@media (min-width: 768px) {
	.hero-summary-desktop {
		display: block;
	}
	.hero-summary-mobile {
		display: none;
	}
}

/* Contact / CTA Styles */
.contact-cta {
	max-width: 800px;
	margin: 0;
}
.contact-cta h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	color: #fff;
}
.contact-cta p {
	font-size: 1.2rem;
	margin-bottom: 40px;
	color: rgba(255, 255, 255, 0.9);
}
.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: flex-start;
	flex-wrap: wrap;
}

@media (max-width: 768px) {
	.gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	}
	.gallery-img {
		height: 150px;
	}
	.hero h1 {
		font-size: 2rem;
	}
	.contact-cta h2 {
		font-size: 2rem;
	}
	.section-title {
		font-size: 1.75rem;
	}
	.blog-content h2 {
		font-size: 1.75rem;
	}
	.credential-card h3 {
		font-size: 1.3rem;
	}
}
