/* ==========================================
   Abhima Projects - Construction Company
   Custom Stylesheet
   ========================================== */

/* ========== Global Styles ========== */
:root {
	--primary-color: #0d6efd;
	--secondary-color: #6c757d;
	--success-color: #198754;
	--warning-color: #ffc107;
	--danger-color: #dc3545;
	--dark-color: #212529;
	--light-color: #f8f9fa;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

/* ========== Navigation ========== */
.navbar {
	padding: 0.5rem 0;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
}

.navbar.scrolled {
	padding: 0.3rem 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* Brand/Logo Styles */
.navbar-brand {
	display: flex;
	align-items: center;
	padding: 5px 0;
	transition: all 0.3s ease;
}

.navbar-brand:hover {
	transform: scale(1.05);
}

.navbar-logo {
	height: 45px;
	width: auto;
	max-width: 180px;
	transition: all 0.3s ease;
	filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.navbar-logo:hover {
	filter: drop-shadow(2px 4px 8px rgba(255, 193, 7, 0.5));
}

/* Navigation Links */
.navbar-nav {
	gap: 0.5rem;
}

.nav-link {
	font-weight: 500;
	font-size: 0.95rem;
	padding: 0.6rem 1rem !important;
	margin: 0 0.2rem;
	position: relative;
	transition: all 0.3s ease;
	border-radius: 6px;
	color: rgba(255, 255, 255, 0.85) !important;
}

.nav-link i {
	font-size: 0.85rem;
	opacity: 0.8;
}

.nav-link:hover {
	color: var(--warning-color) !important;
	background: rgba(255, 193, 7, 0.1);
	transform: translateY(-2px);
}

.nav-link.active {
	color: var(--warning-color) !important;
	background: rgba(255, 193, 7, 0.15);
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--warning-color), transparent);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 70%;
}

/* CTA Button */
.btn-warning {
	font-weight: 600;
	padding: 0.5rem 1.5rem;
	border-radius: 25px;
	box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
	transition: all 0.3s ease;
	border: none;
}

.btn-warning:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
}

/* Mobile Menu Toggle */
.navbar-toggler {
	border: 2px solid var(--warning-color);
	padding: 0.4rem 0.6rem;
	border-radius: 6px;
}

.navbar-toggler:focus {
	box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.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(255, 193, 7, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========== Hero Section ========== */
.hero-section {
	position: relative;
	height: 100vh;
	min-height: 700px;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
		url('../images/banners/hero-construction.jpg') center/cover no-repeat fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 56px;
	overflow: hidden;
	padding: 20px;
}

/* Hero Section - Ensure background works on mobile */
@media (max-width: 768px) {
	.hero-section {
		background-attachment: scroll !important;
		background-position: center center;
	}
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
	z-index: 1;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fade-in {
	animation: fadeIn 1s ease;
}

.animate-fade-in-delay {
	animation: fadeIn 1.5s ease;
}

.animate-fade-in-delay-2 {
	animation: fadeIn 2s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* ========== Page Header / Banner ========== */
.page-header {
	padding: 100px 0 60px;
	margin-top: 56px;
}

.page-banner {
	position: relative;
	margin-top: 45px;
	min-height: 400px;
	background-attachment: fixed !important;
	background-size: cover !important;
	background-position: center !important;
}

/* Fix background attachment for mobile */
@media (max-width: 768px) {
	.page-banner {
		background-attachment: scroll !important;
	}
}

.page-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
}

.page-banner .container {
	position: relative;
	z-index: 2;
}

.page-banner h1 {
	font-size: 3.5rem;
	font-weight: 700;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	margin-bottom: 1rem;
}

.page-banner p.lead {
	font-size: 1.5rem;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-banner .breadcrumb {
	background: transparent;
	padding: 0;
	margin: 0;
}

.page-banner .breadcrumb-item {
	font-size: 1rem;
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
	color: rgba(255, 255, 255, 0.7);
	content: ">";
}

.page-banner .breadcrumb-item a {
	color: white;
	transition: all 0.3s ease;
}

.page-banner .breadcrumb-item a:hover {
	color: var(--warning-color);
	text-decoration: none;
}

.breadcrumb-item a {
	text-decoration: none;
}

/* ========== Feature Boxes ========== */
.feature-box {
	background: white;
	border-radius: 10px;
	transition: all 0.3s ease;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.feature-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
	transition: all 0.3s ease;
}

.feature-box:hover .feature-icon i {
	transform: scale(1.2);
}

/* ========== Service Cards ========== */
.service-card {
	border: none;
	transition: all 0.3s ease;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-icon i {
	transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
	transform: rotate(360deg);
}

/* ========== Testimonial Cards ========== */
.testimonial-card {
	border: none;
	border-left: 4px solid var(--warning-color);
	background: #f8f9fa;
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	transform: translateX(10px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ========== Project Cards ========== */
.project-card {
	transition: all 0.3s ease;
	overflow: hidden;
}

.project-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.project-image-wrapper {
	position: relative;
	overflow: hidden;
}

.project-image-wrapper img {
	transition: all 0.5s ease;
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.project-card:hover .project-image-wrapper img {
	transform: scale(1.1);
}

.project-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
	opacity: 1;
}

/* ========== Filter Buttons ========== */
.filter-btn {
	transition: all 0.3s ease;
}

.filter-btn.active {
	background-color: var(--primary-color);
	color: white;
}

/* ========== Value Cards ========== */
.value-card {
	transition: all 0.3s ease;
	border-radius: 10px;
}

.value-card:hover {
	background-color: #f8f9fa;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ========== Team Cards ========== */
.team-card {
	transition: all 0.3s ease;
}

.team-card:hover {
	transform: translateY(-10px);
}

.team-image img {
	border: 5px solid var(--light-color);
	transition: all 0.3s ease;
}

.team-card:hover .team-image img {
	border-color: var(--primary-color);
}

/* ========== Contact Info Box ========== */
.contact-info-box {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.info-item {
	padding-bottom: 1rem;
	border-bottom: 1px solid #e9ecef;
}

.info-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

/* ========== Mission & Vision Boxes ========== */
.mission-box,
.vision-box {
	transition: all 0.3s ease;
}

.mission-box:hover,
.vision-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* ========== Statistics Section ========== */
.stat-box,
.stat-item {
	padding: 1rem;
}

/* ========== Process Steps ========== */
.process-step {
	transition: all 0.3s ease;
}

.process-step:hover {
	background-color: #f8f9fa;
	border-radius: 10px;
}

.step-number .badge {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ========== Buttons ========== */
.btn {
	padding: 0.75rem 1.5rem;
	border-radius: 5px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-lg {
	padding: 1rem 2rem;
	font-size: 1.1rem;
}

/* ========== Footer ========== */
footer {
	margin-top: 3rem;
}

footer a {
	transition: all 0.3s ease;
}

footer a:hover {
	color: var(--warning-color) !important;
	padding-left: 5px;
}

.social-links a:hover {
	transform: scale(1.2);
}

/* ========== Map Container ========== */
.map-container {
	width: 100%;
	height: 450px;
}

/* ========== Accordion ========== */
.accordion-button:not(.collapsed) {
	background-color: var(--primary-color);
	color: white;
}

.accordion-button:focus {
	box-shadow: none;
}

/* ========== Responsive Styles ========== */

/* Extra Large Devices (1400px and up) */
@media (max-width: 1400px) {
	.container {
		max-width: 1320px;
	}
}

/* Large Devices (1200px and up) */
@media (max-width: 1200px) {
	.container {
		max-width: 1140px;
	}
	
	.hero-section h1 {
		font-size: 3rem;
	}
	
	.page-banner h1 {
		font-size: 2.5rem;
	}
}

/* Medium Devices (992px and up - Tablets) */
@media (max-width: 992px) {
	.container {
		max-width: 960px;
	}
	
	/* Hero Section */
	.hero-section {
		height: 80vh;
		min-height: 600px;
	}
	
	.hero-section h1 {
		font-size: 2.5rem;
	}
	
	.hero-section .lead {
		font-size: 1.1rem;
	}
	
	.hero-section .btn {
		padding: 12px 30px;
		font-size: 0.95rem;
	}
	
	/* Page Banners */
	.page-banner {
		height: 350px !important;
	}
	
	.page-banner h1 {
		font-size: 2.2rem;
	}
	
	/* Cards */
	.service-card,
	.project-card,
	.team-card {
		margin-bottom: 30px;
	}
	
	/* Mission & Vision boxes */
	.mission-box,
	.vision-box {
		padding: 30px !important;
	}
	
	/* Team images */
	.team-image img {
		width: 180px !important;
		height: 180px !important;
	}
	
	/* Feature boxes */
	.feature-box {
		padding: 25px !important;
	}
}

/* Small Medium Devices (768px and down - Small Tablets & Large Phones) */
@media (max-width: 768px) {
	/* Hero Section */
	.hero-section {
		height: 70vh;
		min-height: 500px;
		margin-top: 56px;
	}
	
	.hero-section h1,
	.hero-section .display-2 {
		font-size: 2rem !important;
		margin-bottom: 1rem !important;
	}
	
	.hero-section .lead,
	.hero-section .fs-3 {
		font-size: 1rem !important;
		margin-bottom: 1.5rem !important;
	}
	
	.hero-section .btn-lg {
		padding: 10px 25px;
		font-size: 0.9rem;
		margin: 5px;
	}
	
	.hero-section .display-6 {
		font-size: 1.5rem !important;
	}
	
	/* Page Banners */
	.page-banner {
		height: 300px !important;
		padding: 20px 0;
	}
	
	.page-banner h1,
	.page-banner .display-3 {
		font-size: 1.8rem !important;
	}
	
	.page-banner .lead {
		font-size: 0.95rem;
	}

	/* Typography */
	.display-3 {
		font-size: 2rem;
	}

	.display-4 {
		font-size: 1.8rem;
	}

	.lead {
		font-size: 1rem;
	}
	
	h2 {
		font-size: 1.75rem;
	}
	
	h3 {
		font-size: 1.5rem;
	}
	
	h4 {
		font-size: 1.25rem;
	}

	/* Sections */
	.page-header {
		padding: 80px 0 40px;
	}
	
	section.py-5 {
		padding: 40px 0 !important;
	}
	
	/* Cards & Boxes */
	.service-card,
	.project-card,
	.team-card,
	.value-card {
		margin-bottom: 20px;
	}
	
	.mission-box,
	.vision-box {
		padding: 25px !important;
		margin-bottom: 20px;
	}
	
	/* Team Section */
	.team-image img,
	.team-card img {
		width: 150px !important;
		height: 150px !important;
	}
	
	/* Feature boxes */
	.feature-box {
		padding: 20px !important;
		margin-bottom: 15px;
	}
	
	/* Icons */
	.fa-3x {
		font-size: 2.5rem !important;
	}
	
	/* Spacing */
	.mb-5 {
		margin-bottom: 2rem !important;
	}
	
	.mb-4 {
		margin-bottom: 1.5rem !important;
	}
	
	/* Grid adjustments */
	.row {
		margin-left: -10px;
		margin-right: -10px;
	}
	
	.row > * {
		padding-left: 10px;
		padding-right: 10px;
	}
	
	/* Contact Form */
	.contact-form .form-label {
		font-size: 0.9rem;
	}
	
	/* Map */
	.map-container {
		height: 300px;
	}
	
	/* Buttons */
	.btn-lg {
		padding: 10px 25px;
		font-size: 0.95rem;
	}
	
	/* Navbar */
	.navbar-nav {
		padding: 15px 0;
	}
	
	.nav-link {
		padding: 10px 15px;
	}
	
	/* Footer */
	footer .col-lg-3,
	footer .col-md-6 {
		margin-bottom: 30px;
	}
	
	/* Project Filters */
	.filter-buttons .btn {
		margin: 5px;
		padding: 8px 15px;
		font-size: 0.85rem;
	}
}

/* Extra Small Devices (576px and down - Phones) */
@media (max-width: 576px) {
	/* Hero Section */
	.hero-section {
		height: 60vh;
		min-height: 450px;
	}
	
	.hero-section h1,
	.hero-section .display-2 {
		font-size: 1.5rem !important;
		line-height: 1.3;
	}
	
	.hero-section .lead,
	.hero-section .fs-3 {
		font-size: 0.9rem !important;
	}
	
	.hero-section .btn {
		display: block;
		width: 100%;
		margin: 8px 0;
		padding: 12px;
	}
	
	.hero-section .row .col-md-3,
	.hero-section .row .col-sm-6 {
		margin-bottom: 15px;
	}
	
	/* Page Banner */
	.page-banner {
		height: 250px !important;
	}
	
	.page-banner h1,
	.page-banner .display-3 {
		font-size: 1.5rem !important;
	}
	
	.page-banner .lead {
		font-size: 0.85rem;
	}
	
	/* Typography */
	h2 {
		font-size: 1.5rem;
	}
	
	h3 {
		font-size: 1.3rem;
	}
	
	h4 {
		font-size: 1.15rem;
	}
	
	.lead {
		font-size: 0.95rem;
	}
	
	/* Sections */
	section.py-5 {
		padding: 30px 0 !important;
	}
	
	/* Cards */
	.service-card,
	.project-card,
	.team-card {
		padding: 15px;
	}
	
	.mission-box,
	.vision-box {
		padding: 20px !important;
	}
	
	/* Team Images */
	.team-image img,
	.team-card img {
		width: 120px !important;
		height: 120px !important;
	}
	
	/* Icons */
	.fa-3x {
		font-size: 2rem !important;
	}
	
	/* Feature boxes */
	.feature-box {
		padding: 15px !important;
	}
	
	/* Buttons */
	.btn {
		padding: 10px 20px;
		font-size: 0.85rem;
	}
	
	.btn-lg {
		padding: 12px 25px;
		font-size: 0.9rem;
	}
	
	/* Images */
	img {
		max-width: 100%;
		height: auto;
	}
	
	/* Contact Form */
	.contact-form {
		padding: 20px;
	}
	
	.form-control {
		font-size: 0.9rem;
	}
	
	/* Map */
	.map-container {
		height: 250px;
	}
	
	/* Footer */
	footer {
		text-align: center;
		padding: 30px 0 20px;
	}
	
	footer .col-lg-3 {
		margin-bottom: 25px;
	}
	
	/* Breadcrumb */
	.breadcrumb {
		font-size: 0.85rem;
	}
	
	/* Stats on hero */
	.hero-section .row .p-3 {
		padding: 15px !important;
	}
	
	/* Why Choose items */
	.why-choose-item {
		flex-direction: column;
		text-align: center;
	}
	
	.why-choose-item .icon-box {
		margin: 0 auto 15px;
	}
	
	/* Project Grid */
	.project-item {
		margin-bottom: 15px;
	}
	
	/* Value cards */
	.value-card {
		padding: 20px !important;
	}
	
	/* Spacing utilities */
	.p-5 {
		padding: 25px !important;
	}
	
	.p-4 {
		padding: 20px !important;
	}
	
	.mb-5 {
		margin-bottom: 1.5rem !important;
	}
}

/* Very Small Devices (400px and down) */
@media (max-width: 400px) {
	/* Navbar - Ultra Mobile */
	.brand-logo {
		width: 35px;
		height: 35px;
	}
	
	.brand-logo i {
		font-size: 16px;
	}
	
	.brand-name {
		font-size: 1rem;
		letter-spacing: 1px;
	}
	
	.brand-tagline {
		font-size: 0.55rem;
		letter-spacing: 1.5px;
	}
	
	.navbar-toggler {
		padding: 0.3rem 0.4rem;
		font-size: 0.9rem;
	}
	
	.nav-link {
		font-size: 0.9rem;
		padding: 0.7rem 0.8rem !important;
	}
	
	.navbar-collapse {
		padding: 0.8rem;
	}
	
	/* Other elements */
	.hero-section h1 {
		font-size: 1.3rem !important;
	}
	
	.page-banner h1 {
		font-size: 1.3rem !important;
	}
	
	.btn {
		font-size: 0.8rem;
		padding: 8px 15px;
	}
	
	.feature-box h4 {
		font-size: 1rem;
	}
}

/* Landscape orientation for mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
	.hero-section {
		height: 100vh;
		min-height: 400px;
	}
	
	.page-banner {
		height: 250px !important;
	}
}

/* Print Styles */
@media print {
	.navbar,
	.page-banner,
	footer,
	.btn,
	#scrollTopBtn {
		display: none !important;
	}
	
	body {
		font-size: 12pt;
	}
	
	.container {
		max-width: 100%;
	}
}

/* ========== Animations ========== */
@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}

.pulse-animation {
	animation: pulse 2s infinite;
}

/* ========== Utility Classes ========== */
.section-spacing {
	padding: 80px 0;
}

.shadow-custom {
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.border-radius-custom {
	border-radius: 10px;
}

/* ========== Loading Animation ========== */
.loading {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: white;
	animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* ========== Scroll to Top Button ========== */
#scrollTopBtn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--primary-color);
	color: white;
	border: none;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	z-index: 1000;
}

#scrollTopBtn:hover {
	background-color: var(--warning-color);
	transform: translateY(-5px);
}

#scrollTopBtn.show {
	display: flex;
}

/* Mobile Scroll Button */
@media (max-width: 768px) {
	#scrollTopBtn {
		bottom: 20px;
		right: 20px;
		width: 45px;
		height: 45px;
	}
}

@media (max-width: 400px) {
	#scrollTopBtn {
		bottom: 15px;
		right: 15px;
		width: 40px;
		height: 40px;
		font-size: 0.85rem;
	}
}

/* ========== Responsive Utilities ========== */

/* Text responsive helpers */
@media (max-width: 576px) {
	.small-text-mobile {
		font-size: 0.85rem !important;
	}
	
	.hide-text-mobile {
		display: none;
	}
	
	/* Ensure buttons don't overflow on small screens */
	.btn {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 100%;
	}
	
	/* Stack hero buttons on extra small screens */
	.hero-section .btn-lg {
		display: inline-block;
		min-width: 140px;
	}
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 768px) {
	body {
		overflow-x: hidden;
	}
	
	.container-fluid {
		padding-left: 15px;
		padding-right: 15px;
	}
	
	/* Ensure images don't cause overflow */
	img {
		max-width: 100%;
		height: auto;
	}
}

/* ========== Navbar Responsive Enhancements ========== */

/* Large Desktop (1400px - 1200px) */
@media (max-width: 1400px) {
	.navbar-nav {
		gap: 0.3rem;
	}
	
	.nav-link {
		padding: 0.5rem 0.8rem !important;
		font-size: 0.9rem;
	}
	
	.navbar-logo {
		height: 42px;
		max-width: 170px;
	}
}

/* Desktop (1200px - 992px) */
@media (max-width: 1200px) {
	.navbar-nav {
		gap: 0.2rem;
	}
	
	.nav-link {
		padding: 0.5rem 0.7rem !important;
		font-size: 0.88rem;
	}
	
	.navbar-logo {
		height: 40px;
		max-width: 160px;
	}
	
	.btn-warning.btn-sm {
		padding: 0.4rem 1.2rem;
		font-size: 0.85rem;
	}
	
	/* Hero adjustments */
	.hero-section {
		min-height: 650px;
	}
}

/* Tablets (992px and down - Mobile Menu Activation) */
@media (max-width: 992px) {
	.navbar-collapse {
		background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
		padding: 1rem;
		margin-top: 1rem;
		border-radius: 10px;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	}
	
	.navbar-nav {
		gap: 0;
		align-items: stretch !important;
	}
	
	.nav-link {
		padding: 0.8rem 1rem !important;
		margin: 0.2rem 0;
		border-radius: 8px;
		text-align: center;
	}
	
	.nav-link i {
		margin-right: 8px !important;
		font-size: 1rem;
	}
	
	.btn-warning.btn-sm {
		margin-top: 1rem;
		display: block !important;
		text-align: center;
	}
	
	.navbar-logo {
		height: 38px;
		max-width: 150px;
	}
	
	/* Hero Section */
	.hero-section {
		height: 80vh;
		min-height: 600px;
		padding: 30px 15px;
		margin-top: 56px;
	}
	
	.hero-section h1,
	.hero-section .display-2 {
		font-size: 2.2rem !important;
	}
	
	.hero-section .lead,
	.hero-section .fs-3 {
		font-size: 1.1rem !important;
	}
	
	.hero-section .btn-lg {
		padding: 10px 25px;
		font-size: 0.95rem;
	}
	
	.hero-section .display-6 {
		font-size: 1.8rem !important;
	}
}

/* Mobile Landscape (768px and down) */
@media (max-width: 768px) {
	.navbar {
		padding: 0.3rem 0;
	}
	
	.navbar-logo {
		height: 35px;
		max-width: 140px;
	}
	
	.navbar-toggler {
		padding: 0.35rem 0.5rem;
	}
	
	.nav-link {
		font-size: 0.95rem;
		padding: 0.75rem 1rem !important;
	}
	
	/* Hero Section - Mobile Portrait */
	.hero-section {
		height: 75vh;
		min-height: 550px;
		padding: 25px 15px;
		margin-top: 54px;
	}
	
	.hero-section h1,
	.hero-section .display-2 {
		font-size: 1.8rem !important;
		line-height: 1.3 !important;
	}
	
	.hero-section .lead,
	.hero-section .fs-3 {
		font-size: 1rem !important;
		max-width: 95% !important;
	}
	
	.hero-section .btn-lg {
		padding: 10px 20px;
		font-size: 0.9rem;
		margin: 5px 3px !important;
		border-radius: 30px !important;
	}
	
	.hero-section .display-6 {
		font-size: 1.5rem !important;
	}
	
	.hero-section .row .col-md-3,
	.hero-section .row .col-sm-6 {
		margin-bottom: 10px;
	}
	
	.hero-section .row .p-3 {
		padding: 15px !important;
	}
}

/* Mobile Portrait (576px and down) */
@media (max-width: 576px) {
	.navbar .container-fluid {
		padding-left: 1rem;
		padding-right: 1rem;
	}
	
	.navbar-logo {
		height: 32px;
		max-width: 130px;
	}
	
	.nav-link {
		font-size: 0.92rem;
		padding: 0.7rem 0.9rem !important;
	}
	
	.navbar-collapse {
		padding: 0.8rem;
		margin-top: 0.8rem;
	}
	
	/* Hero Section - Small Mobile */
	.hero-section {
		height: 70vh;
		min-height: 500px;
		padding: 20px 10px;
		margin-top: 52px;
	}
	
	.hero-section h1,
	.hero-section .display-2 {
		font-size: 1.5rem !important;
		line-height: 1.3 !important;
		margin-bottom: 1rem !important;
	}
	
	.hero-section .lead,
	.hero-section .fs-3 {
		font-size: 0.9rem !important;
		max-width: 100% !important;
		margin-bottom: 1.5rem !important;
	}
	
	.hero-section .btn-lg {
		padding: 10px 20px;
		font-size: 0.85rem;
		margin: 5px 2px !important;
		display: inline-block;
		width: auto;
	}
	
	.hero-section .display-6 {
		font-size: 1.3rem !important;
	}
	
	.hero-section .col-md-3,
	.hero-section .col-sm-6 {
		margin-bottom: 15px;
	}
}

/* Small Mobile (400px and down) */
@media (max-width: 400px) {
	.navbar-logo {
		height: 28px;
		max-width: 115px;
	}
	
	.navbar-toggler {
		padding: 0.3rem 0.4rem;
		font-size: 0.9rem;
	}
	
	.nav-link {
		font-size: 0.9rem;
		padding: 0.7rem 0.8rem !important;
	}
	
	.navbar-collapse {
		padding: 0.8rem;
	}
	
	.navbar .container-fluid {
		padding-left: 0.8rem;
		padding-right: 0.8rem;
	}
	
	/* Hero Section - Extra Small */
	.hero-section {
		height: 65vh;
		min-height: 450px;
		padding: 15px 8px;
		margin-top: 46px;
	}
	
	.hero-section h1,
	.hero-section .display-2 {
		font-size: 1.3rem !important;
		line-height: 1.3 !important;
	}
	
	.hero-section .lead,
	.hero-section .fs-3 {
		font-size: 0.85rem !important;
	}
	
	.hero-section .btn-lg {
		padding: 8px 15px;
		font-size: 0.8rem;
		margin: 4px 2px !important;
		border-radius: 25px !important;
	}
	
	.hero-section .display-6 {
		font-size: 1.1rem !important;
	}
}

/* Landscape Mobile Devices */
@media (max-width: 768px) and (orientation: landscape) {
	.navbar {
		padding: 0.2rem 0;
	}
	
	.navbar-logo {
		height: 30px;
		max-width: 125px;
	}
	
	/* Hero Section - Landscape */
	.hero-section {
		height: 100vh;
		min-height: 400px;
		padding: 15px;
	}
	
	.hero-section h1,
	.hero-section .display-2 {
		font-size: 1.6rem !important;
	}
	
	.hero-section .lead,
	.hero-section .fs-3 {
		font-size: 0.9rem !important;
	}
	
	.hero-section .btn-lg {
		padding: 8px 18px;
		font-size: 0.85rem;
	}
	
	.hero-section .display-6 {
		font-size: 1.2rem !important;
	}
	
	.hero-section .mt-5 {
		margin-top: 1.5rem !important;
	}
}
