* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont,
		sans-serif;
	background-color: #1e1e1e;
	color: #e5e7eb;
	line-height: 1.6;
	overflow-x: hidden;
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #2a2a2a;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(45deg, #10b981, #2563eb);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(45deg, #059669, #1d4ed8);
}

/* ========== TYPOGRAPHY ========== */
h1 {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #10b981, #2563eb);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 1.25rem;
	color: #e5e7eb;
}

h3 {
	font-size: 1.875rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #10b981;
}

h4 {
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 0.875rem;
	color: #e5e7eb;
}

p {
	font-size: 1.1rem;
	margin-bottom: 1rem;
	color: #9ca3af;
	line-height: 1.7;
}

/* ========== LAYOUT CONTAINERS ========== */
.bv-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.bv-section {
	padding: 80px 0;
	position: relative;
}

.bv-section-alt {
	background: linear-gradient(
		135deg,
		rgba(16, 185, 129, 0.03),
		rgba(37, 99, 235, 0.03)
	);
	border-top: 1px solid rgba(16, 185, 129, 0.1);
	border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

/* ========== HEADER STYLES ========== */
.bv-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 0 20px;
	background: rgba(30, 30, 30, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(16, 185, 129, 0.15);
	box-shadow: 0 2px 20px rgba(16, 185, 129, 0.08);
	transition: all 0.3s ease;
}

.bv-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.bv-logo {
	font-size: 1.8rem;
	font-weight: 700;
	text-decoration: none;
	background: linear-gradient(135deg, #10b981, #2563eb);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: all 0.3s ease;
	animation: bv-logoGlow 2s ease-in-out infinite alternate;
	display: flex;
	justify-content: center;
	align-items: center;
}

.bv-logo span {
	font-size: 2rem;
	margin-right: 5px;
}

.bv-logo:hover {
	transform: scale(1.05);
}

@keyframes bv-logoGlow {
	0% {
		filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.3));
	}
	100% {
		filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.6));
	}
}

.bv-nav {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.bv-nav-link {
	text-decoration: none;
	color: #e5e7eb;
	font-weight: 500;
	font-size: 1rem;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.bv-nav-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(16, 185, 129, 0.1),
		transparent
	);
	transition: left 0.5s ease;
}

.bv-nav-link:hover::before {
	left: 100%;
}

.bv-nav-link:hover {
	color: #10b981;
	background: rgba(16, 185, 129, 0.05);
	transform: translateY(-2px);
}

.bv-mobile-toggle {
	display: none;
	background: none;
	border: none;
	color: #e5e7eb;
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.bv-mobile-toggle span {
	font-size: 2rem;
}

.bv-mobile-toggle:hover {
	background: rgba(16, 185, 129, 0.1);
	color: #10b981;
}

/* ========== BUTTON STYLES ========== */
.bv-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border: none;
	border-radius: 25px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	min-width: 140px;
	justify-content: center;
}

.bv-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	transition: left 0.5s ease;
}

.bv-btn:hover::before {
	left: 100%;
}

.bv-btn-primary {
	background: linear-gradient(135deg, #10b981, #059669);
	color: #ffffff;
	box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
}

.bv-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(16, 185, 129, 0.35);
	background: linear-gradient(135deg, #059669, #10b981);
}

.bv-btn-secondary {
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	color: #ffffff;
	box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

.bv-btn-secondary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
	background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

.bv-btn-outline {
	background: transparent;
	color: #e5e7eb;
	border: 2px solid rgba(229, 231, 235, 0.2);
}

.bv-btn-outline:hover {
	background: rgba(229, 231, 235, 0.05);
	border-color: #10b981;
	color: #10b981;
	transform: translateY(-3px);
}

.bv-btn-cta {
	background: linear-gradient(135deg, #10b981, #059669);
	color: #ffffff;
	font-size: 1.2rem;
	padding: 1.2rem 2.5rem;
	min-width: 180px;
	position: relative;
	overflow: hidden;
}

.bv-btn-cta::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.3s ease, height 0.3s ease;
}

.bv-btn-cta:hover::after {
	width: 300px;
	height: 300px;
}

.bv-btn-cta:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

/* ========== CARD STYLES ========== */
.bv-card {
	background: rgba(42, 42, 42, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(16, 185, 129, 0.1);
	border-radius: 15px;
	padding: 2rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.08);
}

.bv-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #10b981, #2563eb);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.bv-card:hover::before {
	transform: scaleX(1);
}

.bv-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 30px rgba(16, 185, 129, 0.15);
	border-color: #10b981;
	background: rgba(42, 42, 42, 0.95);
}

.bv-card-icon {
	font-size: 3rem;
	color: #10b981;
	margin-bottom: 1.5rem;
	display: block;
}

.bv-card-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #e5e7eb;
}

.bv-card-description {
	color: #9ca3af;
	line-height: 1.6;
	font-size: 1.05rem;
}

/* ========== GRID LAYOUTS ========== */
.bv-grid {
	display: grid;
	gap: 2rem;
}

.bv-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.bv-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.bv-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ========== HERO SECTION ========== */
.bv-hero {
	min-height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
}

.bv-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2310B981' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E")
		repeat;
	z-index: 1;
}

.bv-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(30, 30, 30, 0.9),
		rgba(16, 185, 129, 0.05),
		rgba(37, 99, 235, 0.05)
	);
	z-index: 2;
}

.bv-hero-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('assets/bv-hero.png') center/cover no-repeat;
	opacity: 0.1;
	z-index: 1;
}

.bv-hero-container {
	display: grid;
	grid-template-columns: 1fr;
	text-align: center;
	align-items: center;
	z-index: 3;
	position: relative;
	max-width: 800px;
}

.bv-hero-content {
	animation: bv-fadeInUp 1s ease-out;
}

.bv-hero-heading {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bv-hero-subheading {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	color: #9ca3af;
	line-height: 1.6;
}

.bv-hero-buttons {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	justify-content: center;
}

/* ========== ABOUT SECTION ========== */
.bv-about {
	padding: 100px 0;
	background: rgba(42, 42, 42, 0.3);
}

.bv-about-container {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 4rem;
	align-items: center;
}

.bv-about-content h2 {
	margin-bottom: 2rem;
}

.bv-about-description {
	font-size: 1.2rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	color: #9ca3af;
}

.bv-about-visual {
	width: 100%;
	height: 100%;
}

.bv-about-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(16, 185, 129, 0.15);
	border: 2px solid rgba(16, 185, 129, 0.1);
}

/* ========== TOOLS SECTION ========== */
.bv-tools {
	padding: 100px 0;
}

.bv-tools-header {
	text-align: center;
	margin-bottom: 4rem;
}

.bv-tools-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.bv-tool-card {
	background: rgba(42, 42, 42, 0.8);
	border: 1px solid rgba(16, 185, 129, 0.1);
	border-radius: 15px;
	padding: 2.5rem 2rem;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.bv-tool-card::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(16, 185, 129, 0.05) 0%,
		transparent 70%
	);
	transform: scale(0);
	transition: transform 0.5s ease;
}

.bv-tool-card:hover::after {
	transform: scale(1);
}

.bv-tool-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
	border-color: #10b981;
	background: rgba(42, 42, 42, 0.95);
}

.bv-tool-card-icon {
	font-size: 4rem;
	color: #10b981;
	margin-bottom: 2rem;
	position: relative;
	z-index: 1;
}

.bv-tool-card-title {
	font-size: 1.6rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #e5e7eb;
	position: relative;
	z-index: 1;
}

.bv-tool-card-description {
	font-size: 1.1rem;
	line-height: 1.6;
	color: #9ca3af;
	position: relative;
	z-index: 1;
}

/* ========== REVIEWS SECTION ========== */
.bv-reviews {
	padding: 100px 0;
	background: rgba(42, 42, 42, 0.3);
}

.bv-reviews-header {
	text-align: center;
	margin-bottom: 4rem;
}

.bv-reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.bv-review-card {
	background: rgba(42, 42, 42, 0.8);
	border: 1px solid rgba(37, 99, 235, 0.2);
	border-radius: 15px;
	padding: 2rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.bv-review-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #2563eb, #1d4ed8);
}

.bv-review-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(37, 99, 235, 0.2);
	border-color: #2563eb;
	background: rgba(42, 42, 42, 0.95);
}

.bv-review-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.bv-review-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #10b981;
}

.bv-review-info h4 {
	margin: 0;
	color: #e5e7eb;
	font-size: 1.1rem;
}

.bv-review-rating {
	display: flex;
	gap: 0.2rem;
	margin-top: 0.5rem;
}

.bv-review-star {
	color: #f59e0b;
	font-size: 1rem;
}

.bv-review-text {
	color: #9ca3af;
	line-height: 1.6;
	font-style: italic;
}

/* ========== TEAM SECTION ========== */
.bv-team {
	padding: 100px 0;
}

.bv-team-header {
	text-align: center;
	margin-bottom: 4rem;
}

.bv-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
}

.bv-team-card {
	background: rgba(42, 42, 42, 0.8);
	border: 1px solid rgba(16, 185, 129, 0.1);
	border-radius: 15px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.bv-team-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(16, 185, 129, 0.15);
	border-color: #10b981;
	background: rgba(42, 42, 42, 0.95);
}

.bv-team-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 1.5rem;
	border: 3px solid #10b981;
}

.bv-team-name {
	font-size: 1.3rem;
	font-weight: 600;
	color: #e5e7eb;
	margin-bottom: 0.5rem;
}

.bv-team-position {
	color: #10b981;
	font-weight: 500;
	margin-bottom: 1rem;
}

.bv-team-description {
	color: #9ca3af;
	line-height: 1.6;
	font-size: 0.95rem;
}

/* ========== CONTACT SECTION ========== */
.bv-contact {
	padding: 100px 0;
	background: rgba(42, 42, 42, 0.3);
}

.bv-contact-header {
	text-align: center;
	margin-bottom: 4rem;
}

.bv-contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.bv-contact-form {
	background: rgba(42, 42, 42, 0.8);
	padding: 3rem;
	border-radius: 20px;
	border: 1px solid rgba(16, 185, 129, 0.1);
	box-shadow: 0 10px 25px rgba(16, 185, 129, 0.1);
}

.bv-form-group {
	margin-bottom: 1.5rem;
}

.bv-form-label {
	display: block;
	margin-bottom: 0.5rem;
	color: #e5e7eb;
	font-weight: 500;
}

.bv-form-input,
.bv-form-textarea {
	width: 100%;
	padding: 1rem 1.5rem;
	background: rgba(30, 30, 30, 0.8);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(16, 185, 129, 0.2);
	border-radius: 10px;
	color: #e5e7eb;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.bv-form-input:focus,
.bv-form-textarea:focus {
	outline: none;
	border-color: #10b981;
	box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
	background: rgba(30, 30, 30, 0.95);
}

.bv-form-textarea {
	min-height: 120px;
	resize: vertical;
}

.bv-form-input::placeholder,
.bv-form-textarea::placeholder {
	color: rgba(156, 163, 175, 0.7);
}

.bv-form-error {
	color: #ef4444;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	display: none;
}

.bv-form-submit {
	width: 100%;
	margin-top: 1rem;
}

.bv-form-submit:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none !important;
}

/* Map Section */
.bv-map {
	height: 100%;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.bv-map {
		height: 400px;
	}
}

.bv-contact-map {
	position: relative;
	height: 100%;
	/* flex: 1; */
	min-height: 400px;

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.bv-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.bv-error-message {
	display: block;
	color: #ff4444;
	font-size: 0.85rem;
	margin-top: 0.5rem;
}

.iti__country-list {
	background: #1e1e1e;
}

/* ========== FOOTER STYLES ========== */
.bv-footer {
	background: linear-gradient(
		135deg,
		rgba(16, 185, 129, 0.05),
		rgba(37, 99, 235, 0.05)
	);
	padding: 80px 0 40px;
	border-top: 1px solid rgba(16, 185, 129, 0.15);
}

.bv-footer-content {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.bv-footer-section h3 {
	color: #10b981;
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

.bv-footer-logo {
	font-size: 1.8rem;
	font-weight: 700;
	background: linear-gradient(135deg, #10b981, #2563eb);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline-flex;
	align-items: center;
	margin-bottom: 1rem;
}

.bv-footer-nav {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.bv-footer-link {
	color: #9ca3af;
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 400;
	padding: 0.5rem 0;
}

.bv-footer-link:hover {
	color: #10b981;
	transform: translateX(5px);
}

.bv-contact-info {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.bv-contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.bv-contact-icon {
	width: 40px;
	height: 40px;
	background: rgba(16, 185, 129, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #10b981;
	flex-shrink: 0;
}

.bv-contact-item p {
	margin: 0;
	color: #9ca3af;
}

.bv-age-restriction {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, #ef4444, #dc2626);
	color: #ffffff;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-weight: 600;
	font-size: 1.1rem;
	margin: 1rem 0;
}

.bv-footer-bottom {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(16, 185, 129, 0.15);
	text-align: center;
	font-size: 0.9rem;
	color: #6b7280;
}

/* ========== COOKIE BANNER ========== */
.bv-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: rgba(30, 30, 30, 0.95);
	backdrop-filter: blur(20px);
	border-top: 1px solid rgba(16, 185, 129, 0.2);
	padding: 1.5rem;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.bv-cookie-banner.show {
	transform: translateY(0);
}

.bv-cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.bv-cookie-text {
	color: #9ca3af;
	font-size: 0.95rem;
	line-height: 1.5;
}

.bv-cookie-text a {
	color: #10b981;
	text-decoration: none;
}

.bv-cookie-text a:hover {
	text-decoration: underline;
}

.bv-cookie-buttons {
	display: flex;
	gap: 1rem;
	flex-shrink: 0;
}

.bv-cookie-btn {
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 20px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.bv-cookie-accept {
	background: linear-gradient(135deg, #10b981, #059669);
	color: #ffffff;
}

.bv-cookie-accept:hover {
	background: linear-gradient(135deg, #059669, #10b981);
	transform: translateY(-2px);
}

.bv-cookie-decline {
	background: transparent;
	color: #9ca3af;
	border: 1px solid rgba(156, 163, 175, 0.3);
}

.bv-cookie-decline:hover {
	background: rgba(156, 163, 175, 0.1);
	color: #e5e7eb;
}

/* ========== LEGAL PAGES STYLES ========== */
.bv-page-header {
	background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
	padding: 120px 0 60px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.bv-page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		45deg,
		rgba(16, 185, 129, 0.05),
		rgba(37, 99, 235, 0.05)
	);
	opacity: 0.5;
}

.bv-page-title {
	font-size: 3.5rem;
	font-weight: 700;
	color: #e5e7eb;
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
}

.bv-page-subtitle {
	font-size: 1.3rem;
	color: #10b981;
	font-weight: 500;
	position: relative;
	z-index: 1;
}

.bv-legal-container {
	padding: 80px 0;
	background: #1e1e1e;
	min-height: 70vh;
}

.bv-legal-content {
	max-width: 800px;
	margin: 0 auto;
	background: rgba(42, 42, 42, 0.8);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 60px;
	border: 1px solid rgba(16, 185, 129, 0.1);
	box-shadow: 0 20px 40px rgba(16, 185, 129, 0.08);
}

.bv-legal-section {
	margin-bottom: 50px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.bv-legal-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.bv-legal-section h2 {
	font-size: 2rem;
	color: #10b981;
	margin-bottom: 20px;
	font-weight: 600;
	position: relative;
	padding-left: 20px;
}

.bv-legal-section h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 30px;
	background: linear-gradient(45deg, #10b981, #2563eb);
	border-radius: 2px;
}

.bv-legal-section h3 {
	font-size: 1.4rem;
	color: #2563eb;
	margin: 30px 0 15px;
	font-weight: 500;
}

.bv-legal-section p {
	color: #9ca3af;
	line-height: 1.8;
	margin-bottom: 20px;
	font-size: 1.05rem;
}

.bv-legal-section ul {
	margin: 20px 0;
	padding-left: 0;
	list-style: none;
}

.bv-legal-section li {
	color: #9ca3af;
	line-height: 1.8;
	margin-bottom: 12px;
	position: relative;
	padding-left: 30px;
	font-size: 1.05rem;
}

.bv-legal-section li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #10b981;
	font-weight: bold;
	font-size: 1.2rem;
}

.bv-legal-section strong {
	color: #10b981;
	font-weight: 600;
}

.bv-legal-section a {
	color: #2563eb;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
}

.bv-legal-section a:hover {
	color: #10b981;
	border-bottom-color: #10b981;
}

.bv-contact-details {
	background: rgba(16, 185, 129, 0.05);
	padding: 30px;
	border-radius: 15px;
	border: 1px solid rgba(16, 185, 129, 0.1);
	margin: 30px 0;
}

.bv-contact-details p {
	margin-bottom: 10px;
	color: #e5e7eb;
	word-wrap: break-word;
}

.bv-contact-details strong {
	color: #10b981;
}

/* ========== ANIMATIONS ========== */
@keyframes bv-fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bv-fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes bv-fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes bv-fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes bv-scaleIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes bv-bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

@keyframes bv-pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.7;
	}
}

/* ========== SCROLL ANIMATIONS ========== */
.bv-animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.bv-animate-on-scroll.in-view {
	opacity: 1;
	transform: translateY(0);
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1024px) {
	.bv-hero-heading {
		font-size: 3rem;
	}

	.bv-about-container,
	.bv-contact-container {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.bv-footer-content {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
}

@media (max-width: 930px) {
	.bv-nav {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 80px;
		right: 0;
		background: rgba(30, 30, 30, 0.95);
		backdrop-filter: blur(20px);
		padding: 2rem;
		border-radius: 10px;
		border: 1px solid rgba(16, 185, 129, 0.2);
		box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
		min-width: 200px;
	}

	.bv-nav.show {
		display: flex;
	}

	.bv-mobile-toggle {
		display: flex;
	}
}

@media (max-width: 768px) {
	.bv-hero-heading {
		font-size: 2.5rem;
	}

	.bv-hero-subheading {
		font-size: 1.1rem;
	}

	.bv-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.bv-footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.bv-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.bv-legal-content {
		padding: 40px 30px;
	}

	.bv-contact-form {
		padding: 2rem 1.5rem;
	}

	.bv-page-title {
		font-size: 1.5rem;
	}

	.bv-legal-section h2 {
		font-size: 1.3rem;
	}

	h2 {
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.bv-hero-heading {
		font-size: 2rem;
	}

	.bv-team-grid,
	.bv-reviews-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.bv-section {
		padding: 60px 0;
	}

	.bv-legal-content {
		padding: 30px 20px;
	}

	.bv-cookie-buttons {
		flex-direction: column;
		width: 100%;
	}

	.bv-cookie-btn {
		width: 100%;
	}
}

/* ========== UTILITY CLASSES ========== */
.bv-text-center {
	text-align: center;
}

.bv-text-left {
	text-align: left;
}

.bv-text-right {
	text-align: right;
}

.bv-hidden {
	display: none;
}

.bv-visible {
	display: block;
}

.bv-mt-1 {
	margin-top: 0.25rem;
}
.bv-mt-2 {
	margin-top: 0.5rem;
}
.bv-mt-3 {
	margin-top: 0.75rem;
}
.bv-mt-4 {
	margin-top: 1rem;
}
.bv-mt-5 {
	margin-top: 1.25rem;
}

.bv-mb-1 {
	margin-bottom: 0.25rem;
}
.bv-mb-2 {
	margin-bottom: 0.5rem;
}
.bv-mb-3 {
	margin-bottom: 0.75rem;
}
.bv-mb-4 {
	margin-bottom: 1rem;
}
.bv-mb-5 {
	margin-bottom: 1.25rem;
}

.bv-p-1 {
	padding: 0.25rem;
}
.bv-p-2 {
	padding: 0.5rem;
}
.bv-p-3 {
	padding: 0.75rem;
}
.bv-p-4 {
	padding: 1rem;
}
.bv-p-5 {
	padding: 1.25rem;
}

.bv-border-radius-sm {
	border-radius: 5px;
}
.bv-border-radius-md {
	border-radius: 10px;
}
.bv-border-radius-lg {
	border-radius: 15px;
}
.bv-border-radius-xl {
	border-radius: 20px;
}

.bv-shadow-sm {
	box-shadow: 0 2px 5px rgba(16, 185, 129, 0.1);
}
.bv-shadow-md {
	box-shadow: 0 5px 15px rgba(16, 185, 129, 0.15);
}
.bv-shadow-lg {
	box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
}
.bv-shadow-xl {
	box-shadow: 0 20px 40px rgba(16, 185, 129, 0.25);
}

/* ========== PRINT STYLES ========== */
@media print {
	.bv-header,
	.bv-footer,
	.bv-cookie-banner {
		display: none;
	}

	.bv-page-header {
		padding: 20px 0;
	}

	.bv-legal-content {
		box-shadow: none;
		border: 1px solid #ccc;
	}
}
