/* Line Up Masters - Dark Supermodern Theme */
:root {
	--primary-color: #16ce78;
	--secondary-color: #00b649;
	--accent-color: #ff6b35;
	--bg-dark: #0a0a0a;
	--bg-darker: #000000;
	--bg-card: #1a1a1a;
	--text-primary: #ffffff;
	--text-secondary: #b0b0b0;
	--text-muted: #666666;
	--border-color: #333333;
	--gradient-primary: linear-gradient(135deg, #16ce78 0%, #00cc4b 100%);
	--gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
	--shadow-glow: 0 0 30px rgba(0, 255, 166, 0.3);
	--shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
	background: var(--bg-dark);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--bg-darker);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	transition: opacity 0.5s ease;
}

.loading-spinner {
	width: 60px;
	height: 60px;
	border: 3px solid var(--border-color);
	border-top: 3px solid var(--primary-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Navbar */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border-color);
	z-index: 1000;
	padding: 1rem 0;
	transition: all 0.3s ease;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 2rem;
}

.logo img {
	height: 100px;
	transition: transform 0.3s ease;
}

.logo img:hover {
	transform: scale(1.05);
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-link {
	color: var(--text-primary);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

.nav-link:hover {
	color: var(--primary-color);
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient-primary);
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: var(--text-primary);
	transition: all 0.3s ease;
}

/* Hero Section */
.hero {
	display: flex;
	align-items: center;
	background: var(--gradient-dark);
	position: relative;
	overflow: hidden;
	padding: 9rem 0;
	padding-bottom: 3rem;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		circle at 30% 20%,
		rgba(0, 212, 255, 0.1) 0%,
		transparent 50%
	);
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	position: relative;
	z-index: 2;
}
.hero-container-blog {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	position: relative;
	z-index: 2;
}
.hero-content {
	max-width: 600px;
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: fadeInUp 1s ease;
}

.hero p {
	font-size: 1.2rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	animation: fadeInUp 1s ease 0.2s both;
}

.btn {
	display: inline-block;
	padding: 0.6rem 2rem;
	background: var(--gradient-primary);
	color: white;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	animation: fadeInUp 1s ease 0.4s both;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-glow);
}

/* Sections */
.section {
	padding: 5rem 0;
	padding-top: 7rem;
}

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

.section-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 3rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Cards */
.card {
	background: var(--bg-card);
	border-radius: 20px;
	padding: 2rem;
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gradient-primary);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-card);
}

.card:hover::before {
	transform: scaleX(1);
}

/* Grid */
.grid {
	display: grid;
	gap: 2rem;
}

.grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Footer */
.footer {
	background: var(--bg-darker);
	border-top: 1px solid var(--border-color);
	padding: 3rem 0 1rem;
}

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

.footer-section h3 {
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--primary-color);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid var(--border-color);
	color: var(--text-muted);
}

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 15px;
	padding: 1.5rem;
	max-width: 400px;
	z-index: 1001;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.3s ease;
}

.cookie-popup.show {
	transform: translateY(0);
	opacity: 1;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.btn-small {
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
}

.btn-outline {
	background: transparent;
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
}

/* Go to Top */
.go-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 50px;
	height: 50px;
	background: var(--gradient-primary);
	border: none;
	border-radius: 50%;
	color: white;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 1000;
}

.go-to-top.show {
	opacity: 1;
	visibility: visible;
}

.go-to-top:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-glow);
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-up {
	animation: fadeInUp 0.8s ease;
}

/* Form Styles */
.form-group {
	margin-bottom: 1.5rem;
}

.form-label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
	font-weight: 500;
}

.form-input {
	width: 100%;
	padding: 1rem;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 10px;
	color: var(--text-primary);
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-input:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-textarea {
	min-height: 120px;
	resize: vertical;
}

/* Notification */
.notification {
	position: fixed;
	top: 2rem;
	right: 2rem;
	background: var(--bg-card);
	border: 1px solid var(--primary-color);
	border-radius: 10px;
	padding: 1rem 1.5rem;
	z-index: 1002;
	transform: translateX(400px);
	opacity: 0;
	transition: all 0.3s ease;
}

.notification.show {
	transform: translateX(0);
	opacity: 1;
}

.notification.success {
	border-color: #00ff88;
	background: rgba(0, 255, 136, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 80px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 80px);
		background: rgba(10, 10, 10, 0.98);
		backdrop-filter: blur(20px);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transition: left 0.3s ease;
	}

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

	/* Hero Section Mobile Centering */
	.hero-content {
		text-align: center;
		max-width: 100%;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.hero p {
		font-size: 1rem;
	}

	/* Section Titles and Content Centering */
	.section {
		text-align: center;
	}

	.section-title {
		font-size: 2rem;
	}

	.container {
		padding: 0 1rem;
	}

	/* Cards Mobile Centering */
	.card {
		text-align: center;

		margin: 0 auto 0.5rem auto;
	}

	.card h3 {
		text-align: center;
	}

	.card p {
		text-align: center;
	}

	/* Grid Mobile Centering */
	.grid {
		justify-items: center;
	}

	.grid-2,
	.grid-3,
	.grid-4 {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin: 0 auto;
	}

	/* Professional Testimonials Mobile */
	.testimonials-section {
		padding: 4rem 0;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
		max-width: 400px;
		margin: 0 auto 3rem auto;
	}

	.testimonial-card {
		padding: 2rem;
		text-align: center;
	}

	.testimonial-header {
		justify-content: center;
		gap: 1rem;
	}

	.testimonial-author {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.logos-grid {
		gap: 1.5rem;
	}

	.logo-item {
		min-width: 80px;
	}

	/* Product Grid Mobile - FORCE 1 PER ROW */
	#productGrid,
	.grid-3,
	.products-grid,
	.product-grid {
		grid-template-columns: 1fr !important;
		gap: 1.5rem;
		display: grid !important;
	}

	/* Individual Product Cards Mobile */
	.product-card,
	#productGrid .card,
	#productGrid > div {
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 auto !important;
	}

	/* Cart Items Mobile - 1 per row */
	.cart-items,
	.cart-grid,
	.shopping-cart-items {
		grid-template-columns: 1fr !important;
		gap: 1rem;
	}

	/* Blog Preview Mobile Centering */
	.section .grid .card {
		max-width: 350px;
	}

	/* Footer Mobile Centering */
	.footer-content {
		text-align: center;
	}

	.footer-section {
		text-align: center;
	}

	.footer-links {
		text-align: center;
	}

	.cookie-popup {
		bottom: 1rem;
		right: 1rem;
		left: 1rem;
		max-width: none;
	}

	/* Contact Information Mobile Centering */
	.contact-info-item {
		flex-direction: column;
		text-align: center;
		align-items: center;
		gap: 0.5rem;
	}

	.contact-info-item i {
		margin-right: 0 !important;
	}

	/* Blog Post Meta Mobile Centering */
	.hero-content > div:last-child {
		flex-direction: column !important;
		gap: 1rem !important;
	}

	/* Leadership Team Mobile Icons */
	.card div[style*="120px"] {
		width: 60px !important;
		height: 60px !important;
	}

	.card div[style*="120px"] i {
		font-size: 1.5rem !important;
	}

	/* FINAL OVERRIDE - Products must be 1 per row on mobile */
	.container #productGrid,
	.section #productGrid,
	div#productGrid {
		grid-template-columns: 1fr !important;
		display: grid !important;
	}
}

/* Hero Video Styles */
.hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 2;
}

.hero-container {
	position: relative;
	z-index: 3;
	width: 100%;
	height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-container-blog {
	position: relative;
	z-index: 3;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-content {
	text-align: center;
}

/* Featured Products Grid */
#featuredProducts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

/* Blog Description Truncation */
.card p[style*="text-secondary"] {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.5;
	min-height: 3em;
}

/* Professional Testimonials Section */
.testimonials-section {
	padding: 6rem 0;
}

.testimonials-header {
	text-align: center;
	margin-bottom: 4rem;
}

.testimonials-subtitle {
	font-size: 1.2rem;
	color: var(--text-secondary);
	margin-top: 1rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
	margin-bottom: 4rem;
}

.testimonial-card {
	background: var(--bg-card);
	border-radius: 20px;
	padding: 2.5rem;
	border: 1px solid var(--border-color);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-primary);
}

.testimonial-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
	border-color: var(--primary-color);
}

.testimonial-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
}

.quote-icon i {
	font-size: 2rem;
	color: var(--primary-color);
	opacity: 0.7;
}

.rating {
	display: flex;
	gap: 0.3rem;
}

.rating i {
	color: #ffd700;
	font-size: 1rem;
}

.testimonial-content {
	margin-bottom: 2rem;
}

.testimonial-text {
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--text-primary);
	font-style: italic;
	margin: 0;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.author-avatar {
	flex-shrink: 0;
}

.avatar-placeholder {
	width: 60px;
	height: 60px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.avatar-placeholder i {
	color: white;
	font-size: 1.5rem;
}

.author-info {
	flex: 1;
}

.author-name {
	color: var(--text-primary);
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0 0 0.3rem 0;
}

.author-title {
	color: var(--primary-color);
	font-size: 0.95rem;
	font-weight: 500;
	margin: 0 0 0.2rem 0;
}

.author-company {
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin: 0;
}

.company-logo {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	background: rgba(0, 212, 255, 0.1);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.company-logo i {
	color: var(--primary-color);
	font-size: 1.2rem;
}

/* Client Logos Section */
.client-logos {
	text-align: center;
	padding-top: 3rem;
	border-top: 1px solid var(--border-color);
}

.client-logos-title {
	color: var(--text-secondary);
	font-size: 1.1rem;
	font-weight: 500;
	margin-bottom: 2rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.logos-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.logo-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem;
	border-radius: 10px;
	transition: all 0.3s ease;
	opacity: 0.7;
}

.logo-item:hover {
	opacity: 1;
	transform: translateY(-2px);
}

.logo-item i {
	font-size: 2rem;
	color: var(--primary-color);
}

.logo-item span {
	font-size: 0.9rem;
	color: var(--text-secondary);
	font-weight: 500;
}

/* Slick Slider Overrides */
.slick-dots {
	bottom: -50px;
}

.slick-dots li button:before {
	color: var(--primary-color);
	font-size: 12px;
}

.slick-prev,
.slick-next {
	z-index: 1;
}

.slick-prev:before,
.slick-next:before {
	color: var(--primary-color);
	font-size: 20px;
}

/* Modal */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1003;
	backdrop-filter: blur(10px);
}

.modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: var(--bg-card);
	border-radius: 20px;
	padding: 2rem;
	max-width: 500px;
	width: 90%;
	border: 1px solid var(--border-color);
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.modal-close {
	background: none;
	border: none;
	color: var(--text-primary);
	font-size: 1.5rem;
	cursor: pointer;
}

/* Product Cards */
.product-card h3 {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.3;
	margin-bottom: 0.5rem;
	min-height: 1.3em;
}

.product-card p:not(.price) {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.5;
	min-height: 3em;
	margin-bottom: 1rem;
}

.product-card .price {
	line-height: 1.2;
	margin: 0.5rem 0;
}

/* Products Grid - 3 per row */
#productGrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

/* Tablet responsive for products - only for screens between 768px and 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
	#productGrid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
}

/* Accordion */
.accordion-item {
	border: 1px solid var(--border-color);
	border-radius: 10px;
	margin-bottom: 1rem;
	overflow: hidden;
}

.accordion-header {
	background: var(--bg-card);
	padding: 1rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.3s ease;
}

.accordion-header:hover {
	background: var(--border-color);
}

.accordion-content {
	padding: 0 1rem;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.accordion-content.active {
	padding: 1rem;
	max-height: 500px;
}

/* Search and Filter */
.search-filter-container {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.search-input {
	flex: 1;
	min-width: 250px;
}

.filter-buttons {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 0.5rem 1rem;
	background: transparent;
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	cursor: pointer;
	transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
	background: var(--primary-color);
	color: white;
	border-color: var(--primary-color);
}
