/* HERO styles comes from shared components/hero.css and cta.css (home-hero + hero-cta). */

/* SERVICES */
.home-services {
	padding: 6rem 5%;
	background: #f8f9fa;
}

.home-services-content {
	max-width: 1400px;
	margin: 0 auto;
}

.home-section-title {
	text-align: center;
	font-size: 2.8rem;
	font-weight: 800;
	margin-bottom: 4rem;
	color: #0a1628;
	letter-spacing: -1px;
}

.home-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	margin-bottom: 4rem;
}

.home-service-card {
	background: #ffffff;
	border: 2px solid transparent;
	border-radius: 12px;
	padding: 3rem 2.5rem;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.home-service-card:hover {
	border-color: #0a1628;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transform: translateY(-4px);
}

.home-service-icon {
	width: 60px;
	height: 60px;
	background: #0a1628;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	transition: all 0.3s ease;
}

.home-service-card:hover .home-service-icon {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(10, 22, 40, 0.2);
}

.home-service-card h3 {
	font-size: 1.6rem;
	font-weight: 700;
	color: #0a1628;
	margin-bottom: 1rem;
	letter-spacing: -0.5px;
}

.home-service-card p {
	color: #4a5568;
	font-size: 1.05rem;
	line-height: 1.7;
}

/* ABOUT */
.home-about {
	padding: 6rem 5%;
	background: #ffffff;
}

.home-about-content {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

.home-about-text h2 {
	font-size: 2.8rem;
	font-weight: 800;
	color: #0a1628;
	margin-bottom: 2rem;
	letter-spacing: -1px;
}

.home-about-text p {
	font-size: 1.15rem;
	color: #4a5568;
	line-height: 1.8;
	margin-bottom: 2rem;
}

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

.home-stat-item {
	text-align: center;
	padding: 1.5rem;
	background: #f8f9fa;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.home-stat-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.home-stat-number {
	display: block;
	font-size: 2.5rem;
	font-weight: 800;
	color: #0a1628;
	margin-bottom: 0.5rem;
}

.home-stat-label {
	display: block;
	font-size: 0.95rem;
	color: #4a5568;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.home-about-visual img {
	width: 100%;
	max-width: 400px;
	display: block;
	border-radius: 8px;
}

/* CONTACT */
.home-contact {
	padding: 6rem 5%;
	background: #f8f9fa;
}

.home-contact-content {
	max-width: 800px;
	margin: 0 auto;
}

.home-contact-content h2 {
	text-align: center;
	font-size: 2.8rem;
	font-weight: 800;
	color: #0a1628;
	margin-bottom: 1rem;
	letter-spacing: -1px;
}

.home-contact-subtitle {
	text-align: center;
	color: #4a5568;
	font-size: 1.2rem;
	margin-bottom: 3rem;
}

.home-contact-form {
	background: #ffffff;
	padding: 3rem;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.home-form-group {
	margin-bottom: 20px;
}

.home-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.home-form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #0a1628;
	font-size: 0.95rem;
	letter-spacing: 0.3px;
}

.home-form-group input,
.home-form-group textarea {
	width: 100%;
	padding: 1rem 1.2rem;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 1rem;
	font-family: inherit;
	transition: all 0.3s ease;
	background: #ffffff;
}

.home-form-group input:focus,
.home-form-group textarea:focus {
	outline: none;
	border-color: #0a1628;
	box-shadow: 0 2px 8px rgba(10, 22, 40, 0.1);
}

.home-form-button {
	width: 100%;
	padding: 1.2rem;
	background: #0a1628;
	color: white;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1.1rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.home-form-button:hover {
	background: #1a2d4a;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(10, 22, 40, 0.3);
}

.home-form-note {
	font-size: 0.85rem;
	color: #999;
	margin-top: 15px;
	text-align: center;
}

.home-form-note a {
	color: #0a1628;
	text-decoration: none;
	font-weight: 600;
}

.home-form-note a:hover {
	text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.home-section-title {
		font-size: 1.8rem;
	}

	.home-about-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

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

	.home-form-row {
		grid-template-columns: 1fr;
	}
}
