/* Reset & Variables */
:root {
	--primary-color: #0ea5e9;
	--primary-dark: #0284c7;
	--secondary-color: #06b6d4;
	--accent-color: #14b8a6;
	--dark-color: #0f172a;
	--light-color: #f8fafc;
	--gray-color: #64748b;
	--white: #ffffff;
	--gradient: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
	--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--dark-color);
	line-height: 1.6;
	overflow-x: hidden;
}

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

/* Language Toggle */
.language-toggle {
	display: flex;
	gap: 8px;
	background: rgba(255, 255, 255, 0.1);
	padding: 4px;
	border-radius: 50px;
	margin-left: 20px;
}

.lang-btn {
	padding: 6px 12px;
	border: none;
	background: transparent;
	border-radius: 50px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 500;
	transition: var(--transition);
	color: var(--dark-color);
}

.lang-btn.active {
	background: var(--gradient);
	color: var(--white);
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	background: var(--white);
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
}

.nav-brand {
	display: flex;
	align-items: center;
	gap: 10px;
}

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

.brand-name {
	font-size: 20px;
	font-weight: 700;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-menu {
	display: flex;
	gap: 30px;
	align-items: center;
}

.nav-menu a {
	text-decoration: none;
	color: var(--dark-color);
	font-weight: 500;
	font-size: 15px;
	transition: var(--transition);
	position: relative;
}

.nav-menu a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient);
	transition: var(--transition);
}

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

.mobile-menu-btn {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1001;
	position: relative;
}

.mobile-menu-btn span {
	width: 25px;
	height: 3px;
	background: var(--dark-color);
	border-radius: 3px;
	transition: var(--transition);
}

/* Hero Section */
.hero {
	margin-top: 70px;
	padding: 80px 0;
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
	animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.5;
	}
	50% {
		transform: scale(1.2);
		opacity: 0.3;
	}
}

.hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
}

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

.hero-subtitle {
	font-size: 18px;
	color: var(--gray-color);
	margin-bottom: 30px;
}

.hero-buttons {
	display: flex;
	gap: 15px;
	margin-bottom: 40px;
}

.btn {
	padding: 12px 28px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	transition: var(--transition);
	display: inline-block;
	border: 2px solid transparent;
}

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

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

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

.btn-secondary:hover {
	background: var(--primary-color);
	color: var(--white);
}

.btn-light {
	background: var(--white);
	color: var(--primary-color);
}

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

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

.btn-outline:hover {
	background: var(--white);
	color: var(--primary-color);
}

.hero-stats {
	display: flex;
	gap: 40px;
}

.stat-item h3 {
	font-size: 32px;
	font-weight: 700;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-item p {
	color: var(--gray-color);
	font-size: 14px;
}

/* Hero Video */
.hero-video-wrapper {
	position: relative;
	width: 100%;
	max-width: 400px;
	aspect-ratio: 9/16;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
	background: var(--dark-color);
}

.hero-video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* Section Styles */
section {
	padding: 80px 0;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header h2 {
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 15px;
}

.section-header p {
	font-size: 18px;
	color: var(--gray-color);
}

/* Features Section */
.features {
	background: var(--white);
}

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

.feature-card {
	padding: 35px;
	background: var(--light-color);
	border-radius: 20px;
	transition: var(--transition);
	border: 2px solid transparent;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary-color);
}

.feature-icon {
	font-size: 48px;
	margin-bottom: 20px;
}

.feature-card h3 {
	font-size: 22px;
	margin-bottom: 12px;
}

.feature-card p {
	color: var(--gray-color);
	line-height: 1.7;
}

/* Benefits Section */
.benefits {
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.benefits-content {
	display: grid;
	gap: 30px;
}

.benefit-item {
	display: flex;
	gap: 25px;
	align-items: start;
	padding: 30px;
	background: var(--white);
	border-radius: 20px;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.benefit-item:hover {
	transform: translateX(10px);
	box-shadow: var(--shadow-lg);
}

.benefit-number {
	font-size: 48px;
	font-weight: 700;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	flex-shrink: 0;
}

.benefit-text h3 {
	font-size: 24px;
	margin-bottom: 10px;
}

.benefit-text p {
	color: var(--gray-color);
	line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
	background: var(--white);
}

.steps-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.step {
	text-align: center;
	padding: 30px;
	position: relative;
}

.step::after {
	content: '→';
	position: absolute;
	right: -15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 24px;
	color: var(--primary-color);
}

.step:last-child::after {
	display: none;
}

.step-number {
	width: 50px;
	height: 50px;
	background: var(--gradient);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 24px;
	font-weight: 700;
}

.step-icon {
	font-size: 48px;
	margin-bottom: 20px;
}

.step h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.step p {
	color: var(--gray-color);
	font-size: 14px;
}

/* Video Gallery Section */
.video-gallery {
	background: var(--white);
	padding: 80px 0;
}

.video-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
	max-width: 1400px;
	margin: 0 auto;
}

.video-item {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: var(--light-color);
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.video-item:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.video-wrapper {
	position: relative;
	padding-bottom: 177.78%; /* 9:16 aspect ratio for Shorts */
	height: 0;
	overflow: hidden;
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 0;
}

.video-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
	pointer-events: none;
	z-index: 1;
}

/* Locations Section */
.locations {
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.location-search {
	display: flex;
	gap: 15px;
	max-width: 600px;
	margin: 0 auto 50px;
}

.search-input {
	flex: 1;
	padding: 15px 25px;
	border: 2px solid #e2e8f0;
	border-radius: 50px;
	font-size: 15px;
	outline: none;
	transition: var(--transition);
}

.search-input:focus {
	border-color: var(--primary-color);
}

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

.location-card {
	background: var(--white);
	padding: 30px;
	border-radius: 20px;
	text-align: center;
	transition: var(--transition);
	box-shadow: var(--shadow);
}

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

.location-icon {
	font-size: 48px;
	margin-bottom: 15px;
}

.location-card h4 {
	font-size: 20px;
	margin-bottom: 10px;
}

.location-card p {
	color: var(--gray-color);
	font-size: 14px;
}

/* Testimonials */
.testimonials {
	background: var(--white);
}

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

.testimonial-card {
	background: var(--light-color);
	padding: 30px;
	border-radius: 20px;
	transition: var(--transition);
}

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

.stars {
	font-size: 20px;
	margin-bottom: 15px;
}

.testimonial-card p {
	color: var(--gray-color);
	font-style: italic;
	margin-bottom: 20px;
	line-height: 1.7;
}

.testimonial-author strong {
	display: block;
	color: var(--dark-color);
	margin-bottom: 5px;
}

.testimonial-author span {
	color: var(--gray-color);
	font-size: 14px;
}

/* CTA Section */
.cta {
	background: var(--gradient);
	color: var(--white);
	text-align: center;
}

.cta h2 {
	font-size: 40px;
	margin-bottom: 15px;
}

.cta p {
	font-size: 18px;
	margin-bottom: 30px;
	opacity: 0.9;
}

.cta-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
}

/* Contact Section */
.contact {
	background: var(--light-color);
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contact-item {
	display: flex;
	gap: 20px;
	align-items: start;
}

.contact-icon {
	font-size: 32px;
}

.contact-item h4 {
	font-size: 18px;
	margin-bottom: 5px;
}

.contact-item p {
	color: var(--gray-color);
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-form input,
.contact-form textarea {
	padding: 15px 20px;
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	font-family: inherit;
	font-size: 15px;
	outline: none;
	transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--primary-color);
}

.contact-form textarea {
	resize: vertical;
}

/* Footer */
.footer {
	background: var(--dark-color);
	color: var(--white);
	padding: 60px 0 30px;
}

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

.footer-section h3 {
	font-size: 24px;
	margin-bottom: 20px;
}

.footer-section h4 {
	font-size: 18px;
	margin-bottom: 20px;
}

.footer-section p {
	color: var(--gray-color);
	margin-bottom: 20px;
	line-height: 1.7;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	text-decoration: none;
	font-size: 20px;
	transition: var(--transition);
}

.social-links a:hover {
	background: var(--primary-color);
	transform: translateY(-3px);
}

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

.footer-section ul li {
	margin-bottom: 12px;
}

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

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

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--gray-color);
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		display: none;
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		background: var(--white);
		flex-direction: column;
		padding: 20px;
		box-shadow: var(--shadow-lg);
		gap: 15px;
	}

	.nav-menu.active {
		display: flex;
	}

	.language-toggle {
		margin-left: 0;
		justify-content: center;
	}

	.mobile-menu-btn {
		display: flex;
	}

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

	.hero-title {
		font-size: 36px;
	}

	.hero-buttons {
		justify-content: center;
		flex-wrap: wrap;
	}

	.hero-stats {
		justify-content: center;
	}

	.machine-frame {
		width: 220px;
		height: 350px;
	}

	.screen {
		width: 180px;
		height: 140px;
	}

	.section-header h2 {
		font-size: 32px;
	}

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

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

	.location-search {
		flex-direction: column;
	}

	.step::after {
		display: none;
	}

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

/* Floating WhatsApp Button */
.whatsapp-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
	z-index: 1000;
	transition: var(--transition);
	text-decoration: none;
	overflow: hidden;
}

.whatsapp-float:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
	width: 180px;
	border-radius: 50px;
}

.whatsapp-icon {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	transition: var(--transition);
}

.whatsapp-text {
	opacity: 0;
	width: 0;
	margin-left: 0;
	white-space: nowrap;
	font-weight: 600;
	font-size: 15px;
	transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-text {
	opacity: 1;
	width: auto;
	margin-left: 10px;
}

.whatsapp-float:hover .whatsapp-icon {
	transform: rotate(360deg);
}

/* Pulse animation */
@keyframes pulse-ring {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}

.whatsapp-float::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: #25d366;
	animation: pulse-ring 1.5s ease-out infinite;
}

@media (max-width: 480px) {
	.whatsapp-float {
		bottom: 20px;
		right: 20px;
		width: 56px;
		height: 56px;
	}

	.whatsapp-icon {
		width: 28px;
		height: 28px;
	}

	.whatsapp-float:hover {
		width: 56px;
		border-radius: 50%;
	}

	.whatsapp-float:hover .whatsapp-text {
		opacity: 0;
		width: 0;
		margin-left: 0;
	}

	.hero-title {
		font-size: 28px;
	}

	.hero-subtitle {
		font-size: 16px;
	}

	.hero-stats {
		flex-direction: column;
		gap: 20px;
	}

	.features-grid,
	.location-grid,
	.testimonial-grid {
		grid-template-columns: 1fr;
	}

	.video-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.video-wrapper {
		padding-bottom: 177.78%;
	}
}

/* ===================================
   Legal Pages Styling
   =================================== */

.legal-page {
	padding: 120px 0 80px;
	background: var(--light-color);
	min-height: 100vh;
}

.legal-header {
	text-align: center;
	margin-bottom: 60px;
	padding-bottom: 30px;
	border-bottom: 2px solid #e2e8f0;
}

.legal-header h1 {
	font-size: 48px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 15px;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.update-date {
	font-size: 14px;
	color: var(--gray-color);
	font-style: italic;
}

.legal-content {
	background: var(--white);
	border-radius: 20px;
	padding: 60px;
	box-shadow: var(--shadow-lg);
	margin-bottom: 40px;
}

.legal-section {
	margin-bottom: 50px;
}

.legal-section:last-child {
	margin-bottom: 0;
}

.legal-section h2 {
	font-size: 28px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 3px solid var(--primary-color);
	display: inline-block;
}

.legal-section h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--dark-color);
	margin-top: 30px;
	margin-bottom: 15px;
	padding-left: 15px;
	border-left: 4px solid var(--secondary-color);
}

.legal-section h4 {
	font-size: 18px;
	font-weight: 600;
	color: var(--dark-color);
	margin-top: 20px;
	margin-bottom: 10px;
}

.legal-section p {
	font-size: 16px;
	line-height: 1.8;
	color: #334155;
	margin-bottom: 20px;
	text-align: justify;
}

.legal-section ul,
.legal-section ol {
	margin: 20px 0;
	padding-left: 40px;
}

.legal-section ul li,
.legal-section ol li {
	font-size: 16px;
	line-height: 1.8;
	color: #334155;
	margin-bottom: 12px;
	padding-left: 10px;
}

.legal-section ul li {
	list-style-type: disc;
}

.legal-section ul li::marker {
	color: var(--primary-color);
	font-size: 20px;
}

.legal-section ol li::marker {
	color: var(--primary-color);
	font-weight: 700;
}

.legal-section strong {
	color: var(--dark-color);
	font-weight: 600;
}

.legal-section a {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition);
	border-bottom: 1px solid transparent;
}

.legal-section a:hover {
	color: var(--primary-dark);
	border-bottom-color: var(--primary-dark);
}

/* Contact Info Box */
.contact-info-box {
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
	border-left: 5px solid var(--primary-color);
	padding: 30px;
	border-radius: 15px;
	margin: 30px 0;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-info-box p {
	margin-bottom: 10px;
	text-align: left;
}

.contact-info-box p:last-child {
	margin-bottom: 0;
}

.contact-info-box strong {
	font-size: 18px;
	color: var(--primary-color);
	display: block;
	margin-bottom: 15px;
}

.contact-info-box a {
	color: var(--primary-color);
	font-weight: 500;
}

/* Utility Classes */
.mt-4 {
	margin-top: 30px;
}

/* Legal Footer */
.legal-footer {
	text-align: center;
	margin-top: 60px;
	padding-top: 40px;
	border-top: 2px solid #e2e8f0;
}

.legal-footer .btn {
	padding: 15px 40px;
	font-size: 16px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

/* Responsive - Legal Pages */
@media (max-width: 768px) {
	.legal-page {
		padding: 100px 0 60px;
	}

	.legal-header h1 {
		font-size: 32px;
	}

	.legal-content {
		padding: 30px 20px;
		border-radius: 15px;
	}

	.legal-section h2 {
		font-size: 24px;
	}

	.legal-section h3 {
		font-size: 18px;
	}

	.legal-section p,
	.legal-section ul li,
	.legal-section ol li {
		font-size: 15px;
		text-align: left;
	}

	.legal-section ul,
	.legal-section ol {
		padding-left: 25px;
	}

	.contact-info-box {
		padding: 20px;
	}

	.legal-footer {
		margin-top: 40px;
		padding-top: 30px;
	}
}
