/* Consultation Banner Styles */
.consultation-banner {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 80px 0;
	text-align: center;
	margin-bottom: 50px;
}

.consultation-banner h1 {
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.consultation-banner p {
	font-size: 1.2rem;
	text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.consultation-container {
	max-width: 900px;
	margin: 0 auto;
}

/* Form Styles */
.consultation-form {
	background: white;
	padding: 3rem;
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	margin-bottom: 4rem;
}

.form-label {
	font-weight: 600;
	color: #333;
	margin-bottom: 0.8rem;
}

.form-control, .form-select {
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	padding: 0.8rem;
	transition: 0.3s;
	font-size: 1rem;
}

.form-control:focus, .form-select:focus {
	border-color: #667eea;
	box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group.group-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

@media (max-width: 768px) {
	.form-group.group-row {
		grid-template-columns: 1fr;
	}
}

.btn-submit {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: none;
	color: white;
	padding: 1rem 3rem;
	border-radius: 25px;
	font-weight: 600;
	font-size: 1.1rem;
	cursor: pointer;
	transition: all 0.3s;
	width: 100%;
}

.btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

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

/* Contact Info Section */
.contact-info {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 15px;
	margin-top: 3rem;
}

.contact-info h3 {
	color: #667eea;
	margin-bottom: 1.5rem;
	font-weight: bold;
}

.contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
	padding: 1rem;
	background: white;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-item-icon {
	font-size: 1.8rem;
	margin-right: 1rem;
	min-width: 40px;
	text-align: center;
}

.contact-item-content h5 {
	margin: 0;
	color: #333;
	font-weight: 600;
}

.contact-item-content p {
	margin: 0.3rem 0 0;
	color: #666;
}

/* Tour Options Section */
.tour-options {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	margin-bottom: 2rem;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.tour-options h3 {
	color: #667eea;
	margin-bottom: 1.5rem;
	font-weight: bold;
}

.checkbox-group {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
}

.checkbox-item {
	display: flex;
	align-items: center;
}

.checkbox-item input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin-right: 0.8rem;
	cursor: pointer;
	accent-color: #667eea;
}

.checkbox-item label {
	margin: 0;
	cursor: pointer;
	flex: 1;
}

/* Success Message */
.success-message {
	display: none;
	background: #d4edda;
	color: #155724;
	padding: 1.5rem;
	border-radius: 10px;
	border-left: 4px solid #28a745;
	margin-bottom: 2rem;
}

.success-message.show {
	display: block;
	animation: slideIn 0.3s ease;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Link Styles */
a {
	color: #667eea;
	text-decoration: none;
}

a:hover {
	color: #764ba2;
	text-decoration: underline;
}

/* Form Title */
.consultation-form h2 {
	text-align: center;
}

/* Contact Info Paragraph */
.contact-info p {
	text-align: center;
	margin-top: 1rem;
}
