/* ==========================================================================
   Your Conveyancing Services — theme styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Variables
   -------------------------------------------------------------------------- */
:root {
	--ycs-primary:        #1f236c;
	--ycs-primary-dark:   #171b56;
	--ycs-secondary:      #4f9259;
	--ycs-secondary-dark: #3f7547;
	--ycs-accent:         #eef2ff;

	--ycs-text:           #1d2433;
	--ycs-text-muted:     #667085;
	--ycs-border-soft:    #e7eaf1;
	--ycs-bg-soft:        #f7f9fc;
	--ycs-white:          #ffffff;

	--ycs-shadow-soft:    0 16px 45px rgba(18, 32, 74, 0.08);
	--ycs-shadow-card:    0 12px 30px rgba(21, 33, 63, 0.07);

	--ycs-radius-xl:      28px;
	--ycs-radius-lg:      20px;
	--ycs-radius-md:      16px;
	--ycs-radius-pill:    999px;

	--ycs-gradient:       linear-gradient(135deg, #1f236c 0%, #28318d 100%);
}

/* --------------------------------------------------------------------------
   2. Base / typography
   -------------------------------------------------------------------------- */
body {
	font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	color: var(--ycs-text);
	background: #ffffff;
	line-height: 1.6;
}

a {
	color: var(--ycs-primary);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(31, 35, 108, 0.06);
	color: var(--ycs-primary);
	padding: 0.55rem 0.9rem;
	border-radius: var(--ycs-radius-pill);
	font-size: 0.92rem;
	font-weight: 600;
	margin-bottom: 1.2rem;
}

.section-heading {
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.1;
	letter-spacing: -0.04em;
	font-weight: 800;
	color: var(--ycs-primary);
	margin-bottom: 0.9rem;
}

.section-heading .highlight {
	color: var(--ycs-secondary);
}

.section-copy {
	color: var(--ycs-text-muted);
	max-width: 44rem;
	font-size: 1.05rem;
}

/* WYSIWYG content inside section copy */
.ycs-rich p:last-child { margin-bottom: 0; }
.ycs-rich a { text-decoration: underline; }

/* --------------------------------------------------------------------------
   3. Buttons (5 styles: primary / secondary / outline / white / ghost)
   -------------------------------------------------------------------------- */
.btn-ycs {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.95rem 1.4rem;
	border-radius: var(--ycs-radius-pill);
	font-weight: 600;
	font-size: 1rem;
	line-height: 1;
	border: 1px solid transparent;
	text-decoration: none;
	transition: background-color .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
	cursor: pointer;
}

.btn-ycs:focus-visible {
	outline: 2px solid var(--ycs-primary);
	outline-offset: 3px;
}

/* Primary — navy solid */
.btn-ycs-primary {
	background: var(--ycs-primary);
	border-color: var(--ycs-primary);
	color: #fff;
	box-shadow: var(--ycs-shadow-soft);
}
.btn-ycs-primary:hover,
.btn-ycs-primary:focus {
	background: var(--ycs-primary-dark);
	border-color: var(--ycs-primary-dark);
	color: #fff;
}

/* Secondary — green solid */
.btn-ycs-secondary {
	background: var(--ycs-secondary);
	border-color: var(--ycs-secondary);
	color: #fff;
	box-shadow: var(--ycs-shadow-soft);
}
.btn-ycs-secondary:hover,
.btn-ycs-secondary:focus {
	background: var(--ycs-secondary-dark);
	border-color: var(--ycs-secondary-dark);
	color: #fff;
}

/* Outline — outlined navy on white */
.btn-ycs-outline {
	background: #fff;
	border-color: rgba(31, 35, 108, 0.18);
	color: var(--ycs-primary);
}
.btn-ycs-outline:hover,
.btn-ycs-outline:focus {
	background: var(--ycs-accent);
	border-color: rgba(31, 35, 108, 0.3);
	color: var(--ycs-primary);
}

/* White — for use on dark/gradient surfaces */
.btn-ycs-white {
	background: #fff;
	border-color: #fff;
	color: var(--ycs-primary);
}
.btn-ycs-white:hover,
.btn-ycs-white:focus {
	background: #f3f5fb;
	border-color: #f3f5fb;
	color: var(--ycs-primary);
}

/* Ghost — transparent text-only */
.btn-ycs-ghost {
	background: transparent;
	border-color: transparent;
	color: var(--ycs-primary);
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	box-shadow: none;
}
.btn-ycs-ghost:hover,
.btn-ycs-ghost:focus {
	color: var(--ycs-primary-dark);
	text-decoration: underline;
}

/* Ghost on dark backgrounds */
.has-dark-bg .btn-ycs-ghost,
.ycs-bg-gradient .btn-ycs-ghost {
	color: #fff;
}

.btn-ycs i {
	font-size: 1.1em;
	line-height: 1;
}

/* --------------------------------------------------------------------------
   4. Section wrappers — backgrounds + padding
   -------------------------------------------------------------------------- */
.ycs-section {
	position: relative;
}

/* Padding scale */
.ycs-pad-none { padding-top: 0;       padding-bottom: 0; }
.ycs-pad-sm   { padding-top: 2rem;    padding-bottom: 2rem; }
.ycs-pad-md   { padding-top: 4rem;    padding-bottom: 4rem; }
.ycs-pad-lg   { padding-top: 4.5rem;  padding-bottom: 4.5rem; }
.ycs-pad-xl   { padding-top: 5rem;    padding-bottom: 5rem; }

@media (min-width: 768px) {
	.ycs-pad-sm { padding-top: 3rem;    padding-bottom: 3rem; }
	.ycs-pad-md { padding-top: 5.5rem;  padding-bottom: 5.5rem; }
	.ycs-pad-lg { padding-top: 7rem;    padding-bottom: 7rem; }
	.ycs-pad-xl { padding-top: 8.5rem;  padding-bottom: 8.5rem; }
}

/* Background variants */
.ycs-bg-white    { background: #ffffff; }
.ycs-bg-soft     { background: var(--ycs-bg-soft); }
.ycs-bg-gradient {
	background: var(--ycs-gradient);
	color: #fff;
}
.ycs-bg-gradient .section-heading,
.ycs-bg-gradient .eyebrow {
	color: #fff;
}
.ycs-bg-gradient .eyebrow {
	background: rgba(255, 255, 255, 0.12);
}
.ycs-bg-gradient .section-copy {
	color: rgba(255, 255, 255, 0.85);
}

/* --------------------------------------------------------------------------
   5. Generic components used by multiple sections
   -------------------------------------------------------------------------- */
.icon-wrap {
	width: 56px;
	height: 56px;
	border-radius: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(31, 35, 108, 0.07);
	color: var(--ycs-primary);
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.feature-card,
.service-card,
.testimonial-card {
	background: #fff;
	border: 1px solid var(--ycs-border-soft);
	border-radius: var(--ycs-radius-lg);
	padding: 1.6rem;
	height: 100%;
	box-shadow: var(--ycs-shadow-card);
}

.feature-card h3,
.service-card h3,
.testimonial-card h3 {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--ycs-primary);
	margin-bottom: 0.65rem;
}

.feature-card p,
.service-card p,
.testimonial-card p {
	color: var(--ycs-text-muted);
	margin-bottom: 0;
}

/* Form controls (used by Hero Split form + Contact form) */
.ycs-section .form-control,
.ycs-section .form-select {
	min-height: 52px;
	border-radius: 14px;
	border: 1px solid var(--ycs-border-soft);
	padding-left: 0.95rem;
}
.ycs-section .form-control:focus,
.ycs-section .form-select:focus {
	border-color: rgba(31, 35, 108, 0.35);
	box-shadow: 0 0 0 0.2rem rgba(31, 35, 108, 0.08);
}
.ycs-section textarea.form-control { min-height: 140px; }

/* --------------------------------------------------------------------------
   6. Header / footer
   -------------------------------------------------------------------------- */
.site-header {
	padding: 1.1rem 0;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(231, 234, 241, 0.85);
	position: sticky;
	top: 0;
	z-index: 1030;
}

.site-header .navbar-brand {
	font-weight: 800;
	font-size: 1.15rem;
	color: var(--ycs-primary);
	letter-spacing: -0.03em;
	text-decoration: none;
}
.site-header .navbar-brand .accent { color: var(--ycs-secondary); }
.site-header .navbar-brand .brand-logo {
	display: block;
	max-height: 100px;
	width: auto;
}

.site-header .nav-link {
	color: var(--ycs-text);
	font-weight: 500;
	margin-left: 0.6rem;
}
.site-header .nav-link:hover,
.site-header .nav-link:focus { color: var(--ycs-primary); }

.site-header .dropdown-menu {
	border: 1px solid var(--ycs-border-soft);
	border-radius: var(--ycs-radius-md);
	box-shadow: var(--ycs-shadow-card);
	padding: 0.5rem;
}
.site-header .dropdown-item {
	border-radius: 10px;
	padding: 0.55rem 0.9rem;
	font-weight: 500;
}
.site-header .dropdown-item:hover,
.site-header .dropdown-item:focus,
.site-header .dropdown-item.active {
	background: var(--ycs-accent);
	color: var(--ycs-primary);
}

.site-footer {
	padding: 2.5rem 0;
	color: var(--ycs-text-muted);
	font-size: 0.92rem;
	border-top: 1px solid var(--ycs-border-soft);
	background: #fff;
}
.site-footer a {
	color: var(--ycs-text);
	text-decoration: none;
	font-weight: 500;
}
.site-footer a:hover { color: var(--ycs-primary); }
.site-footer .footer-brand {
	font-weight: 800;
	font-size: 1.05rem;
	color: var(--ycs-primary);
	margin-bottom: 0.3rem;
}
.site-footer .footer-brand .accent { color: var(--ycs-secondary); }
.site-footer .footer-brand .brand-logo {
	display: block;
	max-height: 72px;
	width: auto;
}

.site-footer .footer-col-title {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--ycs-primary);
	margin: 0 0 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.site-footer .footer-link-list { margin: 0; padding: 0; }
.site-footer .footer-link-list li { padding: 0.2rem 0; }
.site-footer .footer-description { font-size: 0.92rem; margin: 0.5rem 0 0; }
.site-footer .footer-divider { border-color: var(--ycs-border-soft); margin: 2rem 0; }

.site-footer .footer-contact { display: flex; flex-direction: column; gap: 0.55rem; }
.site-footer .footer-contact-link {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	color: var(--ycs-text);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
}
.site-footer .footer-contact-link:hover,
.site-footer .footer-contact-link:focus { color: var(--ycs-primary); }
.site-footer .footer-contact-link i {
	color: var(--ycs-secondary);
	font-size: 1rem;
	width: 1.1rem;
	text-align: center;
}

.site-footer .footer-social-link {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--ycs-bg-soft);
	color: var(--ycs-primary);
	text-decoration: none;
	transition: background-color .15s ease, color .15s ease;
}
.site-footer .footer-social-link:hover,
.site-footer .footer-social-link:focus {
	background: var(--ycs-primary);
	color: #fff;
}

.site-footer .footer-legal { display: inline-flex; flex-wrap: wrap; gap: 0.25rem 0.4rem; }
.site-footer .footer-legal .separator { color: var(--ycs-text-muted); }

.site-footer .footer-images {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 1.5rem 2rem;
	margin-bottom: 0.5rem;
}
.site-footer .footer-image-item img {
	display: block;
	max-height: 90px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
	filter: grayscale(20%);
	opacity: 0.95;
	transition: filter .15s ease, opacity .15s ease;
}
.site-footer .footer-image-item a:hover img,
.site-footer .footer-image-item a:focus img {
	filter: grayscale(0%);
	opacity: 1;
}
@media (max-width: 991.98px) {
	.site-footer .footer-images { gap: 1.25rem 1.75rem; justify-content: flex-start; }
	.site-footer .footer-image-item img { max-height: 70px; max-width: 180px; }
}

/* --------------------------------------------------------------------------
   7. Mobile adjustments
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
	.site-header .btn-ycs { margin-top: 1rem; }
}

/* --------------------------------------------------------------------------
   8. Layout: Hero — Page
   -------------------------------------------------------------------------- */
.ycs-hero-page {
	position: relative;
	overflow: hidden;
	padding-top: 7rem;
	padding-bottom: 4rem;
}
.ycs-hero-page.ycs-pad-none { padding-top: 0; padding-bottom: 0; }
.ycs-hero-page.ycs-pad-sm   { padding-top: 6rem; padding-bottom: 2rem; }
.ycs-hero-page.ycs-pad-lg   { padding-top: 8rem; padding-bottom: 5rem; }
.ycs-hero-page.ycs-pad-xl   { padding-top: 9rem; padding-bottom: 6rem; }

@media (max-width: 991.98px) {
	.ycs-hero-page { padding-top: 6rem; }
	.ycs-hero-page.ycs-pad-sm { padding-top: 5rem; }
	.ycs-hero-page.ycs-pad-lg { padding-top: 7rem; padding-bottom: 4rem; }
	.ycs-hero-page.ycs-pad-xl { padding-top: 7.5rem; padding-bottom: 5rem; }
}

/* Soft radial accents on light backgrounds (skipped for dark gradient bg). */
.ycs-hero-page.ycs-bg-white::before,
.ycs-hero-page.ycs-bg-soft::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top left, rgba(79, 146, 89, 0.10), transparent 35%),
		radial-gradient(circle at bottom right, rgba(31, 35, 108, 0.08), transparent 30%);
	pointer-events: none;
	z-index: 0;
}
.ycs-hero-page > .container { position: relative; z-index: 1; }

.ycs-hero-page .hero-page-title {
	font-size: clamp(2.4rem, 4.5vw, 3.8rem);
	line-height: 1.05;
	letter-spacing: -0.04em;
	font-weight: 800;
	color: var(--ycs-primary);
	margin-bottom: 1rem;
}
.ycs-hero-page .hero-page-title .highlight { color: var(--ycs-secondary); }

.ycs-hero-page.ycs-bg-gradient .hero-page-title,
.ycs-hero-page.ycs-bg-gradient .hero-page-title .highlight { color: #fff; }

.ycs-hero-page .hero-page-lead {
	font-size: 1.1rem;
	color: var(--ycs-text-muted);
	max-width: 38rem;
	margin-bottom: 1.5rem;
}
.ycs-hero-page.ycs-bg-gradient .hero-page-lead {
	color: rgba(255, 255, 255, 0.85);
}

/* Optional image on the right (when "Hero image" is set on the layout). */
.ycs-hero-page .hero-page-image-wrap {
	position: relative;
	border-radius: var(--ycs-radius-xl);
	overflow: hidden;
	box-shadow:
		0 10px 30px rgba(31, 35, 108, 0.18),
		0 4px 10px rgba(31, 35, 108, 0.08);
	aspect-ratio: 4 / 3;
}
.ycs-hero-page .hero-page-image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* --------------------------------------------------------------------------
   9. Layout: Hero — Split
   -------------------------------------------------------------------------- */
.ycs-hero-split {
	position: relative;
	overflow: hidden;
	padding-top: 7rem;
	padding-bottom: 5rem;
}
.ycs-hero-split.ycs-pad-none { padding-top: 0; padding-bottom: 0; }
.ycs-hero-split.ycs-pad-sm   { padding-top: 6rem; padding-bottom: 2rem; }
.ycs-hero-split.ycs-pad-lg   { padding-top: 8rem; padding-bottom: 6rem; }
.ycs-hero-split.ycs-pad-xl   { padding-top: 9rem; padding-bottom: 7rem; }

@media (max-width: 991.98px) {
	.ycs-hero-split { padding-top: 6rem; padding-bottom: 4rem; }
}

.ycs-hero-split.ycs-bg-white::before,
.ycs-hero-split.ycs-bg-soft::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top left, rgba(79, 146, 89, 0.28), transparent 55%),
		radial-gradient(circle at bottom right, rgba(31, 35, 108, 0.10), transparent 35%);
	pointer-events: none;
	z-index: 0;
}
.ycs-hero-split > .container { position: relative; z-index: 1; }

.ycs-hero-split .hero-split-title {
	font-size: clamp(2.6rem, 5vw, 4rem);
	line-height: 1.02;
	letter-spacing: -0.05em;
	font-weight: 800;
	color: var(--ycs-primary);
	margin-bottom: 1.2rem;
}
.ycs-hero-split .hero-split-title .highlight { color: var(--ycs-secondary); }

.ycs-hero-split .hero-split-lead {
	font-size: 1.1rem;
	color: var(--ycs-text-muted);
	max-width: 42rem;
	margin-bottom: 1.75rem;
}
.ycs-hero-split.ycs-bg-gradient .hero-split-title,
.ycs-hero-split.ycs-bg-gradient .hero-split-title .highlight { color: #fff; }
.ycs-hero-split.ycs-bg-gradient .hero-split-lead { color: rgba(255,255,255,0.85); }

.ycs-hero-split .hero-points {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin: 1.4rem 0 2rem;
	padding: 0;
	list-style: none;
}
.ycs-hero-split .hero-points li {
	background: #fff;
	border: 1px solid var(--ycs-border-soft);
	border-radius: var(--ycs-radius-pill);
	padding: 0.7rem 1rem;
	color: var(--ycs-text);
	font-weight: 500;
	box-shadow: 0 6px 16px rgba(20, 30, 60, 0.04);
}

/* Checklist variant — replaces the pill style with green-tick rows. */
.ycs-hero-split .hero-points--checklist {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	margin: 1.5rem 0 2rem;
	padding: 0;
	list-style: none;
}
.ycs-hero-split .hero-points--checklist li {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	background: none;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	padding: 0;
	color: var(--ycs-text);
	font-weight: 500;
	font-size: 1rem;
}
.ycs-hero-split .hero-points--checklist li i.bi {
	color: var(--ycs-secondary);
	font-size: 1.2rem;
	line-height: 1;
	flex-shrink: 0;
}

/* Text-only variant — applied when image mode is selected but no image set,
   so the col goes col-12 and we want everything centred horizontally. */
.ycs-hero-split--text-only .hero-split-lead {
	margin-left: auto;
	margin-right: auto;
}
.ycs-hero-split--text-only .hero-points--checklist {
	align-items: center;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}
.ycs-hero-split--text-only .hero-split-buttons {
	justify-content: center;
}

/* Image mode — right column hosts a tall, cover-fitted image. */
.ycs-hero-split .hero-image-wrap {
	position: relative;
	border-radius: var(--ycs-radius-xl);
	overflow: hidden;
	box-shadow:
		0 10px 30px rgba(31, 35, 108, 0.18),
		0 4px 10px rgba(31, 35, 108, 0.08);
	height: 100%;
	min-height: 380px;
}
.ycs-hero-split .hero-image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (max-width: 991.98px) {
	.ycs-hero-split .hero-image-wrap { min-height: 280px; max-height: 360px; }
}

@media (min-width: 992px) {
	.ycs-hero-split .hero-split-buttons { max-width: 12ch + 30rem; }
}

.ycs-hero-split .hero-card {
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(231, 234, 241, 0.9);
	border-radius: var(--ycs-radius-xl);
	padding: 1.8rem;
	box-shadow: var(--ycs-shadow-soft);
}
.ycs-hero-split .quote-card-header {
	display: flex;
	justify-content: space-between;
	align-items: start;
	gap: 1rem;
	margin-bottom: 1.4rem;
}
.ycs-hero-split .quote-card-header h2 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 0.35rem;
	color: var(--ycs-primary);
}
.ycs-hero-split .quote-card-header p {
	margin: 0;
	color: var(--ycs-text-muted);
	font-size: 0.96rem;
}
.ycs-hero-split .mini-badge {
	background: rgba(79, 146, 89, 0.1);
	color: var(--ycs-secondary);
	border-radius: var(--ycs-radius-pill);
	padding: 0.45rem 0.7rem;
	font-size: 0.82rem;
	font-weight: 700;
	white-space: nowrap;
}

@media (max-width: 767.98px) {
	.ycs-hero-split .hero-card { padding: 1.3rem; }
}

.ycs-hero-split .hero-buttons-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
}
.ycs-hero-split .hero-buttons-grid .btn-ycs {
	width: 100%;
	justify-content: center;
	padding: 1.1rem 0.9rem;
	font-size: 1rem;
	text-align: center;
}
.ycs-hero-split .hero-buttons-grid .btn-ycs i {
	margin-left: 0.35rem;
	font-size: 1em;
}

/* --------------------------------------------------------------------------
   10. Layout: Trust Strip
   -------------------------------------------------------------------------- */
.ycs-trust-strip {
	border-top: 1px solid var(--ycs-border-soft);
	border-bottom: 1px solid var(--ycs-border-soft);
}
.ycs-trust-strip .trust-item {
	padding: 1.75rem 0.75rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.ycs-trust-strip .trust-item-icon {
	color: var(--ycs-secondary);
	font-size: 2.25rem;
	line-height: 1;
	margin-bottom: 0.75rem;
}
.ycs-trust-strip .trust-item strong {
	display: block;
	font-size: 1.5rem;
	color: var(--ycs-primary);
	font-weight: 800;
	letter-spacing: -0.04em;
}
.ycs-trust-strip .trust-item span {
	color: var(--ycs-text-muted);
	font-size: 0.95rem;
}
.ycs-trust-strip.ycs-bg-gradient .trust-item strong { color: #fff; }
.ycs-trust-strip.ycs-bg-gradient .trust-item span   { color: rgba(255,255,255,0.85); }

/* --------------------------------------------------------------------------
   11. Layout: Services Cards
   -------------------------------------------------------------------------- */
.ycs-services-cards .service-card {
	display: flex;
	flex-direction: column;
}
.ycs-services-cards .service-card-checklist {
	list-style: none;
	padding-left: 0;
	margin: 1rem 0 0;
}
.ycs-services-cards .service-card-checklist li {
	padding: 0.35rem 0;
	color: var(--ycs-text);
}
.ycs-services-cards .service-card-checklist li::before {
	content: "\2713";
	color: var(--ycs-secondary);
	font-weight: 700;
	margin-right: 0.5rem;
}
.ycs-services-cards .service-card-cta {
	margin-top: auto;
	padding-top: 1.2rem;
}
.ycs-services-cards .service-card-cta .btn-ycs {
	padding: 0.6rem 1.1rem;
	font-size: 0.92rem;
}

@media (max-width: 767.98px) {
	.ycs-services-cards .service-card { padding: 1.3rem; }
}

/* --------------------------------------------------------------------------
   12. Layout: Steps
   -------------------------------------------------------------------------- */
.ycs-steps .step-number {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--ycs-primary);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1.1rem;
	margin-bottom: 1rem;
}
.ycs-steps .step h3 {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--ycs-primary);
	margin-bottom: 0.5rem;
}
.ycs-steps .step .ycs-rich,
.ycs-steps .step p {
	color: var(--ycs-text-muted);
	font-size: 0.97rem;
}
.ycs-steps.ycs-bg-gradient .step-number {
	background: #fff;
	color: var(--ycs-primary);
}
.ycs-steps.ycs-bg-gradient .step h3 { color: #fff; }
.ycs-steps.ycs-bg-gradient .step .ycs-rich,
.ycs-steps.ycs-bg-gradient .step p   { color: rgba(255,255,255,0.85); }

/* --------------------------------------------------------------------------
   13. Layout: Testimonials
   -------------------------------------------------------------------------- */
.ycs-testimonials .star-rating {
	color: #f5a623;
	font-size: 0.95rem;
	margin-bottom: 0.75rem;
	letter-spacing: 0.05em;
}
.ycs-testimonials .testimonial-quote { color: var(--ycs-text-muted); }
.ycs-testimonials .testimonial-card .reviewer {
	margin-top: 1rem;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--ycs-text);
}

/* --------------------------------------------------------------------------
   14. Layout: CTA Banner
   -------------------------------------------------------------------------- */
.ycs-cta-banner .cta-panel {
	border-radius: 32px;
	padding: 2.5rem;
	box-shadow: var(--ycs-shadow-soft);
}
.ycs-cta-banner .cta-panel--gradient {
	background: var(--ycs-gradient);
	color: #fff;
}
.ycs-cta-banner .cta-panel--navy {
	background: var(--ycs-primary);
	color: #fff;
}
.ycs-cta-banner .cta-panel--soft {
	background: var(--ycs-bg-soft);
	color: var(--ycs-text);
	box-shadow: none;
	border: 1px solid var(--ycs-border-soft);
}

.ycs-cta-banner .cta-panel-heading {
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.05;
	letter-spacing: -0.04em;
	font-weight: 800;
	margin-bottom: 0.85rem;
}
.ycs-cta-banner .cta-panel--gradient .cta-panel-heading,
.ycs-cta-banner .cta-panel--navy     .cta-panel-heading { color: #fff; }
.ycs-cta-banner .cta-panel--soft     .cta-panel-heading { color: var(--ycs-primary); }

/* Highlight stays green on dark too — keeps brand consistency */
.ycs-cta-banner .cta-panel-heading .highlight { color: var(--ycs-secondary); }

.ycs-cta-banner .cta-panel-body {
	max-width: 42rem;
	margin-bottom: 0;
}
.ycs-cta-banner .cta-panel--gradient .cta-panel-body,
.ycs-cta-banner .cta-panel--navy     .cta-panel-body { color: rgba(255,255,255,0.85); }
.ycs-cta-banner .cta-panel--soft     .cta-panel-body { color: var(--ycs-text-muted); }

.ycs-cta-banner .cta-panel--stacked .cta-panel-body { margin-bottom: 1.5rem; margin-left: auto; margin-right: auto; }

@media (max-width: 767.98px) {
	.ycs-cta-banner .cta-panel { padding: 1.75rem; border-radius: 24px; }
}

/* --------------------------------------------------------------------------
   15. Layout: Contact Form
   -------------------------------------------------------------------------- */
.ycs-contact-form .contact-card {
	background: #fff;
	border: 1px solid var(--ycs-border-soft);
	border-radius: var(--ycs-radius-xl);
	padding: 2rem;
	box-shadow: var(--ycs-shadow-card);
}
.ycs-contact-form .contact-card-heading {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--ycs-primary);
	margin-bottom: 0.4rem;
}
.ycs-contact-form .contact-card-subtext {
	color: var(--ycs-text-muted);
	margin-bottom: 1.5rem;
}

.ycs-contact-form .contact-info-heading {
	font-size: clamp(1.6rem, 3vw, 2rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--ycs-primary);
	margin-bottom: 0.6rem;
}
.ycs-contact-form .contact-info-body {
	color: var(--ycs-text-muted);
	font-size: 1rem;
	margin-bottom: 0;
}

.ycs-contact-form .contact-info-box {
	background: #fff;
	border: 1px solid var(--ycs-border-soft);
	border-radius: var(--ycs-radius-lg);
	padding: 1.75rem 1.25rem;
	text-align: center;
	height: 100%;
	box-shadow: var(--ycs-shadow-card);
	transition: transform .15s ease, box-shadow .15s ease;
}
.ycs-contact-form .contact-info-box:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 36px rgba(31, 35, 108, 0.10);
}
.ycs-contact-form .contact-info-box-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 18px;
	background: rgba(79, 146, 89, 0.10);
	color: var(--ycs-secondary);
	font-size: 1.75rem;
	margin-bottom: 1rem;
}
.ycs-contact-form .contact-info-box-label {
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--ycs-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 0.3rem;
}
.ycs-contact-form .contact-info-box-value {
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--ycs-primary);
	word-break: break-word;
}
.ycs-contact-form .contact-info-box-value a {
	color: inherit;
	text-decoration: none;
}
.ycs-contact-form .contact-info-box-value a:hover,
.ycs-contact-form .contact-info-box-value a:focus {
	color: var(--ycs-primary-dark);
	text-decoration: underline;
}

@media (max-width: 767.98px) {
	.ycs-contact-form .contact-card { padding: 1.5rem; }
	.ycs-contact-form .contact-info-box { padding: 1.5rem 1rem; }
}

/* --------------------------------------------------------------------------
   13a. Layout: Image + Text
   -------------------------------------------------------------------------- */
.ycs-image-text .image-text-image-wrap {
	position: relative;
	border-radius: var(--ycs-radius-xl);
	overflow: hidden;
	box-shadow:
		0 10px 30px rgba(31, 35, 108, 0.18),
		0 4px 10px rgba(31, 35, 108, 0.08);
	aspect-ratio: 4 / 3;
}
.ycs-image-text .image-text-image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ycs-image-text .image-text-heading { margin-bottom: 1rem; }
.ycs-image-text .image-text-body {
	color: var(--ycs-text-muted);
	font-size: 1.02rem;
	line-height: 1.65;
}
.ycs-image-text .image-text-body p:last-child { margin-bottom: 0; }

.ycs-image-text.ycs-bg-gradient .image-text-heading,
.ycs-image-text.ycs-bg-gradient .image-text-heading .highlight {
	color: #fff;
}
.ycs-image-text.ycs-bg-gradient .image-text-body { color: rgba(255, 255, 255, 0.85); }

/* Image-only mode — image fills the container row, optional aspect-ratio crop. */
.ycs-image-text--image-only .image-text-image-wrap {
	min-height: 0;
	height: auto;
	max-height: 560px;
}
.ycs-image-text--image-only .image-text-image-wrap[style*="aspect-ratio"] {
	max-height: none;
	height: auto;
}
.ycs-image-text--image-only .image-text-image-wrap[style*="aspect-ratio"] .image-text-image {
	height: 100%;
}
.ycs-image-text--image-only .image-text-image { height: auto; }

@media (max-width: 991.98px) {
	.ycs-image-text .image-text-image-wrap { min-height: 260px; max-height: 360px; }
	.ycs-image-text--image-only .image-text-image-wrap { max-height: 400px; }
}

/* --------------------------------------------------------------------------
   14a. Layout: FAQ (accordion)
   -------------------------------------------------------------------------- */
.ycs-faq .ycs-faq-accordion { display: flex; flex-direction: column; gap: 0.75rem; }

.ycs-faq .ycs-faq-item {
	border: 1px solid var(--ycs-border-soft);
	border-radius: var(--ycs-radius-md);
	background: #fff;
	overflow: hidden;
	box-shadow: var(--ycs-shadow-card);
}
.ycs-faq .ycs-faq-item .accordion-header { margin: 0; }
.ycs-faq .ycs-faq-item .accordion-button {
	background: #fff;
	color: var(--ycs-primary);
	font-weight: 700;
	font-size: 1.05rem;
	padding: 1.1rem 1.25rem;
	box-shadow: none;
	border: 0;
	border-radius: var(--ycs-radius-md);
}
.ycs-faq .ycs-faq-item .accordion-button:not(.collapsed) {
	background: var(--ycs-accent);
	color: var(--ycs-primary);
	box-shadow: none;
}
.ycs-faq .ycs-faq-item .accordion-button:focus {
	border-color: rgba(31, 35, 108, 0.35);
	box-shadow: 0 0 0 0.2rem rgba(31, 35, 108, 0.08);
}
.ycs-faq .ycs-faq-item .accordion-button::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f236c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.ycs-faq .ycs-faq-item .accordion-body {
	padding: 1.1rem 1.25rem 1.3rem;
	color: var(--ycs-text);
	font-size: 0.98rem;
	line-height: 1.6;
}
.ycs-faq .ycs-faq-item .accordion-body p:last-child { margin-bottom: 0; }
.ycs-faq .ycs-faq-item .accordion-body a {
	color: var(--ycs-primary);
	text-decoration: underline;
}

.ycs-faq.ycs-bg-gradient .ycs-faq-item {
	background: rgba(255, 255, 255, 0.97);
}

@media (max-width: 575.98px) {
	.ycs-faq .ycs-faq-item .accordion-button { font-size: 1rem; padding: 0.95rem 1rem; }
	.ycs-faq .ycs-faq-item .accordion-body { padding: 0.9rem 1rem 1.1rem; }
}

/* --------------------------------------------------------------------------
   15a. Layout: Rich Content
   -------------------------------------------------------------------------- */
.ycs-rich-content .rich-content-meta {
	color: var(--ycs-text-muted);
	font-size: 0.92rem;
	margin: 0 0 1.5rem;
}
.ycs-rich-content .rich-content-body {
	font-size: 1.02rem;
	line-height: 1.7;
	color: var(--ycs-text);
}
.ycs-rich-content .rich-content-body h2,
.ycs-rich-content .rich-content-body h3,
.ycs-rich-content .rich-content-body h4 {
	color: var(--ycs-primary);
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-top: 2.2rem;
	margin-bottom: 0.7rem;
}
.ycs-rich-content .rich-content-body h2 { font-size: 1.55rem; }
.ycs-rich-content .rich-content-body h3 { font-size: 1.25rem; }
.ycs-rich-content .rich-content-body h4 { font-size: 1.1rem; }
.ycs-rich-content .rich-content-body p { margin-bottom: 1.1rem; }
.ycs-rich-content .rich-content-body ul,
.ycs-rich-content .rich-content-body ol {
	margin: 0 0 1.1rem 1.25rem;
	padding: 0;
}
.ycs-rich-content .rich-content-body li { margin-bottom: 0.35rem; }
.ycs-rich-content .rich-content-body a {
	color: var(--ycs-primary);
	text-decoration: underline;
}
.ycs-rich-content .rich-content-body a:hover { color: var(--ycs-primary-dark); }
.ycs-rich-content .rich-content-body blockquote {
	border-left: 3px solid var(--ycs-secondary);
	padding: 0.4rem 0 0.4rem 1rem;
	margin: 1.2rem 0;
	color: var(--ycs-text-muted);
	font-style: italic;
}
.ycs-rich-content .rich-content-body hr {
	border: 0;
	border-top: 1px solid var(--ycs-border-soft);
	margin: 2rem 0;
}

/* --------------------------------------------------------------------------
   16. Contact Form 7 — styling
   Used inside .contact-card (Contact Form layout) and any other section that
   embeds a CF7 form via shortcode. Assumes a light card background.
   -------------------------------------------------------------------------- */
.wpcf7 { margin: 0; }
.wpcf7-form { margin: 0; }

.wpcf7-form p {
	margin-bottom: 1.1rem;
}
.wpcf7-form p:last-of-type { margin-bottom: 0; }

.wpcf7-form label {
	display: block;
	font-weight: 500;
	color: var(--ycs-text);
	margin-bottom: 0.4rem;
	font-size: 0.95rem;
}

.wpcf7-form .wpcf7-form-control-wrap { display: block; }

/* Text-style inputs + selects + textareas */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form input[type="password"],
.wpcf7-form input[type="search"],
.wpcf7-form select,
.wpcf7-form textarea {
	width: 100%;
	min-height: 52px;
	border-radius: 14px;
	border: 1px solid var(--ycs-border-soft);
	padding: 0.65rem 0.95rem;
	background: #fff;
	color: var(--ycs-text);
	font-family: inherit;
	font-size: 1rem;
	line-height: 1.4;
	transition: border-color .15s ease, box-shadow .15s ease;
}

.wpcf7-form textarea {
	min-height: 140px;
	resize: vertical;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
	border-color: rgba(31, 35, 108, 0.35);
	box-shadow: 0 0 0 0.2rem rgba(31, 35, 108, 0.08);
	outline: none;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder { color: var(--ycs-text-muted); }

/* Checkbox / radio groups */
.wpcf7-form .wpcf7-checkbox,
.wpcf7-form .wpcf7-radio {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	margin-top: 0.2rem;
}
.wpcf7-form .wpcf7-list-item {
	margin: 0;
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}
.wpcf7-form .wpcf7-list-item label {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin: 0;
	font-weight: 400;
	cursor: pointer;
}
.wpcf7-form .wpcf7-list-item input[type="checkbox"],
.wpcf7-form .wpcf7-list-item input[type="radio"] {
	width: 1.1rem;
	height: 1.1rem;
	min-height: 0;
	accent-color: var(--ycs-primary);
	margin: 0;
}

.wpcf7-acceptance label {
	font-weight: 400;
	font-size: 0.92rem;
	color: var(--ycs-text-muted);
}

/* Submit button */
.wpcf7-form .wpcf7-submit,
.wpcf7-form input[type="submit"],
.wpcf7-form button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: auto;
	min-height: 0;
	padding: 0.95rem 1.6rem;
	border-radius: var(--ycs-radius-pill);
	background: var(--ycs-primary);
	border: 1px solid var(--ycs-primary);
	color: #fff;
	font-family: inherit;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1;
	box-shadow: var(--ycs-shadow-soft);
	cursor: pointer;
	transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.wpcf7-form .wpcf7-submit:hover,
.wpcf7-form .wpcf7-submit:focus,
.wpcf7-form input[type="submit"]:hover,
.wpcf7-form input[type="submit"]:focus,
.wpcf7-form button[type="submit"]:hover,
.wpcf7-form button[type="submit"]:focus {
	background: var(--ycs-primary-dark);
	border-color: var(--ycs-primary-dark);
	color: #fff;
	outline: none;
}

.wpcf7-form .wpcf7-submit:focus-visible,
.wpcf7-form input[type="submit"]:focus-visible,
.wpcf7-form button[type="submit"]:focus-visible {
	outline: 2px solid var(--ycs-primary);
	outline-offset: 3px;
}

.wpcf7-form .wpcf7-submit:disabled,
.wpcf7-form input[type="submit"]:disabled,
.wpcf7-form button[type="submit"]:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* AJAX spinner (the small dot CF7 shows next to submit during send) */
.wpcf7-spinner {
	margin: 0 0.5rem;
	vertical-align: middle;
}

/* Inline validation tip beneath an invalid field */
.wpcf7-not-valid-tip {
	display: block;
	margin-top: 0.4rem;
	color: #b3261e;
	font-size: 0.88rem;
	font-weight: 500;
}

.wpcf7-form input.wpcf7-not-valid,
.wpcf7-form select.wpcf7-not-valid,
.wpcf7-form textarea.wpcf7-not-valid {
	border-color: #b3261e;
	box-shadow: 0 0 0 0.2rem rgba(179, 38, 30, 0.08);
}

/* Response output below the form — coloured per result state */
.wpcf7-form .wpcf7-response-output {
	margin: 1.5rem 0 0;
	padding: 0.85rem 1rem;
	border-radius: 14px;
	border: 1px solid transparent;
	font-size: 0.95rem;
	line-height: 1.4;
}
.wpcf7 form.sent .wpcf7-response-output {
	background: rgba(79, 146, 89, 0.1);
	border-color: rgba(79, 146, 89, 0.4);
	color: var(--ycs-secondary-dark);
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	background: rgba(179, 38, 30, 0.06);
	border-color: rgba(179, 38, 30, 0.3);
	color: #b3261e;
}
.wpcf7 form.spam .wpcf7-response-output {
	background: rgba(245, 166, 35, 0.1);
	border-color: rgba(245, 166, 35, 0.4);
	color: #a06b00;
}

/* Bootstrap rows inside CF7 forms (if your CF7 form uses [row] / col- classes via custom HTML) */
.wpcf7-form .row { margin-left: -0.5rem; margin-right: -0.5rem; }
.wpcf7-form .row > [class*="col"] { padding-left: 0.5rem; padding-right: 0.5rem; }

/* --------------------------------------------------------------------------
   17. Cookie consent — banner, preferences modal, sticky icon
   -------------------------------------------------------------------------- */

/* Banner (first-visit slide-up) */
.ycs-cookie-banner {
	position: fixed;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	z-index: 1080;
	background: #fff;
	border: 1px solid var(--ycs-border-soft);
	border-radius: var(--ycs-radius-lg);
	box-shadow: var(--ycs-shadow-soft);
	padding: 1.25rem 1.5rem;
	display: none;
	max-width: 1200px;
	margin: 0 auto;
}
.ycs-cookie-banner.is-visible { display: block; }

.ycs-cookie-banner-inner {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}
@media (min-width: 992px) {
	.ycs-cookie-banner-inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 1.5rem;
	}
}

.ycs-cookie-banner-text { font-size: 0.95rem; color: var(--ycs-text); }
.ycs-cookie-banner-text strong {
	display: block;
	font-size: 1.05rem;
	color: var(--ycs-primary);
	margin-bottom: 0.2rem;
}
.ycs-cookie-banner-text a { color: var(--ycs-primary); text-decoration: underline; }

.ycs-cookie-banner-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	flex-shrink: 0;
}
.ycs-cookie-banner-actions .btn-ycs {
	padding: 0.7rem 1.1rem;
	font-size: 0.95rem;
}

/* Sticky cookie icon (left edge of viewport) */
.ycs-cookie-sticky {
	position: fixed;
	left: 0.85rem;
	bottom: 50%;
	transform: translateY(50%);
	z-index: 1070;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--ycs-border-soft);
	background: #fff;
	color: var(--ycs-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--ycs-shadow-card);
	cursor: pointer;
	transition: background-color .15s ease, color .15s ease, transform .15s ease;
	font-size: 1.2rem;
}
.ycs-cookie-sticky:hover,
.ycs-cookie-sticky:focus {
	background: var(--ycs-primary);
	color: #fff;
	outline: none;
}
.ycs-cookie-sticky:focus-visible {
	outline: 2px solid var(--ycs-primary);
	outline-offset: 3px;
}

@media (max-width: 575.98px) {
	.ycs-cookie-sticky { width: 40px; height: 40px; left: 0.6rem; font-size: 1.05rem; }
}

/* Preferences modal — built on Bootstrap modal, with brand touches */
.ycs-cookie-modal .modal-content {
	border-radius: var(--ycs-radius-lg);
	border: 1px solid var(--ycs-border-soft);
}
.ycs-cookie-modal .modal-header,
.ycs-cookie-modal .modal-footer { border-color: var(--ycs-border-soft); }
.ycs-cookie-modal .modal-title { color: var(--ycs-primary); font-weight: 700; }

.ycs-cookie-cat {
	border-top: 1px solid var(--ycs-border-soft);
	padding: 1rem 0;
}
.ycs-cookie-cat:first-of-type { border-top: 0; padding-top: 0.25rem; }

.ycs-cookie-cat-row {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}
.ycs-cookie-cat-body { flex: 1; }
.ycs-cookie-cat-title {
	font-weight: 700;
	color: var(--ycs-primary);
	font-size: 1rem;
	margin: 0 0 0.25rem;
}
.ycs-cookie-cat-desc { color: var(--ycs-text-muted); font-size: 0.92rem; margin: 0; }

.ycs-cookie-cat-locked {
	color: var(--ycs-secondary);
	font-size: 0.85rem;
	font-weight: 600;
	white-space: nowrap;
	padding-top: 0.2rem;
}

/* Custom toggle switch */
.ycs-toggle {
	position: relative;
	display: inline-block;
	width: 44px;
	height: 24px;
	flex-shrink: 0;
	margin-top: 0.1rem;
}
.ycs-toggle input { opacity: 0; width: 0; height: 0; }
.ycs-toggle-slider {
	position: absolute;
	cursor: pointer;
	inset: 0;
	background: #d6dae6;
	border-radius: 999px;
	transition: background-color .2s ease;
}
.ycs-toggle-slider::before {
	content: '';
	position: absolute;
	width: 18px;
	height: 18px;
	left: 3px;
	top: 3px;
	background: #fff;
	border-radius: 50%;
	transition: transform .2s ease;
	box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.ycs-toggle input:checked + .ycs-toggle-slider { background: var(--ycs-secondary); }
.ycs-toggle input:checked + .ycs-toggle-slider::before { transform: translateX(20px); }
.ycs-toggle input:focus-visible + .ycs-toggle-slider {
	box-shadow: 0 0 0 0.2rem rgba(31, 35, 108, 0.18);
}

/* --------------------------------------------------------------------------
   END
   -------------------------------------------------------------------------- */
