:root {
	--yellow-primary: #FFC107;
	--yellow-dark: #D49F00;
	--light-bg: #FFFFFF;
	--light-secondary: #F5F5F5;
	--light-tertiary: #E0E0E0;
	--text-dark: #1A1A1A;
	--text-gray: #555555;
	--steel-gray: #455A64;
	--accent-blue: #1976D2;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Work Sans', sans-serif;
	color: var(--text-dark);
	background-color: var(--light-bg);
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.display-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(2.5rem, 8vw, 5rem);
	letter-spacing: 2px;
	line-height: 1.1;
}

.section-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(2rem, 5vw, 3.5rem);
	letter-spacing: 1.5px;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.animate-on-scroll {
	opacity: 0;
}

.animate-on-scroll.animated {
	animation: fadeInUp 0.8s ease forwards;
}

/* Navbar */
.navbar {
	background: #FFFFFF;
	padding: 1rem 0;
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
	background: #FFFFFF;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1.8rem;
	color: var(--text-dark) !important;
	letter-spacing: 2px;
	transition: all 0.3s ease;
}

.navbar-brand i {
	color: var(--yellow-primary);
}

.navbar-brand:hover {
	transform: scale(1.05);
	color: var(--yellow-dark) !important;
}

.navbar-toggler {
	border-color: var(--text-dark);
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
	color: var(--text-dark) !important;
	font-weight: 500;
	position: relative;
	transition: color 0.3s ease;
	padding: 0.5rem 1rem !important;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--yellow-primary);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 80%;
}

.nav-link:hover,
.nav-link.active {
	color: var(--yellow-primary) !important;
}

/* Page Header */
.page-header {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.92) 100%);
	padding: 10rem 0 4rem;
	position: relative;
	overflow: hidden;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		repeating-linear-gradient(
			45deg,
			transparent,
			transparent 10px,
			rgba(255, 193, 7, 0.03) 10px,
			rgba(255, 193, 7, 0.03) 20px
		);
	pointer-events: none;
}

.page-header-content {
	position: relative;
	z-index: 2;
}

.breadcrumb {
	background: transparent;
	padding: 0;
	margin-bottom: 1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
	content: "›";
	color: var(--yellow-primary);
	font-size: 1.2rem;
}

.breadcrumb-item a {
	color: var(--text-gray);
	text-decoration: none;
	transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
	color: var(--yellow-primary);
}

.breadcrumb-item.active {
	color: var(--text-dark);
	font-weight: 600;
}

/* About Content */
.about-content {
	padding: 6rem 0;
	background: var(--light-bg);
}

.about-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-gray);
	margin-bottom: 2rem;
}

.about-text p {
	margin-bottom: 1.5rem;
}

.highlight-text {
	font-weight: 600;
	color: var(--text-dark);
}

/* Image Section */
.about-image-wrapper {
	position: relative;
	overflow: hidden;
	border: 4px solid var(--yellow-primary);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
}

.about-image-wrapper:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(255, 193, 7, 0.3);
}

.about-image-wrapper img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.4s ease;
}

.about-image-wrapper:hover img {
	transform: scale(1.05);
}

/* Mission Section */
.mission-section {
	background: var(--light-secondary);
	padding: 6rem 0;
	position: relative;
}

.mission-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, transparent, var(--yellow-primary), transparent);
}

.mission-card {
	background: #FFFFFF;
	padding: 3rem;
	border-left: 5px solid var(--yellow-primary);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
}

.mission-card:hover {
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
}

.mission-icon {
	width: 80px;
	height: 80px;
	background: var(--yellow-primary);
	color: var(--text-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* Stats Section */
.stats-section {
	background: var(--light-bg);
	padding: 5rem 0;
}

.stat-card {
	text-align: center;
	padding: 2rem;
	transition: all 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-5px);
}

.stat-number {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 3.5rem;
	color: var(--yellow-primary);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 1.1rem;
	color: var(--text-gray);
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
}

/* Footer */
.footer {
	background: var(--text-dark);
	padding: 3rem 0 1.5rem;
	border-top: 3px solid var(--yellow-primary);
}

.footer h5 {
	color: var(--yellow-primary);
	margin-bottom: 1.5rem;
	font-size: 1.3rem;
}

.footer a {
	color: #FFFFFF;
	text-decoration: none;
	transition: all 0.3s ease;
	display: block;
	margin-bottom: 0.5rem;
}

.footer a:hover {
	color: var(--yellow-primary);
	transform: translateX(5px);
}

.footer p,
.footer address {
	color: #FFFFFF;
}

.social-links a {
	width: 45px;
	height: 45px;
	background: #333;
	color: var(--yellow-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 0.5rem;
	font-size: 1.2rem;
	transition: all 0.3s ease;
}

.social-links a:hover {
	background: var(--yellow-primary);
	color: var(--text-dark);
	transform: translateY(-3px);
}

/* Buttons */
.scroll-top, .whatsapp-btn {
	position: fixed;
	width: 60px;
	height: 60px;
	display: none;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	cursor: pointer;
	z-index: 1000;
	transition: all 0.3s ease;
	border-radius: 50%;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-top {
	bottom: 110px;
	right: 30px;
	background: var(--yellow-primary);
	color: var(--text-dark);
}

.whatsapp-btn {
	bottom: 30px;
	right: 30px;
	background: #25D366;
	color: #FFFFFF;
}

.scroll-top:hover, .whatsapp-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-top.active, .whatsapp-btn.active {
	display: flex;
}

/* Responsive */
@media (max-width: 768px) {
	.page-header {
		padding: 8rem 0 3rem;
	}
	
	.about-content,
	.mission-section,
	.stats-section {
		padding: 4rem 0;
	}
	
	.mission-card {
		padding: 2rem;
		margin-bottom: 2rem;
	}
	
	.stat-number {
		font-size: 2.5rem;
	}
}