/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Light Theme Colors */
	--bg-primary: #f5f5f5;
	--bg-secondary: #e8e8e8;
	--bg-tertiary: #d1d5db;
	--text-primary: #1a202c;
	--text-secondary: #4a5568;
	--text-muted: #718096;
	--accent-primary: #667eea;
	--accent-secondary: #764ba2;
	--accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--accent-hover: #5a67d8;
	--border-color: #d1d5db;
	--shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	--shadow-large: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

	/* Product Colors */
	--product-1: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
	--product-2: linear-gradient(135deg, #4ecdc4 0%, #2ed573 100%);
	--product-3: linear-gradient(135deg, #a55eea 0%, #778beb 100%);

	/* Social Colors */
	--facebook: #1877f2;
	--instagram: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
	--twitter: #1da1f2;
	--tiktok: #000000;

	/* Transitions */
	--transition-fast: 0.15s ease;
	--transition-medium: 0.3s ease;
	--transition-slow: 0.5s ease;
}

[data-theme="dark"] {
	--bg-primary: #0f172a;
	--bg-secondary: #1e293b;
	--bg-tertiary: #334155;
	--text-primary: #f1f5f9;
	--text-secondary: #cbd5e1;
	--text-muted: #94a3b8;
	--accent-primary: #818cf8;
	--accent-secondary: #a78bfa;
	--accent-gradient: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
	--accent-hover: #6366f1;
	--border-color: #334155;
	--shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
	--shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
	--shadow-large: 0 25px 50px -12px rgba(0, 0, 0, 0.5);

	--tiktok: #ffffff;
}

body {
	font-family: "Inter", sans-serif;
	line-height: 1.6;
	color: var(--text-primary);
	background-color: var(--bg-primary);
	transition: background-color var(--transition-medium), color var(--transition-medium);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.2;
}

h1 {
	font-size: 3.5rem;
}
h2 {
	font-size: 2.5rem;
}
h3 {
	font-size: 1.875rem;
}
h4 {
	font-size: 1.25rem;
}

@media (max-width: 480px) {
	/* Extra small screens - phones */
	.container {
		padding: 0 1rem;
	}

	.nav-container {
		height: 5rem;
		padding: 0 1rem;
	}

	.logo-img {
		height: 4rem;
	}

	.nav-menu {
		top: 5rem;
		padding: 1rem;
	}

	.nav-link {
		padding: 1rem 0;
		font-size: 1.1rem;
		min-height: 44px;
		display: flex;
		align-items: center;
	}

	.theme-toggle {
		padding: 0.75rem;
		min-height: 44px;
		min-width: 44px;
	}

	.hamburger {
		padding: 0.5rem;
		min-height: 44px;
		min-width: 44px;
	}

	h1 {
		font-size: 2rem;
		line-height: 1.1;
	}
	h2 {
		font-size: 1.5rem;
	}
	h3 {
		font-size: 1.25rem;
	}

	.hero {
		padding: 8rem 0 2rem;
		text-align: center;
	}

	.stats {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.stat {
		padding: 1rem;
	}

	.stat h3 {
		font-size: 1.5rem;
	}

	.products-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.product-card {
		padding: 1rem;
	}

	/* Hide floating cards on mobile */
	.floating-cards {
		display: none;
	}

	.hero-visual {
		margin-top: 2rem;
		height: 200px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.hero-logo-icon {
		height: 8rem;
	}

	.btn {
		padding: 1rem 2rem;
		font-size: 1rem;
		min-height: 44px;
	}

	.contact-form input,
	.contact-form textarea {
		padding: 1rem;
		font-size: 1rem;
		min-height: 44px;
	}
}

@media (max-width: 768px) and (min-width: 481px) {
	/* Small tablets and large phones */
	.container {
		padding: 0 1.5rem;
	}

	.nav-container {
		height: 6rem;
		padding: 0 1.5rem;
	}

	.logo-img {
		height: 5rem;
	}

	.nav-menu {
		top: 6rem;
		padding: 1.5rem;
		gap: 0;
	}

	.nav-link {
		padding: 0.75rem 0;
	}
}

@media (max-width: 768px) {
	h1 {
		font-size: 2.5rem;
	}
	h2 {
		font-size: 2rem;
	}
	h3 {
		font-size: 1.5rem;
	}

	.footer-logo {
		height: 10rem;
	}
	.showcase-logo {
		height: 6rem;
	}
	.hero-logo-icon {
		height: 12rem;
	}

	.nav-menu {
		position: fixed;
		left: 0;
		right: 0;
		background: var(--bg-primary);
		border-top: 1px solid var(--border-color);
		flex-direction: column;
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all var(--transition-medium);
		gap: 0;
	}

	.nav-menu.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.nav-actions {
		display: flex;
		align-items: center;
		gap: 0.75rem;
	}

	.hamburger {
		display: flex;
	}

	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 2rem;
	}

	.hero-visual {
		height: 300px;
	}

	.card {
		font-size: 0.875rem;
		padding: 0.75rem 1rem;
	}

	.hero-container {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.hero-logo {
		order: 1;
	}

	.hero-content {
		order: 2;
	}

	.about-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}

	.stat {
		padding: 1.5rem 1rem;
	}

	.stat h3 {
		font-size: 1.5rem;
	}

	.products-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.product-card {
		padding: 1.5rem;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.contact-form {
		padding: 1.5rem;
	}
}

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

.gradient-text {
	background: var(--accent-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 0.5rem;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: all var(--transition-medium);
	font-size: 1rem;
}

.btn-primary {
	background: var(--accent-gradient);
	color: white;
	box-shadow: var(--shadow-light);
}

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

.btn-secondary {
	background: transparent;
	color: var(--text-primary);
	border: 2px solid var(--border-color);
}

.btn-secondary:hover {
	background: var(--bg-secondary);
	transform: translateY(-2px);
}

.btn-product {
	background: var(--bg-secondary);
	color: var(--text-primary);
	border: 1px solid var(--border-color);
}

.btn-product:hover {
	background: var(--accent-primary);
	color: white;
	transform: translateY(-2px);
}

.btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none !important;
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: var(--bg-tertiary);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border-color);
	z-index: 1000;
	transition: all var(--transition-medium);
}

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

.nav-logo h2 {
	background: var(--accent-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-logo {
	display: flex;
	align-items: center;
	height: 100%;
}

.logo-img {
	height: 10rem;
	width: auto;
	transition: transform var(--transition-medium);
	object-fit: contain;
}

/* Logo adjustments for both themes */
.logo-img,
.footer-logo {
	transition: filter var(--transition-medium);
}

[data-theme="dark"] .logo-img,
[data-theme="dark"] .footer-logo {
	filter: brightness(1.2) contrast(1.1);
}

[data-theme="dark"] .footer-logo:hover {
	filter: brightness(1.3) contrast(1.1);
}

[data-theme="light"] .logo-img,
[data-theme="light"] .footer-logo {
	filter: brightness(0.95) contrast(1.05);
}
.logo-img:hover {
	transform: scale(1.05);
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 500;
	transition: color var(--transition-fast);
}

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

/* Nav Actions Container (theme toggle + hamburger) */
.nav-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

/* Theme Toggle */
.theme-toggle {
	background: var(--bg-secondary);
	border: 1px solid var(--border-color);
	border-radius: 2rem;
	padding: 0.5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.25rem;
	transition: all var(--transition-medium);
	position: relative;
}

.theme-toggle:hover {
	background: var(--bg-tertiary);
}

.theme-toggle .sun,
.theme-toggle .moon {
	font-size: 1rem;
	transition: opacity var(--transition-medium);
}

[data-theme="dark"] .theme-toggle .sun {
	opacity: 0.5;
}

[data-theme="dark"] .theme-toggle .moon {
	opacity: 1;
}

.theme-toggle .sun {
	opacity: 1;
}

.theme-toggle .moon {
	opacity: 0.5;
}

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

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

/* Hero Section */
.hero {
	padding: 12rem 0 4rem;
	background: radial-gradient(ellipse at top, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-logo {
	text-align: center;
	margin-bottom: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-logo-icon {
	height: 16rem;
	width: auto;
	animation: pulse 3s ease-in-out infinite;
	filter: drop-shadow(0 10px 20px rgba(102, 126, 234, 0.3));
	object-fit: contain;
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
		filter: drop-shadow(0 10px 20px rgba(102, 126, 234, 0.3));
	}
	50% {
		transform: scale(1.05);
		filter: drop-shadow(0 15px 30px rgba(102, 126, 234, 0.4));
	}
}

.hero-title {
	margin-bottom: 1.5rem;
	font-weight: 800;
}

.hero-description {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

/* Floating Cards Animation */
.hero-visual {
	position: relative;
	height: 400px;
}

.floating-cards {
	position: relative;
	width: 100%;
	height: 100%;
}

.card {
	position: absolute;
	padding: 1rem 1.5rem;
	background: var(--bg-primary);
	border: 1px solid var(--border-color);
	border-radius: 1rem;
	box-shadow: var(--shadow-medium);
	font-weight: 600;
	white-space: nowrap;
	animation: float 6s ease-in-out infinite;
}

.card-1 {
	top: 10%;
	left: 10%;
	animation-delay: 0s;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.card-2 {
	top: 30%;
	right: 10%;
	animation-delay: 1.5s;
	background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(238, 90, 36, 0.1) 100%);
}

.card-3 {
	bottom: 30%;
	left: 5%;
	animation-delay: 3s;
	background: linear-gradient(135deg, rgba(78, 205, 196, 0.1) 0%, rgba(46, 213, 115, 0.1) 100%);
}

.card-4 {
	bottom: 10%;
	right: 20%;
	animation-delay: 4.5s;
	background: linear-gradient(135deg, rgba(165, 94, 234, 0.1) 0%, rgba(119, 139, 235, 0.1) 100%);
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	33% {
		transform: translateY(-20px) rotate(1deg);
	}
	66% {
		transform: translateY(-10px) rotate(-1deg);
	}
}

/* Section Styles */
section {
	padding: 5rem 0;
}

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

.section-header h2 {
	margin-bottom: 1rem;
}

.section-header p {
	font-size: 1.25rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

/* About Section */
.about {
	background: var(--bg-secondary);
}

.about-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-text h3 {
	margin-bottom: 1.5rem;
	color: var(--accent-primary);
}

.about-text p {
	color: var(--text-secondary);
	margin-bottom: 2rem;
	font-size: 1.125rem;
}

.features {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.feature {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.feature-icon {
	font-size: 2rem;
	flex-shrink: 0;
}

.feature-content h4 {
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.feature-content p {
	color: var(--text-secondary);
	margin: 0;
}

.about-visual {
	display: flex;
	justify-content: center;
}

.stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
	gap: 2rem;
	text-align: center;
}

.stat {
	padding: 2rem;
	background: var(--bg-primary);
	border-radius: 1rem;
	box-shadow: var(--shadow-light);
	border: 1px solid var(--border-color);
}

.stat h3 {
	font-size: 2.5rem;
	color: var(--accent-primary);
	margin-bottom: 0.5rem;
}

.stat p {
	color: var(--text-secondary);
	font-weight: 500;
}

.logo-showcase {
	margin-top: 2rem;
	text-align: center;
}

.showcase-logo {
	height: 8rem;
	width: auto;
	opacity: 0.8;
	transition: opacity var(--transition-medium);
}

.showcase-logo:hover {
	opacity: 1;
}

/* Products Section */
.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
	gap: 2rem;
}

.product-card {
	background: var(--bg-primary);
	border: 1px solid var(--border-color);
	border-radius: 1.5rem;
	padding: 2rem;
	text-align: center;
	transition: all var(--transition-medium);
	position: relative;
	overflow: hidden;
}

.product-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--accent-gradient);
	opacity: 0;
	transition: opacity var(--transition-medium);
}

.product-card:hover::before {
	opacity: 1;
}

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

.product-card.coming-soon {
	opacity: 0.7;
}

.product-icon {
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

.product-card h3 {
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.product-card p {
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.product-features {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.feature-tag {
	background: var(--bg-secondary);
	color: var(--text-secondary);
	padding: 0.25rem 0.75rem;
	border-radius: 1rem;
	font-size: 0.875rem;
	font-weight: 500;
	border: 1px solid var(--border-color);
}

/* Contact Section */
.contact {
	background: var(--bg-secondary);
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-item {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.contact-icon {
	font-size: 1.5rem;
	width: 3rem;
	height: 3rem;
	background: var(--accent-gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-details h4 {
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.contact-details a {
	color: var(--accent-primary);
	text-decoration: none;
	font-weight: 500;
}

.contact-details a:hover {
	text-decoration: underline;
}

.social-links h4 {
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.social-icons {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.social-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem;
	border-radius: 0.5rem;
	text-decoration: none;
	transition: all var(--transition-medium);
	background: var(--bg-primary);
	border: 1px solid var(--border-color);
	color: var(--text-primary);
	position: relative;
}

.social-link svg {
	width: 1.25rem;
	height: 1.25rem;
}

.social-link.facebook:hover {
	background: var(--facebook);
	color: white;
	border-color: var(--facebook);
}

.social-link.instagram:hover {
	background: var(--instagram);
	color: white;
	border-color: transparent;
}

.social-link.twitter:hover:not(.disabled) {
	background: var(--twitter);
	color: white;
	border-color: var(--twitter);
}

.social-link.tiktok:hover:not(.disabled) {
	background: var(--tiktok);
	color: white;
	border-color: var(--tiktok);
}

.social-link.disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.coming-soon-badge {
	background: var(--accent-gradient);
	color: white;
	padding: 0.125rem 0.5rem;
	border-radius: 1rem;
	font-size: 0.75rem;
	font-weight: 600;
	margin-left: auto;
}

/* Contact Form */
.contact-form {
	background: var(--bg-primary);
	padding: 2rem;
	border-radius: 1rem;
	box-shadow: var(--shadow-light);
	border: 1px solid var(--border-color);
}

.contact-form h3 {
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid var(--border-color);
	border-radius: 0.5rem;
	background: var(--bg-secondary);
	color: var(--text-primary);
	font-family: inherit;
	transition: all var(--transition-medium);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--accent-primary);
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

/* Footer */
.footer {
	background: var(--bg-tertiary);
	padding: 3rem 0 1rem;
}

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

.footer-section {
	display: flex;
	flex-direction: column;
}

.footer-section:first-child {
	align-items: flex-start;
}

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

.footer-logo {
	height: 12rem;
	width: auto;
	margin-bottom: 1.5rem;
	filter: brightness(0.9);
	transition: filter var(--transition-medium);
	object-fit: contain;
	display: block;
	margin-left: 0;
	margin-right: auto;
}

.footer-logo:hover {
	filter: brightness(1) contrast(1.1);
}

.footer-section p {
	color: var(--text-secondary);
	line-height: 1.6;
}

.footer-section ul {
	list-style: none;
}

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

.footer-section ul li a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
	color: var(--accent-primary);
}

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

.footer-bottom p {
	color: var(--text-muted);
}

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

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

/* Smooth Scrolling */
html {
	scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
	background: var(--accent-primary);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--accent-hover);
}
