#contact-empty * {
	color: var(--dark);
}

#contact-empty .contact-form .btn-submit {
	color: var(--light);
}

/* ==========================================================================
   KAPCSOLAT OLDAL - MEGKÖZELÍTÉS SZEKCIÓ (web_directions)
   ========================================================================== */
#contact-site {
	padding: 80px 0 40px 0;
	background: #ffffff;
}

/* Három oszlopos, letisztult reszponzív Grid elrendezés */
.dir-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	width: 100%;
}

/* Lapos, háttér és árnyék nélküli kártya elrendezés */
.dir-card {
	display: flex;
	flex-direction: column;
	background: none !important;
	border: none !important;
	box-shadow: none !important;
	padding: 0 !important;
}

.dir-card h2 {
	font-size: 2.5rem;
	color: #111111;
	margin-top: 0;
	margin-bottom: 20px;
	font-weight: 400;
	line-height: 1.25;
}

.dir-card p {
	font-size: 0.95rem;
	color: #555555;
	line-height: 1.65;
	margin: 0;
}

@media (max-width: 500px) {
	#contact-site {
		padding: 60px 0 20px 0;
	}
	.dir-grid {
		gap: 30px;
	}
	.dir-card h2 {
		font-size: 1.8rem;
		margin-bottom: 15px;
		text-align:left
	}
}

/* ==========================================================================
   KAPCSOLAT OLDAL - ADATOK ÉS SOCIAL SZEKCIÓ (web_directions után)
   ========================================================================== */
.contact-info-section {
	padding: 60px 0 80px 0;
	background: #ffffff;
	border-top: 1px solid #f1f1f1;
}
.info-split-row {
	display: flex;
	flex-direction: column;
	gap: 50px;
}
@media (min-width: 900px) {
	.info-split-row {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}
}

/* Bal oszlop: Social */
.info-left-col {
	flex: 0.8;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.info-left-col h3 {
	font-size: 1.4rem;
	font-weight: 700;
	color: #111111;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0;
}
.info-social-links {
	display: flex;
	gap: 15px;
}
.info-social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: #f5f5f5;
	border-radius: 50%;
	color: #333333;
	transition: background 0.3s, color 0.3s, transform 0.2s;
}
.info-social-links a:hover {
	background: var(--primary);
	color: #ffffff;
	transform: translateY(-3px);
}
.info-social-links svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

/* Jobb oszlop: 2x2-es adatrács */
.info-right-col {
	flex: 1.2;
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px 40px;
	width: 100%;
}
@media (min-width: 600px) {
	.info-right-col {
		grid-template-columns: repeat(2, 1fr);
	}
}

.info-card {
	display: flex;
	gap: 15px;
	align-items: flex-start;
}
.info-card-icon {
	width: 46px;
	height: 46px;
	background: #f5f5f5;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #111111;
	flex-shrink: 0;
}
.info-card-icon svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}
.info-card-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.info-card-label {
	font-size: 0.8rem;
	font-weight: bold;
	text-transform: uppercase;
	color: #9c8068; /* Aranybarna kategória címke */
	letter-spacing: 0.08em;
}
.info-card-val {
	font-size: 0.95rem;
	color: #333333;
	line-height: 1.45;
	font-weight: 500;
}
.info-card-val a {
	color: inherit;
	text-decoration: none;
}
.info-card-val a:hover {
	text-decoration: underline;
}