/* Landing Page Custom Styles */
.nauco-landing {
	font-family: 'Helvetica', 'Arial', sans-serif;
}

/* Hero Section */
.hero-section {
	background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
	color: white;
	padding: 80px 20px;
	text-align: center;
}

.hero-section h1 {
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 20px;
	line-height: 1.3;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
	color: #fff;
}

.hero-section .subtitle {
	font-size: 24px;
	margin-bottom: 30px;
	opacity: 0.95;
}

.hero-cta {
	display: inline-block;
	background: #FFD700;
	color: #8B0000;
	padding: 18px 40px;
	font-size: 22px;
	font-weight: bold;
	border-radius: 50px;
	text-decoration: none;
	box-shadow: 0 4px 15px rgba(0,0,0,0.3);
	transition: all 0.3s;
}

.hero-cta:hover {
	background: #FFC700;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.hero-phone {
	font-size: 32px;
	font-weight: bold;
	margin-top: 20px;
	letter-spacing: 1px;
}

/* Sections */
.nauco-section {
	padding: 60px 20px;
}

.section-title {
	text-align: center;
	font-size: 36px;
	font-weight: bold;
	color: #8B0000;
	margin-bottom: 40px;
	display: flex;
	justify-content: center;
}

.section-intro {
	text-align: center;
	font-size: 18px;
	line-height: 1.8;
	max-width: 800px;
	margin: 0 auto 50px;
	color: #333;
}

/* Services Grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.service-card {
	background: white;
	border: 3px solid #8B0000;
	border-radius: 15px;
	padding: 30px;
	text-align: center;
	transition: all 0.3s;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(139,0,0,0.3);
}

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

.service-card h3 {
	font-size: 24px;
	color: #8B0000;
	margin-bottom: 15px;
	font-weight: bold;
}

.service-card p {
	font-size: 16px;
	line-height: 1.6;
	color: #555;
}

/* Trust Signals */
.trust-section {
	background: #FFF5E6;
	padding: 50px 20px;
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	max-width: 1000px;
	margin: 0 auto;
}

.trust-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 20px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.trust-icon {
	font-size: 32px;
	color: #8B0000;
	flex-shrink: 0;
}

.trust-text {
	font-size: 16px;
	line-height: 1.6;
	color: #333;
}

/* Pricing */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.pricing-card {
	background: white;
	border: 2px solid #ddd;
	border-radius: 15px;
	padding: 40px 30px;
	text-align: center;
	transition: all 0.3s;
}

.pricing-card.featured {
	border-color: #8B0000;
	border-width: 4px;
	transform: scale(1.05);
	box-shadow: 0 8px 25px rgba(139,0,0,0.3);
}

.pricing-card h3 {
	font-size: 28px;
	color: #8B0000;
	margin-bottom: 10px;
}

.pricing-card .price {
	font-size: 26px;
	font-weight: bold;
	color: #DC143C;
	margin: 20px 0;
}

.pricing-card ul {
	list-style: none;
	padding: 0;
	margin: 20px 0;
	text-align: left;
}

.pricing-card ul li {
	padding: 10px 0;
	border-bottom: 1px solid #eee;
	font-size: 16px;
}

.pricing-card ul li:before {
	content: "✓ ";
	color: #28a745;
	font-weight: bold;
	margin-right: 8px;
}

/* Process Steps */
.process-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.process-step {
	text-align: center;
	position: relative;
}

.process-number {
	width: 60px;
	height: 60px;
	background: #8B0000;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: bold;
	margin: 0 auto 20px;
}

.process-step h3 {
	font-size: 20px;
	color: #8B0000;
	margin-bottom: 10px;
}

.process-step p {
	font-size: 16px;
	line-height: 1.6;
	color: #555;
}

/* Commitments */
.commitments-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
	max-width: 1000px;
	margin: 0 auto;
}

.commitment-item {
	background: white;
	border-left: 5px solid #8B0000;
	padding: 25px;
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.commitment-item h4 {
	font-size: 20px;
	color: #8B0000;
	margin-bottom: 10px;
	font-weight: bold;
}

.commitment-item p {
	font-size: 16px;
	line-height: 1.6;
	color: #555;
}

/* Booking Form */
.booking-section {
	background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
	padding: 80px 20px;
}

.booking-form-container {
	max-width: 700px;
	margin: 0 auto;
	background: white;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(139,0,0,0.15);
}

.booking-form-container h2 {
	text-align: center;
	color: #8B0000;
	font-size: 32px;
	margin-bottom: 15px;
}

.booking-form-container .form-subtitle {
	text-align: center;
	color: #666;
	font-size: 16px;
	margin-bottom: 30px;
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	font-weight: bold;
	color: #333;
	margin-bottom: 8px;
	font-size: 16px;
}

.form-group label .required {
	color: #DC143C;
	margin-left: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 15px;
	border: 2px solid #ddd;
	border-radius: 10px;
	font-size: 16px;
	transition: all 0.3s;
	box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #8B0000;
	box-shadow: 0 0 0 3px rgba(139,0,0,0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 100px;
	font-family: inherit;
}

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

.form-submit {
	text-align: center;
	margin-top: 30px;
}

.submit-button {
	background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
	color: white;
	padding: 18px 60px;
	font-size: 20px;
	font-weight: bold;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(139,0,0,0.3);
}

.submit-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(139,0,0,0.4);
}

.submit-button:active {
	transform: translateY(0);
}

.form-note {
	text-align: center;
	color: #666;
	font-size: 14px;
	margin-top: 20px;
	line-height: 1.6;
}

.form-success {
	background: #d4edda;
	color: #155724;
	padding: 20px;
	border-radius: 10px;
	text-align: center;
	margin-bottom: 20px;
	border: 2px solid #c3e6cb;
}

.form-error {
	background: #f8d7da;
	color: #721c24;
	padding: 20px;
	border-radius: 10px;
	text-align: center;
	margin-bottom: 20px;
	border: 2px solid #f5c6cb;
}

/* CTA Section */
.cta-section {
	background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
	color: white;
	padding: 80px 20px;
	text-align: center;
}

.cta-section h2 {
	font-size: 42px;
	font-weight: bold;
	margin-bottom: 20px;
	color: #fff;
}

.cta-section .cta-text {
	font-size: 20px;
	margin-bottom: 30px;
	opacity: 0.95;
}

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

.cta-button {
	display: inline-block;
	padding: 20px 45px;
	font-size: 20px;
	font-weight: bold;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(0,0,0,0.3);
	background: #fff  !important;
}

.cta-button.primary {
	background: #FFD700;
	color: #8B0000;
}

.cta-button.primary:hover {
	background: #FFC700;
	transform: translateY(-2px);
}

.cta-button.secondary {
	background: white;
	color: #8B0000;
}

.cta-button.secondary:hover {
	background: #f5f5f5;
	transform: translateY(-2px);
}

/* Footer */
.landing-footer {
	background: #1a1a1a;
	color: white;
	padding: 40px 20px;
	text-align: center;
}

.footer-content {
	max-width: 1000px;
	margin: 0 auto;
}

.footer-info {
	margin-bottom: 20px;
}

.footer-info h3 {
	font-size: 28px;
	color: #FFD700;
	margin-bottom: 15px;
}

.footer-contact p {
	font-size: 18px;
	margin: 10px 0;
	line-height: 1.8;
}

.footer-contact a {
	color: #FFD700;
	text-decoration: none;
	font-weight: bold;
}

.footer-contact a:hover {
	text-decoration: underline;
}

.footer-copyright {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #444;
	font-size: 14px;
	opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.hero-section h1 {
		font-size: 32px;
	}
	
	.hero-section .subtitle {
		font-size: 18px;
	}
	
	.hero-cta {
		font-size: 18px;
		padding: 15px 30px;
	}
	
	.hero-phone {
		font-size: 26px;
	}
	
	.section-title {
		font-size: 28px;
	}
	
	.section-intro {
		font-size: 16px;
	}
	
	.services-grid,
	.pricing-grid,
	.process-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}
	
	.pricing-card.featured {
		transform: scale(1);
	}
	
	.cta-section h2 {
		font-size: 28px;
	}
	
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.cta-button {
		width: 100%;
		max-width: 300px;
	}
	
	.booking-form-container {
		padding: 25px;
	}
	
	.booking-form-container h2 {
		font-size: 26px;
	}
	
	.form-row {
		grid-template-columns: 1fr;
	}
	
	.submit-button {
		width: 100%;
		padding: 16px 35px;
		font-size: 18px;
	}
}
