:root {
	--primary: #185FA5;
	--dark-navy: #1a2a3d;
	--black: #0a0a0a;
	--white: #ffffff;
	--gray: #f8f8f8;
	--gray-dark: #e8e8e8;
	--gold: #d4af37;
	--text: #1a1a1a;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	background: var(--white);
	color: var(--text);
	line-height: 1.6;
	letter-spacing: -0.3px;
	font-weight: 400;
}

.bp-wrapper {
	width: 100%;
	overflow: hidden;
}

.bp-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 60px;
}

/* Hero Section - Premium Conference Style */

.bp-hero {
	background: linear-gradient(135deg, #1a2a3d 0%, #0f1820 100%);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.bp-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.15) 100%);
	z-index: 1;
}

.bp-hero-auto {
	height: 100vh;
	min-height: 500px;
}

.bp-hero-16-9 {
	height: auto;
	aspect-ratio: 16 / 9;
	min-height: 550px;
}

.bp-hero-4-2 {
	height: auto;
	aspect-ratio: 4 / 2;
	min-height: 450px;
}

.bp-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.bp-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 80px 60px;
}

.bp-headline {
	font-size: clamp(56px, 14vw, 120px);
	font-weight: 900;
	margin-bottom: 32px;
	line-height: 1.0;
	letter-spacing: -2px;
	color: white;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Headline Color Variants */

.bp-headline-white .bp-headline {
	color: white;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.bp-headline-black .bp-headline {
	color: #000000;
	text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.7);
}

.bp-headline-gold .bp-headline {
	color: #d4af37;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.bp-headline-blue .bp-headline {
	color: #185FA5;
	text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.7);
}

.bp-headline::after {
	content: '';
	display: block;
	width: 70px;
	height: 3px;
	background: currentColor;
	margin: 40px auto 0;
	border-radius: 2px;
	opacity: 0.9;
}

.bp-subheadline {
	font-size: clamp(18px, 3vw, 28px);
	margin-bottom: 60px;
	color: rgba(255, 255, 255, 0.95);
	font-weight: 400;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
	letter-spacing: 0px;
	line-height: 1.5;
}

.bp-headline-black .bp-subheadline {
	color: rgba(0, 0, 0, 0.85);
	text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
}

.bp-headline-gold .bp-subheadline {
	color: rgba(255, 255, 255, 0.95);
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.bp-headline-blue .bp-subheadline {
	color: rgba(255, 255, 255, 0.95);
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.bp-cta {
	display: flex;
	gap: 30px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 60px;
}

/* Buttons - Summit Style */

.bp-btn {
	display: inline-block;
	padding: 20px 55px;
	border-radius: 30px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	border: 2px solid;
	font-size: 16px;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	text-transform: none;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.bp-btn-primary {
	background: var(--dark-navy);
	color: white;
	border-color: var(--dark-navy);
}

.bp-btn-primary:hover {
	background: #0f1820;
	border-color: #0f1820;
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.bp-btn-secondary {
	background: transparent;
	color: white;
	border-color: white;
}

.bp-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: white;
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* Services Section - Clean & Premium */

.bp-services {
	background: var(--white);
	padding: 160px 0;
	position: relative;
	border-bottom: 1px solid var(--gray-dark);
}

.bp-section-title {
	font-size: clamp(42px, 8vw, 72px);
	font-weight: 900;
	text-align: center;
	margin-bottom: 120px;
	color: var(--text);
	line-height: 1.15;
	letter-spacing: -1.5px;
}

.bp-section-title::after {
	content: '';
	display: block;
	width: 90px;
	height: 3px;
	background: var(--gold);
	margin: 40px auto 0;
	border-radius: 2px;
}

.bp-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 60px;
}

.bp-card {
	background: var(--dark-navy);
	padding: 60px 50px;
	border: none;
	border-radius: 12px;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
	color: white;
}

.bp-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--gold), var(--primary));
	transform: scaleX(0);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform-origin: left;
}

.bp-card:hover::before {
	transform: scaleX(1);
}

.bp-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.bp-card h3 {
	font-size: 28px;
	margin-bottom: 24px;
	color: white !important;
	font-weight: 700;
	letter-spacing: -0.5px;
	line-height: 1.25;
}

.bp-card p {
	color: rgba(255, 255, 255, 0.92) !important;
	line-height: 1.7;
	font-size: 17px;
}

/* CARD COLOR RESET - FORCE WHITE TEXT */
.bp-card * {
	color: white !important;
}

.bp-card a {
	color: #d4af37 !important;
}

/* Events Section */

.bp-events {
	background: var(--gray);
	padding: 160px 0;
	position: relative;
	border-bottom: 1px solid var(--gray-dark);
}

.bp-event {
	background: var(--white);
	padding: 50px 50px;
	border-radius: 12px;
	border: none;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.bp-event::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--gold), var(--primary));
	transform: scaleX(0);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform-origin: left;
}

.bp-event:hover::before {
	transform: scaleX(1);
}

.bp-event:hover {
	transform: translateY(-12px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.bp-event h3 {
	font-size: 26px;
	margin-bottom: 16px;
	color: var(--text);
	font-weight: 700;
	letter-spacing: -0.3px;
	line-height: 1.3;
}

.bp-meta {
	color: var(--primary);
	font-weight: 800;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 16px;
	display: block;
}

.bp-date {
	font-weight: 700;
	font-size: 18px;
	color: var(--dark-navy);
	margin-bottom: 8px;
	letter-spacing: -0.2px;
}

.bp-time {
	font-size: 15px;
	color: #888;
	margin-bottom: 8px;
	font-weight: 500;
}

.bp-location {
	font-size: 15px;
	color: var(--gold);
	font-weight: 600;
	margin-bottom: 18px;
}

.bp-event p {
	color: #555;
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 12px;
}

/* Footer */

.bp-footer {
	background: var(--dark-navy);
	color: white;
	padding: 80px 0;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
}

.bp-footer p {
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
	font-size: 16px;
	letter-spacing: 0.3px;
}

/* Responsive - TABLET */

@media (max-width: 768px) {
	.bp-container {
		padding: 0 30px;
	}

	.bp-hero-auto {
		min-height: 500px;
		height: auto;
	}

	.bp-hero-content {
		padding: 40px 30px;
	}

	.bp-headline {
		font-size: 36px;
		margin-bottom: 12px;
		letter-spacing: -0.5px;
	}

	.bp-subheadline {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.bp-cta {
		flex-direction: column;
		gap: 10px;
		margin-top: 30px;
	}

	.bp-cta .bp-btn {
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
		display: block;
		padding: 15px 35px;
		font-size: 14px;
	}

	.bp-grid {
		gap: 25px;
		grid-template-columns: 1fr;
	}

	.bp-section-title {
		font-size: 28px;
		margin-bottom: 70px;
		letter-spacing: -0.5px;
	}

	.bp-section-title::after {
		width: 60px;
		margin: 20px auto 0;
	}

	.bp-services {
		padding: 80px 0;
	}

	.bp-events {
		padding: 80px 0;
	}

	.bp-card {
		padding: 35px 30px;
	}

	.bp-card h3 {
		font-size: 20px;
		margin-bottom: 16px;
	}

	.bp-card p {
		font-size: 15px;
		line-height: 1.6;
	}

	.bp-event {
		padding: 30px 25px;
	}

	.bp-event h3 {
		font-size: 18px;
		margin-bottom: 8px;
	}

	.bp-meta {
		font-size: 10px;
		margin-bottom: 10px;
	}

	.bp-date {
		font-size: 16px;
	}

	.bp-time {
		font-size: 14px;
	}

	.bp-location {
		font-size: 14px;
	}

	.bp-event p {
		font-size: 15px;
		line-height: 1.6;
	}
}


/* Responsive - MOBILE - FIXED */

@media (max-width: 480px) {
	html, body {
		width: 100%;
		overflow-x: hidden;
	}

	.bp-wrapper {
		width: 100%;
		max-width: 100%;
		overflow-x: hidden;
	}

	.bp-container {
		padding: 0 15px;
		max-width: 100%;
		width: 100%;
	}

	.bp-hero {
		width: 100%;
		overflow-x: hidden;
	}

	.bp-hero-content {
		padding: 30px 15px;
		max-width: 100%;
		width: 100%;
	}

	.bp-hero-auto {
		min-height: 450px;
		width: 100%;
	}

	.bp-hero-16-9 {
		min-height: 400px;
		width: 100%;
	}

	.bp-hero-4-2 {
		min-height: 350px;
		width: 100%;
	}

	.bp-headline {
		font-size: 26px;
		margin-bottom: 10px;
		letter-spacing: 0px;
		word-wrap: break-word;
		overflow-wrap: break-word;
	}

	.bp-subheadline {
		font-size: 13px;
		margin-bottom: 18px;
		line-height: 1.3;
		word-wrap: break-word;
	}

	.bp-cta {
		margin-top: 18px;
		gap: 8px;
		padding: 0;
	}

	.bp-btn {
		padding: 11px 20px;
		font-size: 11px;
		border-radius: 20px;
		width: 100%;
		max-width: 100%;
		margin: 0;
		display: block;
	}

	.bp-headline::after {
		width: 35px;
		height: 2px;
		margin: 10px auto 0;
	}

	.bp-grid {
		gap: 15px;
	}

	.bp-section-title {
		font-size: 20px;
		margin-bottom: 40px;
		word-wrap: break-word;
	}

	.bp-section-title::after {
		width: 45px;
		height: 2px;
		margin: 12px auto 0;
	}

	.bp-services {
		padding: 50px 0;
		width: 100%;
		overflow-x: hidden;
	}

	.bp-events {
		padding: 50px 0;
		width: 100%;
		overflow-x: hidden;
	}

	.bp-card {
		padding: 22px 16px;
		margin: 0;
		width: auto;
	}

	.bp-card h3 {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.bp-card p {
		font-size: 13px;
		line-height: 1.4;
	}

	.bp-event {
		padding: 18px 14px;
		margin: 0;
		width: auto;
	}

	.bp-event h3 {
		font-size: 15px;
		margin-bottom: 6px;
	}

	.bp-meta {
		font-size: 8px;
		margin-bottom: 6px;
	}

	.bp-date {
		font-size: 14px;
	}

	.bp-time {
		font-size: 12px;
	}

	.bp-location {
		font-size: 12px;
	}

	.bp-event p {
		font-size: 13px;
		line-height: 1.4;
	}

	.bp-footer {
		padding: 40px 0;
		width: 100%;
		overflow-x: hidden;
	}

	.bp-footer p {
		font-size: 12px;
	}
}
