* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background: #fafbfc;
	color: #4a5568;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

/* Main Content */
.main-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	padding: 80px 40px;
	background: #fff;
}

/* Section Headers */
.section-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 40px;
}

.section-icon {
	color: #4a5568;
}

.section-header h2 {
	font-size: 24px;
	font-weight: 600;
	color: #4a5568;
}

/* Info Cards */
.info-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-bottom: 32px;
}

.info-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px;
	background: #fafbfc;
	border-radius: 12px;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.info-card.clickable {
	cursor: pointer;
}

.info-card:hover {
	transform: translateX(8px);
	background: #fff;
	border-color: #e5e7eb;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.info-card.full-width {
	grid-column: 1 / -1;
}

.card-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #4a5568;
	flex-shrink: 0;
}

.card-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.card-label {
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #9ca3af;
}

.card-value {
	font-size: 16px;
	font-weight: 500;
	color: #4a5568;
}

.card-value small {
	display: block;
	margin-top: 4px;
	font-size: 14px;
	color: #9ca3af;
	font-weight: 400;
}

.link {
	text-decoration: none;
	color: #4a5568;
	position: relative;
}

.link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: #6b46c1;
	transition: width 0.3s ease;
}

.link:hover::after {
	width: 100%;
}

/* Promo Banner */
.promo-banner {
	background: #B38E5A;
	border-radius: 12px;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 32px;
	position: relative;
	overflow: hidden;
}

.promo-banner::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
	animation: rotate 20s linear infinite;
}

@keyframes rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.promo-icon {
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	position: relative;
	z-index: 1;
	flex-shrink: 0;
}

.promo-content {
	flex: 1;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 12px;
}

.promo-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.25);
	color: #fff;
	padding: 3px 10px;
	border-radius: 16px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.5px;
	line-height: 1;
}

.promo-content h3 {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	margin: 0;
	line-height: 1;
}

/* Action Buttons */
.quick-actions {
	display: flex;
	gap: 16px;
}

.action-btn {
	flex: 1;
	padding: 14px 24px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: none;
	font-family: inherit;
}

.action-btn.primary {
	background: linear-gradient(135deg, #718096 0%, #4a5568 100%);
	color: #aa7e45;
}

.action-btn.primary:hover {
	background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(74, 85, 104, 0.3);
}

.action-btn.secondary {
	background: #fff;
	color: #aa7e45;
	border: 2px solid #e5e7eb;
}

.action-btn.secondary:hover {
	border-color: #718096;
	background: #fafbfc;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Modern Form */
.modern-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.form-row {
	display: flex;
	gap: 24px;
}

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

.input-group {
	flex: 1;
	position: relative;
}

.input-group label {
	display: block;
	font-size: 13px;
	font-weight: 500;
	color: #6b7280;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.input-group input,
.input-group select,
.input-group textarea {
	width: 100%;
	padding: 12px 0;
	border: none;
	border-bottom: 2px solid #e5e7eb;
	background: transparent;
	font-size: 16px;
	font-family: inherit;
	transition: all 0.3s ease;
	color: #1a1a1a;
}

.input-group select {
	cursor: pointer;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
	outline: none;
	border-bottom-color: #1a1a1a;
}

.input-line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #4f46e5;
	transition: width 0.3s ease;
}

.input-group input:focus ~ .input-line,
.input-group select:focus ~ .input-line,
.input-group textarea:focus ~ .input-line {
	width: 100%;
}

.submit-btn {
	margin-top: 16px;
	padding: 16px 32px;
	background: linear-gradient(135deg, #718096 0%, #4a5568 100%);
	color: #aa7e45;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-family: inherit;
}

.submit-btn:hover {
	background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(74, 85, 104, 0.3);
}

.submit-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Form Messages */
.form-message {
	padding: 16px 20px;
	border-radius: 10px;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 500;
}

.form-message.success {
	background: #d1fae5;
	color: #065f46;
	border: 1px solid #6ee7b7;
}

.form-message.error {
	background: #fee2e2;
	color: #991b1b;
	border: 1px solid #fca5a5;
}

/* Map Section */
.map-section {
	background: #f7f8fa;
	padding: 80px 0 0;
	position: relative;
}

.map-header {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.map-header .map-title {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.map-header h2 {
	font-size: 28px;
	font-weight: 600;
	color: #4a5568;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 12px;
}

.map-header .location-icon {
	width: 32px;
	height: 32px;
	background: #fff;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #B38E5A;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.map-header p {
	font-size: 15px;
	color: #718096;
	margin: 0;
	padding-left: 44px;
}

.map-info {
	display: flex;
	gap: 24px;
	align-items: center;
}

.map-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 20px;
	border-left: 1px solid #e5e7eb;
}

.map-stat:first-child {
	border-left: none;
}

.map-stat-value {
	font-size: 20px;
	font-weight: 600;
	color: #4a5568;
}

.map-stat-label {
	font-size: 13px;
	color: #9ca3af;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.map-wrapper {
	position: relative;
	height: 500px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
}

.map-wrapper iframe {
	width: 100%;
	height: 100%;
	border: 0;
	filter: grayscale(90%) brightness(1.05);
	transition: all 0.5s ease;
}

.map-wrapper:hover iframe {
	filter: grayscale(0%) brightness(1);
}

.map-overlay {
	position: absolute;
	top: 40px;
	left: 40px;
	background: #fff;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
	max-width: 280px;
	pointer-events: none;
}

.map-overlay h3 {
	font-size: 16px;
	font-weight: 600;
	color: #4a5568;
	margin: 0 0 12px 0;
}

.map-overlay-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	font-size: 14px;
	color: #718096;
}

.map-overlay-item svg {
	width: 16px;
	height: 16px;
	color: #B38E5A;
	flex-shrink: 0;
}

.map-direction-btn {
	position: absolute;
	bottom: 40px;
	right: 40px;
	padding: 14px 24px;
	background: #4a5568;
	color: #aa7e45;
	border: none;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 10px;
	box-shadow: 0 4px 20px rgba(74, 85, 104, 0.25);
}

.map-direction-btn:hover {
	background: #2d3748;
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(74, 85, 104, 0.35);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.main-content {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.contact-form-section {
		order: -1;
	}

	.map-header {
		flex-direction: column;
		gap: 24px;
		align-items: flex-start;
		padding: 0 20px 40px;
	}

	.map-header p {
		padding-left: 0;
	}

	.map-info {
		width: 100%;
		justify-content: space-between;
	}

	.map-overlay {
		display: none;
	}
}

@media (max-width: 768px) {
	.main-content {
		padding: 40px 20px;
	}

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

	.quick-actions {
		flex-direction: column;
	}

	.map-section {
		padding: 40px 0 0;
	}

	.map-header {
		padding: 0 20px 30px;
	}

	.map-header h2 {
		font-size: 24px;
	}

	.map-header .location-icon {
		width: 28px;
		height: 28px;
	}

	.map-info {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 0;
		width: 100%;
		background: #fff;
		border-radius: 12px;
		padding: 12px;
		box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	}

	.map-stat {
		border-left: none;
		border-right: 1px solid #e5e7eb;
		padding: 8px;
		text-align: center;
	}

	.map-stat:last-child {
		border-right: none;
	}

	.map-stat-value {
		font-size: 15px;
		font-weight: 600;
	}

	.map-stat-label {
		font-size: 11px;
		margin-top: 2px;
	}

	.map-direction-btn {
		bottom: 20px;
		right: 20px;
		left: 20px;
		padding: 12px 20px;
		font-size: 14px;
	}

	.map-wrapper {
		height: 350px;
	}
}

@media (max-width: 480px) {
	.map-header h2 {
		font-size: 20px;
		gap: 8px;
	}

	.map-header p {
		font-size: 14px;
	}

	.map-info {
		padding: 10px 8px;
	}

	.map-stat {
		padding: 6px;
	}

	.map-stat-value {
		font-size: 14px;
	}

	.map-stat-label {
		font-size: 10px;
	}

	.map-wrapper {
		height: 300px;
	}

	.info-card {
		padding: 16px;
	}

	.card-icon {
		width: 32px;
		height: 32px;
	}
}
