* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-blue: #1e40af;
	--primary-blue-dark: #1e3a8a;
	--primary-blue-light: #3b82f6;
	--bg-gradient-1: #eff6ff;
	--bg-gradient-2: #e0e7ff;
	--bg-gradient-3: #fce7f3;
	--text-dark: #1e293b;
	--text-gray: #64748b;
	--text-light: #cbd5e1;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	overflow-x: hidden;
}

/* Typography */
h1 {
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h2 {
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1rem;
}

h3 {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.4;
}

h4 {
	font-size: 1.125rem;
	font-weight: 600;
}

p {
	font-size: 1rem;
	line-height: 1.6;
}

/* Header */
header {
	position: fixed;
	top: 0;
	z-index: 1000;
	background: white;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	width:100%;
}

.header-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
}

.logo {
	display: flex;
	align-items: center;
	cursor: pointer;
	gap: 0.75rem;
}

.logo-icon {
	width: 40px;
	height: 40px;
	background: var(--primary-blue);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 600;
}

.logo-text h1 {
	font-size: 1.25rem;
	color: #1e3a8a;
	margin: 0;
}

nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

nav a {
	color: var(--text-gray);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
}

nav a:hover {
	color: var(--primary-blue);
}

.btn {
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	border: none;
	font-size: 1rem;
}

.btn-primary {
	background: var(--primary-blue);
	color: white;
}

.btn-primary:hover {
	background: var(--primary-blue-dark);
	transform: translateY(-2px);
}

.btn-outline {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.btn-outline:hover {
	background: rgba(255,255,255,0.1);
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.mobile-menu {
	display: none;
	border-top: 1px solid #e2e8f0;
	padding: 1rem 0;
}

.mobile-menu.active {
	display: block;
}

.mobile-menu nav {
	flex-direction: column;
	gap: 1rem;
}

/* Hero Section */
#home {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding-top: 150px;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	animation: zoomIn 1.5s ease-out;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(30, 58, 138, 0.95), rgba(30, 64, 175, 0.9), rgba(59, 130, 246, 0.85));
}

.hero-content {
	position: relative;
	z-index: 10;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.hero-left {
	animation: fadeInUp 0.6s ease-out 0.2s both;
}

.trust-badge {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: rgba(59, 130, 246, 0.2);
	border: 1px solid rgba(96, 165, 250, 0.3);
	border-radius: 50px;
	color: #bfdbfe;
	font-size: 0.875rem;
	margin-bottom: 1rem;
	animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-left h1 {
	color: white;
	font-size: 3rem;
	margin-bottom: 1.5rem;
	animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-left > p {
	color: #bfdbfe;
	font-size: 1.25rem;
	margin-bottom: 2rem;
	animation: fadeInUp 0.6s ease-out 0.4s both;
}

.benefits-list {
	list-style: none;
	margin-bottom: 2rem;
}

.benefit-item {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	color: #dbeafe;
	animation: fadeInLeft 0.5s ease-out both;
}

.benefit-item:nth-child(1) { animation-delay: 0.6s; }
.benefit-item:nth-child(2) { animation-delay: 0.7s; }
.benefit-item:nth-child(3) { animation-delay: 0.8s; }
.benefit-item:nth-child(4) { animation-delay: 0.9s; }

.check-icon {
	color: #86efac;
	flex-shrink: 0;
	margin-top: 2px;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	animation: fadeInUp 0.6s ease-out 1s both;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.stat-card {
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 12px;
	padding: 1.5rem;
	transition: transform 0.3s;
	animation: scaleIn 0.5s ease-out both;
}

.stat-card:nth-child(1) { animation-delay: 0.8s; }
.stat-card:nth-child(2) { animation-delay: 0.9s; }
.stat-card:nth-child(3) { animation-delay: 1s; }
.stat-card:nth-child(4) { animation-delay: 1.1s; }

.stat-card:hover {
	transform: translateY(-5px) scale(1.05);
}

.stat-icon {
	width: 48px;
	height: 48px;
	background: var(--primary-blue-light);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.stat-value {
	color: white;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.stat-label {
	color: #bfdbfe;
	font-size: 0.875rem;
}

/* Sections */
section {
	padding: 5rem 0;
}

.section-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s;
}

.section-header.visible {
	opacity: 1;
	transform: translateY(0);
}

.section-header h2 {
	color: #1e3a8a;
	margin-bottom: 1rem;
}

.section-header p {
	color: var(--text-gray);
	font-size: 1.25rem;
	max-width: 42rem;
	margin: 0 auto;
}

/* About Section */
#about {
	background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 50%, #fce7f3 100%);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.about-content {
	opacity: 0;
	transform: translateX(-50px);
	transition: all 0.6s;
}

.about-content.visible {
	opacity: 1;
	transform: translateX(0);
}

.about-content h2 {
	color: #1e3a8a;
	margin-bottom: 1.5rem;
}

.about-content p {
	color: var(--text-gray);
	margin-bottom: 1rem;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
}

.about-stat {
	text-align: center;
	opacity: 0;
	transform: scale(0.5);
	transition: all 0.5s;
}

.about-stat.visible {
	opacity: 1;
	transform: scale(1);
}

.about-stat-value {
	color: var(--primary-blue);
	font-size: 1.75rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.about-stat-label {
	color: var(--text-gray);
}

.about-image {
	opacity: 0;
	transform: translateX(50px);
	transition: all 0.6s 0.2s;
}

.about-image.visible {
	opacity: 1;
	transform: translateX(0);
}

.about-image img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	transition: transform 0.3s;
}

.about-image img:hover {
	transform: scale(1.02);
}

/* Services Section */
#services {
	background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 50%, #e0e7ff 100%);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.service-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	transition: all 0.3s;
	opacity: 0;
	transform: translateY(50px);
}

.service-card.visible {
	opacity: 1;
	transform: translateY(0);
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.service-image {
	width: 100%;
	height: 250px;
	overflow: hidden;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.service-card:hover .service-image img {
	transform: scale(1.05);
}

.service-content {
	padding: 1.5rem;
}

.service-content h3 {
	color: var(--text-dark);
	margin-bottom: 0.75rem;
}

.service-content p {
	color: var(--text-gray);
}

/* Features Section */
#features {
	background: linear-gradient(135deg, #ffffff 0%, #eff6ff 50%, #e0f2fe 100%);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.feature-card {
	text-align: center;
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.6s;
}

.feature-card.visible {
	opacity: 1;
	transform: translateY(0);
}

.feature-card:hover {
	transform: translateY(-10px) scale(1.05);
}

.feature-icon-wrapper {
	width: 64px;
	height: 64px;
	background: var(--primary-blue);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-center;
	margin: 0 auto 1rem;
	opacity: 0;
	transform: scale(0);
	transition: all 0.5s;
}

.feature-card.visible .feature-icon-wrapper {
	opacity: 1;
	transform: scale(1);
}

.feature-icon {
	color: white;
	width: 32px;
	height: 32px;
}

.feature-card h3 {
	margin-bottom: 0.5rem;
}

.feature-card p {
	color: var(--text-gray);
}

/* Contact Section */
#contact {
	background: linear-gradient(135deg, #e0e7ff 0%, #ddd6fe 50%, #fce7f3 100%);
}

.contact-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 2rem;
}

.contact-form-card {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	opacity: 0;
	transform: translateX(-50px);
	transition: all 0.6s 0.2s;
}

.contact-form-card.visible {
	opacity: 1;
	transform: translateX(0);
}

.form-header h3 {
	margin-bottom: 0.5rem;
}

.form-header p {
	color: var(--text-gray);
	margin-bottom: 1.5rem;
}

.form-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-bottom: 1rem;
}

.form-group {
	margin-bottom: 1rem;
}

.form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	font-size: 1rem;
	font-family: inherit;
	transition: border-color 0.3s;
	background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-blue);
	background: white;
}

.form-group textarea {
	resize: vertical;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.info-card {
	background: white;
	border-radius: 12px;
	padding: 1.5rem;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	transition: transform 0.3s;
	opacity: 0;
	transform: translateX(50px);
}

.info-card.visible {
	opacity: 1;
	transform: translateX(0);
}

.info-card:hover {
	transform: translateY(-5px) scale(1.02);
}

.info-content {
	display: flex;
	gap: 1rem;
}

.info-icon {
	width: 40px;
	height: 40px;
	background: #dbeafe;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.info-icon svg {
	color: var(--primary-blue);
	width: 20px;
	height: 20px;
}

.info-text p {
	color: var(--text-gray);
	font-size: 0.875rem;
	margin-bottom: 0.25rem;
}

.info-text p:first-child {
	font-weight: 600;
	color: var(--text-dark);
	font-size: 1rem;
}

/* Footer */
footer {
	background: linear-gradient(135deg, #1e293b 0%, #312e81 50%, #581c87 100%);
	color: white;
	padding: 3rem 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-column h3,
.footer-column h4 {
	margin-bottom: 1rem;
}

.footer-column p {
	color: #bfdbfe;
	font-size: 0.875rem;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: #bfdbfe;
	text-decoration: none;
	font-size: 0.875rem;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: white;
}

.footer-bottom {
	border-top: 1px solid rgba(96, 165, 250, 0.2);
	padding-top: 2rem;
	text-align: center;
	color: #bfdbfe;
	font-size: 0.875rem;
}

/* Toast Notification */
.toast {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	background: white;
	padding: 1rem 1.5rem;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	display: none;
	z-index: 10000;
	animation: slideIn 0.3s ease-out;
}

.toast.show {
	display: block;
}

.toast.success {
	border-left: 4px solid #10b981;
}

.toast.error {
	border-left: 4px solid #ef4444;
}

.toast-title {
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.toast-description {
	color: var(--text-gray);
	font-size: 0.875rem;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes zoomIn {
	from {
		transform: scale(1.1);
	}
	to {
		transform: scale(1);
	}
}

@keyframes slideIn {
	from {
		transform: translateX(100%);
	}
	to {
		transform: translateX(0);
	}
}

/* Responsive Design */
@media (max-width: 1024px) {
	.hero-grid,
	.about-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.stats-grid {
		display: none;
	}

	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	nav {
		display: none;
	}
	.mobile-menu.active {
	    padding:2rem;
	}
	.mobile-menu nav {
	    display: block;
	}
    .mobile-menu.active nav a {
        display: block;
        padding: 0.5rem 1rem;
    }
    .mobile-menu-btn {
		display: block;
	}

	h1 {
		font-size: 2rem;
	}

	.hero-left h1 {
		font-size: 2rem;
	}

	.services-grid,
	.features-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.about-stats {
		grid-template-columns: 1fr;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}
}

/* Loading state */
.btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}