/* ============================================
   BBB Booking Landing Page Styles
   ============================================ */

:root {
	--bbb-purple: #A855F7;
	--bbb-purple-hover: #9333EA;
	--bbb-pink: #EC4899;
	--bbb-bg: #0A0A0A;
	--bbb-card: #18181B;
	--bbb-border: #27272A;
	--bbb-border-subtle: #1A1A1A;
	--bbb-text: #FFFFFF;
	--bbb-text-secondary: #A1A1AA;
	--bbb-text-muted: #71717A;
	--bbb-max-width: 1280px;
}

body {
	background: var(--bbb-bg);
	color: var(--bbb-text);
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	overflow-x: hidden;
}

.wp-site-blocks {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.bbb-landing {
	max-width: 100%;
	margin: 0;
	padding: 0;
}

/* === Navigation === */
.bbb-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 80px;
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(10, 10, 10, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--bbb-border-subtle);
}

.bbb-nav-left {
	display: flex;
	align-items: center;
	gap: 8px;
}

.bbb-nav-left svg {
	width: 28px;
	height: 28px;
	color: var(--bbb-purple);
}

.bbb-nav-brand {
	font-size: 20px;
	font-weight: 700;
	color: var(--bbb-text);
	text-decoration: none;
}

.bbb-nav-brand:hover {
	color: var(--bbb-text);
	text-decoration: none;
}

.bbb-nav-center {
	display: flex;
	align-items: center;
	gap: 32px;
}

.bbb-nav-center a {
	font-size: 14px;
	font-weight: 500;
	color: var(--bbb-text-secondary);
	text-decoration: none;
	transition: color 0.2s;
}

.bbb-nav-center a:hover {
	color: var(--bbb-text);
	text-decoration: none;
}

.bbb-nav-right .bbb-btn-primary {
	font-size: 13px;
	padding: 10px 20px;
}

/* === Buttons === */
.bbb-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--bbb-purple);
	color: #fff;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 15px;
	font-weight: 600;
	padding: 12px 24px;
	border-radius: 9999px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: background 0.2s, transform 0.15s;
}

.bbb-btn-primary:hover {
	background: var(--bbb-purple-hover);
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
}

.bbb-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: var(--bbb-text);
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 15px;
	font-weight: 500;
	padding: 12px 24px;
	border-radius: 9999px;
	border: 1px solid var(--bbb-border);
	text-decoration: none;
	cursor: pointer;
	transition: border-color 0.2s, transform 0.15s;
}

.bbb-btn-secondary:hover {
	border-color: var(--bbb-text-secondary);
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
}

/* === Hero Section === */
.bbb-hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 80px 80px 60px;
	gap: 40px;
}

.bbb-hero-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	max-width: 800px;
}

.bbb-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 9999px;
	border: 1px solid var(--bbb-border);
	font-size: 13px;
	color: var(--bbb-text-secondary);
}

.bbb-hero-badge svg {
	width: 16px;
	height: 16px;
	color: var(--bbb-purple);
}

.bbb-hero h1 {
	font-size: 56px;
	font-weight: 800;
	line-height: 1.1;
	text-align: center;
	color: var(--bbb-text);
	letter-spacing: -0.02em;
	margin: 0;
}

.bbb-hero-desc {
	font-size: 18px;
	line-height: 1.6;
	color: var(--bbb-text-secondary);
	text-align: center;
	max-width: 640px;
	margin: 0;
}

.bbb-hero-ctas {
	display: flex;
	align-items: center;
	gap: 16px;
}

/* === Product Mockup === */
.bbb-mockup {
	width: 100%;
	max-width: 1100px;
	background: var(--bbb-card);
	border: 1px solid var(--bbb-border-subtle);
	border-radius: 12px;
	overflow: hidden;
	box-shadow:
		0 8px 40px rgba(168, 85, 247, 0.125),
		0 4px 24px rgba(0, 0, 0, 0.19);
}

.bbb-mockup-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	border-bottom: 1px solid var(--bbb-border-subtle);
}

.bbb-mockup-dots {
	display: flex;
	gap: 6px;
}

.bbb-mockup-dots span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.bbb-mockup-dots span:nth-child(1) { background: #EF4444; }
.bbb-mockup-dots span:nth-child(2) { background: #F59E0B; }
.bbb-mockup-dots span:nth-child(3) { background: #22C55E; }

.bbb-mockup-title {
	font-size: 12px;
	color: var(--bbb-text-muted);
}

/* Calendar mockup table */
.bbb-cal-table {
	width: 100%;
	border-collapse: collapse;
}

.bbb-cal-table th {
	font-size: 11px;
	font-weight: 600;
	color: var(--bbb-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 8px 12px;
	text-align: left;
	border-bottom: 1px solid var(--bbb-border-subtle);
	background: transparent;
}

.bbb-cal-table td {
	font-size: 13px;
	color: var(--bbb-text-secondary);
	padding: 12px;
	border-bottom: 1px solid var(--bbb-border-subtle);
	background: transparent;
}

.bbb-cal-table tr:last-child td {
	border-bottom: none;
}

.bbb-cal-rate {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	margin-top: 4px;
}

.bbb-cal-rate--normal {
	background: rgba(168, 85, 247, 0.15);
	color: var(--bbb-purple);
}

.bbb-cal-rate--high {
	background: rgba(236, 72, 153, 0.15);
	color: var(--bbb-pink);
}

.bbb-cal-rate--low {
	background: rgba(34, 197, 94, 0.15);
	color: #22C55E;
}

/* === Features Section === */
.bbb-features {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 80px;
	gap: 48px;
}

.bbb-section-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	max-width: 600px;
	text-align: center;
}

.bbb-eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--bbb-purple);
	text-transform: uppercase;
	margin: 0;
}

.bbb-section-header h2 {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.15;
	color: var(--bbb-text);
	margin: 0;
}

.bbb-section-header p {
	font-size: 16px;
	line-height: 1.5;
	color: var(--bbb-text-secondary);
	margin: 0;
}

.bbb-feat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	width: 100%;
	max-width: var(--bbb-max-width);
}

.bbb-feat-card {
	background: var(--bbb-card);
	border: 1px solid var(--bbb-border-subtle);
	border-radius: 12px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.bbb-feat-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bbb-feat-icon svg {
	width: 24px;
	height: 24px;
	color: #fff;
}

.bbb-feat-icon--purple { background: var(--bbb-purple); }
.bbb-feat-icon--pink { background: var(--bbb-pink); }
.bbb-feat-icon--green { background: #22C55E; }
.bbb-feat-icon--blue { background: #3B82F6; }
.bbb-feat-icon--amber { background: #F59E0B; }
.bbb-feat-icon--cyan { background: #06B6D4; }

.bbb-feat-card h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--bbb-text);
	margin: 0;
}

.bbb-feat-card p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--bbb-text-secondary);
	margin: 0;
}

/* === Calendar Showcase Section === */
.bbb-showcase {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 80px;
	gap: 48px;
}

.bbb-showcase-panel {
	background: var(--bbb-card);
	border: 1px solid var(--bbb-border-subtle);
	border-radius: 24px;
	padding: 60px;
	width: 100%;
	max-width: var(--bbb-max-width);
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.bbb-showcase-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
}

.bbb-showcase-text {
	max-width: 480px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.bbb-showcase-text h2 {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--bbb-text);
	margin: 0;
}

.bbb-showcase-text p {
	font-size: 16px;
	line-height: 1.6;
	color: var(--bbb-text-secondary);
	margin: 0;
}

.bbb-showcase-visual {
	width: 400px;
	height: 320px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(236, 72, 153, 0.3));
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.bbb-showcase-visual svg {
	width: 64px;
	height: 64px;
	color: rgba(255, 255, 255, 0.4);
}

/* === Pricing Section === */
.bbb-pricing {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 80px;
	gap: 48px;
}

.bbb-pricing-grid {
	display: flex;
	align-items: flex-end;
	gap: 24px;
}

.bbb-price-card {
	background: var(--bbb-card);
	border: 1px solid var(--bbb-border-subtle);
	border-radius: 12px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 380px;
}

.bbb-price-card--featured {
	width: 400px;
	border-color: var(--bbb-purple);
	border-width: 2px;
	box-shadow: 0 8px 32px rgba(168, 85, 247, 0.19);
}

.bbb-price-header {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.bbb-price-name {
	font-size: 18px;
	font-weight: 600;
	color: var(--bbb-text);
}

.bbb-price-tagline {
	font-size: 14px;
	color: var(--bbb-text-muted);
	line-height: 1.4;
}

.bbb-price-amount {
	display: flex;
	align-items: baseline;
	gap: 4px;
}

.bbb-price-amount .amount {
	font-size: 48px;
	font-weight: 800;
	color: var(--bbb-text);
}

.bbb-price-amount .period {
	font-size: 16px;
	color: var(--bbb-text-muted);
}

.bbb-price-features {
	display: flex;
	flex-direction: column;
	gap: 12px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.bbb-price-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--bbb-text-secondary);
}

.bbb-price-features li svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.bbb-price-card .bbb-btn-primary,
.bbb-price-card .bbb-btn-secondary {
	width: 100%;
	box-sizing: border-box;
	justify-content: center;
	text-align: center;
	margin-top: auto;



}

.bbb-popular-badge {
	display: inline-flex;
	align-self: flex-start;
	padding: 4px 12px;
	border-radius: 9999px;
	background: var(--bbb-purple);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
}

/* === CTA Section === */
.bbb-cta {
	padding: 80px;
}

.bbb-cta-panel {
	background: linear-gradient(135deg, var(--bbb-purple), var(--bbb-pink));
	border-radius: 24px;
	padding: 64px 80px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	text-align: center;
	max-width: var(--bbb-max-width);
	margin: 0 auto;
}

.bbb-cta-panel h2 {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	max-width: 600px;
	margin: 0;
}

.bbb-cta-panel p {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	max-width: 500px;
	margin: 0;
}

.bbb-cta-btns {
	display: flex;
	align-items: center;
	gap: 16px;
}

.bbb-cta-btns .bbb-btn-primary {
	background: #fff;
	color: var(--bbb-purple);
}

.bbb-cta-btns .bbb-btn-primary:hover {
	background: rgba(255, 255, 255, 0.9);
	color: var(--bbb-purple);
}

.bbb-cta-btns .bbb-btn-secondary {
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
}

.bbb-cta-btns .bbb-btn-secondary:hover {
	border-color: #fff;
}

/* === Footer === */
.bbb-footer {
	padding: 40px 80px;
	border-top: 1px solid var(--bbb-border-subtle);
}

.bbb-footer-top {
	display: flex;
	justify-content: space-between;
	gap: 48px;
	margin-bottom: 32px;
}

.bbb-footer-brand {
	max-width: 300px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.bbb-footer-brand-name {
	display: flex;
	align-items: center;
	gap: 8px;
}

.bbb-footer-brand-name svg {
	width: 24px;
	height: 24px;
	color: var(--bbb-purple);
}

.bbb-footer-brand-name span {
	font-size: 16px;
	font-weight: 700;
	color: var(--bbb-text);
}

.bbb-footer-brand p {
	font-size: 13px;
	color: var(--bbb-text-muted);
	line-height: 1.5;
	margin: 0;
}

.bbb-footer-col h4 {
	font-size: 13px;
	font-weight: 600;
	color: var(--bbb-text);
	margin: 0 0 12px;
}

.bbb-footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.bbb-footer-col a {
	font-size: 13px;
	color: var(--bbb-text-muted);
	text-decoration: none;
	transition: color 0.2s;
}

.bbb-footer-col a:hover {
	color: var(--bbb-text);
	text-decoration: none;
}

.bbb-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 20px;
	border-top: 1px solid var(--bbb-border-subtle);
}

.bbb-footer-bottom span {
	font-size: 12px;
	color: var(--bbb-text-muted);
}

.bbb-footer-bottom a {
	font-size: 12px;
	font-weight: 500;
	color: var(--bbb-text-secondary);
	text-decoration: none;
}

/* === Responsive === */
@media (max-width: 1024px) {
	.bbb-nav { padding: 16px 32px; }
	.bbb-nav-center { display: none; }
	.bbb-hero { padding: 60px 32px 40px; }
	.bbb-hero h1 { font-size: 40px; }
	.bbb-hero-desc { font-size: 16px; }
	.bbb-feat-grid { grid-template-columns: repeat(2, 1fr); }
	.bbb-features, .bbb-showcase, .bbb-pricing, .bbb-cta { padding: 60px 32px; }
	.bbb-showcase-panel { padding: 40px; }
	.bbb-showcase-top { flex-direction: column; }
	.bbb-showcase-visual { width: 100%; }
	.bbb-pricing-grid { flex-direction: column; align-items: stretch; width: 100%; max-width: 400px; }
	.bbb-price-card, .bbb-price-card--featured { width: 100%; }
	.bbb-cta-panel { padding: 48px 32px; }
	.bbb-footer { padding: 32px; }
	.bbb-footer-top { flex-wrap: wrap; }
}

@media (max-width: 640px) {
	.bbb-nav { padding: 12px 20px; }
	.bbb-hero { padding: 40px 20px 32px; }
	.bbb-hero h1 { font-size: 32px; }
	.bbb-hero-desc { font-size: 15px; }
	.bbb-hero-ctas { flex-direction: column; width: 100%; }
	.bbb-hero-ctas .bbb-btn-primary, .bbb-hero-ctas .bbb-btn-secondary { width: 100%; justify-content: center; }
	.bbb-feat-grid { grid-template-columns: 1fr; }
	.bbb-features, .bbb-showcase, .bbb-pricing, .bbb-cta { padding: 40px 20px; }
	.bbb-section-header h2 { font-size: 28px; }
	.bbb-showcase-panel { padding: 24px; }
	.bbb-showcase-text h2 { font-size: 24px; }
	.bbb-cta-panel { padding: 40px 24px; }
	.bbb-cta-panel h2 { font-size: 28px; }
	.bbb-cta-btns { flex-direction: column; width: 100%; }
	.bbb-cta-btns .bbb-btn-primary, .bbb-cta-btns .bbb-btn-secondary { width: 100%; justify-content: center; }
	.bbb-footer { padding: 24px 20px; }
	.bbb-footer-top { flex-direction: column; gap: 32px; }
	.bbb-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* Fix: pricing card buttons contained within card */
.bbb-price-card {
	overflow: hidden;
