/* ================================================
   Butar Consultancy - Legal Pages (Terms, Privacy, Disclaimer)
   ================================================ */

:root {
	--primary-color: #17a2b8;
	--primary-dark: #0aa1b6;
	--primary-light: #5eb3ca;
	--accent-color: #28a745;
	--text-dark: #1a1a1a;
	--text-light: #666;
	--border-color: #e8e8e8;
	--bg-light: #f8f9fa;
	--bg-white: #ffffff;
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* ========================
   Legal Section
   ======================== */

.bbc-legal-section {
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.bbc-legal-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(40, 167, 69, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.bbc-legal-section::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(23, 162, 184, 0.06) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}
.bbc-legal-container{
	width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

@media (max-width: 1024px) {
	.bbc-legal-container {
		width: 100%;
	}
}
/* ========================
   Container & Content
   ======================== */

.bbc-legal-content {
	background: var(--bg-white);
	padding: 50px;
	border-radius: 12px;
	box-shadow: var(--shadow-md);
	animation: slideInUp 0.6s ease-out 0.1s both;
}

.bbc-legal-section-block {
	margin-bottom: 35px;
	padding-bottom: 5px;
	border-bottom: 1px solid var(--border-color);
}

.bbc-legal-section-block:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.bbc-legal-section-title {
	font-size: 28px;
	font-weight: 500;
	color: var(--text-dark);
	margin-bottom: 20px;
	letter-spacing: 1px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: "Roboto", sans-serif;
}

.bbc-legal-section-icon {
	width: 32px;
	height: 32px;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 18px;
	flex-shrink: 0;
}

.bbc-legal-subsection {
	margin-bottom: 30px;
}

.bbc-legal-subsection-title {
	font-size: 18px;
	font-weight: 400;
	color: var(--text-dark);
	margin-bottom: 12px;
	display: flex;
	letter-spacing: 1px;
	align-items: center;
	font-family: "Roboto", sans-serif;
	gap: 8px;
}

.bbc-legal-subsection-dot {
	width: 8px;
	height: 8px;
	background: var(--accent-color);
	border-radius: 50%;
	flex-shrink: 0;
}

.bbc-legal-text {
	font-size: 15px;
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 15px;
	font-family: "Roboto", sans-serif;
	letter-spacing: 1px;
}

.bbc-legal-text strong {
	color: var(--text-dark);
	font-weight: 600;
}

.bbc-legal-list {
	margin: 15px 0 15px 0;
	padding-left: 24px;
}

.bbc-legal-list li {
	margin-bottom: 10px;
	color: var(--text-light);
	font-size: 15px;
	line-height: 1.7;
	letter-spacing: 1px;
	list-style: disc;
	font-family: "Roboto", sans-serif;
}

.bbc-legal-list li strong {
	color: var(--text-dark);
	font-weight: 600;
}

.bbc-legal-highlight {
	background: linear-gradient(135deg, rgba(23, 162, 184, 0.1) 0%, rgba(40, 167, 69, 0.1) 100%);
	border-left: 4px solid var(--primary-color);
	padding: 16px 20px;
	border-radius: 8px;
	margin: 20px 0;
	font-size: 15px;
	color: var(--text-light);
	letter-spacing: 1px;
	font-family: "Roboto", sans-serif;
	line-height: 1.8;
}

.bbc-legal-highlight strong {
	color: var(--text-dark);
	font-weight: 600;
}

/* ========================
   Table Styling
   ======================== */

.bbc-legal-table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	overflow: hidden;
}

.bbc-legal-table thead {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
	color: white;
}

.bbc-legal-table th {
	padding: 14px 18px;
	text-align: left;
	font-weight: 600;
	font-size: 14px;
}

.bbc-legal-table td {
	padding: 14px 18px;
	border-top: 1px solid var(--border-color);
	font-size: 14px;
	color: var(--text-light);
}

.bbc-legal-table tbody tr:hover {
	background: var(--bg-light);
}

/* ========================
   Contact Info Box
   ======================== */

.bbc-legal-contact-box {
	background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
	color: white;
	padding: 35px;
	border-radius: 12px;
	margin-top: 40px;
	text-align: center;
}

.bbc-legal-contact-title {
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 12px;
	font-family: "Roboto", sans-serif;
	letter-spacing: 1px;
}

.bbc-legal-contact-text {
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 12px;
	letter-spacing: 1px;
	font-family: "Roboto", sans-serif;
}

.bbc-legal-contact-links {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 20px;
}

.bbc-legal-contact-link {
	display: inline-block;
	color: white;
	text-decoration: none;
	font-weight: 500;
	font-family: "Roboto", sans-serif;
	padding: 8px 16px;
	letter-spacing: 1px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	transition: var(--transition);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.bbc-legal-contact-link:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}



/* ========================
   Animations
   ======================== */

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ========================
   Responsive Design
   ======================== */

@media (max-width: 768px) {
	.bbc-legal-section {
		padding: 50px 0;
	}

	.bbc-legal-container {
		padding: 0 15px;
	}

	.bbc-legal-content {
		padding: 30px 20px;
	}

	.bbc-legal-section-title {
		font-size: 24px;
	}

	.bbc-legal-subsection-title {
		font-size: 16px;
	}

	.bbc-legal-table {
		font-size: 13px;
	}

	.bbc-legal-table th,
	.bbc-legal-table td {
		padding: 10px 12px;
	}
}

@media (max-width: 480px) {
	.bbc-legal-section {
		padding: 30px 0;
	}

	.bbc-legal-container {
		padding: 0 12px;
	}

	.bbc-legal-content {
		padding: 20px 15px;
	}

	.bbc-legal-section-block {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.bbc-legal-section-title {
		font-size: 20px;
	}

	.bbc-legal-subsection-title {
		font-size: 15px;
	}

	.bbc-legal-text {
		font-size: 14px;
	}

	.bbc-legal-list li {
		font-size: 14px;
	}

	.bbc-legal-contact-box {
		padding: 25px 15px;
	}

	.bbc-legal-contact-title {
		font-size: 18px;
	}

	.bbc-legal-contact-text {
		font-size: 13px;
	}
}
