/* =========================================================
   FOOTER (чайлд-тема) — копия футера eastvalleygolfcarts.com
   ========================================================= */
.gc-footer {
	background-color: #000;
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	/* Brand-red accent line to separate the footer from preceding dark sections */
	border-top: 3px solid var(--cl-red);
}

.gc-footer a {
	color: #ffffff;
	text-decoration: none;
	transition: color .2s ease;
}

.gc-footer a:hover {
	color: var(--cl-red);
}

.gc-footer__inner {
	max-width: 1500px;
	margin: 0 auto;
	padding: 60px 20px 40px;
	display: grid;
	grid-template-columns: .8fr .7fr 2.2fr;
	gap: 40px;
}

/* --- Колонка About --- */
.gc-footer__logo {
	width: 140px;
	height: auto;
	margin-bottom: 20px;
}

.gc-footer__about-text {
	font-size: 16px !important;
	line-height: 22px;
	color: #cfcfcf;
	max-width: 280px;
}

/* --- Заголовки --- */
.gc-footer__title {
	color: #ffffff;
	font-size: 30px;
	margin: 0 0 14px;
}

.gc-footer__location-title {
	color: #ffffff;
	font-size: 18px;
	margin: 0 0 14px;
}

/* --- Разделитель --- */
.gc-footer__divider {
	display: block;
	width: 40px;
	height: 3px;
	background-color: var(--cl-red);
	margin: 0 0 20px;
}

/* --- Списки ссылок --- */
.gc-footer__menu {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
}

.gc-footer__menu li {
	margin-bottom: 12px;
}

.gc-footer__menu--contact a {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: #cfcfcf;
	font-size: 18px;
}

.gc-footer__menu--contact i {
	color: var(--cl-red);
	margin-top: 4px;
}

/* --- Соцсети --- */
.gc-footer__follow {
	font-weight: 700 !important;
	margin: 0 0 14px !important;
}

.gc-footer__socials {
	display: flex;
	gap: 12px;
}

.gc-footer__socials a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: var(--cl-red);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 17px;
}

.gc-footer__socials a:hover {
	background-color: #ffffff;
	color: #000;
}

/* --- Локации --- */
.gc-footer__locations {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

/* --- Кнопка Contact Us --- */
.gc-footer__btn {
	position: relative;
	z-index: 2;
	display: inline-block;
	background-color: var(--cl-red);
	color: #fff !important;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 13px;
	padding: 10px 22px;
	border-radius: 4px;
	margin-bottom: 18px;
}

.gc-footer__btn:hover {
	background-color: #ffffff;
	color: #000 !important;
}

/* --- Карты --- */
.gc-footer__map iframe {
	width: 100%;
	max-height: 220px;
	border: 0;
	border-radius: 6px;
	display: block;
}

/* --- Single location: info on the left, map on the right --- */
.gc-footer__locations:has(.gc-footer__location:only-child) {
	grid-template-columns: 1fr;
}
.gc-footer__location:only-child {
	display: grid;
	grid-template-columns: minmax(200px, .9fr) 1.4fr;
	column-gap: 34px;
	align-items: start;
}
.gc-footer__location:only-child > .gc-footer__location-title { grid-column: 1; grid-row: 1; }
.gc-footer__location:only-child > .gc-footer__menu { grid-column: 1; grid-row: 2; }
.gc-footer__location:only-child > .gc-footer__btn { grid-column: 1; grid-row: 3; align-self: start; }
.gc-footer__location:only-child > .gc-footer__map {
	grid-column: 2;
	grid-row: 1 / span 3;
	margin: 0;
	height: 100%;
}
.gc-footer__location:only-child > .gc-footer__map iframe {
	height: 100%;
	min-height: 230px;
	max-height: none;
}
@media (max-width: 900px) {
	.gc-footer__location:only-child { grid-template-columns: 1fr; }
	.gc-footer__location:only-child > .gc-footer__map {
		grid-column: 1;
		grid-row: auto;
		margin-top: 14px;
	}
	.gc-footer__location:only-child > .gc-footer__map iframe { min-height: 200px; }
}

/* --- Нижняя полоса --- */
.gc-footer__bottom {
	background-color: #332C2B;
	border-top: 1px solid rgba(255, 255, 255, .1);
}

.gc-footer__bottom-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
}

.gc-footer__copyright {
	font-size: 13px;
	color: #cfcfcf;
}

.gc-footer__bottom-menu {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0;
	padding: 0;
	font-size: 13px;
}

/* --- Адаптив --- */
@media (max-width: 1024px) {
	.gc-footer__inner {
		grid-template-columns: 1fr 1fr;
	}
	.gc-footer__col--locations {
		grid-column: 1 / -1;
	}
}

@media (max-width: 600px) {
	.gc-footer__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.gc-footer__divider {
		margin-left: auto;
		margin-right: auto;
	}
	.gc-footer__about-text {
		margin-left: auto;
		margin-right: auto;
	}
	.gc-footer__socials {
		justify-content: center;
	}
	.gc-footer__locations {
		grid-template-columns: 1fr;
	}
	.gc-footer__menu--contact a {
		justify-content: center;
	}
	.gc-footer__bottom-inner {
		flex-direction: column;
		text-align: center;
	}
}
/* Single-location footer: keep Contact Us button sized to its text (not stretched). */
.gc-footer__location:only-child > .gc-footer__btn{ justify-self:start; align-self:start; width:auto; max-width:max-content; }

/* Center the Contact Us button in the footer on mobile. */
@media (max-width: 600px) {
	.gc-footer__location:only-child > .gc-footer__btn,
	.gc-footer__location > .gc-footer__btn {
		justify-self: center;
		align-self: center;
	}
}

/* East Valley (multi-location): the three showrooms sit side-by-side in one
   full-width band with compact maps, so the footer never wraps and stays short. */
@media (min-width: 901px) {
	/* Single row: About | Quick Links | the three showroom cards (small maps). */
	.gc-footer__inner {
		grid-template-columns: 1fr 0.8fr 2.7fr;
		column-gap: 40px;
		align-items: start;
		padding-top: 48px;
		padding-bottom: 28px;
	}
	.gc-footer__col--about     { grid-column: 1; grid-row: 1; }
	.gc-footer__col--links     { grid-column: 2; grid-row: 1; }
	.gc-footer__col--locations { grid-column: 3; grid-row: 1; margin-top: 0; }
	.gc-footer__locations {
		grid-template-columns: repeat(3, 1fr);
		gap: 14px;
	}
	.gc-footer__location {
		background: #ffffff;
		border: 1px solid #e6ecf3;
		border-radius: 10px;
		padding: 13px 13px 14px;
		display: flex;
		flex-direction: column;
		gap: 9px;
	}
	.gc-footer__location-title { margin: 0; font-size: 15px; order: 0; }
	.gc-footer__location .gc-footer__menu--contact { margin: 0; font-size: 12.5px; order: 1; }
	.gc-footer__location .gc-footer__menu--contact a { gap: 6px; }
	/* Small map, full card width, sits under the address. */
	.gc-footer__map { margin: 0; width: 100%; order: 2; }
	.gc-footer__map iframe {
		width: 100%;
		height: 90px;
		min-height: 90px;
		max-height: 90px;
		border-radius: 7px;
	}
	/* Contact Us buttons removed from the footer cards — the map covers directions. */
	.gc-footer__location > .gc-footer__btn { display: none; }
}
