/* Contact page styles */

.contact-page-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 32px 20px 48px;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: #333;
}

/* Page header & breadcrumb */
.contact-page-header {
	margin-bottom: 32px;
}

.contact-page-title {
	font-size: 36px;
	font-weight: 700;
	color: #2c2c2c;
	letter-spacing: 0.02em;
	margin: 0 0 8px 0;
}

.contact-breadcrumb {
	font-size: 14px;
	color: #666;
}

.contact-breadcrumb a {
	color: #666;
	text-decoration: none;
}

.contact-breadcrumb a:hover {
	color: #111;
}

.breadcrumb-sep {
	margin: 0 6px;
	opacity: 0.7;
}

.breadcrumb-current {
	color: #2c2c2c;
	font-weight: 500;
}

/* Two-column layout */
.contact-page-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: start;
}

@media (max-width: 900px) {
	.contact-page-content {
		grid-template-columns: 1fr;
	}
}

/* Cards */
.contact-info-card,
.contact-form-card {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	padding: 28px 24px;
}

/* Left column – contact info */
.contact-info-heading {
	font-size: 14px;
	font-weight: 600;
	color: #2c2c2c;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	margin: 0 0 12px 0;
}

.contact-info-heading:not(:first-child) {
	margin-top: 24px;
}

.contact-phone-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.contact-phone-item,
.contact-email-link,
.contact-hours {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #333;
	text-decoration: none;
	font-size: 15px;
}

.contact-phone-item:hover,
.contact-email-link:hover {
	color: #1a1a1a;
	opacity: 0.9;
}

.contact-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: #444;
}

.contact-hours {
	color: #333;
}

/* Social icons */
.contact-social {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.contact-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	color: #fff;
	text-decoration: none;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-social-link:hover {
	transform: scale(1.08);
	opacity: 0.9;
}

.contact-social-link svg {
	width: 22px;
	height: 22px;
}

.contact-social-telegram {
	background: #0088cc;
}

.contact-social-viber {
	background: #7360f2;
}

.contact-social-whatsapp {
	background: #25d366;
}

.contact-social-facebook {
	background: #1877f2;
}

.contact-social-instagram {
	background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Right column – form */
.contact-form-title {
	font-size: 20px;
	font-weight: 700;
	color: #2c2c2c;
	margin: 0 0 12px 0;
	line-height: 1.3;
}

.contact-form-desc {
	font-size: 15px;
	color: #555;
	line-height: 1.5;
	margin: 0 0 24px 0;
}

.contact-form .contact-field {
	margin: 0 0 16px 0;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
	width: 100%;
	padding: 14px 16px;
	font-size: 15px;
	font-family: inherit;
	color: #333;
	background: #fff;
	border: 1px solid #d0d0d0;
	border-radius: 8px;
	box-sizing: border-box;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: #1f2734;
	box-shadow: 0 0 0 2px rgba(31, 39, 52, 0.1);
}

.contact-form textarea {
	min-height: 100px;
	resize: vertical;
}

.contact-submit-wrap {
	margin: 24px 0 0 0;
}

.contact-submit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 24px;
	background: #1f2734;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	transition: background-color 0.2s ease, opacity 0.2s ease;
}

.contact-submit-btn:hover,
.contact-submit-btn:focus {
	background: #2a3548;
}

.contact-submit-btn:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.contact-submit-arrow {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

/* Screen reader only labels */
.contact-form .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
