/*
Theme Name: Hello Elementor Child - BP Farm
Theme URI: https://bpfarm.uz
Description: Child theme for a one-page BP Farm business card website.
Author: BP Farm
Author URI: https://bpfarm.uz
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child-bpfarm
*/

/* =====================================================
   TOKENS
   ===================================================== */
:root {
	--bp-primary:    #c4507e;
	--bp-primary-dk: #a83c68;
	--bp-navy:       #49789d;
	--bp-navy-lt:    #5d8faf;
	--bp-navy-dk:    #2d5f82;
	--bp-white:      #ffffff;
	--bp-off:        #f3f7fb;
	--bp-muted:      #6b8599;
	--bp-border:     #d4e3ef;
	--bp-radius:     14px;
	--bp-shadow:     0 8px 32px rgba(45,95,130,.12);
	--bp-shadow-sm:  0 2px 12px rgba(45,95,130,.08);
}

html {
	scroll-behavior: smooth;
}

/* =====================================================
   RESET / BASE
   ===================================================== */
.page-template-template-bpfarm-landing *,
.page-template-template-bpfarm-landing *::before,
.page-template-template-bpfarm-landing *::after {
	box-sizing: border-box;
}

.page-template-template-bpfarm-landing body,
.page-template-template-bpfarm-landing {
	margin: 0;
	font-family: "Roboto", "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--bp-navy);
	background: var(--bp-white);
}

.page-template-template-bpfarm-landing img { max-width: 100%; height: auto; }
.page-template-template-bpfarm-landing a   { text-decoration: none; }

/* =====================================================
   LAYOUT
   ===================================================== */
.bp-wrap {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 28px;
}

.bp-section { padding: 80px 0; }
.bp-section--sm { padding: 52px 0; }
.bp-section--alt { background: var(--bp-off); }

.bp-section-label {
	display: inline-block;
	margin: 0 0 12px;
	padding: 4px 14px;
	border-radius: 40px;
	background: rgba(196,80,126,.1);
	color: var(--bp-primary);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .6px;
	text-transform: uppercase;
}

.bp-section-title {
	margin: 0 0 14px;
	font-size: clamp(26px, 3.5vw, 38px);
	font-weight: 800;
	line-height: 1.18;
	color: var(--bp-navy);
}

.bp-section-sub {
	margin: 0 0 48px;
	font-size: 17px;
	color: var(--bp-muted);
	max-width: 640px;
}

/* =====================================================
   TOPBAR
   ===================================================== */
.bp-topbar {
	background: var(--bp-navy-dk);
	color: rgba(255,255,255,.75);
	font-size: 13px;
	padding: 9px 0;
}

.bp-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 28px;
	flex-wrap: wrap;
}

.bp-topbar a {
	color: rgba(255,255,255,.75);
	display: flex;
	align-items: center;
	gap: 6px;
	transition: color .2s;
}

.bp-topbar a:hover { color: #fff; }

.bp-topbar svg { flex-shrink: 0; }

.bp-lang-switcher {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding-left: 12px;
	margin-left: 6px;
	border-left: 1px solid rgba(255,255,255,.2);
}

.bp-topbar .bp-lang-switcher__link {
	display: block;
	padding: 4px 8px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: rgba(255,255,255,.8);
	line-height: 1;
}

.bp-topbar .bp-lang-switcher__link:hover {
	background: rgba(255,255,255,.12);
	color: #fff;
}

.bp-topbar .bp-lang-switcher__link.is-current {
	background: rgba(255,255,255,.2);
	color: #fff;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.bp-nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--bp-white);
	box-shadow: 0 2px 16px rgba(45,95,130,.1);
}

.bp-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}

.bp-nav__logo img { height: 50px; width: auto; display: block; }

.bp-nav__toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--bp-border);
	border-radius: 10px;
	background: var(--bp-white);
	padding: 0;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.bp-nav__toggle span {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 2px;
	background: var(--bp-navy);
	transition: transform .24s, opacity .24s;
}

.bp-nav__links {
	display: flex;
	align-items: center;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bp-nav__links a {
	display: block;
	padding: 8px 14px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 500;
	color: var(--bp-navy);
	transition: background .2s, color .2s;
}

.bp-nav__links a:hover {
	background: var(--bp-off);
	color: var(--bp-primary);
}

.bp-nav__cta {
	padding: 9px 22px !important;
	background: var(--bp-primary) !important;
	color: #fff !important;
	border-radius: 8px !important;
	font-weight: 600 !important;
}

.bp-nav__cta:hover {
	background: var(--bp-primary-dk) !important;
}

.bp-nav.is-open .bp-nav__toggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.bp-nav.is-open .bp-nav__toggle span:nth-child(2) {
	opacity: 0;
}

.bp-nav.is-open .bp-nav__toggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* =====================================================
   HERO
   ===================================================== */
.bp-hero {
	position: relative;
	min-height: 580px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(120deg, var(--bp-navy-dk) 0%, var(--bp-navy) 55%, var(--bp-navy-lt) 100%);
}

.bp-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 60% at 80% 50%, rgba(196,80,126,.28) 0%, transparent 70%),
		url("data:image/svg+xml,%3Csvg width='600' height='600' viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='300' cy='300' r='280' fill='none' stroke='rgba(255,255,255,.04)' stroke-width='1'/%3E%3Ccircle cx='300' cy='300' r='220' fill='none' stroke='rgba(255,255,255,.04)' stroke-width='1'/%3E%3Ccircle cx='300' cy='300' r='160' fill='none' stroke='rgba(255,255,255,.04)' stroke-width='1'/%3E%3C/svg%3E") right center / 640px no-repeat;
}

.bp-hero__inner {
	position: relative;
	z-index: 2;
	padding: 90px 0 80px;
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 56px;
	align-items: center;
}

/* ---- left col ---- */
.bp-hero__content { min-width: 0; }

.bp-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 24px;
	padding: 6px 16px;
	border-radius: 40px;
	border: 1px solid rgba(255,255,255,.2);
	background: rgba(255,255,255,.08);
	color: rgba(255,255,255,.9);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .5px;
	backdrop-filter: blur(6px);
}

.bp-hero__badge span { color: #f0a0c0; }

.bp-hero__title {
	margin: 0 0 18px;
	font-size: clamp(36px, 5.5vw, 58px);
	font-weight: 900;
	line-height: 1.05;
	color: #fff;
	letter-spacing: -.5px;
	max-width: 760px;
}

.bp-hero__title em {
	font-style: normal;
	color: #f9b0cc;
}

.bp-hero__sub {
	margin: 0 0 38px;
	font-size: clamp(17px, 2vw, 21px);
	line-height: 1.55;
	color: rgba(255,255,255,.78);
	max-width: 580px;
}

.bp-hero__actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.bp-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 30px;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: transform .18s, box-shadow .18s, background .18s;
	white-space: nowrap;
}

.bp-btn:hover { transform: translateY(-2px); }

.bp-btn--primary {
	background: var(--bp-primary);
	color: #fff;
	box-shadow: 0 6px 22px rgba(196,80,126,.35);
}

.bp-btn--primary:hover {
	background: var(--bp-primary-dk);
	color: #fff;
	box-shadow: 0 10px 28px rgba(196,80,126,.45);
}


.bp-btn--outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.bp-hero__stats {
	display: flex;
	gap: 36px;
	margin-top: 52px;
	flex-wrap: wrap;
}

.bp-hero__stat-num {
	display: block;
	font-size: 32px;
	font-weight: 900;
	color: #fff;
	line-height: 1;
}

.bp-hero__stat-lbl {
	font-size: 13px;
	color: rgba(255,255,255,.6);
	margin-top: 4px;
}

.page-template-template-bpfarm-landing .bp-btn--outline {
	border: 2px solid rgba(255,255,255,.4);
	color: #fff;
	background: transparent;
}

/* ---- right col: banner ---- */
.bp-hero__banner {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.bp-hero__banner-orb {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(196,80,126,.2) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.bp-hero__banner-card {
	position: relative;
	z-index: 1;
	border-radius: 18px;
	border: 1px solid rgba(255,255,255,.14);
	background: rgba(255,255,255,.07);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	color: #fff;
	transition: transform .22s, background .22s;
}

.bp-hero__banner-card:hover {
	background: rgba(255,255,255,.11);
	transform: translateY(-3px);
}

/* main card */
.bp-hero__banner-card--main {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 24px 28px;
}

.bp-hero__banner-icon {
	flex-shrink: 0;
	width: 70px;
	height: 70px;
	border-radius: 16px;
	background: rgba(196,80,126,.25);
	border: 1px solid rgba(196,80,126,.45);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #f9b0cc;
}

.bp-hero__banner-text strong {
	display: block;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 4px;
}

.bp-hero__banner-text span {
	font-size: 13px;
	color: rgba(255,255,255,.6);
}

/* pill badge */
.bp-hero__banner-card--pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	font-size: 14px;
	font-weight: 600;
	width: fit-content;
	color: #a8f0c0;
	border-color: rgba(100,220,140,.2);
	background: rgba(50,180,100,.1);
}

/* stats grid */
.bp-hero__banner-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.bp-hero__banner-stat {
	border-radius: 14px;
	border: 1px solid rgba(255,255,255,.12);
	background: rgba(255,255,255,.06);
	backdrop-filter: blur(10px);
	padding: 18px 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	color: rgba(255,255,255,.65);
	font-size: 12px;
	font-weight: 500;
	text-align: center;
	transition: background .2s;
}

.bp-hero__banner-stat:hover { background: rgba(255,255,255,.1); }

.bp-hero__banner-stat span {
	display: block;
	font-size: 26px;
	font-weight: 900;
	color: #fff;
	line-height: 1;
}

/* =====================================================
   PARTNER BANNER
   ===================================================== */
.bp-partner {
	background: var(--bp-white);
	border-top: 1px solid var(--bp-border);
	border-bottom: 1px solid var(--bp-border);
	padding: 52px 0;
}

.bp-partner__inner {
	display: flex;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}

.bp-partner__badge {
	flex-shrink: 0;
	width: 86px;
	height: 86px;
	border-radius: 50%;
	background: rgba(73,120,157,.12);
	border: 2px solid rgba(73,120,157,.25);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bp-navy);
}

.bp-partner__text { flex: 1; min-width: 240px; }

.bp-partner__label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--bp-muted);
	margin: 0 0 8px;
}

.bp-partner__heading {
	margin: 0 0 10px;
	font-size: clamp(20px, 2.8vw, 30px);
	font-weight: 800;
	color: var(--bp-navy-dk);
	line-height: 1.2;
}

.bp-partner__desc {
	margin: 0;
	font-size: 16px;
	color: var(--bp-muted);
	line-height: 1.6;
}

.bp-partner__logo-wrap {
	flex-shrink: 0;
	background: var(--bp-navy);
	border: 1px solid var(--bp-navy-dk);
	border-radius: 12px;
	padding: 16px 28px;
	color: #fff;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -.5px;
}

/* =====================================================
   FEATURES (ПО ЧТО МЫ)
   ===================================================== */
.bp-features__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.bp-feat {
	padding: 32px 28px;
	border-radius: var(--bp-radius);
	border: 1px solid var(--bp-border);
	background: var(--bp-white);
	box-shadow: var(--bp-shadow-sm);
	transition: box-shadow .22s, transform .22s;
}

.bp-feat:hover {
	box-shadow: var(--bp-shadow);
	transform: translateY(-4px);
}

.bp-feat__icon {
	width: 54px;
	height: 54px;
	border-radius: 14px;
	background: rgba(196,80,126,.09);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 18px;
	color: var(--bp-primary);
}

.bp-feat__title {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
	color: var(--bp-navy);
}

.bp-feat__text {
	margin: 0;
	font-size: 15px;
	color: var(--bp-muted);
	line-height: 1.65;
}

/* =====================================================
   PRODUCTS
   ===================================================== */
.bp-products__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.bp-prod {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 28px 20px 24px;
	border-radius: var(--bp-radius);
	border: 1px solid var(--bp-border);
	background: var(--bp-white);
	box-shadow: var(--bp-shadow-sm);
	transition: box-shadow .22s, transform .22s;
	cursor: default;
}

.bp-prod:hover {
	box-shadow: var(--bp-shadow);
	transform: translateY(-4px);
	border-color: rgba(196,80,126,.25);
}

.bp-prod__icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(196,80,126,.1) 0%, rgba(196,80,126,.04) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 14px;
	color: var(--bp-primary);
}

.bp-prod__name {
	font-size: 14px;
	font-weight: 600;
	color: var(--bp-navy);
	line-height: 1.35;
}

/* =====================================================
   CONTACT
   ===================================================== */
.bp-contact__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: start;
}

.bp-contact__cards { display: flex; flex-direction: column; gap: 20px; }

.bp-contact-card {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 24px 26px;
	border-radius: var(--bp-radius);
	border: 1px solid var(--bp-border);
	background: var(--bp-white);
	box-shadow: var(--bp-shadow-sm);
}

.bp-contact-card__icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--bp-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.bp-contact-card__label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .6px;
	text-transform: uppercase;
	color: var(--bp-muted);
	margin: 0 0 4px;
}

.bp-contact-card__val {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	color: var(--bp-navy);
	line-height: 1.4;
}

.bp-contact-card__val a {
	color: var(--bp-navy);
	transition: color .2s;
}

.bp-contact-card__val a:hover { color: var(--bp-primary); }

.bp-map {
	border-radius: var(--bp-radius);
	overflow: hidden;
	box-shadow: var(--bp-shadow);
	border: 1px solid var(--bp-border);
}

.bp-map iframe {
	display: block;
	width: 100%;
	height: 360px;
	border: none;
}

/* =====================================================
   FOOTER
   ===================================================== */
.bp-footer {
	background: var(--bp-navy-dk);
	color: rgba(255,255,255,.6);
}

.bp-footer__top {
	padding: 52px 0 38px;
	display: flex;
	align-items: flex-start;
	gap: 48px;
	flex-wrap: wrap;
}

.bp-footer__brand { flex: 1; min-width: 220px; }

.bp-footer__logo img {
	height: 50px;
	width: auto;
	margin: 0 0 16px;
	opacity: .95;
}

.bp-footer__tagline {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255,255,255,.5);
	max-width: 280px;
}

.bp-footer__col h4 {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .7px;
	text-transform: uppercase;
	color: rgba(255,255,255,.35);
	margin: 0 0 16px;
}

.bp-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.bp-footer__col ul a {
	font-size: 15px;
	color: rgba(255,255,255,.65);
	transition: color .18s;
}

.bp-footer__col ul a:hover { color: #fff; }

.bp-footer__bottom {
	border-top: 1px solid rgba(255,255,255,.08);
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
	flex-wrap: wrap;
	gap: 12px;
}

.bp-footer__bottom a {
	color: rgba(255,255,255,.45);
	transition: color .18s;
}

.bp-footer__bottom a:hover { color: #fff; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
	.bp-features__grid    { grid-template-columns: repeat(2, 1fr); }
	.bp-products__grid    { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
	.bp-hero__inner {
		grid-template-columns: 1fr 340px;
		gap: 36px;
	}
}

@media (max-width: 767px) {
	.bp-section           { padding: 56px 0; }
	.bp-nav               { position: sticky; top: 0; z-index: 120; }
	.bp-nav__inner        { height: 68px; }
	.bp-nav__toggle       { display: inline-flex !important; }
	.bp-nav__links        {
		position: absolute;
		top: calc(100% + 10px);
		left: 16px;
		right: 16px;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
		padding: 10px;
		border: 1px solid var(--bp-border);
		border-radius: 12px;
		background: #fff;
		box-shadow: 0 12px 30px rgba(45,95,130,.16);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		pointer-events: none;
		transition: opacity .2s, transform .2s, visibility .2s;
	}
	.bp-nav__links a      { width: 100%; }
	.bp-nav.is-open .bp-nav__links {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		pointer-events: auto;
	}
	.body--nav-open       { overflow: hidden; }
	.bp-lang-switcher     { width: 100%; margin-left: 0; padding-left: 0; border-left: none; }
	.bp-hero__inner       {
		grid-template-columns: 1fr;
		padding: 70px 0 60px;
	}
	.bp-hero__banner      { display: none; }
	.bp-hero__stats       { gap: 24px; }
	.bp-features__grid    { grid-template-columns: 1fr; }
	.bp-products__grid    { grid-template-columns: repeat(2, 1fr); }
	.bp-contact__grid     { grid-template-columns: 1fr; }
	.bp-partner__inner    { gap: 24px; }
	.bp-footer__top       { gap: 32px; }

	.bp-topbar__inner {
		gap: 5px;
	}
}

@media (max-width: 480px) {
	.bp-products__grid    { grid-template-columns: repeat(2, 1fr); }
	.bp-wrap              { padding: 0 16px; }

	.bp-lang-switcher {
		justify-content: end;
	}
}
