/*
Theme Name: Spotko Child
Description: Child theme for Spotko fleet management
Version: 1.0
*/

@import url("../twentytwentyfour/style.css");

/* Add your custom CSS here */

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

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	line-height: 1.6;
	color: #2c3e50;
	overflow-x: hidden;
	background: #ffffff;
}

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

/* Header */
header {
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(15px);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	box-shadow: 0 2px 25px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border-bottom: 1px solid #e8f4f8;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
}

.logo img {
	height: 40px;
	width: auto;
}

.logo-text {
	font-size: 1.8rem;
	font-weight: 700;
	color: #1a365d;
	background: linear-gradient(135deg, #1a365d, #2d5a87);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
	align-items: center;
}

.nav-links a {
	text-decoration: none;
	color: #4a5568;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.5rem 0;
}

.nav-links a:hover {
	color: #1a365d;
	transform: translateY(-2px);
}

.nav-links a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 0;
	left: 50%;
	background: linear-gradient(135deg, #3182ce, #1a365d);
	transition: all 0.3s ease;
}

.nav-links a:hover::after {
	width: 100%;
	left: 0;
}

.cta-button {
	background: linear-gradient(135deg, #3182ce, #1a365d);
	color: white;
	padding: 0.75rem 1.8rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(49, 130, 206, 0.3);
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(49, 130, 206, 0.4);
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 50%, #cbd5e0 100%);
	padding: 140px 0 100px;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 30%, rgba(49, 130, 206, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(26, 54, 93, 0.1) 0%, transparent 50%);
	animation: float 25s ease-in-out infinite;
}

.hero-content {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-text h1 {
	font-size: 3.2rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	color: #1a365d;
	line-height: 1.1;
}

.hero-text .highlight {
	background: linear-gradient(135deg, #3182ce, #1a365d);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-text p {
	font-size: 1.25rem;
	margin-bottom: 2.5rem;
	color: #4a5568;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	margin-bottom: 3rem;
}

.btn-primary {
	background: linear-gradient(135deg, #3182ce, #1a365d);
	color: white;
	padding: 1rem 2.2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(49, 130, 206, 0.4);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(49, 130, 206, 0.5);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.9);
	color: #1a365d;
	padding: 1rem 2.2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	backdrop-filter: blur(10px);
	border: 2px solid rgba(49, 130, 206, 0.3);
	transition: all 0.3s ease;
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 1);
	border-color: #3182ce;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(49, 130, 206, 0.2);
}

.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.hero-dashboard {
	background: white;
	padding: 2rem;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	border: 1px solid #e2e8f0;
	transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
	transition: all 0.5s ease;
}

.hero-dashboard:hover {
	transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.dashboard-header {
	display: flex;
	justify-content: between;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid #e2e8f0;
}

.dashboard-metrics {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.metric-card {
	background: linear-gradient(135deg, #f7fafc, #e2e8f0);
	padding: 1rem;
	border-radius: 12px;
	text-align: center;
	border: 1px solid #cbd5e0;
}

.metric-number {
	font-size: 1.5rem;
	font-weight: 700;
	color: #3182ce;
}

.metric-label {
	font-size: 0.9rem;
	color: #4a5568;
	margin-top: 0.25rem;
}

.trust-indicators {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	margin-top: 3rem;
}

.trust-item {
	text-align: center;
	flex: 1;
}

.trust-number {
	font-size: 2rem;
	font-weight: 700;
	color: #3182ce;
	display: block;
}

.trust-label {
	color: #4a5568;
	font-size: 0.9rem;
	margin-top: 0.25rem;
}

/* AI Features Section */
.ai-features {
	padding: 100px 0;
	background: #ffffff;
	position: relative;
}

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

.section-title h2 {
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #1a365d;
}

.section-title .ai-badge {
	display: inline-block;
	background: linear-gradient(135deg, #3182ce, #1a365d);
	color: white;
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.section-title p {
	font-size: 1.2rem;
	color: #4a5568;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
}

.ai-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 4rem;
}

.ai-card {
	background: white;
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
}

.ai-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, #3182ce, #1a365d);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.ai-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
	border-color: #e2e8f0;
}

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

.ai-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #3182ce, #1a365d);
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 1.8rem;
}

.ai-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #1a365d;
}

.ai-card p {
	color: #4a5568;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.ai-features-list {
	list-style: none;
}

.ai-features-list li {
	color: #4a5568;
	margin-bottom: 0.5rem;
	padding-left: 1.5rem;
	position: relative;
}

.ai-features-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #3182ce;
	font-weight: bold;
}

/* Platform Features */
.platform-features {
	padding: 100px 0;
	background: linear-gradient(135deg, #f7fafc, #e2e8f0);
}

.platform-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 4rem;
}

.platform-card {
	background: white;
	padding: 2rem;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid #e2e8f0;
}

.platform-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.platform-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #3182ce, #1a365d);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
}

/* Why Spotko Section */
.why-spotko {
	padding: 100px 0;
	background: #1a365d;
	color: white;
	position: relative;
}

.why-spotko::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 30% 20%, rgba(49, 130, 206, 0.2) 0%, transparent 50%),
		radial-gradient(circle at 70% 80%, rgba(49, 130, 206, 0.1) 0%, transparent 50%);
}

.why-content {
	position: relative;
	z-index: 2;
	text-align: center;
}

.why-content h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 3rem;
}

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

.why-item {
	background: rgba(255, 255, 255, 0.1);
	padding: 2rem;
	border-radius: 16px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.why-item:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-5px);
}

.why-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.why-item h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
	background: linear-gradient(135deg, #3182ce, #1a365d);
	color: white;
	padding: 80px 0;
	text-align: center;
	position: relative;
}

.cta-content h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.cta-content p {
	font-size: 1.2rem;
	margin-bottom: 2.5rem;
	opacity: 0.9;
}

/* Footer */
footer {
	background: #1a202c;
	color: #a0aec0;
	padding: 60px 0 30px;
}

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

.footer-section h3 {
	color: white;
	font-weight: 600;
	margin-bottom: 1rem;
}

.footer-section a {
	color: #a0aec0;
	text-decoration: none;
	display: block;
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: #3182ce;
}

.footer-bottom {
	border-top: 1px solid #2d3748;
	padding-top: 2rem;
	text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

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

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

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.trust-indicators {
		flex-direction: column;
		gap: 1rem;
	}

	.ai-grid {
		grid-template-columns: 1fr;
	}
}

@keyframes float {
	0%, 100% { transform: translateY(0px) rotate(0deg); }
	50% { transform: translateY(-20px) rotate(3deg); }
}