/* ===== CSS VARIABLES - BLACK THEME ===== */
:root {
	/* Primary: Architectural Orange */
	--primary: #F97316;
	--primary-dark: #EA580C;
	--primary-light: #FB923C;

	/* Secondary: PURE BLACK to match logo */
	--secondary: #000000;
	--secondary-light: #1A1A1A;
	/* Very dark grey for gradients */

	/* Accent: Emerald Green */
	--accent: #10B981;
	--accent-dark: #059669;

	--white: #FFFFFF;
	--light: #F4F4F5;
	--gray: #71717A;
	--dark-gray: #27272A;

	/* Gradients */
	--gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	--gradient-dark: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
	--gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);

	/* Shadows */
	--shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
	--shadow-orange: 0 10px 25px -5px rgba(249, 115, 22, 0.3);

	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 24px;
	--radius-full: 50%;

	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

	--font-main: 'Poppins', sans-serif;

	/* Navbar height */
	--navbar-height: 170px;
	--navbar-height-scrolled: 110px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-main);
	font-size: 16px;
	line-height: 1.7;
	color: var(--dark-gray);
	background-color: var(--white);
	overflow-x: hidden;
}

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

ul {
	list-style: none;
}

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

button {
	cursor: pointer;
	font-family: inherit;
	border: none;
	outline: none;
}

input,
textarea,
select {
	font-family: inherit;
	font-size: inherit;
	outline: none;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ===== PRELOADER ===== */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--secondary);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10000;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
	opacity: 0;
	visibility: hidden;
}

.loader {
	width: 60px;
	height: 60px;
	border: 4px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-full);
	position: relative;
}

.loader-inner {
	width: 100%;
	height: 100%;
	border: 4px solid transparent;
	border-top-color: var(--primary);
	border-radius: var(--radius-full);
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* ===== NAVIGATION ===== */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--navbar-height);
	padding: 10px 0;
	z-index: 1000;
	transition: var(--transition);
	display: flex;
	align-items: center;
	/* PURE BLACK BACKGROUND */
	background: #000000;
}

.navbar.scrolled {
	/* BLACK BACKGROUND WHEN SCROLLED */
	background: rgba(0, 0, 0, 0.95);
	height: var(--navbar-height-scrolled);
	padding: 5px 0;
	box-shadow: var(--shadow-md);
	backdrop-filter: blur(10px);
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* ===== LOGO ===== */
.logo {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 1.9rem;
	font-weight: 700;
	color: var(--white);
	transition: var(--transition);
}

.logo-img-wrapper {
	width: 256px;
	height: 151px;
	background: transparent;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	flex-shrink: 0;
}

.logo-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.logo-text {
	display: flex;
	align-items: center;
	transition: var(--transition);
}

.navbar.scrolled .logo {
	color: var(--white);
	/* Keep text white on scrolled black header */
}

/* Scrolled Logo Size */
.navbar.scrolled .logo-img-wrapper {
	width: 150px;
	height: 89px;
}

.logo .highlight {
	color: var(--primary);
}

.logo:hover .logo-img-wrapper {
	transform: scale(1.02);
}

/* ===== FOOTER LOGO ===== */
.footer-logo {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.footer-logo-img-wrapper {
	width: 180px;
	height: 106px;
	background: transparent;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.footer-logo-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.footer-logo .highlight {
	color: var(--primary);
}

/* ===== NAV MENU ===== */
.nav-menu {
	display: flex;
	align-items: center;
	gap: 35px;
}

.nav-link {
	font-weight: 500;
	color: var(--white);
	position: relative;
	padding: 5px 0;
	opacity: 0.9;
	transition: var(--transition);
}

.nav-link:hover {
	opacity: 1;
	color: var(--primary);
}

.navbar.scrolled .nav-link {
	color: var(--white);
	/* Keep links white on black scrolled header */
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

.nav-link.btn-nav {
	background: var(--primary);
	color: var(--white) !important;
	padding: 12px 25px;
	border-radius: var(--radius-md);
	box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
	opacity: 1;
}

.nav-link.btn-nav::after {
	display: none;
}

.nav-link.btn-nav:hover {
	transform: translateY(-2px);
	background: var(--primary-dark);
	box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	z-index: 1001;
}

.nav-toggle span {
	width: 28px;
	height: 3px;
	background: var(--white);
	transition: var(--transition);
	border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
	background: var(--white);
	/* White toggles on black background */
}

/* ===== FLASH MESSAGES ===== */
.flash-message {
	padding: 15px 0;
	position: fixed;
	top: var(--navbar-height);
	left: 0;
	width: 100%;
	z-index: 999;
	animation: slideDown 0.3s ease;
	box-shadow: var(--shadow-md);
}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.flash-message .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.flash-success {
	background: var(--accent);
	color: var(--white);
}

.flash-error {
	background: #EF4444;
	color: var(--white);
}

.flash-close {
	background: none;
	border: none;
	color: inherit;
	font-size: 1.5rem;
	cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 35px;
	font-weight: 600;
	border-radius: var(--radius-md);
	transition: var(--transition);
	border: none;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.9rem;
}

.btn-primary {
	background: var(--gradient-primary);
	color: var(--white);
	box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
	background: var(--white);
	color: var(--secondary);
	box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
	background: var(--light);
	transform: translateY(-3px);
}

.btn-outline {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: var(--white);
	backdrop-filter: blur(5px);
}

.btn-outline:hover {
	background: var(--white);
	color: var(--secondary);
	border-color: var(--white);
}

/* ===== HERO SECTION ===== */
.hero {
	min-height: 100vh;
	/* Overlay using black */
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%),
		url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding-top: calc(var(--navbar-height) + 20px);
	padding-bottom: 40px;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
	background-size: 40px 40px;
	opacity: 0.3;
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 750px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(5px);
	padding: 10px 25px;
	border-radius: 50px;
	color: var(--white);
	font-weight: 500;
	font-size: 0.9rem;
	margin-bottom: 30px;
}

.hero-badge i {
	color: var(--primary);
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--white);
	line-height: 1.1;
	margin-bottom: 25px;
	letter-spacing: -1px;
}

.hero h1 span {
	color: transparent;
	background: linear-gradient(to right, var(--primary), #FFA726);
	-webkit-background-clip: text;
	background-clip: text;
}

.hero p {
	font-size: 1.15rem;
	color: #D4D4D8;
	margin-bottom: 40px;
	max-width: 600px;
	line-height: 1.8;
}

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

.hero-stats {
	display: flex;
	gap: 50px;
	margin-top: 60px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 30px;
}

.stat-item {
	text-align: left;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--white);
}

.stat-number span {
	color: var(--primary);
}

.stat-label {
	color: #A1A1AA;
	font-size: 0.9rem;
	font-weight: 500;
}

/* ===== SECTION STYLES ===== */
section {
	padding: 100px 0;
}

.section-header {
	text-align: center;
	max-width: 650px;
	margin: 0 auto 60px;
}

.section-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #FFF7ED;
	color: var(--primary-dark);
	padding: 8px 16px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.section-title {
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--secondary);
	margin-bottom: 15px;
	letter-spacing: -1px;
}

.section-title span {
	color: var(--primary);
	position: relative;
	display: inline-block;
}

.section-title span::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100%;
	height: 8px;
	background: var(--primary);
	opacity: 0.15;
	z-index: -1;
}

.section-desc {
	color: var(--gray);
	font-size: 1.1rem;
}

/* ===== SERVICES SECTION ===== */
.services {
	background: var(--light);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
}

.service-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 40px;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--gradient-primary);
	transform: scaleX(0);
	transition: var(--transition);
	transform-origin: left;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
	border-color: transparent;
}

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

.service-icon {
	width: 70px;
	height: 70px;
	background: #FFF7ED;
	color: var(--primary);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	transition: var(--transition);
}

.service-card:hover .service-icon {
	background: var(--primary);
	color: var(--white);
}

.service-icon i {
	font-size: 1.8rem;
}

.service-card h3 {
	font-size: 1.4rem;
	margin-bottom: 15px;
	color: var(--secondary);
}

.service-card p {
	color: var(--gray);
	margin-bottom: 25px;
}

.service-link {
	color: var(--primary);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.95rem;
}

.service-link i {
	transition: var(--transition);
}

.service-link:hover i {
	transform: translateX(5px);
}

/* ===== ABOUT SECTION ===== */
.about {
	background: var(--white);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.about-images {
	position: relative;
	padding-left: 20px;
	padding-bottom: 20px;
}

.about-img-main {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.about-img-main img {
	width: 100%;
	height: 550px;
	object-fit: cover;
}

.about-img-secondary {
	position: absolute;
	bottom: -40px;
	right: -40px;
	width: 280px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	border: 8px solid var(--white);
}

.about-img-secondary img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.experience-badge {
	position: absolute;
	top: 40px;
	left: -20px;
	background: var(--secondary);
	color: var(--white);
	padding: 30px 25px;
	border-radius: var(--radius-md);
	text-align: center;
	box-shadow: var(--shadow-md);
}

.experience-badge .number {
	font-size: 2.8rem;
	font-weight: 700;
	display: block;
	color: var(--primary);
	line-height: 1;
	margin-bottom: 5px;
}

.experience-badge span {
	font-size: 0.9rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.about-content h2 {
	font-size: 2.8rem;
	margin-bottom: 25px;
	color: var(--secondary);
	line-height: 1.2;
}

.about-content h2 span {
	color: var(--primary);
}

.about-content>p {
	color: var(--gray);
	margin-bottom: 35px;
	font-size: 1.1rem;
}

.about-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
	margin-bottom: 40px;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 15px;
}

.feature-item i {
	width: 32px;
	height: 32px;
	background: #ECFDF5;
	color: var(--accent);
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
}

.feature-item span {
	font-weight: 600;
	color: var(--secondary);
}

/* ===== PROJECTS SECTION ===== */
.projects-filter {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 50px;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 12px 30px;
	background: var(--white);
	border: 1px solid #E2E8F0;
	border-radius: 50px;
	font-weight: 600;
	color: var(--gray);
	transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
	background: var(--primary);
	color: var(--white);
	border-color: var(--primary);
	box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
}

.project-card {
	border-radius: var(--radius-lg);
	overflow: hidden;
	position: relative;
	height: 400px;
	cursor: pointer;
	box-shadow: var(--shadow-sm);
}

.project-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-slow);
}

.project-card video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-slow);
}

.project-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 40px 30px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
	transform: translateY(20px);
	transition: var(--transition);
	opacity: 0.9;
}

.project-card:hover img,
.project-card:hover video {
	transform: scale(1.1);
}

.project-card:hover .project-overlay {
	transform: translateY(0);
	opacity: 1;
}

.project-category {
	color: var(--primary);
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
	display: block;
}

.project-title {
	color: var(--white);
	font-size: 1.5rem;
	margin-bottom: 15px;
}

.project-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--white);
	font-weight: 500;
	opacity: 0;
	transform: translateY(10px);
	transition: var(--transition);
}

.project-card:hover .project-link {
	opacity: 1;
	transform: translateY(0);
}

/* ===== QUOTE SECTION ===== */
.quote-section {
	background: var(--secondary);
	position: relative;
	overflow: hidden;
	color: var(--white);
}

.quote-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: var(--primary);
	opacity: 0.05;
	border-radius: var(--radius-full);
	filter: blur(80px);
}

.quote-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 80px;
	align-items: center;
}

.quote-content h2 {
	font-size: 2.8rem;
	margin-bottom: 25px;
	line-height: 1.2;
}

.quote-content h2 span {
	color: var(--primary);
}

.quote-content p {
	color: #A1A1AA;
	margin-bottom: 40px;
	font-size: 1.1rem;
}

.quote-features {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.quote-feature {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.quote-feature i {
	width: 55px;
	height: 55px;
	background: rgba(255, 255, 255, 0.05);
	color: var(--primary);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	flex-shrink: 0;
}

.quote-feature div h4 {
	font-size: 1.2rem;
	margin-bottom: 5px;
	font-weight: 600;
}

.quote-feature div p {
	font-size: 0.95rem;
	margin: 0;
	color: #A1A1AA;
}

.quote-form-container {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 50px;
	box-shadow: var(--shadow-lg);
}

.quote-form-container h3 {
	font-size: 1.8rem;
	margin-bottom: 30px;
	color: var(--secondary);
}

/* ===== FORM STYLES ===== */
.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
	margin-bottom: 25px;
}

.form-group {
	margin-bottom: 0;
}

.form-group.full-width {
	grid-column: 1 / -1;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: var(--dark-gray);
	font-size: 0.95rem;
}

.form-group label span {
	color: var(--primary);
}

.form-control {
	width: 100%;
	padding: 15px 20px;
	border: 2px solid #E2E8F0;
	border-radius: var(--radius-md);
	font-size: 1rem;
	transition: var(--transition);
	background: #F8FAFC;
	color: var(--secondary);
}

.form-control:focus {
	border-color: var(--primary);
	background: var(--white);
	box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.form-control::placeholder {
	color: #94A3B8;
}

textarea.form-control {
	min-height: 140px;
	resize: vertical;
}

select.form-control {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 20px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
	background: var(--light);
}

.testimonials-slider {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
}

.testimonial-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 50px 40px;
	position: relative;
	transition: var(--transition);
	border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.testimonial-quote {
	font-size: 4rem;
	color: var(--primary);
	opacity: 0.1;
	position: absolute;
	top: 30px;
	right: 40px;
	line-height: 1;
	font-family: serif;
}

.testimonial-content {
	color: var(--dark-gray);
	font-size: 1.1rem;
	margin-bottom: 30px;
	line-height: 1.8;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.testimonial-author img {
	width: 60px;
	height: 60px;
	border-radius: var(--radius-full);
	object-fit: cover;
	border: 3px solid #F1F5F9;
}

.author-info h4 {
	font-size: 1.1rem;
	color: var(--secondary);
	margin-bottom: 2px;
}

.author-info span {
	color: var(--gray);
	font-size: 0.9rem;
}

.testimonial-rating {
	margin-left: auto;
	color: #F59E0B;
	font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta {
	background: var(--secondary);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, transparent 100%);
}

.cta-content {
	position: relative;
	z-index: 1;
}

.cta h2 {
	font-size: 2.8rem;
	color: var(--white);
	margin-bottom: 20px;
}

.cta p {
	color: #CBD5E1;
	font-size: 1.25rem;
	margin-bottom: 35px;
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
}

.cta .btn {
	background: var(--primary);
	color: var(--white);
	border: none;
}

.cta .btn:hover {
	background: var(--primary-dark);
	transform: translateY(-3px);
}

/* ===== PAGE HEADERS ===== */
.page-header {
	min-height: 400px;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%),
		url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding-top: calc(var(--navbar-height) + 30px);
	padding-bottom: 50px;
}

.page-header-content h1 {
	font-size: 3.5rem;
	color: var(--white);
	margin-bottom: 15px;
	font-weight: 800;
}

.page-header-content h1 span {
	color: var(--primary);
}

.breadcrumb {
	display: flex;
	justify-content: center;
	gap: 12px;
	color: #A1A1AA;
	font-weight: 500;
	font-size: 1.05rem;
	background: rgba(255, 255, 255, 0.05);
	padding: 10px 20px;
	border-radius: 50px;
	display: inline-flex;
	backdrop-filter: blur(5px);
}

.breadcrumb a {
	color: var(--white);
}

.breadcrumb a:hover {
	color: var(--primary);
}

.breadcrumb span {
	color: var(--primary);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 60px;
}

.contact-info-card {
	background: var(--secondary);
	border-radius: var(--radius-lg);
	padding: 40px;
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.contact-info-card::after {
	content: '';
	position: absolute;
	bottom: -50px;
	right: -50px;
	width: 200px;
	height: 200px;
	background: var(--primary);
	border-radius: 50%;
	opacity: 0.1;
	filter: blur(50px);
}

.contact-info-card h3 {
	font-size: 1.8rem;
	margin-bottom: 30px;
}

.contact-info-item {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}

.contact-info-item i {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.1);
	color: var(--primary);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item h4 {
	font-size: 1.1rem;
	margin-bottom: 5px;
	color: var(--white);
}

.contact-info-item p {
	color: #A1A1AA;
	font-size: 1rem;
}

.contact-social {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	z-index: 1;
}

.contact-social h4 {
	margin-bottom: 15px;
}

/* ===== FOOTER ===== */
.footer {
	background: #000000;
	color: #A1A1AA;
	border-top: 1px solid #18181B;
}

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

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
	gap: 50px;
}

.footer-col p {
	color: #A1A1AA;
	margin-bottom: 25px;
	line-height: 1.8;
}

.social-links {
	display: flex;
	gap: 12px;
}

.social-links a {
	width: 42px;
	height: 42px;
	background: #18181B;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	transition: var(--transition);
}

.social-links a:hover {
	background: var(--primary);
	transform: translateY(-3px);
}

.footer-col h4 {
	font-size: 1.2rem;
	color: var(--white);
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 10px;
	font-weight: 600;
}

.footer-col h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: var(--primary);
	border-radius: 2px;
}

.footer-col ul li {
	margin-bottom: 15px;
}

.footer-col ul li a {
	color: #A1A1AA;
	transition: var(--transition);
	display: inline-block;
}

.footer-col ul li a:hover {
	color: var(--primary);
	transform: translateX(5px);
}

.footer-col .contact-info li {
	display: flex;
	gap: 15px;
	align-items: flex-start;
}

.footer-col .contact-info li i {
	color: var(--primary);
	margin-top: 5px;
}

.footer-bottom {
	border-top: 1px solid #18181B;
	padding: 25px 0;
	background: #000000;
}

.footer-bottom .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-bottom p {
	color: #52525B;
	font-size: 0.95rem;
}

.footer-bottom-links {
	display: flex;
	gap: 30px;
}

.footer-bottom-links a {
	color: #52525B;
	font-size: 0.95rem;
}

.footer-bottom-links a:hover {
	color: var(--primary);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: var(--primary);
	color: var(--white);
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	z-index: 999;
	border: 2px solid rgba(255, 255, 255, 0.2);
}

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

.back-to-top:hover {
	transform: translateY(-5px);
	background: var(--primary-dark);
}

/* ===== ANIMATIONS ===== */
@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}
}

/* ===== ADMIN STYLES ===== */
.admin-header {
	background: var(--secondary);
	color: var(--white);
	padding: 15px 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
}

.admin-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.admin-header .logo {
	color: var(--white);
}

.admin-header .logo-img-wrapper {
	width: 150px;
	height: 89px;
	padding: 4px;
}

.admin-content {
	padding-top: 120px;
	min-height: 100vh;
	background: var(--light);
}

.admin-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: var(--shadow-sm);
}

.admin-table {
	width: 100%;
	border-collapse: collapse;
}

.admin-table th,
.admin-table td {
	padding: 15px;
	text-align: left;
	border-bottom: 1px solid var(--light);
}

.admin-table th {
	background: #F8FAFC;
	font-weight: 600;
	color: var(--secondary);
}

.admin-table tr:hover {
	background: #FFF7ED;
}

.status-badge {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
}

.status-pending {
	background: #FEF3C7;
	color: #92400E;
}

.status-reviewed {
	background: #DBEAFE;
	color: #1E40AF;
}

.status-contacted {
	background: #D1FAE5;
	color: #065F46;
}

.status-completed {
	background: #DCFCE7;
	color: #166534;
}

/* ===== RESPONSIVE STYLES ===== */

/* Extra Large Screens */
@media (min-width: 1200px) {
	.logo {
		font-size: 2rem;
		gap: 18px;
	}

	.logo-img-wrapper {
		width: 256px;
		height: 151px;
	}

	.navbar.scrolled .logo {
		font-size: 1.5rem;
		gap: 12px;
	}

	.navbar.scrolled .logo-img-wrapper {
		width: 160px;
		height: 95px;
	}

	.footer-logo {
		font-size: 1.8rem;
	}

	.footer-logo-img-wrapper {
		width: 200px;
		height: 118px;
	}

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

/* Large Screens */
@media (max-width: 1200px) {
	:root {
		--navbar-height: 150px;
		--navbar-height-scrolled: 100px;
	}

	.logo {
		font-size: 1.8rem;
		gap: 14px;
	}

	.logo-img-wrapper {
		width: 220px;
		height: 130px;
	}

	.navbar.scrolled .logo {
		font-size: 1.3rem;
		gap: 10px;
	}

	.navbar.scrolled .logo-img-wrapper {
		width: 130px;
		height: 77px;
	}

	.footer-logo {
		font-size: 1.6rem;
	}

	.footer-logo-img-wrapper {
		width: 180px;
		height: 106px;
	}

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

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* Tablets */
@media (max-width: 992px) {
	:root {
		--navbar-height: 130px;
		--navbar-height-scrolled: 85px;
	}

	.nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		background: var(--secondary);
		flex-direction: column;
		justify-content: center;
		gap: 30px;
		transition: var(--transition);
	}

	.nav-menu.active {
		right: 0;
	}

	.nav-link {
		color: var(--white) !important;
		font-size: 1.2rem;
	}

	.nav-toggle {
		display: flex;
	}

	.nav-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 6px);
	}

	.nav-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(5px, -6px);
	}

	.logo {
		font-size: 1.5rem;
		gap: 12px;
	}

	.logo-img-wrapper {
		width: 180px;
		height: 106px;
	}

	.navbar.scrolled .logo {
		font-size: 1.1rem;
		gap: 8px;
	}

	.navbar.scrolled .logo-img-wrapper {
		width: 100px;
		height: 59px;
	}

	.footer-logo {
		font-size: 1.5rem;
	}

	.footer-logo-img-wrapper {
		width: 160px;
		height: 95px;
	}

	.about-grid,
	.quote-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.about-images {
		order: -1;
	}

	.about-img-secondary {
		right: 20px;
		bottom: -20px;
	}

	.hero {
		padding-top: calc(var(--navbar-height) + 30px);
	}

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

	.hero-stats {
		gap: 30px;
	}

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

	.page-header {
		min-height: 300px;
		padding-top: calc(var(--navbar-height) + 40px);
	}
}

/* Small Tablets / Large Phones */
@media (max-width: 768px) {
	:root {
		--navbar-height: 110px;
		--navbar-height-scrolled: 75px;
	}

	section {
		padding: 70px 0;
	}

	.logo {
		font-size: 1.3rem;
		gap: 10px;
	}

	.logo-img-wrapper {
		width: 150px;
		height: 89px;
	}

	.navbar.scrolled .logo {
		font-size: 1rem;
		gap: 6px;
	}

	.navbar.scrolled .logo-img-wrapper {
		width: 85px;
		height: 50px;
	}

	.footer-logo {
		font-size: 1.4rem;
	}

	.footer-logo-img-wrapper {
		width: 140px;
		height: 83px;
	}

	.hero {
		min-height: auto;
		padding-top: calc(var(--navbar-height) + 40px);
		padding-bottom: 50px;
	}

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

	.hero p {
		font-size: 1rem;
	}

	.hero-badge {
		font-size: 0.85rem;
		padding: 6px 15px;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.hero-stats {
		flex-wrap: wrap;
		gap: 20px;
		margin-top: 40px;
	}

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

	.services-grid,
	.projects-grid,
	.testimonials-slider {
		grid-template-columns: 1fr;
	}

	.about-features {
		grid-template-columns: 1fr;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}

	.form-group.full-width {
		grid-column: 1;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-bottom .container {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}

	.page-header {
		min-height: 280px;
		padding-top: calc(var(--navbar-height) + 50px);
	}

	.page-header-content h1 {
		font-size: 2rem;
	}
}

/* Phones */
@media (max-width: 576px) {
	:root {
		--navbar-height: 95px;
		--navbar-height-scrolled: 65px;
	}

	.logo {
		font-size: 1.1rem;
		gap: 8px;
	}

	.logo-img-wrapper {
		width: 120px;
		height: 71px;
	}

	.navbar.scrolled .logo {
		font-size: 0.9rem;
		gap: 5px;
	}

	.navbar.scrolled .logo-img-wrapper {
		width: 70px;
		height: 41px;
	}

	.footer-logo {
		font-size: 1.2rem;
	}

	.footer-logo-img-wrapper {
		width: 120px;
		height: 71px;
	}

	.hero {
		padding-top: calc(var(--navbar-height) + 50px);
		padding-bottom: 40px;
	}

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

	.hero-badge {
		font-size: 0.75rem;
		padding: 5px 12px;
	}

	.hero-badge i {
		font-size: 0.85rem;
	}

	.page-header {
		min-height: 250px;
		padding-top: calc(var(--navbar-height) + 60px);
	}
}

/* Small Phones */
@media (max-width: 480px) {
	:root {
		--navbar-height: 85px;
		--navbar-height-scrolled: 58px;
	}

	.container {
		padding: 0 15px;
	}

	.logo {
		font-size: 1rem;
		gap: 6px;
	}

	/* Hide logo text on small screens */
	.logo-text {
		display: none;
	}

	.logo-img-wrapper {
		width: 110px;
		height: 65px;
	}

	.navbar.scrolled .logo-img-wrapper {
		width: 65px;
		height: 38px;
	}

	/* Hide scrolled logo text */
	.navbar.scrolled .logo-text {
		display: none;
	}

	.footer-logo {
		font-size: 1.1rem;
	}

	.footer-logo-img-wrapper {
		width: 110px;
		height: 65px;
	}

	/* Hide footer logo text */
	.footer-logo .logo-text {
		display: none;
	}

	.hero {
		padding-top: calc(var(--navbar-height) + 60px);
	}

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

	.hero p {
		font-size: 0.95rem;
	}

	.hero-badge {
		font-size: 0.7rem;
		padding: 5px 10px;
		gap: 6px;
	}

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

	.btn {
		padding: 12px 25px;
		font-size: 0.95rem;
	}

	.service-card,
	.quote-form-container,
	.contact-form-container {
		padding: 25px;
	}

	.project-card {
		height: 300px;
	}

	.page-header {
		min-height: 220px;
		padding-top: calc(var(--navbar-height) + 70px);
	}

	.page-header-content h1 {
		font-size: 1.5rem;
	}

	.admin-header .logo-img-wrapper {
		width: 100px;
		height: 59px;
		padding: 3px;
	}

	.admin-header .logo-text {
		display: none;
	}
}

/* Extra Small Phones */
@media (max-width: 360px) {
	:root {
		--navbar-height: 75px;
		--navbar-height-scrolled: 52px;
	}

	.logo-img-wrapper {
		width: 90px;
		height: 53px;
	}

	.navbar.scrolled .logo-img-wrapper {
		width: 55px;
		height: 32px;
	}

	.footer-logo {
		font-size: 0.95rem;
	}

	.footer-logo-img-wrapper {
		width: 90px;
		height: 53px;
	}

	.hero {
		padding-top: calc(var(--navbar-height) + 70px);
	}

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

	.hero-badge {
		font-size: 0.65rem;
		flex-wrap: wrap;
		justify-content: center;
	}

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

	.page-header {
		min-height: 200px;
		padding-top: calc(var(--navbar-height) + 80px);
	}

	.page-header-content h1 {
		font-size: 1.3rem;
	}

	.admin-header .logo-img-wrapper {
		width: 80px;
		height: 47px;
	}
}