/* David Cruise — Footer (post 194) */

.dc-footer__col-title {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 16px;
	color: #1a1a1a;
	letter-spacing: .02em;
}

.dc-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.dc-footer__list a {
	color: #3a3a3a;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.5;
	transition: color .15s ease;
}

.dc-footer__list a:hover,
.dc-footer__list a:focus {
	color: #0d5ca3;
	text-decoration: underline;
}

.dc-footer__list--contact li {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	font-size: 14px;
	color: #3a3a3a;
}
.dc-footer__list--contact .dc-footer__label {
	font-weight: 600;
	color: #1a1a1a;
}

/* Phone line: flag then number, always LTR order */
.dc-footer__contact-phone {
	direction: ltr;
	unicode-bidi: isolate;
	align-items: center;
}
.dc-footer__contact-phone .dc-footer__flag {
	font-size: 16px;
	line-height: 1;
}

/* In RTL, the <li dir="ltr"> keeps flag on the left + number on the right
   of the line, but the line itself should still sit at the right edge of the
   column so it aligns with the rest of the footer content. */
html[dir="rtl"] .dc-footer__contact-phone,
body.dc-lang-he .dc-footer__contact-phone {
	justify-content: flex-end;
}

/* About */
.dc-footer__about {
	max-width: 320px;
}
.dc-footer__brand {
	font-size: 20px;
	font-weight: 800;
	margin: 0 0 8px;
	color: #0d5ca3;
}
.dc-footer__tagline {
	font-size: 14px;
	line-height: 1.55;
	color: #4a4a4a;
	margin: 0;
}

/* Accordion */
.dc-footer__accordion {
	border: 0;
}
.dc-footer__accordion-summary {
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	padding: 6px 0;
	list-style: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #0d5ca3;
}
.dc-footer__accordion-summary::-webkit-details-marker { display: none; }
.dc-footer__accordion-summary::before {
	content: "▸";
	transition: transform .2s ease;
	display: inline-block;
}
.dc-footer__accordion[open] > .dc-footer__accordion-summary::before {
	transform: rotate(90deg);
}
.dc-footer__accordion-count {
	color: #888;
	font-weight: 400;
}
.dc-footer__list--accordion {
	margin-top: 10px;
	max-height: 260px;
	overflow-y: auto;
	padding-inline-end: 6px;
}

/* Social */
.dc-footer__social-wrap {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.dc-footer__social-label {
	font-size: 13px;
	font-weight: 600;
	color: #1a1a1a;
}
.dc-footer__social {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.dc-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #ffffff;
	color: #0d5ca3;
	border: 1px solid #e1e6ec;
	transition: background .15s ease, color .15s ease, transform .15s ease;
}
.dc-footer__social-link:hover,
.dc-footer__social-link:focus {
	background: #0d5ca3;
	color: #ffffff;
	transform: translateY(-2px);
}

/* Copyright */
.dc-footer__copyright {
	font-size: 13px;
	color: #6a6a6a;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
}
.dc-footer__copyright a {
	color: #0d5ca3;
	text-decoration: none;
}
.dc-footer__copyright a:hover,
.dc-footer__copyright a:focus {
	text-decoration: underline;
}
.dc-footer__sep {
	opacity: .5;
}
.dc-footer__heart {
	display: inline-block;
	transform: translateY(1px);
}

/* RTL — Hebrew */
html[dir="rtl"] .dc-footer__list--accordion,
body.dc-lang-he .dc-footer__list--accordion {
	padding-inline-end: 0;
	padding-inline-start: 6px;
}
html[dir="rtl"] .dc-footer__accordion-summary::before,
body.dc-lang-he .dc-footer__accordion-summary::before {
	content: "◂";
}
html[dir="rtl"] .dc-footer__accordion[open] > .dc-footer__accordion-summary::before,
body.dc-lang-he .dc-footer__accordion[open] > .dc-footer__accordion-summary::before {
	transform: rotate(-90deg);
}
html[dir="rtl"] .dc-footer__col,
html[dir="rtl"] .dc-footer__about,
body.dc-lang-he .dc-footer__col,
body.dc-lang-he .dc-footer__about {
	text-align: right;
}

/* Mobile */
@media (max-width: 767px) {
	.dc-footer__col-title { font-size: 15px; }
	.dc-footer__about { max-width: none; }
}
