* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
header {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	padding: 1rem 0;
	box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.8rem;
	font-weight: bold;
	color: #2c3e50;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-links a {
	text-decoration: none;
	color: #2c3e50;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-links a:hover {
	color: #667eea;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 80px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	animation: float 20s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-20px); }
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: white;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
	animation: slideInUp 1s ease-out;
}

.hero p {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	opacity: 0.9;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	animation: slideInUp 1s ease-out 0.2s both;
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.cta-button {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	padding: 15px 40px;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
	animation: slideInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Services Section */
.services {
	padding: 100px 0;
	background: white;
	position: relative;
}

.services::before {
	content: '';
	position: absolute;
	top: -50px;
	left: 0;
	right: 0;
	height: 100px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #2c3e50;
	font-weight: 700;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.service-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
	border-top: 4px solid #667eea;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: #667eea;
}

.service-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #2c3e50;
	font-weight: 600;
}

.service-card p {
	color: #666;
	line-height: 1.6;
}

/* About Section */
.about {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-text h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #2c3e50;
	font-weight: 700;
}

.about-text p {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 1.5rem;
}

.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 2rem;
}

.stat-item {
	text-align: center;
	padding: 1.5rem;
	background: white;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: bold;
	color: #667eea;
	display: block;
}

.stat-label {
	color: #666;
	font-size: 0.9rem;
	margin-top: 0.5rem;
}

/* Contact Section */
.contact {
	padding: 100px 0;
	background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	color: white;
	text-align: center;
}

.contact h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	font-weight: 700;
}

.contact p {
	font-size: 1.2rem;
	margin-bottom: 4rem;
	opacity: 0.9;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	max-width: 1400px;
	margin: 0 auto;
}

/* Contact Form Styles */
.contact-form-container {
	text-align: left;
}

.contact-form-card {
	background: rgba(255, 255, 255, 0.95);
	padding: 3rem;
	border-radius: 20px;
	backdrop-filter: blur(10px);
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
	color: #333;
}

.contact-form-card h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #2c3e50;
	font-weight: 700;
}

.form-subtitle {
	color: #666;
	margin-bottom: 2rem;
	font-size: 1rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.form-field label,
.form-group > label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #2c3e50;
	font-size: 0.95rem;
}

.form-field input,
.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #e1e5e9;
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: white;
}

.form-field input:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 100px;
}

.checkbox-group {
	margin: 2rem 0;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	cursor: pointer;
	font-size: 0.9rem;
	line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
	width: auto;
	margin-right: 10px;
	margin-top: 2px;
}

.privacy-link {
	color: #667eea;
	text-decoration: underline;
}

.submit-btn {
	width: 100%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border: none;
	padding: 15px 30px;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
	transform: translateY(0);
}

.btn-loader {
	width: 20px;
	height: 20px;
	border: 2px solid rgba(255,255,255,0.3);
	border-radius: 50%;
	border-top-color: white;
	animation: spin 1s ease-in-out infinite;
	margin-left: 10px;
	display: inline-block;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

.form-success {
	text-align: center;
	padding: 2rem;
	background: #d4edda;
	border: 1px solid #c3e6cb;
	border-radius: 10px;
	color: #155724;
}

.success-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.form-success h4 {
	color: #155724;
	margin-bottom: 1rem;
}

/* Contact Info Section */
.contact-info-section {
	position: relative;
}

.contact-info {
	display: grid;
	gap: 2rem;
}

.contact-item {
	background: rgba(255, 255, 255, 0.1);
	padding: 2rem;
	border-radius: 15px;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	text-align: left;
}

.contact-item:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-5px);
}

.contact-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	display: block;
}

.contact-item h4 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #ecf0f1;
	font-weight: 600;
}

.contact-item p {
	font-size: 1rem;
	opacity: 0.9;
	margin-bottom: 1rem;
	line-height: 1.6;
}

.contact-link {
	color: #74b9ff;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.contact-link:hover {
	color: #0984e3;
	text-decoration: underline;
}

/* WhatsApp Float Button */
.whatsapp-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 1000;
}

.whatsapp-btn {
	display: flex;
	align-items: center;
	background: #25D366;
	color: white;
	padding: 15px 20px;
	border-radius: 50px;
	text-decoration: none;
	box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
	transition: all 0.3s ease;
	font-weight: 600;
}

.whatsapp-btn:hover {
	background: #128C7E;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
	font-size: 1.5rem;
	margin-right: 10px;
}

.whatsapp-text {
	font-size: 1rem;
}

/* Footer */
footer {
	background: #1a1a1a;
	color: white;
	text-align: center;
	padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.hero p {
		font-size: 1.1rem;
	}

	.about-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.stats {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.contact-form-card {
		padding: 2rem 1.5rem;
	}

	.whatsapp-btn {
		padding: 12px 16px;
	}

	.whatsapp-text {
		display: none;
	}

	.whatsapp-icon {
		margin-right: 0;
	}
}