/* ==========================================================================
   KAVA Trans - Main Stylesheet
   ========================================================================== */

:root {
	--kava-green: #007A3D;
	--kava-green-dark: #005C2E;
	--kava-green-light: #00A652;
	--kava-dark: #1a1a2e;
	--kava-dark-secondary: #16213e;
	--kava-gray: #f8f9fa;
	--kava-gray-dark: #6c757d;
	--kava-text: #333333;
	--kava-text-light: #666666;
	--font-heading: 'Poppins', sans-serif;
	--font-body: 'Inter', sans-serif;
	--transition: all 0.3s ease;
}

/* ==========================================================================
   Base
   ========================================================================== */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--font-body);
	color: var(--kava-text);
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 700;
}

a {
	text-decoration: none;
	transition: var(--transition);
}

img {
	max-width: 100%;
	height: auto;
}

section {
	padding: 100px 0;
}

.section-subtitle {
	display: inline-block;
	color: var(--kava-green);
	font-weight: 600;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 0.5rem;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: var(--kava-dark);
}

.section-desc {
	color: var(--kava-text-light);
	font-size: 1.1rem;
	max-width: 600px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-kava {
	background: var(--kava-green);
	color: #fff;
	border: none;
	padding: 10px 24px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: var(--transition);
}

.btn-kava:hover {
	background: var(--kava-green-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 122, 61, 0.3);
}

.btn-kava-outline {
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
	padding: 10px 24px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: var(--transition);
}

.btn-kava-outline:hover {
	background: #fff;
	color: var(--kava-green);
	transform: translateY(-2px);
}

.btn-kava-lg {
	padding: 14px 36px;
	font-size: 1rem;
}

/* ==========================================================================
   Top Bar
   ========================================================================== */

.topbar {
	background: var(--kava-dark);
	color: rgba(255, 255, 255, 0.8);
	padding: 8px 0;
	font-size: 0.8rem;
}

.topbar-icon {
	width: 14px;
	height: 14px;
	vertical-align: middle;
	margin-right: 4px;
}

.topbar a {
	color: rgba(255, 255, 255, 0.8);
}

.topbar a:hover {
	color: var(--kava-green-light);
}

/* ==========================================================================
   Navbar
   ========================================================================== */

.navbar {
	background: #fff;
	padding: 12px 0;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
	z-index: 1030;
}

.navbar-logo {
	height: 50px;
	width: auto;
}

.navbar .navbar-nav {
	margin: 0 auto !important;
}

.navbar .nav-link {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--kava-dark);
	padding: 8px 16px !important;
	transition: var(--transition);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
	color: var(--kava-green);
}

/* ==========================================================================
   Language Switcher
   ========================================================================== */

/* Topbar language */
.topbar-divider {
	color: rgba(255, 255, 255, 0.3);
	margin: 0 4px;
}

.topbar-lang ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 10px;
}

.topbar-lang li {
	list-style: none;
	display: inline;
}

.topbar-lang a {
	display: inline-block;
	opacity: 0.5;
	transition: var(--transition);
}

.topbar-lang a:hover,
.topbar-lang .current-lang a {
	opacity: 1;
}

.topbar-lang a img {
	width: 20px;
	height: 14px;
	object-fit: cover;
	border-radius: 2px;
	vertical-align: middle;
}

/* Navbar language - flag icons */
.navbar-lang ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 6px;
	align-items: center;
}

.navbar-lang li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 2px solid transparent;
	overflow: hidden;
	transition: var(--transition);
	opacity: 0.5;
}

.navbar-lang li a:hover,
.navbar-lang li.current-lang a {
	opacity: 1;
	border-color: var(--kava-green);
}

.navbar-lang li a img {
	width: 20px;
	height: 14px;
	object-fit: cover;
}

/* Mobile language switcher */
.navbar-lang-mobile ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 12px;
}

.navbar-lang-mobile li a {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 6px;
	background: var(--kava-gray);
	color: var(--kava-text);
	font-size: 0.85rem;
	font-weight: 500;
	transition: var(--transition);
}

.navbar-lang-mobile li a img {
	width: 18px;
	height: 13px;
}

.navbar-lang-mobile li.current-lang a {
	background: var(--kava-green);
	color: #fff;
}

.navbar-social-link {
	width: 34px;
	height: 34px;
	border-radius: 6px;
	background: var(--kava-gray);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--kava-gray-dark);
	transition: var(--transition);
}

.navbar-social-link:hover {
	background: var(--kava-green);
	color: #fff;
}

.navbar-toggler {
	border: 2px solid var(--kava-green);
	padding: 4px 8px;
}

.navbar-toggler:focus {
	box-shadow: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, var(--kava-dark) 0%, var(--kava-dark-secondary) 100%);
	overflow: hidden;
	padding: 0;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 122, 61, 0.4) 100%);
	z-index: 1;
	pointer-events: none;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.3;
	z-index: 0;
}

.hero-content {
	position: relative;
	z-index: 2;
	padding: 120px 0 100px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(0, 122, 61, 0.2);
	border: 1px solid rgba(0, 166, 82, 0.3);
	color: var(--kava-green-light);
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 800;
	color: #fff;
	line-height: 1.15;
	margin-bottom: 1.5rem;
}

.hero h1 .text-highlight {
	color: var(--kava-green-light);
}

.hero-desc {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.8);
	max-width: 560px;
	line-height: 1.7;
	margin-bottom: 2rem;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.hero-stats {
	position: relative;
	z-index: 2;
	display: flex;
	gap: 48px;
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-number {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--kava-green-light);
}

.hero-stat-label {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.85rem;
	margin-top: 2px;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services {
	background: var(--kava-gray);
}

.service-card {
	background: #fff;
	border-radius: 12px;
	padding: 40px 30px;
	height: 100%;
	transition: var(--transition);
	border: 1px solid rgba(0, 0, 0, 0.05);
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--kava-green);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-icon {
	width: 64px;
	height: 64px;
	background: rgba(0, 122, 61, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	transition: var(--transition);
}

.service-icon svg {
	width: 28px;
	height: 28px;
	color: var(--kava-green);
}

.service-card:hover .service-icon {
	background: var(--kava-green);
}

.service-card:hover .service-icon svg {
	color: #fff;
}

.service-card h4 {
	font-size: 1.25rem;
	margin-bottom: 12px;
	color: var(--kava-dark);
}

.service-card p {
	color: var(--kava-text-light);
	font-size: 0.95rem;
	line-height: 1.7;
	margin-bottom: 16px;
}

.service-regions {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.service-regions .badge {
	background: rgba(0, 122, 61, 0.1);
	color: var(--kava-green);
	font-weight: 500;
	font-size: 0.75rem;
	padding: 4px 10px;
	border-radius: 20px;
}

/* ==========================================================================
   About / Stats Section
   ========================================================================== */

.about-section {
	background: #fff;
}

.about-img-wrapper {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
}

.about-img-wrapper img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 16px;
}

.about-experience-badge {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: var(--kava-green);
	color: #fff;
	padding: 20px 24px;
	border-radius: 12px;
	text-align: center;
}

.about-experience-badge .number {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1;
	display: block;
}

.about-experience-badge .label {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.about-features {
	list-style: none;
	padding: 0;
	margin: 24px 0;
}

.about-features li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 0;
	font-size: 1rem;
	color: var(--kava-text);
}

.about-features li svg {
	color: var(--kava-green);
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

/* Stats counters */
.stats-section {
	background: var(--kava-dark);
	padding: 80px 0;
}

.stat-item {
	text-align: center;
	padding: 20px;
}

.stat-number {
	font-family: var(--font-heading);
	font-size: 3rem;
	font-weight: 800;
	color: var(--kava-green-light);
	margin-bottom: 8px;
}

.stat-label {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
	background: linear-gradient(135deg, var(--kava-green) 0%, var(--kava-green-dark) 100%);
	padding: 80px 0;
	text-align: center;
}

.cta-section h2 {
	color: #fff;
	font-size: 2.25rem;
}

.cta-section p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto 2rem;
}

.cta-section .btn-white {
	background: #fff;
	color: var(--kava-green);
	padding: 14px 36px;
	border-radius: 6px;
	font-weight: 700;
	font-size: 1rem;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: none;
	transition: var(--transition);
}

.cta-section .btn-white:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   Fleet / Gallery Section
   ========================================================================== */

.fleet-section {
	background: var(--kava-gray);
}

.fleet-card {
	border-radius: 12px;
	overflow: hidden;
	position: relative;
}

.fleet-card img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.fleet-card:hover img {
	transform: scale(1.05);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
	background: var(--kava-dark);
	color: rgba(255, 255, 255, 0.75);
}

.footer-main {
	padding: 80px 0 40px;
}

.footer-logo {
	height: 45px;
	width: auto;
}

.footer-desc {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	line-height: 1.7;
}

.footer-title {
	color: #fff;
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 12px;
}

.footer-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background: var(--kava-green);
}

.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--kava-green-light);
	padding-left: 5px;
}

.footer-contact {
	list-style: none;
	padding: 0;
}

.footer-contact li {
	display: flex;
	gap: 10px;
	margin-bottom: 14px;
	font-size: 0.9rem;
}

.footer-contact li a {
	display: flex;
	gap: 10px;
	color: rgba(255, 255, 255, 0.6);
}

.footer-contact li a:hover {
	color: var(--kava-green-light);
}

.footer-contact svg {
	width: 18px;
	height: 18px;
	color: var(--kava-green-light);
	flex-shrink: 0;
	margin-top: 2px;
}

.social-link {
	width: 38px;
	height: 38px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.social-link svg {
	width: 18px;
	height: 18px;
	color: rgba(255, 255, 255, 0.7);
}

.social-link:hover {
	background: var(--kava-green);
}

.social-link:hover svg {
	color: #fff;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 20px 0;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   Back to Top
   ========================================================================== */

.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 44px;
	height: 44px;
	background: var(--kava-green);
	color: #fff;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	z-index: 1000;
	box-shadow: 0 4px 15px rgba(0, 122, 61, 0.3);
}

.back-to-top.visible {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background: var(--kava-green-dark);
	color: #fff;
	transform: translateY(-3px);
}

.back-to-top svg {
	width: 20px;
	height: 20px;
}

/* ==========================================================================
   Page Hero Banner
   ========================================================================== */

.page-hero {
	position: relative;
	background: linear-gradient(135deg, var(--kava-dark) 0%, var(--kava-dark-secondary) 100%);
	padding: 120px 0 60px;
	text-align: center;
	overflow: hidden;
}

.page-hero-overlay {
	position: absolute;
	inset: 0;
	background: url('') center/cover no-repeat;
	opacity: 0.1;
	z-index: 0;
}

.page-hero-title {
	font-size: 2.75rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 12px;
}

.page-hero-subtitle {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.1rem;
	margin-bottom: 20px;
}

.page-hero .breadcrumb {
	background: transparent;
	padding: 0;
	margin: 0;
}

.page-hero .breadcrumb-item a {
	color: var(--kava-green-light);
}

.page-hero .breadcrumb-item.active {
	color: rgba(255, 255, 255, 0.6);
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
	color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   Values Section (About Page)
   ========================================================================== */

.values-section {
	background: var(--kava-gray);
	padding: 100px 0;
}

.value-card {
	background: #fff;
	border-radius: 12px;
	padding: 40px 24px;
	height: 100%;
	transition: var(--transition);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
}

.value-icon {
	width: 64px;
	height: 64px;
	background: rgba(0, 122, 61, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.value-icon svg {
	width: 28px;
	height: 28px;
	color: var(--kava-green);
}

.value-card h4 {
	font-size: 1.15rem;
	margin-bottom: 12px;
	color: var(--kava-dark);
}

.value-card p {
	color: var(--kava-text-light);
	font-size: 0.9rem;
	line-height: 1.7;
	margin-bottom: 0;
}

/* ==========================================================================
   Service Detail (Services Page)
   ========================================================================== */

.service-detail {
	padding: 100px 0;
}

.service-detail-img {
	border-radius: 16px;
	overflow: hidden;
}

.service-detail-img img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 16px;
}

.service-detail-img-placeholder {
	background: var(--kava-gray);
	border-radius: 16px;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-detail-icon {
	width: 56px;
	height: 56px;
	background: rgba(0, 122, 61, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.service-detail-icon svg {
	width: 26px;
	height: 26px;
	color: var(--kava-green);
}

.service-feature {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	background: var(--kava-gray);
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--kava-dark);
}

.service-feature svg {
	width: 18px;
	height: 18px;
	color: var(--kava-green);
	flex-shrink: 0;
}

/* ==========================================================================
   Fleet Gallery (Fleet Page)
   ========================================================================== */

.fleet-intro {
	padding: 80px 0 0;
}

.fleet-gallery-section {
	padding: 60px 0 100px;
}

.fleet-gallery-card {
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	height: 350px;
}

.fleet-gallery-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.fleet-gallery-card:hover img {
	transform: scale(1.05);
}

.fleet-gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 30px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	color: #fff;
}

.fleet-gallery-overlay h4 {
	font-size: 1.15rem;
	margin-bottom: 4px;
}

.fleet-gallery-overlay p {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}

.fleet-gallery-card-info {
	background: var(--kava-gray);
	display: flex;
	align-items: center;
	justify-content: center;
}

.fleet-info-icon {
	width: 80px;
	height: 80px;
	background: rgba(0, 122, 61, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fleet-info-icon svg {
	color: var(--kava-green);
}

.fleet-specs li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 0;
	font-size: 0.9rem;
	text-align: left;
}

.fleet-specs svg {
	width: 18px;
	height: 18px;
	color: var(--kava-green);
	flex-shrink: 0;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-info-section {
	padding: 80px 0 0;
}

.contact-info-card {
	background: #fff;
	border-radius: 12px;
	padding: 40px 24px;
	height: 100%;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: var(--transition);
}

.contact-info-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
	width: 64px;
	height: 64px;
	background: rgba(0, 122, 61, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.contact-info-icon svg {
	width: 26px;
	height: 26px;
	color: var(--kava-green);
}

.contact-info-card h5 {
	font-size: 1.1rem;
	margin-bottom: 10px;
	color: var(--kava-dark);
}

.contact-info-card p {
	color: var(--kava-text-light);
	font-size: 0.9rem;
	line-height: 1.7;
	margin: 0;
}

.contact-info-card a {
	color: var(--kava-text-light);
}

.contact-info-card a:hover {
	color: var(--kava-green);
}

.contact-main-section {
	padding: 60px 0 100px;
}

.contact-form .form-control,
.contact-form .form-select {
	padding: 12px 16px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	font-size: 0.9rem;
	transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
	border-color: var(--kava-green);
	box-shadow: 0 0 0 3px rgba(0, 122, 61, 0.1);
}

.contact-form .form-label {
	font-weight: 500;
	font-size: 0.85rem;
	color: var(--kava-dark);
}

.map-wrapper {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.social-links-card {
	background: var(--kava-gray);
	padding: 24px;
	border-radius: 12px;
}

.social-links-card h5 {
	font-size: 1rem;
	color: var(--kava-dark);
}

.social-link-lg {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: #fff;
	border-radius: 8px;
	color: var(--kava-text);
	font-size: 0.85rem;
	font-weight: 500;
	transition: var(--transition);
}

.social-link-lg svg {
	width: 18px;
	height: 18px;
	color: var(--kava-green);
}

.social-link-lg:hover {
	background: var(--kava-green);
	color: #fff;
}

.social-link-lg:hover svg {
	color: #fff;
}

/* ==========================================================================
   Elementor Editor - disable AOS animations
   ========================================================================== */

.elementor-editor-active [data-aos] {
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 991.98px) {
	section {
		padding: 70px 0;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.hero-stats {
		gap: 24px;
	}

	.hero-stat-number {
		font-size: 2rem;
	}

	.navbar-collapse {
		background: #fff;
		padding: 16px;
		margin-top: 8px;
		border-radius: 8px;
		box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	}
}

@media (max-width: 767.98px) {
	section {
		padding: 50px 0;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero-content {
		padding: 80px 0 60px;
	}

	.hero-stats {
		flex-wrap: wrap;
		gap: 16px;
	}

	.section-title {
		font-size: 1.75rem;
	}

	.stat-number {
		font-size: 2.25rem;
	}

	.about-img-wrapper img {
		height: 300px;
	}
}
