/* ============================================
   Sainik Auto Deals - About Us Page Styles
   ============================================ */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Color Variables */
:root {
	--sa-primary: #FF7238;
	--sa-primary-dark: #FF6B20;
	--sa-secondary: #1a1a1a;
	--sa-light-bg: #f8f8f8;
	--sa-grey-light: #e8e8e8;
	--sa-text-dark: #333333;
	--sa-text-light: #666666;
	--sa-white: #ffffff;
	--sa-border: #dddddd;
}

/* ============================================
   BANNER/BREADCRUMB SECTION
   ============================================ */

.sa-breadcrumb-section {
	background: linear-gradient(135deg, #d81b22 0%, #b1151a 100%);
	padding: 40px 0px;
	position: relative;
	overflow: hidden;
}

.sa-breadcrumb-section::before {
	content: '';
	position: absolute;
	top: 0;
	right: -100px;
	width: 400px;
	height: 400px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	pointer-events: none;
}

.sa-breadcrumb-section::after {
	content: '';
	position: absolute;
	bottom: -50px;
	left: -150px;
	width: 500px;
	height: 500px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 50%;
	pointer-events: none;
}

.sa-breadcrumb-wrapper {
	position: relative;
	z-index: 1;
}

.sa-breadcrumb-content {
	max-width: 800px;
}

.sa-breadcrumb-title {
	font-size: 48px;
	letter-spacing: 1px;
	font-weight: 700;
	color: var(--sa-white);
	margin-bottom: 20px;
	text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.sa-breadcrumb-nav {
	margin-top: 0px;
}

.sa-breadcrumb-list {
	list-style: none;
	display: flex;
	gap: 15px;
	align-items: center;
	flex-wrap: wrap;
}

.sa-breadcrumb-list li {
	color: rgba(255, 255, 255, 0.9);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 1px;
}

.sa-breadcrumb-list li:not(:last-child)::after {
	content: '→';
	margin-left: 15px;
	color: rgba(255, 255, 255, 0.7);
}

.sa-breadcrumb-list a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 600;
}

.sa-breadcrumb-list a:hover {
	color: var(--sa-white);
	text-decoration: underline;
}

@media (max-width: 768px) {
	.sa-breadcrumb-title {
		font-size: 36px;
		margin-bottom: 10px;
		line-height: 40px;
	}

	.sa-breadcrumb-section {
		padding: 40px 20px;
	}
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 576px) {
	.sa-banner-title {
		font-size: 28px;
	}

	.sa-banner-subtitle {
		font-size: 16px;
	}

	.sa-section-title {
		font-size: 26px;
	}
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.sa-highlight {
	color: var(--sa-primary);
	font-weight: 700;
}

/* Print Styles */
@media print {
	.sa-banner-section {
		background: var(--sa-white);
		color: var(--sa-text-dark);
	}

	.sa-banner-title,
	.sa-banner-subtitle {
		color: var(--sa-text-dark);
	}
}
