/* =====================================================================
   Make Peace — Futuristic Glass UI Layer
   Loaded last (priority 9999). Transforms the Mindset theme into a
   modern, React-like glassmorphism design. White + Gold palette.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
	--mp-gold: #B8860B;
	--mp-gold-light: #D4A843;
	--mp-gold-dark: #8B6508;
	--mp-gold-glow: rgba(184, 134, 11, 0.15);
	--mp-gold-border: rgba(184, 134, 11, 0.12);
	--mp-dark: #1A1207;
	--mp-dark-mid: #231A0D;
	--mp-text: #1A1207;
	--mp-text-mid: #4A3D2A;
	--mp-muted: #7D6B4F;
	--mp-glass: rgba(255, 255, 255, 0.52);
	--mp-glass-strong: rgba(255, 255, 255, 0.72);
	--mp-glass-subtle: rgba(255, 255, 255, 0.35);
	--mp-ease: cubic-bezier(.16, 1, .3, 1);
	--mp-shadow-sm: 0 2px 12px rgba(26, 18, 7, .05);
	--mp-shadow-md: 0 12px 36px rgba(184, 134, 11, .08);
	--mp-shadow-lg: 0 24px 64px rgba(26, 18, 7, .12);
	--mp-shadow-glass: 0 8px 32px rgba(184, 134, 11, .06), inset 0 1.5px 0 rgba(255, 255, 255, .7);
	--mp-radius: 18px;
	--mp-radius-sm: 12px;
	--mp-blur: blur(18px) saturate(160%);
}

/* ─── 1. GLOBAL RESET & FONT ────────────────────────────────── */
body {
	font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	color: var(--mp-text) !important;
	line-height: 1.6;
	background:
		radial-gradient(1200px 800px at 5% -10%, rgba(184, 134, 11, 0.14), transparent 55%),
		radial-gradient(900px 700px at 100% 0%, rgba(212, 168, 67, 0.10), transparent 50%),
		radial-gradient(1100px 900px at 50% 110%, rgba(184, 134, 11, 0.08), transparent 55%),
		linear-gradient(145deg, #faf7f0 0%, #f7f3ea 40%, #f5f0e4 100%) !important;
	background-attachment: fixed !important;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Outfit', sans-serif !important;
	letter-spacing: -0.025em;
	text-wrap: balance;
	color: var(--mp-text) !important;
	font-weight: 800;
}

p, li, span, a, label, input, select, textarea, button, div {
	font-family: 'Outfit', sans-serif !important;
}

p, li {
	text-wrap: pretty;
	color: var(--mp-text-mid);
}

.entry-content > p,
.elementor-widget-text-editor .elementor-widget-container > p {
	max-width: 72ch;
}

/* ─── 2. CUSTOM SCROLLBAR ────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: rgba(184, 134, 11, 0.03); }
::-webkit-scrollbar-thumb { background: rgba(184, 134, 11, 0.28); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(184, 134, 11, 0.50); }

::selection { background: rgba(184, 134, 11, 0.18); color: var(--mp-dark); }

html { scroll-behavior: smooth; }

/* ─── 3. GLASSMORPHISM HEADER ────────────────────────────────── */
.ct-header-elementor-main,
.site-header,
.elementor-location-header,
header#masthead {
	background: var(--mp-glass-strong) !important;
	backdrop-filter: var(--mp-blur) !important;
	-webkit-backdrop-filter: var(--mp-blur) !important;
	border-bottom: 1px solid var(--mp-gold-border) !important;
	box-shadow: 0 4px 30px rgba(184, 134, 11, 0.06) !important;
}

/* Sticky header enhancement */
.ct-header-fixed-transparent,
.is-sticky .ct-header-elementor-main,
.sticky-header {
	background: var(--mp-glass-strong) !important;
	backdrop-filter: blur(22px) saturate(170%) !important;
	-webkit-backdrop-filter: blur(22px) saturate(170%) !important;
}

/* Navigation links */
.ct-nav-menu .ct-main-menu > li > a,
.ct-menu-item a {
	color: var(--mp-text) !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	letter-spacing: 0.01em;
	transition: color 0.25s ease, transform 0.25s var(--mp-ease) !important;
	position: relative;
}

.ct-nav-menu .ct-main-menu > li > a:hover,
.ct-menu-item a:hover {
	color: var(--mp-gold) !important;
}

.ct-nav-menu .ct-main-menu > li.current-menu-item > a,
.ct-menu-item.current-menu-item a {
	color: var(--mp-gold) !important;
	font-weight: 700 !important;
}

/* Gold underline on active nav */
.ct-nav-menu .ct-main-menu > li.current-menu-item > a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 20%;
	right: 20%;
	height: 2.5px;
	background: linear-gradient(90deg, var(--mp-gold), var(--mp-gold-light));
	border-radius: 2px;
}

/* Sub-menus — frosted glass dropdown */
.ct-nav-menu .sub-menu,
.ct-main-menu .sub-menu {
	background: var(--mp-glass-strong) !important;
	backdrop-filter: blur(22px) saturate(165%) !important;
	-webkit-backdrop-filter: blur(22px) saturate(165%) !important;
	border: 1px solid var(--mp-gold-border) !important;
	border-radius: var(--mp-radius-sm) !important;
	box-shadow: var(--mp-shadow-md) !important;
	overflow: hidden;
}

.ct-nav-menu .sub-menu li a:hover {
	background: rgba(184, 134, 11, 0.06) !important;
	color: var(--mp-gold) !important;
}

/* Logo */
.ct-logo img {
	transition: filter 0.3s ease;
}

.ct-logo:hover img {
	filter: drop-shadow(0 2px 8px rgba(184, 134, 11, 0.25));
}

/* ─── 4. HERO / SLIDER REVOLUTION OVERLAY ────────────────────── */
.rev_slider_wrapper,
.rev_slider {
	border-radius: 0 0 var(--mp-radius) var(--mp-radius) !important;
	overflow: hidden !important;
}

.tp-caption,
.rev_slider .tp-caption {
	font-family: 'Outfit', sans-serif !important;
}

/* ─── 5. ELEMENTOR SECTIONS → GLASS PANELS ───────────────────── */
.elementor-section:not(.elementor-section-stretched):not(.ct-header-elementor-main) {
	border-radius: var(--mp-radius) !important;
}

/* Content sections get glass treatment */
.elementor-section.elementor-section-boxed > .elementor-container {
	position: relative;
}

/* Section headings — larger, bolder */
.elementor-heading-title {
	font-family: 'Outfit', sans-serif !important;
	font-weight: 800 !important;
	letter-spacing: -0.03em !important;
}

/* Widget text */
.elementor-widget-text-editor {
	color: var(--mp-text-mid) !important;
	line-height: 1.7 !important;
}

/* ─── 6. CARDS → FROSTED GLASS ───────────────────────────────── */
.elementor-widget-image-box .elementor-image-box-wrapper,
.elementor-widget-icon-box .elementor-widget-container,
.eael-team-member,
.eael-flipbox,
article.post,
.e-loop-item,
.blog .hentry,
.wc-block-grid__product {
	background: var(--mp-glass) !important;
	backdrop-filter: var(--mp-blur) !important;
	-webkit-backdrop-filter: var(--mp-blur) !important;
	border: 1px solid var(--mp-gold-border) !important;
	border-radius: var(--mp-radius) !important;
	box-shadow: var(--mp-shadow-glass) !important;
	padding: 2rem !important;
	transition: transform 0.35s var(--mp-ease), box-shadow 0.35s var(--mp-ease), border-color 0.35s ease !important;
}

.elementor-widget-image-box:hover .elementor-image-box-wrapper,
.elementor-widget-icon-box:hover .elementor-widget-container,
.eael-team-member:hover,
article.post:hover,
.e-loop-item:hover,
.blog .hentry:hover {
	transform: translateY(-6px) !important;
	box-shadow: 0 22px 56px rgba(184, 134, 11, 0.12), inset 0 1.5px 0 rgba(255, 255, 255, 0.85) !important;
	border-color: rgba(184, 134, 11, 0.25) !important;
}

/* Icon boxes — gold icons */
.elementor-widget-icon-box .elementor-icon {
	color: var(--mp-gold) !important;
	transition: transform 0.3s var(--mp-ease);
}

.elementor-widget-icon-box:hover .elementor-icon {
	transform: scale(1.12);
}

.elementor-widget-icon-box .elementor-icon i,
.elementor-widget-icon-box .elementor-icon svg {
	color: var(--mp-gold) !important;
	fill: var(--mp-gold) !important;
}

/* Icon box backgrounds → gold tint */
.elementor-icon-box-icon .elementor-icon {
	background: rgba(184, 134, 11, 0.08) !important;
	border-radius: 14px !important;
}

/* ─── 7. BUTTONS → GOLD GRADIENT GLASS ───────────────────────── */
.elementor-button,
a.elementor-button,
.wp-block-button__link,
.eael-creative-button,
button[type="submit"],
input[type="submit"],
.wpcf7-submit {
	background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-dark)) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 12px !important;
	font-weight: 700 !important;
	font-size: 14px !important;
	letter-spacing: 0.02em !important;
	padding: 14px 32px !important;
	box-shadow: 0 4px 18px rgba(184, 134, 11, 0.30) !important;
	transition: transform 0.25s var(--mp-ease), box-shadow 0.25s var(--mp-ease), filter 0.25s ease !important;
	cursor: pointer;
	text-transform: none !important;
	position: relative;
	overflow: hidden;
}

.elementor-button::before,
a.elementor-button::before,
button[type="submit"]::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.20), transparent);
	transition: left 0.5s ease;
}

.elementor-button:hover::before,
a.elementor-button:hover::before,
button[type="submit"]:hover::before {
	left: 100%;
}

.elementor-button:hover,
a.elementor-button:hover,
.wp-block-button__link:hover,
.eael-creative-button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
.wpcf7-submit:hover {
	transform: translateY(-3px) !important;
	box-shadow: 0 10px 30px rgba(184, 134, 11, 0.40) !important;
	filter: brightness(1.08);
}

.elementor-button:active,
.wp-block-button__link:active,
button[type="submit"]:active,
.wpcf7-submit:active {
	transform: translateY(-1px) !important;
	box-shadow: 0 4px 14px rgba(184, 134, 11, 0.30) !important;
}

/* Secondary / outline buttons */
.elementor-button.elementor-size-sm,
.elementor-button[style*="background-color: transparent"],
.elementor-button[style*="background-color:transparent"] {
	background: var(--mp-glass) !important;
	color: var(--mp-gold) !important;
	border: 1.5px solid var(--mp-gold-border) !important;
	backdrop-filter: blur(12px) !important;
	-webkit-backdrop-filter: blur(12px) !important;
	box-shadow: var(--mp-shadow-sm) !important;
}

/* ─── 8. FORM INPUTS → GLASS FIELDS ─────────────────────────── */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="date"],
textarea,
select,
.wpcf7-form-control:not(.wpcf7-submit) {
	background: var(--mp-glass) !important;
	backdrop-filter: blur(12px) saturate(140%) !important;
	-webkit-backdrop-filter: blur(12px) saturate(140%) !important;
	border: 1.5px solid var(--mp-gold-border) !important;
	border-radius: var(--mp-radius-sm) !important;
	padding: 13px 16px !important;
	font-size: 14px !important;
	color: var(--mp-text) !important;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease !important;
	outline: none !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

input:focus,
textarea:focus,
select:focus,
.wpcf7-form-control:not(.wpcf7-submit):focus {
	border-color: var(--mp-gold) !important;
	box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
	background: rgba(255, 255, 255, 0.75) !important;
}

/* ─── 9. FOOTER → DARK GOLD ──────────────────────────────────── */
footer,
.site-footer,
.elementor-location-footer,
[data-elementor-type="footer"],
#colophon {
	background: linear-gradient(165deg, #1A1207 0%, #231A0D 45%, #2A1F12 100%) !important;
	border-top: 2px solid rgba(184, 134, 11, 0.35) !important;
	color: rgba(255, 255, 255, 0.92) !important;
}

footer h1, footer h2, footer h3, footer h4, footer h5, footer h6,
.site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4,
[data-elementor-type="footer"] h1,
[data-elementor-type="footer"] h2,
[data-elementor-type="footer"] h3,
[data-elementor-type="footer"] h4 {
	color: #fff !important;
}

footer p, footer li, footer span, footer label,
.site-footer p, .site-footer li, .site-footer span,
[data-elementor-type="footer"] p,
[data-elementor-type="footer"] li,
[data-elementor-type="footer"] span {
	color: rgba(255, 255, 255, 0.92) !important;
}

footer a, .site-footer a,
[data-elementor-type="footer"] a {
	color: var(--mp-gold-light) !important;
	transition: color 0.25s ease, text-shadow 0.25s ease !important;
}

footer a:hover, .site-footer a:hover,
[data-elementor-type="footer"] a:hover {
	color: #fff !important;
	text-shadow: 0 0 14px rgba(212, 168, 67, 0.5) !important;
}

/* Footer widget dividers */
footer .elementor-widget-container,
.site-footer .widget {
	border-color: rgba(184, 134, 11, 0.15) !important;
}

/* ─── 10. CONTACT FORM 7 → GLASS TREATMENT ──────────────────── */
.wpcf7-form {
	background: var(--mp-glass) !important;
	backdrop-filter: var(--mp-blur) !important;
	-webkit-backdrop-filter: var(--mp-blur) !important;
	padding: 2.5rem !important;
	border-radius: var(--mp-radius) !important;
	border: 1px solid var(--mp-gold-border) !important;
	box-shadow: var(--mp-shadow-glass) !important;
}

.wpcf7-form label {
	font-weight: 600 !important;
	font-size: 13px !important;
	color: var(--mp-text-mid) !important;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 6px !important;
	display: block;
}

/* ─── 11. IMAGES → POLISHED PRESENTATION ─────────────────────── */
img {
	height: auto;
	max-width: 100%;
}

.elementor-widget-image .elementor-widget-container > img,
.elementor-widget-image a > img,
.wp-block-image img,
.single-post .post-thumbnail img,
figure.wp-block-image img {
	border-radius: var(--mp-radius);
	box-shadow: 0 8px 28px rgba(26, 18, 7, 0.08);
}

article .post-thumbnail img,
.e-loop-item .wp-post-image,
.blog .hentry .wp-post-image {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: var(--mp-radius);
	display: block;
}

img.mp-fade {
	opacity: 0;
	transition: opacity .5s ease;
}
img.mp-fade.mp-loaded,
img.mp-fade[data-mp-instant] {
	opacity: 1;
}

/* ─── 12. ACCESSIBILITY ──────────────────────────────────────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.elementor-button:focus-visible,
[tabindex]:focus-visible {
	outline: 3px solid rgba(184, 134, 11, 0.45) !important;
	outline-offset: 2px;
	border-radius: 8px;
}

.mp-visually-hidden {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0);
	white-space: nowrap; border: 0;
}

/* ─── 13. ELEMENTOR DIVIDERS / SEPARATORS ────────────────────── */
.elementor-divider-separator,
.elementor-widget-divider .elementor-divider-separator {
	border-color: var(--mp-gold-border) !important;
}

/* ─── 14. COUNTERS / NUMBERS ─────────────────────────────────── */
.elementor-counter-number-wrapper,
.elementor-counter-number {
	color: var(--mp-gold) !important;
	font-weight: 900 !important;
	font-family: 'Outfit', sans-serif !important;
}

/* ─── 15. TESTIMONIALS → GLASS CARDS ─────────────────────────── */
.elementor-testimonial,
.eael-testimonial-item,
.elementor-widget-testimonial .elementor-testimonial-wrapper {
	background: var(--mp-glass) !important;
	backdrop-filter: var(--mp-blur) !important;
	-webkit-backdrop-filter: var(--mp-blur) !important;
	border: 1px solid var(--mp-gold-border) !important;
	border-radius: var(--mp-radius) !important;
	box-shadow: var(--mp-shadow-glass) !important;
	padding: 2rem !important;
}

/* ─── 16. PRICING / CTA SECTIONS ─────────────────────────────── */
.elementor-widget-price-table,
.eael-pricing {
	background: var(--mp-glass) !important;
	backdrop-filter: var(--mp-blur) !important;
	-webkit-backdrop-filter: var(--mp-blur) !important;
	border: 1px solid var(--mp-gold-border) !important;
	border-radius: var(--mp-radius) !important;
	box-shadow: var(--mp-shadow-glass) !important;
	transition: transform 0.3s var(--mp-ease), box-shadow 0.3s var(--mp-ease) !important;
}

.elementor-widget-price-table:hover,
.eael-pricing:hover {
	transform: translateY(-6px) !important;
	box-shadow: var(--mp-shadow-lg) !important;
}

/* ─── 17. FUTURISTIC ANIMATIONS ──────────────────────────────── */
@keyframes mp-fadeUp {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes mp-shimmer {
	0% { background-position: -200% 0; }
	100% { background-position: 200% 0; }
}

@keyframes mp-glow {
	0%, 100% { box-shadow: 0 0 8px rgba(184, 134, 11, 0.25); }
	50% { box-shadow: 0 0 20px rgba(184, 134, 11, 0.45); }
}

/* Fade-up on scroll (triggered by ux.js) */
.mp-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s var(--mp-ease), transform 0.6s var(--mp-ease);
}

.mp-reveal.mp-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Gold shimmer line separator */
.mp-shimmer-line {
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--mp-gold-light), transparent);
	background-size: 200% 100%;
	animation: mp-shimmer 3s infinite linear;
	border-radius: 2px;
	margin: 2rem auto;
	max-width: 200px;
}

/* ─── 18. SIDEBAR WIDGETS → GLASS ────────────────────────────── */
.widget,
.sidebar .widget,
aside .widget {
	background: var(--mp-glass) !important;
	backdrop-filter: blur(14px) saturate(140%) !important;
	-webkit-backdrop-filter: blur(14px) saturate(140%) !important;
	border: 1px solid var(--mp-gold-border) !important;
	border-radius: var(--mp-radius) !important;
	padding: 1.6rem !important;
	box-shadow: var(--mp-shadow-glass) !important;
	margin-bottom: 1.5rem !important;
}

.widget-title,
.sidebar .widget-title {
	font-size: 14px !important;
	font-weight: 800 !important;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--mp-gold) !important;
	border-bottom: 2px solid var(--mp-gold-border);
	padding-bottom: 10px;
	margin-bottom: 14px !important;
}

/* ─── 19. CONTACT INFO STRIP (top bar) ───────────────────────── */
.ct-contact-info {
	font-size: 13px !important;
	font-weight: 500 !important;
}

.ct-contact-icon {
	color: var(--mp-gold) !important;
}

.ct-contact-icon i,
.ct-contact-icon svg {
	color: var(--mp-gold) !important;
}

/* ─── 20. BREADCRUMBS ────────────────────────────────────────── */
.ct-breadcrumb,
.breadcrumbs,
.yoast-breadcrumb {
	font-size: 13px !important;
	font-weight: 500;
	color: var(--mp-muted) !important;
}

.ct-breadcrumb a,
.breadcrumbs a,
.yoast-breadcrumb a {
	color: var(--mp-gold) !important;
}

/* ─── 21. GLOBAL LINK STYLING ────────────────────────────────── */
a {
	color: var(--mp-gold);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--mp-gold-dark);
}

/* ─── 22. PAGE TITLE BAR → GLASS ─────────────────────────────── */
.page-title-bar,
.ct-titlebar,
.elementor-page-title {
	background: var(--mp-glass) !important;
	backdrop-filter: var(--mp-blur) !important;
	-webkit-backdrop-filter: var(--mp-blur) !important;
	border-bottom: 1px solid var(--mp-gold-border) !important;
}

/* ─── 23. WOOCOMMERCE (if active) ────────────────────────────── */
.woocommerce .products .product,
.wc-block-grid__product {
	background: var(--mp-glass) !important;
	backdrop-filter: var(--mp-blur) !important;
	-webkit-backdrop-filter: var(--mp-blur) !important;
	border: 1px solid var(--mp-gold-border) !important;
	border-radius: var(--mp-radius) !important;
}

.woocommerce .products .product:hover {
	transform: translateY(-4px);
	box-shadow: var(--mp-shadow-md) !important;
}

/* ─── 24. LOADING OVERLAY → GOLD PULSE ───────────────────────── */
.ct-loader,
.ct-page-loading-bg {
	background: linear-gradient(145deg, var(--mp-dark), var(--mp-dark-mid)) !important;
}

.ct-dual-ring::after {
	border-color: var(--mp-gold) transparent var(--mp-gold) transparent !important;
}

/* ─── 25. MOBILE RESPONSIVE ──────────────────────────────────── */
@media (max-width: 768px) {
	.elementor-widget-image-box .elementor-image-box-wrapper,
	.elementor-widget-icon-box .elementor-widget-container,
	.eael-team-member,
	article.post {
		padding: 1.4rem !important;
	}

	.elementor-button,
	a.elementor-button,
	button[type="submit"] {
		padding: 12px 24px !important;
		font-size: 13px !important;
	}

	.wpcf7-form {
		padding: 1.5rem !important;
	}

	h1 { font-size: clamp(26px, 6vw, 40px) !important; }
	h2 { font-size: clamp(22px, 5vw, 34px) !important; }
}

/* ─── 27. SVG POSTER BACKGROUNDS — HERO & SECTIONS ──────────── */

/* Hero slider overlay — futuristic dark gold poster behind/over the slider */
.elementor-widget-slider_revolution,
.wp-block-themepunch-revslider {
	position: relative;
}

.elementor-widget-slider_revolution::before,
.wp-block-themepunch-revslider::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background: url('hero-bg.svg') center/cover no-repeat;
	pointer-events: none;
}

/* SR7 module gets a glass overlay on top of the poster bg */
sr7-module,
.rev_slider_wrapper {
	position: relative;
}

sr7-module::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(26,18,7,0.35) 100%);
	pointer-events: none;
	z-index: 1;
}

/* Slider captions → glass pill style */
sr7-slide [data-type="text"],
sr7-slide [data-type="button"],
.tp-caption {
	font-family: 'Outfit', sans-serif !important;
}

/* ─── 28. SECTION-SPECIFIC POSTER BACKGROUNDS ───────────────── */

/* Testimonial / review section — decorative quote background */
.elementor-element-981cc4d,
.elementor-widget-ct_testimonial_carousel {
	position: relative;
}

.elementor-element-981cc4d::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('testimonial-bg.svg') center/cover no-repeat;
	opacity: 0.7;
	pointer-events: none;
	z-index: 0;
	border-radius: var(--mp-radius);
}

.elementor-element-981cc4d > .elementor-container {
	position: relative;
	z-index: 1;
}

/* Service carousel section — section pattern */
.elementor-element-b4b439c,
.elementor-element-8055d4a {
	position: relative;
}

.elementor-element-b4b439c::before,
.elementor-element-8055d4a::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('section-pattern.svg') center/cover no-repeat;
	opacity: 0.6;
	pointer-events: none;
	z-index: 0;
}

.elementor-element-b4b439c > .elementor-container,
.elementor-element-8055d4a > .elementor-container {
	position: relative;
	z-index: 1;
}

/* Blog / news section — CTA poster bg */
.elementor-element-6811982 {
	position: relative;
}

.elementor-element-6811982::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('section-pattern.svg') center/cover no-repeat;
	opacity: 0.5;
	pointer-events: none;
	z-index: 0;
}

.elementor-element-6811982 > .elementor-container {
	position: relative;
	z-index: 1;
}

/* ─── 29. PAGE TITLE BAR — FUTURISTIC POSTER OVERLAY ────────── */
[style*="bg-page-title"] {
	position: relative;
}

[style*="bg-page-title"]::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(26,18,7,0.88), rgba(35,26,13,0.78)),
		url('cta-bg.svg') center/cover no-repeat;
	z-index: 1;
}

[style*="bg-page-title"] > * {
	position: relative;
	z-index: 2;
}

/* ─── 30. DEEP GLASSMORPHISM — CAROUSELS & SLIDERS ──────────── */

/* Service carousel items */
.ct-service-carousel .slick-slide > div,
.ct-service-carousel .ct-slick-item,
.elementor-widget-ct_service_carousel .elementor-widget-container {
	position: relative;
}

.ct-service-carousel .ct-slick-item .item-inner,
.ct-service-item .item-inner,
[class*="ct-service"] .item-inner {
	background: var(--mp-glass) !important;
	backdrop-filter: var(--mp-blur) !important;
	-webkit-backdrop-filter: var(--mp-blur) !important;
	border: 1px solid var(--mp-gold-border) !important;
	border-radius: var(--mp-radius) !important;
	box-shadow: var(--mp-shadow-glass) !important;
	transition: transform 0.35s var(--mp-ease), box-shadow 0.35s var(--mp-ease) !important;
	overflow: hidden;
}

.ct-service-carousel .ct-slick-item:hover .item-inner,
[class*="ct-service"] .item-inner:hover {
	transform: translateY(-6px) !important;
	box-shadow: 0 22px 56px rgba(184, 134, 11, 0.14), inset 0 1.5px 0 rgba(255,255,255,0.8) !important;
	border-color: rgba(184, 134, 11, 0.25) !important;
}

/* Blog carousel items */
.ct-blog-carousel .ct-slick-item .item-inner,
[class*="ct-blog"] .item-inner {
	background: var(--mp-glass) !important;
	backdrop-filter: var(--mp-blur) !important;
	-webkit-backdrop-filter: var(--mp-blur) !important;
	border: 1px solid var(--mp-gold-border) !important;
	border-radius: var(--mp-radius) !important;
	box-shadow: var(--mp-shadow-glass) !important;
	overflow: hidden;
	transition: transform 0.35s var(--mp-ease), box-shadow 0.35s var(--mp-ease) !important;
}

.ct-blog-carousel .ct-slick-item:hover .item-inner,
[class*="ct-blog"] .item-inner:hover {
	transform: translateY(-6px) !important;
	box-shadow: 0 22px 56px rgba(184, 134, 11, 0.14), inset 0 1.5px 0 rgba(255,255,255,0.8) !important;
}

/* Blog carousel image treatment */
.ct-blog-carousel .entry-featured-image-url img,
[class*="ct-blog"] .entry-featured-image-url img {
	border-radius: var(--mp-radius) var(--mp-radius) 0 0 !important;
	transition: transform 0.4s var(--mp-ease), filter 0.4s ease !important;
}

.ct-blog-carousel .ct-slick-item:hover .entry-featured-image-url img,
[class*="ct-blog"] .item-inner:hover .entry-featured-image-url img {
	transform: scale(1.04);
	filter: brightness(1.05);
}

/* Blog carousel text area */
.ct-blog-carousel .entry-body,
[class*="ct-blog"] .entry-body {
	padding: 1.4rem 1.6rem !important;
}

.ct-blog-carousel .entry-title a,
[class*="ct-blog"] .entry-title a {
	color: var(--mp-text) !important;
	font-weight: 700 !important;
	transition: color 0.2s ease !important;
}

.ct-blog-carousel .entry-title a:hover,
[class*="ct-blog"] .entry-title a:hover {
	color: var(--mp-gold) !important;
}

/* Testimonial carousel items */
.ct-testimonial-carousel .ct-slick-item .item-inner,
[class*="ct-testimonial"] .item-inner {
	background: var(--mp-glass-strong) !important;
	backdrop-filter: blur(22px) saturate(170%) !important;
	-webkit-backdrop-filter: blur(22px) saturate(170%) !important;
	border: 1px solid var(--mp-gold-border) !important;
	border-radius: var(--mp-radius) !important;
	box-shadow: var(--mp-shadow-glass) !important;
	padding: 2rem !important;
	transition: transform 0.35s var(--mp-ease), box-shadow 0.35s var(--mp-ease) !important;
}

.ct-testimonial-carousel .ct-slick-item:hover .item-inner,
[class*="ct-testimonial"] .item-inner:hover {
	transform: translateY(-4px) !important;
	box-shadow: 0 18px 48px rgba(184, 134, 11, 0.12), inset 0 1.5px 0 rgba(255,255,255,0.85) !important;
}

/* Testimonial quote icon → gold */
[class*="ct-testimonial"] .quote-icon,
[class*="ct-testimonial"] .testimonial-icon,
[class*="ct-testimonial"] .item-inner::before {
	color: var(--mp-gold) !important;
	opacity: 0.2;
}

/* Testimonial avatar ring */
[class*="ct-testimonial"] .avatar,
[class*="ct-testimonial"] img.avatar,
[class*="ct-testimonial"] .testimonial-image img {
	border: 3px solid rgba(184, 134, 11, 0.20) !important;
	border-radius: 50% !important;
	box-shadow: 0 4px 16px rgba(184, 134, 11, 0.10) !important;
}

/* ─── 31. GLASS ACCORDION / FAQ ─────────────────────────────── */
.ct-accordion .ct-accordion-item,
.elementor-accordion .elementor-accordion-item,
.elementor-toggle .elementor-toggle-item {
	background: var(--mp-glass) !important;
	backdrop-filter: var(--mp-blur) !important;
	-webkit-backdrop-filter: var(--mp-blur) !important;
	border: 1px solid var(--mp-gold-border) !important;
	border-radius: var(--mp-radius-sm) !important;
	margin-bottom: 10px !important;
	overflow: hidden;
	transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.ct-accordion .ct-accordion-item:hover,
.elementor-accordion .elementor-accordion-item:hover {
	box-shadow: var(--mp-shadow-md) !important;
	border-color: rgba(184, 134, 11, 0.22) !important;
}

.ct-accordion .ct-accordion-heading,
.ct-accordion .accordion-title,
.elementor-accordion .elementor-tab-title {
	font-weight: 700 !important;
	color: var(--mp-text) !important;
	padding: 16px 20px !important;
}

.ct-accordion .ct-accordion-heading:hover,
.elementor-accordion .elementor-tab-title:hover {
	color: var(--mp-gold) !important;
}

.ct-accordion .active .ct-accordion-heading,
.elementor-accordion .elementor-active .elementor-tab-title {
	color: var(--mp-gold) !important;
	background: rgba(184, 134, 11, 0.04) !important;
}

.ct-accordion .ct-accordion-content,
.elementor-accordion .elementor-tab-content {
	padding: 0 20px 16px !important;
	color: var(--mp-text-mid) !important;
}

/* ─── 32. FANCYBOX / SERVICE LIST → GLASS ───────────────────── */
.ct-fancybox-list .ct-fancybox-item,
.ct-fancybox .item-inner,
[class*="ct-fancybox"] .item-inner {
	background: var(--mp-glass) !important;
	backdrop-filter: var(--mp-blur) !important;
	-webkit-backdrop-filter: var(--mp-blur) !important;
	border: 1px solid var(--mp-gold-border) !important;
	border-radius: var(--mp-radius) !important;
	box-shadow: var(--mp-shadow-glass) !important;
	padding: 2rem !important;
	transition: transform 0.35s var(--mp-ease), box-shadow 0.35s var(--mp-ease), border-color 0.3s ease !important;
}

.ct-fancybox-list .ct-fancybox-item:hover,
[class*="ct-fancybox"] .item-inner:hover {
	transform: translateY(-6px) !important;
	box-shadow: 0 22px 56px rgba(184, 134, 11, 0.14), inset 0 1.5px 0 rgba(255,255,255,0.8) !important;
	border-color: rgba(184, 134, 11, 0.25) !important;
}

/* Fancybox icon → gold */
.ct-fancybox-list .ct-fancybox-item .fancybox-icon,
[class*="ct-fancybox"] .fancybox-icon,
[class*="ct-fancybox"] .item-icon {
	color: var(--mp-gold) !important;
}

.ct-fancybox-list .ct-fancybox-item .fancybox-icon i,
[class*="ct-fancybox"] .fancybox-icon i,
[class*="ct-fancybox"] .item-icon i {
	color: var(--mp-gold) !important;
	background: rgba(184, 134, 11, 0.08) !important;
	border-radius: 14px !important;
	padding: 14px !important;
	transition: transform 0.3s var(--mp-ease), background 0.3s ease !important;
}

.ct-fancybox-list .ct-fancybox-item:hover .fancybox-icon i,
[class*="ct-fancybox"] .item-inner:hover .item-icon i {
	transform: scale(1.12) !important;
	background: rgba(184, 134, 11, 0.14) !important;
}

/* ─── 33. OPENING HOURS WIDGET → GLASS TABLE ────────────────── */
.ct-opening-hours,
.elementor-widget-ct_opening_hours .elementor-widget-container {
	background: var(--mp-glass) !important;
	backdrop-filter: var(--mp-blur) !important;
	-webkit-backdrop-filter: var(--mp-blur) !important;
	border: 1px solid var(--mp-gold-border) !important;
	border-radius: var(--mp-radius) !important;
	box-shadow: var(--mp-shadow-glass) !important;
	padding: 1.8rem !important;
}

.ct-opening-hours .ct-hour-item {
	border-bottom-color: var(--mp-gold-border) !important;
	padding: 10px 0 !important;
}

/* ─── 34. LIST WIDGET → GOLD MARKERS ────────────────────────── */
.ct-list li::marker,
.elementor-widget-ct_list li::marker,
.elementor-icon-list-icon i {
	color: var(--mp-gold) !important;
}

.elementor-icon-list-icon svg {
	fill: var(--mp-gold) !important;
}

/* ─── 35. IMAGE POSTER OVERLAYS — FUTURISTIC TINT ───────────── */

/* All content images get subtle gold tint overlay */
.elementor-widget-ct_image .elementor-widget-container,
.elementor-widget-image .elementor-widget-container {
	position: relative;
	overflow: hidden;
	border-radius: var(--mp-radius);
}

/* Service/blog card images — glass frame */
.ct-service-carousel .entry-featured-image-url,
.ct-blog-carousel .entry-featured-image-url,
[class*="ct-service"] .entry-featured img,
[class*="ct-blog"] .entry-featured img {
	position: relative;
	overflow: hidden;
	border-radius: var(--mp-radius) var(--mp-radius) 0 0;
}

/* Image hover — gold glow border effect */
.elementor-widget-ct_image:hover .elementor-widget-container,
.elementor-widget-image:hover .elementor-widget-container {
	box-shadow: 0 8px 32px rgba(184, 134, 11, 0.12) !important;
}

/* Clinic photo (IMG_9007) — special treatment: glass border frame */
img[src*="IMG_9007"] {
	border: 3px solid var(--mp-gold-border) !important;
	border-radius: var(--mp-radius) !important;
	box-shadow: 0 12px 40px rgba(184, 134, 11, 0.12), inset 0 0 0 1px rgba(255,255,255,0.5) !important;
}

/* FAQ question mark image → gold tint */
img[src*="question-mark"] {
	filter: sepia(40%) hue-rotate(-10deg) saturate(120%) !important;
	border-radius: var(--mp-radius) !important;
}

/* Old stock images → warm gold tone overlay to match palette */
img[src*="post-1-1"],
img[src*="post-11"],
img[src*="post-3"],
img[src*="post-7"],
img[src*="post-8"],
img[src*="faqs-1"] {
	filter: sepia(15%) saturate(110%) brightness(1.02) !important;
	border-radius: var(--mp-radius) !important;
}

/* Slider hero images — warm cinematic grade */
img[src*="slide-3"],
img[src*="bg-slide"],
img[src*="banner"] {
	filter: sepia(20%) saturate(115%) brightness(0.95) contrast(1.05) !important;
}

/* Team/user avatar images — gold ring */
img[src*="user-1"],
img[src*="user-3"],
img[src*="test-2"] {
	border: 3px solid rgba(184, 134, 11, 0.18) !important;
	border-radius: 50% !important;
	box-shadow: 0 4px 16px rgba(184, 134, 11, 0.10) !important;
}

/* Decorative ellipse/circle images — gold tint */
img[src*="Ellipse"],
img[src*="image-cicle"] {
	filter: sepia(30%) hue-rotate(-10deg) saturate(130%) !important;
}

/* ─── 36. GLASS SECTION DIVIDER (injected by JS) ────────────── */
.mp-glass-divider {
	width: 100%;
	height: 80px;
	position: relative;
	overflow: hidden;
	margin: -1px 0;
}

.mp-glass-divider::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--mp-glass-subtle);
	backdrop-filter: blur(20px) saturate(150%);
	-webkit-backdrop-filter: blur(20px) saturate(150%);
	mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
	-webkit-mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}

.mp-glass-divider::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 10%;
	right: 10%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--mp-gold-light), transparent);
	opacity: 0.3;
}

/* ─── 37. FLOATING GLASS DECORATIONS (injected by JS) ────────── */
.mp-glass-orb {
	position: fixed;
	border-radius: 50%;
	pointer-events: none;
	z-index: -1;
	animation: mp-float 20s infinite ease-in-out;
}

.mp-glass-orb--1 {
	width: 400px;
	height: 400px;
	top: 10%;
	left: -5%;
	background: radial-gradient(circle, rgba(184,134,11,0.06), transparent 70%);
	filter: blur(40px);
}

.mp-glass-orb--2 {
	width: 300px;
	height: 300px;
	top: 60%;
	right: -3%;
	background: radial-gradient(circle, rgba(212,168,67,0.05), transparent 70%);
	filter: blur(35px);
	animation-delay: -8s;
}

.mp-glass-orb--3 {
	width: 250px;
	height: 250px;
	top: 40%;
	left: 50%;
	background: radial-gradient(circle, rgba(184,134,11,0.04), transparent 70%);
	filter: blur(30px);
	animation-delay: -14s;
}

@keyframes mp-float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	25% { transform: translate(20px, -30px) scale(1.05); }
	50% { transform: translate(-15px, 20px) scale(0.95); }
	75% { transform: translate(25px, 15px) scale(1.02); }
}

/* ─── 38. DARK SECTIONS — CTA / CALL-TO-ACTION ──────────────── */

/* Sections with dark/colored backgrounds → CTA poster treatment */
.elementor-section[data-settings*="background"]:not(.elementor-section-stretched) {
	position: relative;
}

/* Mindset theme dark sections → dark gold + glass overlay */
.elementor-section[style*="background-color: #1"],
.elementor-section[style*="background-color: #2"],
.elementor-section[style*="background-color: #0"],
.elementor-section[style*="background-color: rgb(0"],
.elementor-section[style*="background-color: rgb(1"],
.elementor-section[style*="background-color: rgb(2"],
.elementor-section[style*="background-color: rgb(3"] {
	background: linear-gradient(145deg, var(--mp-dark), var(--mp-dark-mid), #2E2213) !important;
	position: relative;
}

/* Ensure headings in dark sections are white */
.elementor-section[style*="background-color: #1"] h1,
.elementor-section[style*="background-color: #1"] h2,
.elementor-section[style*="background-color: #1"] h3,
.elementor-section[style*="background-color: #2"] h1,
.elementor-section[style*="background-color: #2"] h2,
.elementor-section[style*="background-color: #2"] h3 {
	color: #fff !important;
}

/* ─── 39. CAROUSEL DOTS / ARROWS → GOLD ─────────────────────── */
.slick-dots li button,
.slick-dots li button::before,
.ct-carousel-dots .slick-dots li button {
	color: var(--mp-gold-border) !important;
	border-color: var(--mp-gold-border) !important;
}

.slick-dots li.slick-active button,
.slick-dots li.slick-active button::before {
	color: var(--mp-gold) !important;
	background: var(--mp-gold) !important;
	border-color: var(--mp-gold) !important;
}

.slick-prev, .slick-next,
.ct-carousel-arrows .slick-prev,
.ct-carousel-arrows .slick-next {
	background: var(--mp-glass) !important;
	backdrop-filter: blur(12px) !important;
	-webkit-backdrop-filter: blur(12px) !important;
	border: 1px solid var(--mp-gold-border) !important;
	border-radius: 50% !important;
	width: 46px !important;
	height: 46px !important;
	box-shadow: var(--mp-shadow-sm) !important;
	transition: all 0.3s var(--mp-ease) !important;
}

.slick-prev:hover, .slick-next:hover {
	background: var(--mp-glass-strong) !important;
	border-color: var(--mp-gold) !important;
	box-shadow: var(--mp-shadow-md) !important;
}

.slick-prev::before, .slick-next::before {
	color: var(--mp-gold) !important;
}

/* ─── 40. CONTACT FORM SECTION → FULL GLASS PANEL ───────────── */
.elementor-widget-ct_contact_form .elementor-widget-container {
	background: var(--mp-glass) !important;
	backdrop-filter: var(--mp-blur) !important;
	-webkit-backdrop-filter: var(--mp-blur) !important;
	border: 1px solid var(--mp-gold-border) !important;
	border-radius: var(--mp-radius) !important;
	box-shadow: var(--mp-shadow-glass) !important;
	padding: 2.5rem !important;
}

/* ─── 41. CT-HEADING WIDGET — GOLD ACCENT LINE ──────────────── */
.elementor-widget-ct_heading .ct-heading {
	position: relative;
}

.elementor-widget-ct_heading .ct-heading .heading-subtitle,
.elementor-widget-ct_heading .ct-heading .ct-heading-subtitle {
	color: var(--mp-gold) !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	letter-spacing: 0.08em !important;
	font-size: 13px !important;
}

/* ─── 42. STAGGERED REVEAL DELAYS ───────────────────────────── */
.mp-reveal:nth-child(2) { transition-delay: 0.08s; }
.mp-reveal:nth-child(3) { transition-delay: 0.16s; }
.mp-reveal:nth-child(4) { transition-delay: 0.24s; }
.mp-reveal:nth-child(5) { transition-delay: 0.32s; }
.mp-reveal:nth-child(6) { transition-delay: 0.40s; }

/* ─── 43. BUG FIXES — INLINE ELEMENTOR OVERRIDES ────────────── */

/* FIX: Top contact bar is blue (#00a0fb) via Elementor inline style */
.elementor-element-04102c2,
.elementor-element-04102c2.elementor-section {
	background: linear-gradient(135deg, var(--mp-dark) 0%, var(--mp-dark-mid) 100%) !important;
}

.elementor-element-04102c2 *,
.elementor-element-04102c2 a,
.elementor-element-04102c2 span,
.elementor-element-04102c2 .ct-contact-info {
	color: rgba(255, 255, 255, 0.85) !important;
}

.elementor-element-04102c2 .ct-contact-icon i,
.elementor-element-04102c2 .ct-contact-icon svg {
	color: var(--mp-gold-light) !important;
}

/* FIX: Footer uses .site-footer-custom not .site-footer */
footer.site-footer-custom,
.site-footer-custom {
	background: linear-gradient(165deg, #1A1207 0%, #231A0D 45%, #2A1F12 100%) !important;
	border-top: 2px solid rgba(184, 134, 11, 0.35) !important;
	position: relative !important;
	width: 100vw !important;
	margin-left: calc(-50vw + 50%) !important;
	overflow: hidden !important;
}

/* Subtle gold shimmer line at the very top of footer */
footer.site-footer-custom::before,
.site-footer-custom::before {
	content: '';
	position: absolute;
	top: 0;
	left: 10%;
	right: 10%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--mp-gold-light), transparent);
	z-index: 1;
}

/* Solid dark on every structural layer — no gaps regardless of element width */
.site-footer-custom .footer-custom-inner,
.site-footer-custom .elementor,
.site-footer-custom .elementor-top-section,
.site-footer-custom .elementor-inner-section,
.site-footer-custom .elementor-section,
.site-footer-custom .elementor-container,
.site-footer-custom .elementor-column-wrap,
.site-footer-custom .elementor-row,
.site-footer-custom .elementor-column,
.site-footer-custom .elementor-background-overlay,
.site-footer-custom .container,
.site-footer-custom .row,
.site-footer-custom .col-12 {
	background-color: transparent !important;
	background-image: none !important;
	border-radius: 0 !important;
}

/* Reduce excessive top padding in footer main section */
.site-footer-custom .elementor-top-section:first-child {
	padding-top: 50px !important;
	padding-bottom: 30px !important;
}

/* Footer headings — bright white with subtle gold underline */
.site-footer-custom h1,
.site-footer-custom h2,
.site-footer-custom h3,
.site-footer-custom h4,
.site-footer-custom h5 {
	color: #fff !important;
	font-weight: 700 !important;
	letter-spacing: 0.01em !important;
	position: relative;
	padding-bottom: 12px !important;
	margin-bottom: 16px !important;
}

.site-footer-custom h3::after,
.site-footer-custom h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 35px;
	height: 2px;
	background: linear-gradient(90deg, var(--mp-gold), var(--mp-gold-light));
	border-radius: 2px;
}

/* Footer body text — HIGH contrast warm white */
.site-footer-custom p,
.site-footer-custom li,
.site-footer-custom span,
.site-footer-custom .elementor-widget-container,
.site-footer-custom .elementor-text-editor,
.site-footer-custom div {
	color: rgba(255, 255, 255, 0.92) !important;
	line-height: 1.7 !important;
}

/* Footer labels (Working Hours days) */
.site-footer-custom label {
	color: rgba(255, 255, 255, 0.92) !important;
	font-weight: 500 !important;
}

/* Footer links — gold, clearly clickable */
.site-footer-custom a {
	color: var(--mp-gold-light) !important;
	transition: color 0.25s ease, text-shadow 0.25s ease !important;
	font-weight: 500 !important;
}

.site-footer-custom a:hover {
	color: #fff !important;
	text-shadow: 0 0 14px rgba(212, 168, 67, 0.6) !important;
}

/* Footer social links — larger, bolder */
.site-footer-custom .elementor-social-icons-wrapper a,
.site-footer-custom a[href*="instagram"],
.site-footer-custom a[href*="facebook"],
.site-footer-custom a[href*="linkedin"],
.site-footer-custom a[href*="wa.me"] {
	color: #fff !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
	padding: 6px 0 !important;
	transition: color 0.2s ease, transform 0.2s ease !important;
}

.site-footer-custom a[href*="instagram"]:hover,
.site-footer-custom a[href*="facebook"]:hover,
.site-footer-custom a[href*="linkedin"]:hover,
.site-footer-custom a[href*="wa.me"]:hover {
	color: var(--mp-gold-light) !important;
	transform: translateX(4px) !important;
}

/* Footer phone number — prominent */
.site-footer-custom a[href*="tel"],
.site-footer-custom a[href="#"]:not(.btn) {
	color: #fff !important;
	font-size: 17px !important;
	font-weight: 600 !important;
}

/* Footer copyright bar — elegant separator, visible text */
.site-footer-custom .elementor-top-section:last-child {
	border-top: 1px solid rgba(184, 134, 11, 0.25) !important;
	padding: 18px 0 !important;
	margin-top: 10px !important;
}

.site-footer-custom .elementor-top-section:last-child p,
.site-footer-custom .elementor-top-section:last-child span,
.site-footer-custom .elementor-top-section:last-child div {
	color: rgba(255, 255, 255, 0.7) !important;
	font-size: 13px !important;
}

.site-footer-custom .elementor-top-section:last-child a {
	color: var(--mp-gold-light) !important;
}

/* Footer widget columns — clean spacing */
.site-footer-custom .elementor-column {
	padding: 1rem 1.5rem !important;
}

.site-footer-custom .elementor-widget {
	margin-bottom: 16px !important;
}

/* FIX: Homepage/footer dark sections — navy overrides from Elementor */
.elementor-element-981cc4d,
.elementor-element-6811982,
.elementor-element-acecce7 {
	background: linear-gradient(145deg, var(--mp-dark), var(--mp-dark-mid), #2E2213) !important;
}

.elementor-element-981cc4d h1, .elementor-element-981cc4d h2, .elementor-element-981cc4d h3,
.elementor-element-981cc4d h4,
.elementor-element-6811982 h1, .elementor-element-6811982 h2, .elementor-element-6811982 h3,
.elementor-element-6811982 h4,
.elementor-element-acecce7 h1, .elementor-element-acecce7 h2, .elementor-element-acecce7 h3 {
	color: #fff !important;
}

.elementor-element-981cc4d p, .elementor-element-981cc4d li, .elementor-element-981cc4d span,
.elementor-element-6811982 p, .elementor-element-6811982 li,
.elementor-element-acecce7 p {
	color: rgba(255, 255, 255, 0.92) !important;
}

/* FIX: Scroll-to-top button is red (rgb(221,51,51)) */
a.scroll-top,
.scroll-top {
	background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-dark)) !important;
	border: none !important;
	border-radius: 50% !important;
	box-shadow: 0 4px 18px rgba(184, 134, 11, 0.30) !important;
	transition: transform 0.25s var(--mp-ease), box-shadow 0.25s ease !important;
}

a.scroll-top:hover,
.scroll-top:hover {
	transform: translateY(-3px) !important;
	box-shadow: 0 8px 28px rgba(184, 134, 11, 0.45) !important;
}

a.scroll-top i,
.scroll-top i,
a.scroll-top span,
.scroll-top span {
	color: #fff !important;
}

/* FIX: "Our Service" button (.btn.btn-default) is dark teal */
.btn.btn-default,
a.btn.btn-default {
	background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-dark)) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 12px !important;
	font-weight: 700 !important;
	padding: 14px 32px !important;
	box-shadow: 0 4px 18px rgba(184, 134, 11, 0.30) !important;
	transition: transform 0.25s var(--mp-ease), box-shadow 0.25s ease !important;
}

.btn.btn-default:hover,
a.btn.btn-default:hover {
	transform: translateY(-3px) !important;
	box-shadow: 0 10px 30px rgba(184, 134, 11, 0.40) !important;
	filter: brightness(1.08);
}

/* FIX: Slider Revolution button — blue "Make An Appointment" */
sr7-module a.sr7-layer,
sr7-module [data-type="button"],
sr7-module .sr7-layer[href] {
	background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-dark)) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 12px !important;
	padding: 16px 36px !important;
	font-family: 'Outfit', sans-serif !important;
	font-weight: 700 !important;
	box-shadow: 0 4px 18px rgba(184, 134, 11, 0.30) !important;
}

/* FIX: SR7 progress bar — blue line */
sr7-module .sr7-progress,
sr7-module [class*="progress"],
.rs-progress {
	background: var(--mp-gold) !important;
}

sr7-module .sr7-progress-bar,
.rs-progress .rs-progress-bar {
	background: var(--mp-gold-light) !important;
}

/* FIX: Carousel dots — active dot is blue */
.ct-carousel-dots .dot-item.active,
.ct-carousel-dots .dot-item.active::before,
.ct-slick-dots li.slick-active button,
.owl-dot.active span,
.owl-dot.active {
	background-color: var(--mp-gold) !important;
	border-color: var(--mp-gold) !important;
}

.ct-carousel-dots .dot-item,
.ct-slick-dots li button,
.owl-dot span {
	background-color: var(--mp-gold-border) !important;
	border-color: var(--mp-gold-border) !important;
}

/* FIX: "Read More" button in footer */
.site-footer-custom .btn,
.site-footer-custom a.btn,
.site-footer-custom .elementor-button,
.site-footer-custom a.elementor-button {
	background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-dark)) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 12px !important;
	font-weight: 700 !important;
	box-shadow: 0 4px 18px rgba(184, 134, 11, 0.30) !important;
}

/* FIX: Working Hours card in footer — glass card on dark footer */
.site-footer-custom .ct-opening-hours,
.site-footer-custom .elementor-widget-ct_opening_hours .elementor-widget-container {
	background: rgba(255, 255, 255, 0.06) !important;
	backdrop-filter: blur(16px) saturate(150%) !important;
	-webkit-backdrop-filter: blur(16px) saturate(150%) !important;
	border: 1px solid rgba(184, 134, 11, 0.20) !important;
	border-radius: 14px !important;
	padding: 1.5rem !important;
}

.site-footer-custom .ct-opening-hours *,
.site-footer-custom .elementor-widget-ct_opening_hours * {
	color: rgba(255, 255, 255, 0.92) !important;
}

.site-footer-custom .ct-opening-hours h3,
.site-footer-custom .ct-opening-hours h4,
.site-footer-custom .elementor-widget-ct_opening_hours h3,
.site-footer-custom .elementor-widget-ct_opening_hours h4 {
	color: #fff !important;
}

.site-footer-custom .ct-hour-item .ct-hour-time,
.site-footer-custom .ct-opening-hours span {
	color: var(--mp-gold-light) !important;
	font-weight: 600 !important;
}

/* FIX: Form inputs on contact page — need more glass */
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea,
.ct-contact-form input[type="text"],
.ct-contact-form input[type="email"],
.ct-contact-form textarea {
	background: var(--mp-glass) !important;
	backdrop-filter: blur(12px) saturate(140%) !important;
	-webkit-backdrop-filter: blur(12px) saturate(140%) !important;
	border: 1.5px solid var(--mp-gold-border) !important;
	border-radius: var(--mp-radius-sm) !important;
	padding: 13px 16px !important;
	color: var(--mp-text) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
	transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.ct-contact-form input:focus,
.ct-contact-form textarea:focus {
	border-color: var(--mp-gold) !important;
	box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

/* FIX: Image overlays on dark sections — keep images visible */
.elementor-element-acecce7 img {
	filter: none !important;
}

/* FIX: .btn.btn-primary buttons — still blue (rgb(0,160,251)) */
.btn.btn-primary,
a.btn.btn-primary,
.btn-primary {
	background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-dark)) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 12px !important;
	font-weight: 700 !important;
	box-shadow: 0 4px 18px rgba(184, 134, 11, 0.30) !important;
	transition: transform 0.25s var(--mp-ease), box-shadow 0.25s ease !important;
}

.btn.btn-primary:hover,
a.btn.btn-primary:hover,
.btn-primary:hover {
	transform: translateY(-3px) !important;
	box-shadow: 0 10px 30px rgba(184, 134, 11, 0.40) !important;
	filter: brightness(1.08);
}

/* FIX: Search icon widget (dd81dd3) — blue background */
.elementor-element-dd81dd3,
.elementor-element-dd81dd3 .elementor-icon-wrapper,
.elementor-element-dd81dd3 .elementor-icon {
	background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-dark)) !important;
	color: #fff !important;
	border-radius: 50% !important;
}

.elementor-element-dd81dd3 .elementor-icon i {
	color: #fff !important;
}

/* FIX: Slick slider dot buttons — blue active state */
.slick-dots li button,
button[id*="slick-slide-control"] {
	background-color: var(--mp-gold-border) !important;
	border: none !important;
	border-radius: 50% !important;
}

.slick-dots li.slick-active button,
button[id*="slick-slide-control"][aria-selected="true"],
button[id*="slick-slide-control"].slick-active {
	background-color: var(--mp-gold) !important;
}

/* FIX: Global catch-all — any Mindset theme element still using theme blue */
.elementor-widget .elementor-icon-wrapper .elementor-icon {
	background-color: var(--mp-gold) !important;
	color: #fff !important;
}

/* FIX: Mindset theme blue Ellipse decoration — recolor to gold */
img[src*="Ellipse"],
.elementor-element-643f184 img {
	filter: sepia(1) saturate(3) hue-rotate(-15deg) brightness(0.85) !important;
}

/* FIX: Light-blue tinted sections from Mindset theme (rgb(245,251,255)) */
.elementor-element-1a223c7,
.elementor-element-d10718f {
	background-color: #faf7f0 !important;
	background: linear-gradient(180deg, #faf7f0, #f5f0e4) !important;
}

/* FIX: Blue icon circle backgrounds in services section */
.ct-icon.icon-font,
.item--icon {
	background-color: rgba(184, 134, 11, 0.08) !important;
}

.ct-icon.icon-font i,
.item--icon i {
	color: var(--mp-gold) !important;
}

/* FIX: "Meet Our Doctor" column (de75219) — navy rgb(0,25,48) */
.elementor-element-de75219 > .elementor-element-populated {
	background: linear-gradient(145deg, var(--mp-dark), var(--mp-dark-mid), #2E2213) !important;
}

/* FIX: Hexagonal pattern section (fb28afe) — navy Bg-ss.png */
.elementor-element-fb28afe {
	background-color: var(--mp-dark) !important;
	position: relative;
}

.elementor-element-fb28afe::before {
	content: '' !important;
	position: absolute !important;
	inset: 0 !important;
	background: linear-gradient(145deg, rgba(26, 18, 7, 0.85), rgba(35, 26, 13, 0.90)) !important;
	z-index: 0 !important;
	pointer-events: none !important;
}

.elementor-element-fb28afe > .elementor-container {
	position: relative;
	z-index: 1;
}

.elementor-element-fb28afe h2,
.elementor-element-fb28afe h3,
.elementor-element-fb28afe .item--title {
	color: #fff !important;
}

.elementor-element-fb28afe p,
.elementor-element-fb28afe span,
.elementor-element-fb28afe .item--description {
	color: rgba(255, 255, 255, 0.7) !important;
}

/* ─── 26. REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		transition-duration: .001ms !important;
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
	}
	img.mp-fade { opacity: 1; }
	.mp-reveal { opacity: 1; transform: none; }
}

/* FIX: Elementor's own scroll animations stuck at opacity 0 on some pages.
   Override: force all animated elements to be visible immediately,
   since our mp-reveal handles the scroll animation instead. */
.elementor-element.animated {
	opacity: 1 !important;
	animation-fill-mode: none !important;
}

.elementor-invisible {
	visibility: visible !important;
	opacity: 1 !important;
}
