/* ============================================================
   MAVERICK AIR CONDITIONING — Global Styles
   Matched to index.html design system
   Fonts: Bebas Neue (display), Montserrat (body)
   Theme: Dark with chrome/metallic accents
   ============================================================ */

:root {
	--red-dark: #6B1028;
	--red-primary: #8B1538;
	--red-light: #A51D45;
	--blue-dark: #0D1529;
	--blue-primary: #1A2751;
	--blue-light: #2A3A6A;
	--blue-accent: #3B7DDD;
	--white: #FFFFFF;
	--off-white: #F4F6F8;
	--chrome-light: linear-gradient(135deg, #E8E8E8 0%, #FFFFFF 25%, #C8C8C8 50%, #FFFFFF 75%, #E8E8E8 100%);
	--chrome-dark: linear-gradient(135deg, #afafaf 0%, #dbdbdb 25%, #bfbfbf 50%, #8e8e8e 75%, #b7b6b6 100%);
	--chrome-text: linear-gradient(180deg, #E8E8E8 0%, #A8A8A8 50%, #C8C8C8 100%);
	--max-width: 1400px;
	--transition: 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
	font-family: 'Montserrat', sans-serif;
	background: var(--blue-dark);
	color: var(--white);
	overflow-x: hidden;
	line-height: 1.6;
}

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

a { color: var(--blue-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-light); }

h1, h2, h3, h4 {
	font-family: 'Bebas Neue', sans-serif;
	color: var(--white);
	line-height: 1.1;
	letter-spacing: 3px;
}
h1 { font-size: clamp(2.5rem, 8vw, 4rem); }
h2 { font-size: clamp(2rem, 6vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); letter-spacing: 2px; }
h4 { font-size: clamp(1rem, 2vw, 1.3rem); letter-spacing: 2px; }
p { margin-bottom: 1em; font-size: 1rem; opacity: 0.9; }

/* Chrome gradient section title */
.section-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(2.5rem, 8vw, 4rem);
	letter-spacing: 3px;
	margin-bottom: 30px;
	line-height: 1.1;
	background: linear-gradient(180deg, #FFFFFF 0%, #C8C8C8 50%, #E8E8E8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-label {
	display: inline-block;
	padding: 6px 16px;
	background: rgba(169,29,58,0.2);
	border-left: 3px solid var(--red-primary);
	font-size: 0.85rem;
	letter-spacing: 2px;
	margin-bottom: 20px;
	font-weight: 600;
}

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section-content { max-width: 1200px; margin: 0 auto; position: relative; z-index: 10; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 999;
	padding: 15px 20px;
	background: linear-gradient(180deg, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0) 100%);
	transition: all 0.4s ease;
}
.site-header.scrolled {
	background: rgba(10,22,40,0.98);
	padding: 10px 20px;
	box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
	max-width: var(--max-width); margin: 0 auto;
	display: flex; justify-content: space-between; align-items: center;
}
.header-logo { display: flex; align-items: center; text-decoration: none; }
.header-logo img { height: 85px; width: auto; transition: all 0.3s ease; }
.site-header.scrolled .header-logo img { height: 45px; }

.main-nav { display: none; gap: 30px; list-style: none; align-items: center; }
.main-nav a {
	color: var(--white); text-decoration: none; font-weight: 500;
	font-size: 0.95rem; letter-spacing: 1px; position: relative; padding: 5px 0;
}
.main-nav a::after {
	content: ''; position: absolute; bottom: 0; left: 0;
	width: 0; height: 2px;
	background: linear-gradient(90deg, var(--red-primary) 0%, var(--blue-accent) 100%);
	transition: width 0.3s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a:hover { color: var(--white); }

.nav-phone {
	display: none; align-items: center; gap: 8px;
	color: var(--white); text-decoration: none; font-weight: 600; font-size: 1rem;
}
.nav-phone svg { width: 18px; height: 18px; color: var(--red-primary); }
.nav-phone:hover { color: var(--white); }

.menu-toggle {
	display: flex; flex-direction: column; gap: 5px;
	background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 1001;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: transform var(--transition), opacity var(--transition); }
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1023px) {
	.main-nav {
		position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
		flex-direction: column; align-items: stretch; gap: 0; display: flex;
		background: var(--blue-dark); padding: 100px 0 2rem;
		transition: right var(--transition);
		box-shadow: -10px 0 40px rgba(0,0,0,0.5);
		border-left: 1px solid rgba(59,125,221,0.1);
	}
	.main-nav.open { right: 0; }
	.main-nav a { padding: 15px 30px; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
	.main-nav a::after { display: none; }
	.nav-cta-mobile {
		margin: 20px 25px 0; padding: 12px 24px;
		background: var(--red-primary); color: var(--white) !important;
		border-radius: 4px; text-align: center; font-weight: 600; letter-spacing: 0.5px;
	}
	.nav-cta-mobile:hover { background: var(--red-light); color: var(--white); }
}

@media (min-width: 1024px) {
	.menu-toggle { display: none; }
	.main-nav { display: flex; }
	.nav-phone { display: flex; }
}

/* ============================================================
   FLOATING CONTACT BAR (Mobile)
   ============================================================ */
.contact-bar {
	position: fixed; bottom: 0; left: 0; right: 0;
	background: var(--chrome-dark); padding: 12px 20px;
	display: flex; justify-content: center; align-items: center; gap: 20px;
	z-index: 1000; border-top: 2px solid var(--red-primary);
	box-shadow: 0 -4px 30px rgba(0,0,0,0.5);
}
.contact-bar a {
	display: flex; align-items: center; gap: 10px;
	color: var(--white); text-decoration: none; font-weight: 600; font-size: 1.1rem;
	padding: 10px 24px; background: var(--red-primary); border-radius: 4px;
	transition: all 0.3s ease; letter-spacing: 0.5px;
}
.contact-bar a:hover { background: var(--red-light); transform: scale(1.05); color: var(--white); }
.contact-bar a svg { width: 20px; height: 20px; }
@media (min-width: 1024px) { .contact-bar { display: none; } }

/* ============================================================
   HOMEPAGE HERO (from index.html)
   ============================================================ */
.hero {
	position: relative; min-height: 100vh;
	display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
	position: absolute; inset: 0;
	background-size: cover; background-position: center; background-attachment: fixed;
	filter: brightness(0.8);
}
.hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(135deg, rgba(13,21,41,0.3) 0%, rgba(26,39,81,0.7) 50%, rgba(107,16,40,0.3) 100%);
}
.hero-content { position: relative; z-index: 10; text-align: center; padding: 20px; max-width: 900px; }
.hero-badge {
	display: inline-block; padding: 8px 20px;
	background: linear-gradient(135deg, rgba(74,74,74,0.9) 0%, rgba(90,90,90,0.9) 50%, rgba(58,58,58,0.9) 100%);
	border: 1px solid rgba(255,255,255,0.2); border-radius: 50px;
	font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 20px;
	animation: fadeInUp 0.8s ease 0.2s both;
	box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero h1 {
	font-family: 'Bebas Neue', sans-serif; font-size: 56px;
	letter-spacing: 6px; line-height: 1; margin-bottom: 20px;
	animation: fadeInUp 0.8s ease 0.4s both;
}
.hero h1 .accent {
	background: var(--red-primary);
	-webkit-background-clip: text; -webkit-text-fill-color: transparent;
	background-clip: text; display: block;
}
.hero p {
	font-size: clamp(1rem, 3vw, 1.3rem); max-width: 600px;
	margin: 0 auto 30px; opacity: 0.9; font-weight: 300;
	animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-cta {
	display: flex; flex-direction: column; gap: 15px;
	justify-content: center; align-items: center;
	animation: fadeInUp 0.8s ease 0.8s both;
}
.scroll-indicator {
	position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%);
	animation: bounce 2s infinite;
}
.scroll-indicator svg { width: 30px; height: 30px; opacity: 0.6; }
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
	40% { transform: translateX(-50%) translateY(-15px); }
	60% { transform: translateX(-50%) translateY(-7px); }
}
@media (min-width: 640px) { .hero-cta { flex-direction: row; } }
@media (min-width: 1024px) { .scroll-indicator { bottom: 40px; } }
@media (min-width: 1400px) { .hero h1 { font-size: 6rem; } }

/* ============================================================
   ABOUT SECTION (homepage)
   ============================================================ */
.about { background: var(--blue-dark); padding: 80px 20px; position: relative; }
.about::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0; height: 200px;
	background: linear-gradient(180deg, rgba(10,22,40,0) 0%, var(--blue-dark) 100%);
	pointer-events: none;
}
.about-grid { display: grid; gap: 40px; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; } }

/* ============================================================
   SERVICES WRAPPER (inside parallax)
   ============================================================ */
.services { padding: 80px 20px; width: 100%; }

/* ============================================================
   GALLERY CONTENT (inside parallax)
   ============================================================ */
.gallery-parallax { min-height: 50vh; }
.gallery-content { text-align: center; padding: 60px 20px; width: 100%; }
.gallery-content .section-title { margin-bottom: 15px; }
.gallery-content p { font-size: 1.2rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }

/* ============================================================
   SERVICE AREA SECTION
   ============================================================ */
.service-area { background: var(--blue-dark); padding: 80px 20px; }
.area-content { text-align: center; }

/* ============================================================
   CONTACT SECTION (inside parallax)
   ============================================================ */
.contact { padding: 80px 20px 150px; width: 100%; }
.contact-content { text-align: center; }

/* ============================================================
   VALUES SECTION
   ============================================================ */
.values { background: var(--blue-primary); padding: 80px 20px; position: relative; }

/* ============================================================
   PAGE HERO (Inner pages)
   ============================================================ */
.page-hero {
	position: relative; min-height: auto;
	display: flex; align-items: center; justify-content: center;
	text-align: center; padding: 120px 20px 40px; overflow: hidden;
}
.page-hero-bg {
	position: absolute; inset: 0;
	background-size: cover; background-position: center; background-attachment: fixed;
	filter: brightness(0.4);
}
.page-hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(135deg, rgba(13,21,41,0.6) 0%, rgba(26,39,81,0.8) 50%, rgba(107,16,40,0.4) 100%);
}
.page-hero--default {
	background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 40%, var(--blue-light) 70%, var(--red-dark) 100%);
}
.page-hero-content { position: relative; z-index: 10; max-width: 800px; }
.page-hero-content .section-label { margin-bottom: 10px; }
.page-hero .section-title { margin-bottom: 8px; font-size: clamp(2rem, 6vw, 3.5rem); }
.page-hero p { font-size: 1rem; opacity: 0.7; max-width: 550px; margin: 0 auto; font-weight: 300; }

/* ============================================================
   CONTENT SECTIONS
   ============================================================ */
.section { padding: 80px 20px; position: relative; }
.section--blue-dark { background: var(--blue-dark); }
.section--blue-primary { background: var(--blue-primary); }

/* Parallax sections */
.parallax-section {
	position: relative; min-height: 60vh; display: flex; align-items: center; overflow: hidden;
}
.parallax-bg {
	position: absolute; inset: -20%; background-size: cover; background-position: center;
	background-attachment: fixed; will-change: transform;
}
.parallax-overlay { position: absolute; inset: 0; background: rgba(10,22,40,0.85); }

/* ============================================================
   PROSE / ARTICLE CONTENT
   ============================================================ */
.prose { max-width: 780px; font-size: 1.05rem; line-height: 1.8; }
.prose h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-top: 50px; margin-bottom: 20px; letter-spacing: 2px; }
.prose h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); margin-top: 35px; margin-bottom: 15px; }
.prose p { margin-bottom: 20px; }
.prose ul, .prose ol { margin: 15px 0 25px 20px; }
.prose li { margin-bottom: 10px; line-height: 1.7; }
.prose strong { color: var(--white); font-weight: 600; }
.prose blockquote {
	margin: 30px 0; padding: 20px 25px; border-left: 4px solid var(--red-primary);
	background: rgba(26,39,81,0.5); border-radius: 0 8px 8px 0; font-style: italic;
}
.prose a { color: var(--blue-accent); }
.prose a:hover { color: var(--white); }

/* Two-column grid */
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 768px) { .content-grid { grid-template-columns: 1fr; gap: 40px; } }

.about-text { font-size: 1.1rem; line-height: 1.8; opacity: 0.9; }
.about-text p { margin-bottom: 20px; }

/* ============================================================
   STATS GRID
   ============================================================ */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.stat-card {
	background: var(--chrome-dark); padding: 25px; border-radius: 8px; text-align: center;
	border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s ease;
	position: relative; overflow: hidden;
}
.stat-card::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
	background: linear-gradient(90deg, var(--red-primary) 0%, var(--blue-accent) 100%);
	opacity: 0; transition: opacity 0.3s ease;
}
.stat-card:hover { transform: translateY(-5px); }
.stat-card:hover::before { opacity: 1; }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--red-primary); line-height: 1; }
.stat-label { font-size: 0.9rem; letter-spacing: 1px; margin-top: 5px; color: black; }
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   SERVICE CARDS (Glassmorphism)
   ============================================================ */
.services-grid { display: grid; gap: 20px; margin-top: 40px; }
.service-card {
	background: rgba(26,45,74,0.8); backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 30px;
	transition: all 0.4s ease; position: relative; overflow: hidden;
}
.service-card::before {
	content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0;
	background: var(--red-primary); transition: height 0.4s ease;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { transform: translateY(-5px); background: rgba(26,45,74,0.95); }
.service-icon {
	width: 50px; height: 50px; background: var(--chrome-dark); border-radius: 8px;
	display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.service-icon svg { width: 32px; height: 32px; color: var(--red-primary); }
.service-card h3 { font-size: 1.5rem; letter-spacing: 2px; margin-bottom: 15px; }
.service-card p { font-size: 0.95rem; opacity: 0.8; line-height: 1.7; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   VALUES SECTION
   ============================================================ */
.values-grid { display: grid; gap: 30px; margin-top: 40px; }
.value-item { display: flex; gap: 20px; align-items: flex-start; }
.value-number { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--red-primary); line-height: 1; opacity: 0.5; }
.value-content h3 { font-size: 1.8rem; letter-spacing: 2px; margin-bottom: 10px; }
.value-content p { font-size: 1rem; opacity: 0.8; line-height: 1.7; }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   SERVICE AREA TAGS
   ============================================================ */
.area-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 30px; }
.area-tag {
	padding: 10px 20px; background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1); border-radius: 50px;
	font-size: 0.95rem; letter-spacing: 1px; transition: all 0.3s ease;
}
.area-tag:hover { background: var(--blue-primary); border-color: var(--blue-accent); box-shadow: 0 0 20px rgba(59,125,221,0.3); }
.area-tag:nth-child(odd):hover { background: var(--red-primary); border-color: var(--red-primary); box-shadow: 0 0 20px rgba(139,21,56,0.3); }

.service-areas { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.service-areas span { background: rgba(255,255,255,0.08); padding: 4px 10px; border-radius: 3px; font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ============================================================
   BLOG CARDS (Dark glassmorphism)
   ============================================================ */
.card {
	background: rgba(26,45,74,0.6); backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.08); border-radius: 8px;
	overflow: hidden; transition: all 0.4s ease; position: relative;
}
.card::before {
	content: ''; position: absolute; top: 0; left: 0;
	width: 0; height: 3px;
	background: linear-gradient(90deg, var(--red-primary) 0%, var(--blue-accent) 100%);
	transition: width 0.4s ease; z-index: 1;
}
.card:hover { transform: translateY(-5px); background: rgba(26,45,74,0.9); border-color: rgba(255,255,255,0.15); }
.card:hover::before { width: 100%; }

.card-image {
	width: 100%; height: 220px; object-fit: cover;
	background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
}
.card-body { padding: 25px; }
.card-meta {
	display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
	font-size: 0.8rem; color: rgba(255,255,255,0.5); font-weight: 500;
	letter-spacing: 1px; text-transform: uppercase;
}
.card-meta .tag {
	background: rgba(139,21,56,0.3); color: var(--red-light);
	padding: 3px 10px; border-radius: 3px; font-size: 0.72rem; font-weight: 600; letter-spacing: 1px;
}
.card-title { font-size: 1.4rem; margin-bottom: 10px; text-transform: none; line-height: 1.25; letter-spacing: 1px; }
.card-title a { color: var(--white); }
.card-title a:hover { color: var(--red-light); }
.card-excerpt { color: rgba(255,255,255,0.6); font-size: 0.92rem; line-height: 1.65; margin-bottom: 15px; }
.card-link {
	font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 600;
	letter-spacing: 1.5px; text-transform: uppercase; color: var(--red-light);
}
.card-link:hover { color: var(--white); }
.card-link::after { content: ' →'; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; }
@media (max-width: 480px) { .card-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BLOG LAYOUT
   ============================================================ */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 50px; align-items: start; }
@media (max-width: 900px) { .blog-layout { grid-template-columns: 1fr; gap: 40px; } }

.blog-post-content { max-width: 780px; }
.blog-post-content h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-top: 45px; margin-bottom: 15px; letter-spacing: 2px; }
.blog-post-content h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); margin-top: 30px; margin-bottom: 12px; }
.blog-post-content p { margin-bottom: 20px; font-size: 1.02rem; line-height: 1.8; opacity: 0.9; }
.blog-post-content ul, .blog-post-content ol { margin: 15px 0 25px 20px; }
.blog-post-content li { margin-bottom: 10px; line-height: 1.7; opacity: 0.85; }
.blog-post-content strong { color: var(--white); font-weight: 600; }
.blog-post-content blockquote {
	margin: 30px 0; padding: 20px 25px; border-left: 4px solid var(--red-primary);
	background: rgba(26,39,81,0.5); border-radius: 0 8px 8px 0; font-style: italic;
}
.blog-post-content a { color: var(--blue-accent); }
.blog-post-content a:hover { color: var(--white); }
.blog-post-content img { border-radius: 8px; margin: 25px 0; }

/* Sidebar */
.sidebar-widget { margin-bottom: 35px; }
.sidebar-widget h4 {
	font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 15px;
	padding-bottom: 10px; border-bottom: 2px solid rgba(255,255,255,0.1);
}
.sidebar-widget ul { list-style: none; }
.sidebar-widget li a {
	display: block; padding: 8px 0; color: rgba(255,255,255,0.65); font-size: 0.9rem;
	border-bottom: 1px solid rgba(255,255,255,0.04);
	transition: color var(--transition), padding-left var(--transition);
}
.sidebar-widget li a:hover { color: var(--white); padding-left: 5px; }
.sidebar-widget p { font-size: 0.9rem; opacity: 0.6; }

/* ============================================================
   HIGHLIGHT BOXES (about page)
   ============================================================ */
.highlight-box {
	background: rgba(26,45,74,0.6); backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.08); border-radius: 8px;
	padding: 30px; margin-bottom: 25px;
}
.highlight-box h4 { margin-bottom: 18px; }
.highlight-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 0.95rem; opacity: 0.9; }
.highlight-item svg { flex-shrink: 0; margin-top: 2px; color: var(--red-primary); }
.highlight-box--cta { background: var(--blue-primary); border-color: rgba(59,125,221,0.2); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 16px 36px; font-family: 'Montserrat', sans-serif;
	font-size: 1rem; font-weight: 600; letter-spacing: 1px;
	text-decoration: none; border-radius: 4px; transition: all 0.3s ease;
	cursor: pointer; border: none;
}
.btn-primary { background: var(--red-primary); color: var(--white); }
.btn-primary:hover { background: var(--red-light); color: var(--white); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(169,29,58,0.4); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); color: var(--white); }
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { position: relative; padding: 80px 20px; text-align: center; overflow: hidden; background: var(--blue-primary); }
.cta-banner .section-content { position: relative; z-index: 10; }
.cta-banner .section-title { margin-bottom: 15px; }
.cta-banner p { font-size: 1.1rem; opacity: 0.8; max-width: 600px; margin: 0 auto 25px; }
.cta-phone { margin-bottom: 20px; }
.cta-phone a { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; letter-spacing: 3px; color: var(--white); }
.cta-phone a:hover { color: var(--red-light); }

/* Contact card */
.contact-card {
	background: rgba(26,45,74,0.9); backdrop-filter: blur(20px);
	border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
	padding: 40px 30px; max-width: 500px; margin: 40px auto 0;
}
.contact-phone { display: flex; flex-direction: column; align-items: center; gap: 15px; margin-bottom: 30px; }
.contact-phone a { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; letter-spacing: 3px; color: var(--white); }
.contact-phone a:hover { color: var(--red-primary); }
.contact-phone span { font-size: 0.9rem; opacity: 0.7; letter-spacing: 2px; }
.contact-details { display: flex; flex-direction: column; gap: 15px; }
.contact-item { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 1rem; opacity: 0.9; }
.contact-item svg { width: 20px; height: 20px; color: var(--red-primary); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--blue-dark); color: rgba(255,255,255,0.65); padding-top: 60px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 15px; color: rgba(255,255,255,0.4); }
.footer-heading { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 2px; color: var(--white); margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.45); font-size: 0.88rem; }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; opacity: 0.5; }
.footer-contact-item a { color: rgba(255,255,255,0.45); }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
	background: var(--chrome-dark); padding: 20px; text-align: center;
	font-size: 0.82rem; color: rgba(0,0,0,0.6);
}
.footer-bottom a { color: rgba(0,0,0,0.6); }
.footer-bottom a:hover { color: rgba(0,0,0,0.9); }

.footer-logo-block { display: flex; align-items: center; gap: 10px; }
.footer-logo-block img { height: 45px; width: auto; }

@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.slide-up { opacity: 0; transform: translateY(40px); transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.slide-up.active { opacity: 1; transform: translateY(0); }

.reveal { opacity: 0; transform: scale(0.95); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.active { opacity: 1; transform: scale(1); }

.stagger-children > * { opacity: 0; transform: translateY(20px); transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.stagger-children.active > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.active > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.active > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-children.active > * { opacity: 1; transform: translateY(0); }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible, .fade-in.active { opacity: 1; transform: translateY(0); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a, .pagination span {
	display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px; border-radius: 4px;
	font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 1px;
	color: rgba(255,255,255,0.6); background: rgba(26,45,74,0.5);
	border: 1px solid rgba(255,255,255,0.08); transition: all var(--transition);
}
.pagination a:hover { background: var(--red-primary); color: var(--white); border-color: var(--red-primary); }
.pagination .current { background: var(--red-primary); color: var(--white); border-color: var(--red-primary); }

/* ============================================================
   CAREERS PAGES
   ============================================================ */
.careers-list { display: flex; flex-direction: column; gap: 25px; }
.career-card { padding: 30px !important; }
.career-card h3 { font-size: 1.3rem; }
.career-card-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 10px; }
.career-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.career-tag {
	display: inline-block; padding: 4px 12px; font-size: 0.75rem; letter-spacing: 1px;
	text-transform: uppercase; border-radius: 20px; font-weight: 600;
	background: rgba(59,125,221,0.15); color: var(--blue-accent); border: 1px solid rgba(59,125,221,0.3);
}
.career-highlights {
	list-style: none; padding: 0; margin: 0;
}
.career-highlights li {
	position: relative; padding-left: 20px; margin-bottom: 8px;
	font-size: 0.95rem; opacity: 0.85; line-height: 1.5;
}
.career-highlights li::before {
	content: ''; position: absolute; left: 0; top: 8px;
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--red-primary);
}

/* Job detail page layout */
.job-detail-layout {
	display: grid; grid-template-columns: 1fr 320px; gap: 50px; align-items: start;
}
@media (max-width: 900px) {
	.job-detail-layout { grid-template-columns: 1fr; }
	.job-sidebar { order: -1; }
	.job-sidebar-card { position: static; }
}
.job-sidebar { position: sticky; top: 100px; }
.job-sidebar-card { padding: 25px !important; }
.job-sidebar-row {
	display: flex; justify-content: space-between; align-items: baseline;
	padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
	font-size: 0.9rem;
}
.job-sidebar-row:last-of-type { border-bottom: none; }
.job-sidebar-label {
	font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px;
	opacity: 0.5; font-weight: 600;
}

/* Job content typography */
.job-content h2 {
	font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 2px;
	margin: 35px 0 15px; color: var(--white);
}
.job-content h2:first-child { margin-top: 0; }
.job-content ul {
	list-style: none; padding: 0; margin: 0 0 20px;
}
.job-content ul li {
	position: relative; padding-left: 20px; margin-bottom: 10px;
	font-size: 0.95rem; opacity: 0.85; line-height: 1.6;
}
.job-content ul li::before {
	content: ''; position: absolute; left: 0; top: 9px;
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--red-primary);
}

/* Mobile footer padding for contact bar */
@media (max-width: 1023px) { .footer-bottom { padding-bottom: 80px; } }