
:root{
	--cpcb-blue:#0b1533;
	--cpcb-blue-2:#172652;
	--cpcb-gold:#c99b67;
	--cpcb-gold-dark:#b9854f;
	--cpcb-gold-light:#e6c596;
	--cpcb-soft:#f4eee8;
	--cpcb-shadow:0 18px 45px rgba(10,20,40,.10);
	--cpcb-shadow-strong:0 18px 42px rgba(10,20,40,.18);
	--cpcb-ease:cubic-bezier(.22,1,.36,1);
}

.cpcb-header-wrap,
.cpcb-header-wrap *{
	box-sizing:border-box;
}

.cpcb-header-placeholder{
	display:block !important;
	width:100% !important;
	height:126px;
	min-height:126px;
	flex:0 0 auto;
}

.cpcb-header-wrap{
	position:fixed !important;
	top:0 !important;
	left:0 !important;
	right:0 !important;
	z-index:99999 !important;
	width:100% !important;
	padding:0 24px !important;
	pointer-events:none;
}

body.admin-bar .cpcb-header-wrap{
	top:32px !important;
}

.cpcb-header{
	position:relative;
	overflow:hidden;
	width:100% !important;
	max-width:1840px !important;
	margin:0 auto !important;
	background:linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,255,255,.90));
	backdrop-filter:blur(18px) saturate(1.15);
	-webkit-backdrop-filter:blur(18px) saturate(1.15);
	border:1px solid rgba(255,255,255,.68);
	border-top:0;
	border-radius:0 0 30px 30px;
	box-shadow:var(--cpcb-shadow);
	pointer-events:auto;
	transform:translateY(0);
	animation:cpcbHeaderEnter .7s var(--cpcb-ease) both;
	transition:box-shadow .28s ease, background .28s ease, transform .28s var(--cpcb-ease), border-radius .28s ease;
}

.cpcb-header__shine{
	position:absolute;
	inset:0;
	pointer-events:none;
	background:
		radial-gradient(circle at 15% 0%, rgba(201,155,103,.16), transparent 32%),
		linear-gradient(115deg, transparent 0%, rgba(255,255,255,.35) 42%, transparent 55%);
	opacity:.9;
	transform:translateX(0);
}

.cpcb-header.is-scrolled{
	box-shadow:var(--cpcb-shadow-strong);
	background:linear-gradient(135deg, rgba(255,255,255,.99), rgba(255,255,255,.94));
}

.cpcb-header.is-scrolled .cpcb-header__inner{
	min-height:82px;
}

.cpcb-header__inner{
	position:relative;
	z-index:1;
	min-height:92px;
	padding:0 28px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:24px;
	transition:min-height .28s var(--cpcb-ease);
}

.cpcb-header__logo{
	flex:0 0 auto;
	display:flex;
	align-items:center;
	position:relative;
	isolation:isolate;
}

.cpcb-header__logo a,
.cpcb-mobile-panel__logo a{
	display:inline-flex;
	align-items:center;
	position:relative;
	border-radius:999px;
	transition:transform .38s var(--cpcb-ease), filter .35s ease;
}

.cpcb-header__logo a::before{
	content:"";
	position:absolute;
	inset:-12px;
	z-index:-1;
	border-radius:999px;
	background:
		radial-gradient(circle, rgba(201,155,103,.28), rgba(201,155,103,0) 68%);
	opacity:0;
	transform:scale(.72);
	transition:opacity .35s ease, transform .38s var(--cpcb-ease);
}

.cpcb-header__logo:hover a{
	transform:translateY(-3px) scale(1.05) rotate(-1.25deg);
	filter:drop-shadow(0 14px 18px rgba(201,155,103,.30));
}

.cpcb-header__logo:hover a::before{
	opacity:1;
	transform:scale(1);
}

.cpcb-header__logo img,
.cpcb-mobile-panel__logo img{
	max-height:82px;
	width:auto;
	display:block;
	transition:max-height .28s var(--cpcb-ease), transform .35s var(--cpcb-ease);
}

.cpcb-header.is-scrolled .cpcb-header__logo img{
	max-height:70px;
}

.cpcb-header__nav{
	flex:1;
	display:flex;
	justify-content:center;
	min-width:0;
}

.cpcb-menu{
	list-style:none;
	margin:0;
	padding:0;
}

.cpcb-menu--desktop{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:8px;
	flex-wrap:nowrap;
}

.cpcb-menu li{
	position:relative;
	margin:0;
}

.cpcb-menu a{
	position:relative;
	display:flex;
	align-items:center;
	gap:8px;
	text-decoration:none;
	color:var(--cpcb-blue);
	font-weight:850;
	font-size:17px;
	line-height:1.2;
	padding:15px 17px;
	border-radius:16px;
	transition:color .2s ease, background .2s ease, transform .22s var(--cpcb-ease);
	white-space:nowrap;
}

.cpcb-menu a::before{
	content:"";
	position:absolute;
	left:16px;
	right:16px;
	bottom:9px;
	height:2px;
	border-radius:999px;
	background:linear-gradient(90deg, var(--cpcb-gold), var(--cpcb-gold-light));
	transform:scaleX(0);
	transform-origin:center;
	opacity:0;
	transition:transform .24s var(--cpcb-ease), opacity .2s ease;
}

.cpcb-menu a:hover,
.cpcb-menu .current-menu-item > a{
	background:rgba(244,238,232,.78);
	color:var(--cpcb-gold-dark);
	transform:translateY(-1px);
}

.cpcb-menu a:hover::before,
.cpcb-menu .current-menu-item > a::before{
	transform:scaleX(1);
	opacity:1;
}

.cpcb-menu .sub-menu,
.cpcb-menu .children{
	position:absolute;
	top:calc(100% + 10px);
	right:0;
	min-width:238px;
	background:rgba(255,255,255,.98);
	backdrop-filter:blur(14px);
	-webkit-backdrop-filter:blur(14px);
	padding:10px;
	margin:0;
	list-style:none;
	border:1px solid rgba(10,20,40,.06);
	border-radius:20px;
	box-shadow:0 22px 45px rgba(10,20,40,.18);
	opacity:0;
	visibility:hidden;
	transform:translateY(10px) scale(.98);
	transition:.22s var(--cpcb-ease);
	z-index:100000;
}

.cpcb-menu li:hover > .sub-menu,
.cpcb-menu li:hover > .children{
	opacity:1;
	visibility:visible;
	transform:translateY(0) scale(1);
}

.cpcb-menu .sub-menu .sub-menu,
.cpcb-menu .children .children{
	top:0;
	right:100%;
}

.cpcb-header__cta,
.cpcb-mobile-cta{
	flex:0 0 auto;
	position:relative;
	overflow:hidden;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:10px;
	min-height:56px;
	padding:0 24px;
	border-radius:18px;
	background:linear-gradient(135deg,var(--cpcb-gold),#d8b07f);
	color:#fff !important;
	text-decoration:none !important;
	font-weight:900;
	font-size:17px;
	box-shadow:0 14px 30px rgba(201,155,103,.30);
	transition:transform .25s var(--cpcb-ease), box-shadow .25s ease, filter .25s ease;
}

.cpcb-header__cta::before,
.cpcb-mobile-cta::before{
	content:"";
	position:absolute;
	inset:-30% auto -30% -60%;
	width:45%;
	background:linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
	transform:skewX(-18deg);
	transition:left .55s var(--cpcb-ease);
}

.cpcb-header__cta span,
.cpcb-header__cta svg,
.cpcb-mobile-cta span,
.cpcb-mobile-cta svg{
	position:relative;
	z-index:1;
}

.cpcb-header__cta svg,
.cpcb-mobile-cta svg{
	width:19px;
	height:19px;
	fill:none;
	stroke:currentColor;
	stroke-width:2.5;
	stroke-linecap:round;
	stroke-linejoin:round;
	transition:transform .25s ease;
}

.cpcb-header__cta:hover,
.cpcb-mobile-cta:hover{
	transform:translateY(-3px);
	box-shadow:0 18px 38px rgba(201,155,103,.42);
	filter:saturate(1.06);
}

.cpcb-header__cta:hover::before,
.cpcb-mobile-cta:hover::before{
	left:120%;
}

.cpcb-header__cta:hover svg,
.cpcb-mobile-cta:hover svg{
	transform:translate(-2px,-2px);
}

.cpcb-mobile-toggle{
	display:none;
	width:46px;
	height:46px;
	border:0;
	border-radius:14px;
	background:var(--cpcb-soft);
	cursor:pointer;
	align-items:center;
	justify-content:center;
	flex-direction:column;
	gap:5px;
	transition:transform .22s var(--cpcb-ease), background .22s ease;
}

.cpcb-mobile-toggle:hover{
	transform:translateY(-2px);
	background:#eadfD4;
}

.cpcb-mobile-toggle span{
	width:22px;
	height:2px;
	background:var(--cpcb-blue);
	display:block;
	border-radius:999px;
}

.cpcb-mobile-panel{
	position:fixed;
	top:0;
	bottom:0;
	right:0;
	width:min(380px,88vw);
	background:linear-gradient(180deg,#fff,#faf7f3);
	z-index:100001;
	padding:22px;
	box-shadow:-24px 0 55px rgba(0,0,0,.18);
	pointer-events:auto;
	overflow:auto;
	animation:cpcbPanelEnter .28s var(--cpcb-ease) both;
}

.cpcb-mobile-panel__head{
	display:flex;
	align-items:center;
	justify-content:space-between;
	margin-bottom:20px;
}

.cpcb-mobile-close{
	border:0;
	background:var(--cpcb-soft);
	width:42px;
	height:42px;
	border-radius:14px;
	font-size:28px;
	line-height:1;
	cursor:pointer;
	transition:transform .2s var(--cpcb-ease), background .2s ease;
}

.cpcb-mobile-close:hover{
	transform:rotate(6deg) scale(1.04);
	background:#eadfd4;
}

.cpcb-mobile-cta{
	width:100%;
	margin-bottom:18px;
}

.cpcb-menu--mobile,
.cpcb-menu--mobile ul{
	list-style:none;
	margin:0;
	padding:0;
}

.cpcb-menu--mobile a{
	justify-content:flex-start;
	padding:15px 12px;
	border-bottom:1px solid rgba(10,20,40,.07);
	white-space:normal;
}

.cpcb-menu--mobile a::before{
	display:none;
}

.cpcb-menu--mobile .sub-menu,
.cpcb-menu--mobile .children{
	position:static;
	opacity:1;
	visibility:visible;
	transform:none;
	box-shadow:none;
	padding:0 14px 0 0;
	background:transparent;
	border:0;
}

.cpcb-footer{
	background:#111827;
	padding:45px 24px;
	text-align:center;
}

.cpcb-footer__logo img{
	max-height:90px;
	width:auto;
	filter:brightness(0) invert(1) contrast(1.1);
}

.cpcb-footer__logo a:hover img{
	filter:brightness(0) invert(1) contrast(1.1);
}

.cpcb-site-title{
	font-size:22px;
	font-weight:800;
	color:var(--cpcb-blue);
	text-decoration:none;
}

.cpcb-footer .cpcb-site-title{
	color:#fff;
}

@keyframes cpcbHeaderEnter{
	from{
		opacity:0;
		transform:translateY(-18px) scale(.985);
	}
	to{
		opacity:1;
		transform:translateY(0) scale(1);
	}
}

@keyframes cpcbPanelEnter{
	from{
		opacity:0;
		transform:translateX(22px);
	}
	to{
		opacity:1;
		transform:translateX(0);
	}
}

@media (prefers-reduced-motion: reduce){
	.cpcb-header,
	.cpcb-mobile-panel,
	.cpcb-header__logo a,
	.cpcb-header__cta,
	.cpcb-menu a,
	.cpcb-mobile-cta{
		animation:none !important;
		transition:none !important;
	}
}

@media (max-width:782px){
	body.admin-bar .cpcb-header-wrap{
		top:46px !important;
	}
}

@media (max-width:1280px){
	.cpcb-menu a{
		font-size:15px;
		padding:13px 11px;
	}

	.cpcb-header__cta{
		min-height:50px;
		padding:0 17px;
		font-size:15px;
	}
}

@media (max-width:1024px){
	.cpcb-header-placeholder{
		height:96px;
		min-height:96px;
	}

	.cpcb-header-wrap{
		padding:0 12px !important;
	}

	.cpcb-header{
		border-radius:0 0 22px 22px;
	}

	.cpcb-header__inner{
		min-height:78px;
		padding:0 18px;
	}

	.cpcb-header__nav,
	.cpcb-header__cta{
		display:none;
	}

	.cpcb-mobile-toggle{
		display:flex;
	}

	.cpcb-header__logo img{
		max-height:68px;
	}
}


/* =========================================================
   v3.3.1 Clean professional corrections
   - allow submenu outside header card
   - larger logo
   - menu hover: gold line only, no background box
   ========================================================= */

.cpcb-header{
	overflow:visible !important;
}

.cpcb-header__shine{
	overflow:hidden;
	border-radius:0 0 30px 30px;
}

.cpcb-header__logo img,
.cpcb-mobile-panel__logo img{
	max-height:96px !important;
}

.cpcb-header.is-scrolled .cpcb-header__logo img{
	max-height:82px !important;
}

.cpcb-menu a:hover,
.cpcb-menu .current-menu-item > a{
	background:transparent !important;
	color:var(--cpcb-gold-dark) !important;
	transform:translateY(-1px);
}

.cpcb-menu .sub-menu,
.cpcb-menu .children{
	top:calc(100% + 18px) !important;
	z-index:100500 !important;
}

.cpcb-menu .sub-menu a,
.cpcb-menu .children a{
	background:transparent !important;
	padding:13px 14px;
	border-radius:14px;
}

.cpcb-menu .sub-menu a:hover,
.cpcb-menu .children a:hover{
	background:rgba(244,238,232,.72) !important;
	color:var(--cpcb-gold-dark) !important;
}

@media (max-width:1024px){
	.cpcb-header__logo img{
		max-height:78px !important;
	}
}


/* =========================================================
   v3.5.0 Ultra Header System
   Stable flex layout: logo | menu | CTA
   No grid. No structural risk.
   ========================================================= */

.cpcb-header{
	overflow:visible !important;
	border-radius:0 0 28px 28px !important;
}

.cpcb-header__shine{
	overflow:hidden;
	border-radius:0 0 28px 28px;
}

.cpcb-header__inner{
	min-height:128px !important;
	padding:0 34px !important;
	display:flex !important;
	align-items:center !important;
	justify-content:flex-start !important;
	gap:18px !important;
}

.cpcb-header__logo{
	flex:0 0 auto !important;
	margin:0 !important;
	padding:0 !important;
	display:flex !important;
	align-items:center !important;
}

.cpcb-header__logo img{
	max-height:112px !important;
	width:auto !important;
	display:block !important;
}

.cpcb-header.is-scrolled .cpcb-header__inner{
	min-height:104px !important;
}

.cpcb-header.is-scrolled .cpcb-header__logo img{
	max-height:88px !important;
}

.cpcb-header__nav{
	flex:1 1 auto !important;
	display:flex !important;
	justify-content:flex-start !important;
	align-items:center !important;
	min-width:0 !important;
	margin:0 !important;
	padding:0 !important;
}

.cpcb-menu--desktop{
	display:flex !important;
	align-items:center !important;
	justify-content:flex-start !important;
	gap:10px !important;
	flex-wrap:nowrap !important;
	width:auto !important;
	margin:0 !important;
}

.cpcb-menu a{
	font-size:20px !important;
	font-weight:900 !important;
	padding:15px 16px !important;
	letter-spacing:0 !important;
	background:transparent !important;
}

.cpcb-menu a:hover,
.cpcb-menu .current-menu-item > a{
	background:transparent !important;
	color:var(--cpcb-gold-dark) !important;
}

.cpcb-menu a::before{
	left:14px !important;
	right:14px !important;
	bottom:8px !important;
	height:3px !important;
}

.cpcb-header__cta{
	flex:0 0 auto !important;
	min-height:62px !important;
	padding:0 28px !important;
	font-size:18px !important;
	border-radius:20px !important;
	margin-inline-start:auto !important;
	white-space:nowrap !important;
}

.cpcb-header__cta svg{
	width:21px !important;
	height:21px !important;
}

.cpcb-header-placeholder{
	height:146px !important;
	min-height:146px !important;
}

/* Submenus must escape the header card */
.cpcb-menu .sub-menu,
.cpcb-menu .children{
	top:calc(100% + 20px) !important;
	z-index:100500 !important;
	overflow:visible !important;
}

.cpcb-menu .sub-menu a,
.cpcb-menu .children a{
	font-size:16px !important;
	padding:13px 15px !important;
	background:transparent !important;
}

.cpcb-menu .sub-menu a:hover,
.cpcb-menu .children a:hover{
	background:rgba(244,238,232,.72) !important;
}

/* Medium desktop tuning */
@media (max-width:1360px){
	.cpcb-header__inner{
		min-height:116px !important;
		padding:0 26px !important;
		gap:12px !important;
	}

	.cpcb-header__logo img{
		max-height:98px !important;
	}

	.cpcb-menu--desktop{
		gap:4px !important;
	}

	.cpcb-menu a{
		font-size:16px !important;
		padding:13px 10px !important;
	}

	.cpcb-header__cta{
		min-height:54px !important;
		padding:0 20px !important;
		font-size:16px !important;
	}

	.cpcb-header-placeholder{
		height:132px !important;
		min-height:132px !important;
	}
}

/* Tablet/mobile remains stable */
@media (max-width:1024px){
	.cpcb-header__inner{
		min-height:84px !important;
		padding:0 18px !important;
		gap:14px !important;
	}

	.cpcb-header__logo img{
		max-height:74px !important;
	}

	.cpcb-header__nav,
	.cpcb-header__cta{
		display:none !important;
	}

	.cpcb-mobile-toggle{
		display:flex !important;
		margin-inline-start:auto !important;
	}

	.cpcb-header-placeholder{
		height:104px !important;
		min-height:104px !important;
	}
}


/* =========================================================
   v3.5.2 Professional Social Rail
   ========================================================= */

.cpcb-social-rail{
	position:fixed;
	left:28px;
	top:50%;
	transform:translateY(-50%);
	z-index:99980;
	display:flex;
	flex-direction:column;
	gap:16px;
	pointer-events:auto;
}

.cpcb-social-rail__item{
	width:58px;
	height:58px;
	border-radius:999px;
	background:rgba(255,255,255,.96);
	display:flex;
	align-items:center;
	justify-content:center;
	color:var(--cpcb-blue);
	text-decoration:none !important;
	box-shadow:0 12px 28px rgba(10,20,40,.10);
	border:1px solid rgba(10,20,40,.045);
	backdrop-filter:blur(12px);
	-webkit-backdrop-filter:blur(12px);
	transition:
		transform .28s cubic-bezier(.22,1,.36,1),
		box-shadow .28s ease,
		background .28s ease,
		color .28s ease;
}

.cpcb-social-rail__item svg{
	width:24px;
	height:24px;
	fill:currentColor;
	display:block;
	transition:transform .28s cubic-bezier(.22,1,.36,1);
}

.cpcb-social-rail__item:hover{
	transform:translateX(6px) scale(1.08);
	background:linear-gradient(135deg,var(--cpcb-gold),#d8b07f);
	color:#fff;
	box-shadow:0 18px 36px rgba(201,155,103,.34);
}

.cpcb-social-rail__item:hover svg{
	transform:scale(1.08) rotate(-4deg);
}

@media (max-width:1024px){
	.cpcb-social-rail{
		left:14px;
		gap:10px;
	}
	.cpcb-social-rail__item{
		width:48px;
		height:48px;
	}
	.cpcb-social-rail__item svg{
		width:21px;
		height:21px;
	}
}

@media (max-width:767px){
	.cpcb-social-rail{
		display:none;
	}
}


/* =========================================================
   v3.5.3 Smart Social Behavior
   Safe zone from header + smooth reveal
   ========================================================= */

.cpcb-social-rail{
	top:max(320px, calc(50% + 64px)) !important;
	opacity:0;
	transform:translateY(-45%) translateX(-10px) !important;
	transition:
		opacity .45s cubic-bezier(.22,1,.36,1),
		transform .45s cubic-bezier(.22,1,.36,1),
		top .25s ease;
}

html.cpcb-social-ready .cpcb-social-rail{
	opacity:1;
	transform:translateY(-50%) translateX(0) !important;
}

html.cpcb-social-scrolled .cpcb-social-rail{
	top:50% !important;
}

html.cpcb-social-scrolled.cpcb-social-ready .cpcb-social-rail{
	transform:translateY(-50%) translateX(0) !important;
}

@media (min-width:1025px){
	.cpcb-social-rail{
		left:32px !important;
	}
}

@media (max-height:760px) and (min-width:768px){
	.cpcb-social-rail{
		gap:10px !important;
	}
	.cpcb-social-rail__item{
		width:50px !important;
		height:50px !important;
	}
}


/* =========================================================
   v3.7.0 Premium Customizable Footer
   ========================================================= */

.cpcb-footer--premium{
	position:relative;
	overflow:hidden;
	background:linear-gradient(135deg,#071126 0%,#0b1533 46%,#172652 100%) !important;
	padding:78px 28px 26px !important;
	text-align:initial !important;
	color:#fff;
}

.cpcb-footer__bg{
	position:absolute;
	inset:0;
	pointer-events:none;
	background:
		radial-gradient(circle at 12% 16%, rgba(201,155,103,.18), transparent 28%),
		radial-gradient(circle at 88% 70%, rgba(255,255,255,.08), transparent 30%);
	opacity:1;
}

.cpcb-footer__inner{
	position:relative;
	z-index:1;
	max-width:1320px;
	margin:0 auto;
	display:grid;
	grid-template-columns:minmax(320px,1.4fr) minmax(220px,.7fr) minmax(300px,.9fr);
	gap:26px;
	align-items:stretch;
}

.cpcb-footer__brand,
.cpcb-footer__nav-card,
.cpcb-footer__cta-card{
	border:1px solid rgba(255,255,255,.10);
	background:rgba(255,255,255,.055);
	backdrop-filter:blur(14px);
	-webkit-backdrop-filter:blur(14px);
	border-radius:28px;
	padding:28px;
	box-shadow:0 20px 48px rgba(0,0,0,.18);
}

.cpcb-footer__brand{
	background:linear-gradient(135deg,rgba(255,255,255,.07),rgba(255,255,255,.035));
}

.cpcb-footer__logo{
	margin-bottom:18px;
}

.cpcb-footer__logo img{
	max-height:96px !important;
	filter:brightness(0) invert(1) contrast(1.12) !important;
}

.cpcb-footer__eyebrow{
	margin:0 0 10px;
	color:var(--cpcb-gold-light,#e6c596);
	font-size:14px;
	font-weight:800;
	letter-spacing:.3px;
}

.cpcb-footer__title{
	margin:0 0 14px;
	color:#fff;
	font-size:30px;
	font-weight:950;
	line-height:1.35;
}

.cpcb-footer__desc{
	margin:0;
	color:rgba(255,255,255,.76);
	font-size:16px;
	line-height:1.9;
	max-width:680px;
}

.cpcb-footer__nav-card h3,
.cpcb-footer__cta-card h3{
	margin:0 0 18px;
	color:#fff;
	font-size:20px;
	font-weight:900;
}

.cpcb-footer-menu{
	list-style:none;
	padding:0;
	margin:0;
	display:grid;
	gap:10px;
}

.cpcb-footer-menu li{
	margin:0;
	padding:0;
}

.cpcb-footer-menu a{
	display:flex;
	align-items:center;
	gap:8px;
	color:rgba(255,255,255,.78);
	text-decoration:none;
	font-weight:750;
	font-size:15px;
	padding:10px 12px;
	border-radius:14px;
	transition:transform .22s cubic-bezier(.22,1,.36,1), background .22s ease, color .22s ease;
}

.cpcb-footer-menu a::before{
	content:"";
	width:7px;
	height:7px;
	border-radius:99px;
	background:var(--cpcb-gold,#c99b67);
	opacity:.9;
}

.cpcb-footer-menu a:hover{
	background:rgba(255,255,255,.08);
	color:#fff;
	transform:translateX(-4px);
}

.cpcb-footer__badge{
	display:inline-flex;
	align-items:center;
	width:max-content;
	margin-bottom:14px;
	padding:8px 12px;
	border-radius:999px;
	background:rgba(201,155,103,.16);
	color:var(--cpcb-gold-light,#e6c596);
	font-size:12px;
	font-weight:900;
}

.cpcb-footer__cta-card p{
	margin:0 0 20px;
	color:rgba(255,255,255,.75);
	font-size:15px;
	line-height:1.85;
}

.cpcb-footer__cta{
	position:relative;
	overflow:hidden;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:10px;
	min-height:52px;
	padding:0 22px;
	border-radius:18px;
	background:linear-gradient(135deg,var(--cpcb-gold,#c99b67),#d8b07f);
	color:#fff !important;
	text-decoration:none !important;
	font-weight:900;
	box-shadow:0 16px 34px rgba(201,155,103,.28);
	transition:transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease;
}

.cpcb-footer__cta svg{
	width:19px;
	height:19px;
	fill:none;
	stroke:currentColor;
	stroke-width:2.5;
	stroke-linecap:round;
	stroke-linejoin:round;
	transition:transform .25s ease;
}

.cpcb-footer__cta:hover{
	transform:translateY(-3px);
	box-shadow:0 20px 40px rgba(201,155,103,.38);
}

.cpcb-footer__cta:hover svg{
	transform:translate(-2px,-2px);
}

.cpcb-footer__bottom{
	position:relative;
	z-index:1;
	max-width:1320px;
	margin:24px auto 0;
	padding-top:20px;
	border-top:1px solid rgba(255,255,255,.10);
	text-align:center;
}

.cpcb-footer__bottom p{
	margin:0;
	color:rgba(255,255,255,.58);
	font-size:13px;
}

@media(max-width:1100px){
	.cpcb-footer__inner{
		grid-template-columns:1fr 1fr;
	}
	.cpcb-footer__brand{
		grid-column:1/-1;
	}
}

@media(max-width:720px){
	.cpcb-footer--premium{
		padding:54px 16px 24px !important;
	}
	.cpcb-footer__inner{
		grid-template-columns:1fr;
		gap:16px;
	}
	.cpcb-footer__brand,
	.cpcb-footer__nav-card,
	.cpcb-footer__cta-card{
		padding:22px;
		border-radius:22px;
	}
	.cpcb-footer__title{
		font-size:24px;
	}
}


/* ===== v3.7.1 Footer Logo Center + Hover Effect ===== */

.cpcb-footer__logo{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    margin:0 auto 18px;
}

.cpcb-footer__brand{
    text-align:center;
}

.cpcb-footer__logo img{
    transition:transform .35s cubic-bezier(.22,1,.36,1), filter .35s ease;
}

.cpcb-footer__logo img:hover{
    transform:scale(1.08);
    filter:brightness(1.1) invert(1) contrast(1.15);
}



/* =========================================================
   v3.7.2 RESTORED - Social Icons Default/Hover Colors Only
   Built on stable v3.7.1. No layout/header/footer changes.
   ========================================================= */

.cpcb-social-rail__item{
	background:#fff !important;
	border:2px solid var(--cpcb-blue, #0b1533) !important;
	color:var(--cpcb-blue, #0b1533) !important;
}

.cpcb-social-rail__item:hover{
	background:linear-gradient(135deg,var(--cpcb-gold, #c99b67),#d8b07f) !important;
	border-color:var(--cpcb-gold, #c99b67) !important;
	color:#fff !important;
	box-shadow:0 18px 36px rgba(201,155,103,.35) !important;
}



/* v3.8.1 WhatsApp + Phone icons support */
.cpcb-social-rail__item--whatsapp:hover{
	background:linear-gradient(135deg,#25D366,#128C7E) !important;
	border-color:#25D366 !important;
	color:#fff !important;
	box-shadow:0 18px 36px rgba(37,211,102,.30) !important;
}

.cpcb-social-rail__item--phone:hover{
	background:linear-gradient(135deg,var(--cpcb-gold, #c99b67),#d8b07f) !important;
	border-color:var(--cpcb-gold, #c99b67) !important;
	color:#fff !important;
}
