/*
 * Custom Styling for SEOPals Website
 * Under Astra Child Theme
 */

:root {
	--primary-color: #0c1a30;
	--primary-light: #162a4a;
	--primary-dark: #07101e;
	--accent-color: #bcfc04; /* Energetic Lime Green */
	--accent-hover: #9ad203;
	--accent-text: #0c1a30;
	--text-dark: #1e293b;
	--text-light: #ffffff;
	--text-muted: #64748b;
	--text-muted-light: #94a3b8;
	--bg-light: #f8fafc;
	--bg-white: #ffffff;
	--border-color: #e2e8f0;
	--border-focus: #bcfc04;
	--font-primary: 'Inter', sans-serif;
	--font-heading: 'Outfit', sans-serif;
	--transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Global & Reset Override */
body {
	font-family: var(--font-primary);
	color: var(--text-dark);
	background-color: var(--bg-white);
	margin: 0;
	padding: 0;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	color: var(--primary-color);
	font-weight: 700;
	margin-top: 0;
}

/* Ensure headings in dark sections are white */
.home-hero h1,
.inner-hero h1,
.inner-hero-title,
.cta-bar-title,
.contact-details-title,
.contact-sidebar-social h4,
.footer-col-title {
	color: var(--text-light);
}

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition-smooth);
}

.site-content {
	padding: 0 !important; /* Ensure our custom templates are full-width */
}

/* Utility Components */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.section-padding {
	padding: 100px 0;
}

.section-bg-light {
	background-color: var(--bg-light);
}

.section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 60px auto;
}

.section-tag {
	display: inline-block;
	color: #3b82f6;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 12px;
}

.section-title {
	font-size: 36px;
	line-height: 1.25;
	margin-bottom: 16px;
}

.section-subtitle {
	color: var(--text-muted);
	font-size: 18px;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 15px;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	transition: var(--transition-smooth);
}

.btn-primary {
	background-color: var(--accent-color);
	color: var(--accent-text);
}

.btn-primary:hover {
	background-color: var(--accent-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(188, 252, 4, 0.3);
}

.btn-secondary {
	background-color: var(--primary-color);
	color: var(--text-light);
}

.btn-secondary:hover {
	background-color: var(--primary-light);
	transform: translateY(-2px);
}

.btn-outline {
	background-color: transparent;
	border: 2px solid var(--border-color);
	color: var(--primary-color);
}

.btn-outline:hover {
	border-color: var(--primary-color);
	background-color: var(--primary-color);
	color: var(--text-light);
}

/* --- HEADER STYLING --- */
.top-bar {
	background-color: #091322;
	color: var(--text-light);
	font-size: 12px;
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.partner-badge {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--accent-color);
	font-weight: 600;
	letter-spacing: 0.5px;
}

.top-bar-right {
	display: flex;
	gap: 20px;
}

.top-bar-link {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--text-muted-light);
}

.top-bar-link:hover {
	color: var(--accent-color);
}

.site-header {
	background-color: var(--primary-color);
	color: var(--text-light);
	padding: 16px 0;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: var(--shadow-md);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.seopals-logo {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.logo-main {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 26px;
	color: var(--text-light);
	letter-spacing: -0.5px;
}

.logo-accent {
	color: var(--accent-color);
}

.logo-sub {
	font-size: 8px;
	letter-spacing: 2px;
	color: var(--text-muted-light);
	margin-top: 3px;
	font-weight: 600;
}

.main-navigation .nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 32px;
}

.main-navigation .menu-item a {
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: 15px;
	color: var(--text-muted-light);
	padding: 8px 0;
	position: relative;
}

.main-navigation .menu-item a:hover,
.main-navigation .menu-item.current-menu-item a {
	color: var(--text-light);
}

.main-navigation .menu-item.current-menu-item a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #3b82f6; /* Matching Contact active border in mockup */
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 24px;
}

.header-phone {
	color: var(--text-light);
	font-weight: 600;
	font-size: 15px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.header-phone:hover {
	color: var(--accent-color);
}

.btn-header {
	padding: 8px 20px;
	font-size: 14px;
}

/* Mobile Menu Elements */
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}

.hamburger-bar {
	display: block;
	width: 25px;
	height: 2px;
	background-color: var(--text-light);
	transition: var(--transition-smooth);
}

/* Mobile Navigation Drawer */
.mobile-navigation-drawer {
	position: fixed;
	top: 0;
	right: -320px;
	width: 300px;
	height: 100vh;
	background-color: var(--primary-dark);
	z-index: 1000;
	box-shadow: -5px 0 25px rgba(0,0,0,0.5);
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 40px;
	transition: var(--transition-smooth);
	box-sizing: border-box;
}

.mobile-navigation-drawer.open {
	right: 0;
}

.mobile-drawer-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.drawer-close {
	background: none;
	border: none;
	color: var(--text-light);
	font-size: 36px;
	cursor: pointer;
	line-height: 1;
}

.mobile-nav-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.mobile-nav-menu .menu-item a {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 500;
	color: var(--text-muted-light);
	display: block;
	padding: 8px 0;
}

.mobile-nav-menu .menu-item.current-menu-item a,
.mobile-nav-menu .menu-item a:hover {
	color: var(--accent-color);
}

.mobile-drawer-actions {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.mobile-phone-link {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--text-light);
	font-weight: 600;
	font-size: 18px;
}

.btn-mobile-drawer {
	width: 100%;
}

/* --- FOOTER STYLING --- */
.site-footer {
	background-color: var(--primary-dark);
	color: var(--text-light);
	padding-top: 80px;
	border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-columns {
	display: grid;
	grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr 1.2fr;
	gap: 40px;
	margin-bottom: 60px;
}

.footer-logo .logo-main {
	font-size: 28px;
}

.footer-description {
	color: var(--text-muted-light);
	font-size: 14px;
	margin-top: 20px;
	margin-bottom: 24px;
	line-height: 1.6;
}

.footer-social-links {
	display: flex;
	gap: 12px;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background-color: rgba(255,255,255,0.05);
	border-radius: 4px;
	color: var(--text-muted-light);
	font-size: 16px;
}

.social-link:hover {
	background-color: var(--accent-color);
	color: var(--primary-color);
	transform: translateY(-2px);
}

.footer-col-title {
	color: var(--text-light);
	font-size: 16px;
	margin-bottom: 24px;
	position: relative;
	padding-bottom: 8px;
}

.footer-col-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background-color: var(--accent-color);
}

.footer-links-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-links-list a {
	color: var(--text-muted-light);
	font-size: 14px;
}

.footer-links-list a:hover {
	color: var(--accent-color);
	padding-left: 4px;
}

.footer-quote-section {
	background-color: #060b14;
	padding: 24px 0;
	border-top: 1px solid rgba(255,255,255,0.03);
	border-bottom: 1px solid rgba(255,255,255,0.03);
	text-align: center;
}

.footer-quote-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-quote {
	color: var(--text-muted-light);
	font-style: italic;
	font-size: 14px;
	margin: 0;
	line-height: 1.6;
}

.footer-bottom {
	padding: 24px 0;
	font-size: 13px;
	color: var(--text-muted-light);
}

.footer-bottom-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-bottom-links {
	display: flex;
	gap: 24px;
}

.footer-bottom-links a:hover {
	color: var(--accent-color);
}


/* --- HOME PAGE TEMPLATE STYLING --- */

/* Hero Section */
.home-hero {
	background-color: var(--primary-color);
	background-image: linear-gradient(rgba(12, 26, 48, 0.88), rgba(12, 26, 48, 0.88)), url('images/hero-home-bg.png');
	background-size: cover;
	background-position: center;
	color: var(--text-light);
	position: relative;
	overflow: hidden;
	padding: 100px 0 80px 0;
}

.home-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
	            radial-gradient(circle at 20% 80%, rgba(188, 252, 4, 0.08) 0%, transparent 50%);
	z-index: 1;
}

.home-hero .container {
	position: relative;
	z-index: 2;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 60px;
	align-items: center;
}

.hero-tagline {
	font-size: 48px;
	line-height: 1.15;
	margin-bottom: 20px;
	letter-spacing: -1px;
}

.hero-tagline .accent-text {
	color: var(--accent-color);
}

.hero-description {
	font-size: 18px;
	color: var(--text-muted-light);
	margin-bottom: 40px;
	line-height: 1.6;
	max-width: 550px;
}

.hero-stats-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.hero-stat-card {
	border-left: 3px solid var(--accent-color);
	padding-left: 16px;
}

.hero-stat-num {
	font-size: 32px;
	font-family: var(--font-heading);
	font-weight: 800;
	color: var(--accent-color);
	line-height: 1;
	margin-bottom: 6px;
}

.hero-stat-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-muted-light);
	font-weight: 600;
}

/* Roadmap Box */
.roadmap-box {
	background-color: var(--bg-white);
	border-radius: 8px;
	padding: 40px;
	box-shadow: var(--shadow-xl);
	color: var(--text-dark);
}

.roadmap-box-title {
	font-size: 24px;
	margin-bottom: 8px;
	text-align: center;
}

.roadmap-box-subtitle {
	color: var(--text-muted);
	font-size: 14px;
	text-align: center;
	margin-bottom: 24px;
}

.roadmap-bullets {
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.roadmap-bullets li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 500;
}

.roadmap-bullets li i {
	color: var(--accent-hover);
	font-size: 16px;
}

/* Trust Logos Bar */
.trust-logos-bar {
	background-color: #091322;
	padding: 30px 0;
	border-top: 1px solid rgba(255,255,255,0.05);
	border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trust-logos-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;
}

.trust-logo-item {
	color: var(--text-muted-light);
	opacity: 0.6;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 18px;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: var(--transition-smooth);
}

.trust-logo-item:hover {
	opacity: 1;
	color: var(--text-light);
}

/* Logo Cloud Section */
.logo-cloud-section {
	padding: 60px 0;
	border-bottom: 1px solid var(--border-color);
	background-color: var(--bg-light);
}

.logo-cloud-flex {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	gap: 40px;
}

.partner-logo {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 20px;
	color: var(--text-muted);
	opacity: 0.6;
	transition: var(--transition-smooth);
}

.partner-logo:hover {
	opacity: 1;
	color: var(--primary-color);
}

/* Core Services Section */
.core-services-section {
	padding: 80px 0;
}

.core-services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.core-service-card {
	background-color: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	padding: 32px;
	transition: var(--transition-smooth);
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.core-service-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
	border-color: rgba(59, 130, 246, 0.3);
}

.core-card-icon {
	width: 50px;
	height: 50px;
	background-color: rgba(59, 130, 246, 0.1);
	color: #3b82f6;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.core-card-title {
	font-size: 18px;
	margin: 0;
}

.core-card-desc {
	color: var(--text-muted);
	font-size: 14px;
	margin: 0;
}

/* How We Dominate Section */
.dominate-section {
	padding: 100px 0;
}

.dominate-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 80px;
	align-items: center;
}

.dominate-image-wrapper {
	position: relative;
}

.dominate-image {
	width: 100%;
	border-radius: 8px;
	box-shadow: var(--shadow-xl);
	display: block;
}

.dominate-image-overlay {
	position: absolute;
	bottom: -30px;
	right: -30px;
	background-color: var(--primary-color);
	color: var(--text-light);
	padding: 24px 30px;
	border-radius: 8px;
	box-shadow: var(--shadow-lg);
	border-left: 4px solid var(--accent-color);
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.overlay-number {
	font-size: 28px;
	font-weight: 800;
	color: var(--accent-color);
	line-height: 1;
}

.overlay-label {
	font-size: 12px;
	color: var(--text-muted-light);
	font-weight: 600;
}

.dominate-bullets {
	list-style: none;
	padding: 0;
	margin: 30px 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.dominate-bullets li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-weight: 500;
}

.dominate-bullets li i {
	color: #3b82f6;
	font-size: 18px;
	margin-top: 3px;
}

/* CTA Bar */
.cta-bar {
	background-color: #0e306c;
	color: var(--text-light);
	padding: 50px 0;
	position: relative;
	overflow: hidden;
}

.cta-bar-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cta-bar-title {
	font-size: 28px;
	color: var(--text-light);
	margin: 0;
}

/* Our Services Include Section */
.services-include-section {
	padding: 100px 0;
}

.services-include-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 50px;
}

.service-include-card {
	background-color: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	padding: 40px;
	transition: var(--transition-smooth);
	display: flex;
	flex-direction: column;
	gap: 20px;
	box-shadow: var(--shadow-sm);
}

.service-include-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
}

.service-inc-icon {
	width: 60px;
	height: 60px;
	background-color: rgba(59, 130, 246, 0.08);
	color: #3b82f6;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}

.service-inc-title {
	font-size: 20px;
	margin: 0;
}

.service-inc-desc {
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.6;
}

.service-inc-link {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 14px;
	color: #3b82f6;
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.service-inc-link:hover {
	color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
	padding: 100px 0;
	background-color: var(--bg-light);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.testimonial-card {
	background-color: var(--bg-white);
	border-radius: 8px;
	padding: 40px;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	gap: 24px;
	border: 1px solid var(--border-color);
}

.testimonial-stars {
	color: #f59e0b;
	display: flex;
	gap: 4px;
}

.testimonial-quote {
	color: var(--text-dark);
	font-size: 15px;
	line-height: 1.6;
	font-style: italic;
	margin: 0;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: auto;
}

.author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.author-info {
	display: flex;
	flex-direction: column;
}

.author-name {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 16px;
	color: var(--primary-color);
}

.author-role {
	font-size: 12px;
	color: var(--text-muted);
}

/* Stats Counter Section */
.stats-counter-section {
	background-color: var(--primary-color);
	color: var(--text-light);
	padding: 80px 0;
	position: relative;
}

.stats-counter-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	text-align: center;
}

.stat-counter-card {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.stat-counter-num {
	font-size: 54px;
	font-weight: 800;
	font-family: var(--font-heading);
	color: var(--accent-color);
	line-height: 1;
}

.stat-counter-label {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.5px;
	color: var(--text-muted-light);
	text-transform: uppercase;
}

/* Blueprint Section */
.blueprint-section {
	padding: 100px 0;
}

.blueprint-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.blueprint-step-card {
	position: relative;
	background-color: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	padding: 32px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: var(--transition-smooth);
}

.blueprint-step-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
	border-color: rgba(59, 130, 246, 0.2);
}

.blueprint-step-num {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 40px;
	background-color: var(--primary-color);
	color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 16px;
	border: 3px solid var(--bg-white);
	box-shadow: var(--shadow-md);
}

.blueprint-step-icon {
	font-size: 28px;
	color: #3b82f6;
	margin-top: 10px;
}

.blueprint-step-title {
	font-size: 18px;
	margin: 0;
}

.blueprint-step-desc {
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
}

/* Alternate Rows Section */
.alternate-row-section {
	padding: 100px 0;
}

.alternate-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 80px;
	align-items: center;
	margin-bottom: 100px;
}

.alternate-row:last-child {
	margin-bottom: 0;
}

.alternate-image-wrapper {
	box-shadow: var(--shadow-xl);
	border-radius: 8px;
	overflow: hidden;
}

.alternate-image {
	width: 100%;
	display: block;
	transition: var(--transition-smooth);
}

.alternate-image-wrapper:hover .alternate-image {
	transform: scale(1.03);
}

.alternate-content-bullets {
	list-style: none;
	padding: 0;
	margin: 24px 0 32px 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.alternate-content-bullets li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	font-weight: 500;
}

.alternate-content-bullets li i {
	color: #10b981;
	margin-top: 4px;
}

/* FAQ Accordion Section */
.faq-section {
	padding: 100px 0;
	background-color: var(--bg-light);
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-item {
	background-color: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 6px;
	overflow: hidden;
	transition: var(--transition-smooth);
}

.faq-question-btn {
	width: 100%;
	background: none;
	border: none;
	text-align: left;
	padding: 24px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-color);
	transition: var(--transition-smooth);
}

.faq-question-btn:hover {
	background-color: rgba(59, 130, 246, 0.02);
}

.faq-icon {
	font-size: 16px;
	color: var(--text-muted);
	transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
	max-height: 1000px;
	transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-answer-inner {
	padding: 0 30px 24px 30px;
	color: var(--text-muted);
	font-size: 15px;
	line-height: 1.6;
}

/* Blog / News Section */
.blog-section {
	padding: 100px 0;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.blog-card {
	background-color: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	overflow: hidden;
	transition: var(--transition-smooth);
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow-sm);
}

.blog-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
}

.blog-img-link {
	display: block;
	overflow: hidden;
	height: 220px;
}

.blog-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-smooth);
}

.blog-card:hover .blog-image {
	transform: scale(1.05);
}

.blog-card-content {
	padding: 30px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	flex-grow: 1;
}

.blog-card-tag {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	color: #3b82f6;
	letter-spacing: 1px;
}

.blog-card-title {
	font-size: 20px;
	margin: 0;
	line-height: 1.4;
}

.blog-card-title a:hover {
	color: #3b82f6;
}

.blog-card-desc {
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

.blog-card-link {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 14px;
	color: #3b82f6;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
}

.blog-card-link:hover {
	color: var(--primary-color);
}

/* Homepage Form CTA Section */
.bottom-form-cta {
	padding: 100px 0;
	background-color: #f1f5f9;
}

.bottom-form-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 80px;
	align-items: center;
}

.bottom-form-tag {
	color: #3b82f6;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1.5px;
	margin-bottom: 12px;
	display: inline-block;
}

.bottom-form-title {
	font-size: 40px;
	line-height: 1.2;
	margin-bottom: 20px;
}

.bottom-form-desc {
	color: var(--text-muted);
	font-size: 16px;
	margin-bottom: 32px;
	line-height: 1.6;
}

.bottom-form-bullets {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.bottom-form-bullets li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	font-weight: 600;
}

.bottom-form-bullets li i {
	color: #10b981;
	font-size: 18px;
}

/* Forms general */
.proposal-form-box {
	background-color: var(--bg-white);
	padding: 40px;
	border-radius: 8px;
	box-shadow: var(--shadow-xl);
	border: 1px solid var(--border-color);
}

.proposal-form-title {
	font-size: 24px;
	margin-bottom: 24px;
	text-align: center;
}

.form-group-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 20px;
}

.form-group {
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-dark);
}

.form-control {
	width: 100%;
	padding: 12px 16px;
	background-color: #f8fafc;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	font-family: var(--font-primary);
	font-size: 14px;
	color: var(--text-dark);
	box-sizing: border-box;
	transition: var(--transition-smooth);
}

.form-control:focus {
	outline: none;
	border-color: #3b82f6;
	background-color: var(--bg-white);
	box-shadow: 0 0 0 3px rgba(59, 130, 24px, 0.1);
}

textarea.form-control {
	resize: vertical;
	min-height: 120px;
}

select.form-control {
	appearance: none;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 16px;
	padding-right: 40px;
}

.btn-form-submit {
	width: 100%;
	padding: 14px;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
	background-color: var(--accent-color);
	color: var(--accent-text);
}

.btn-form-submit:hover {
	background-color: var(--accent-hover);
}


/* --- CONTACT US PAGE STYLING --- */

/* --- INNER PAGES HERO & CARD STYLING --- */

/* Shared Inner Page Hero */
.inner-hero {
	background-color: var(--primary-color);
	background-image: linear-gradient(rgba(12, 26, 48, 0.88), rgba(12, 26, 48, 0.88)), url('images/hero-contact-bg.png');
	background-size: cover;
	background-position: center;
	color: var(--text-light);
	padding: 80px 0;
	position: relative;
	text-align: center;
	overflow: hidden;
}

.inner-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
	z-index: 1;
}

.inner-hero .container {
	position: relative;
	z-index: 2;
}

.inner-hero-title {
	font-size: 48px;
	line-height: 1.15;
	margin-bottom: 20px;
	letter-spacing: -1px;
}

.inner-hero-title .accent-text {
	color: var(--accent-color);
}

.inner-hero-desc {
	font-size: 18px;
	color: var(--text-muted-light);
	max-width: 650px;
	margin: 0 auto 30px auto;
	line-height: 1.6;
}

/* Pricing Layout for Services Page */
.pricing-section {
	padding: 100px 0;
	background-color: var(--bg-light);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.pricing-card {
	background-color: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	padding: 40px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 24px;
	transition: var(--transition-smooth);
	box-shadow: var(--shadow-sm);
	position: relative;
}

.pricing-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
	border: 2px solid var(--accent-hover);
}

.pricing-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--primary-color);
	color: var(--accent-color);
	padding: 4px 16px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: var(--shadow-md);
}

.pricing-card-title {
	font-size: 20px;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.pricing-price {
	font-family: var(--font-heading);
	font-size: 48px;
	font-weight: 800;
	color: var(--primary-color);
	line-height: 1;
}

.pricing-price span {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-muted);
}

.pricing-features {
	list-style: none;
	padding: 0;
	margin: 20px 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	text-align: left;
}

.pricing-features li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-dark);
}

.pricing-btn {
	width: 100%;
	margin-top: auto;
}

.breadcrumbs {
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 500;
	color: var(--text-muted-light);
}

.breadcrumbs a {
	color: var(--text-muted-light);
}

.breadcrumbs a:hover {
	color: var(--accent-color);
}

.breadcrumbs .separator {
	margin: 0 8px;
}

.breadcrumbs .current {
	color: var(--text-light);
}

/* Contact Form Grid */
.contact-form-section {
	padding: 100px 0;
}

.contact-form-grid {
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	gap: 60px;
	align-items: start;
}

.contact-form-intro h2 {
	font-size: 32px;
	margin-bottom: 12px;
}

.contact-form-intro p {
	color: var(--text-muted);
	font-size: 15px;
	margin-bottom: 40px;
	line-height: 1.6;
}

/* Form Styling tweaks for Contact form */
.contact-form-wrapper {
	background-color: var(--bg-white);
}

/* Contact Details Sidebar Box */
.contact-details-box {
	background-color: #0b1a30;
	color: var(--text-light);
	border-radius: 8px;
	padding: 40px;
	box-shadow: var(--shadow-xl);
}

.contact-details-title {
	color: var(--text-light);
	font-size: 24px;
	margin-bottom: 12px;
}

.contact-details-desc {
	color: var(--text-muted-light);
	font-size: 14px;
	margin-bottom: 36px;
	line-height: 1.6;
}

.contact-detail-items {
	display: flex;
	flex-direction: column;
	gap: 28px;
	margin-bottom: 40px;
}

.contact-detail-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.contact-detail-icon {
	width: 44px;
	height: 44px;
	background-color: rgba(255,255,255,0.05);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: var(--accent-color);
	flex-shrink: 0;
}

.contact-detail-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.contact-detail-label {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-muted-light);
	font-weight: 700;
}

.contact-detail-value {
	font-size: 15px;
	font-weight: 600;
}

.contact-detail-value a:hover {
	color: var(--accent-color);
}

.contact-detail-value .subtext {
	display: block;
	font-size: 12px;
	color: var(--text-muted-light);
	font-weight: 400;
	margin-top: 2px;
}

.contact-sidebar-social h4 {
	color: var(--text-light);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 16px;
}

.contact-sidebar-social .social-links {
	display: flex;
	gap: 12px;
}

.contact-sidebar-social .social-link {
	background-color: rgba(255,255,255,0.05);
	color: var(--text-light);
}

.contact-sidebar-social .social-link:hover {
	background-color: var(--accent-color);
	color: var(--primary-color);
}

/* Three Values Cards below Form */
.values-section {
	padding: 80px 0;
	background-color: var(--bg-light);
	border-top: 1px solid var(--border-color);
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.value-card {
	background-color: var(--bg-white);
	border-radius: 8px;
	padding: 40px;
	text-align: center;
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.value-icon {
	width: 60px;
	height: 60px;
	background-color: rgba(59, 130, 246, 0.08);
	color: #3b82f6;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}

.value-title {
	font-size: 20px;
	margin: 0;
}

.value-desc {
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

/* Form Response Messages */
.form-response {
	margin-top: 20px;
	padding: 16px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	display: none;
}

.form-response.success {
	background-color: #ecfdf5;
	border: 1px solid #a7f3d0;
	color: #065f46;
	display: block;
}

.form-response.error {
	background-color: #fef2f2;
	border: 1px solid #fca5a5;
	color: #991b1b;
	display: block;
}

.spinner {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(12, 26, 48, 0.3);
	border-radius: 50%;
	border-top-color: var(--accent-text);
	animation: spin 1s ease-in-out infinite;
	margin-right: 8px;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
	.hero-grid,
	.dominate-grid,
	.bottom-form-grid,
	.contact-form-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.core-services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.services-include-grid,
	.testimonials-grid,
	.blueprint-grid,
	.blog-grid,
	.values-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.stats-counter-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}

	.footer-columns {
		grid-template-columns: 2fr 1.5fr 1.5fr;
	}

	.alternate-row {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.alternate-row:nth-child(even) .alternate-image-wrapper {
		order: 2;
	}
}

@media (max-width: 768px) {
	.top-bar {
		display: none; /* Hide top bar on mobile */
	}

	.site-header {
		padding: 12px 0;
	}

	.main-navigation,
	.header-actions {
		display: none;
	}

	.menu-toggle {
		display: flex;
	}

	.hero-tagline {
		font-size: 36px;
	}

	.contact-hero-title {
		font-size: 36px;
	}

	.bottom-form-title {
		font-size: 32px;
	}

	.section-title {
		font-size: 28px;
	}

	.core-services-grid,
	.services-include-grid,
	.testimonials-grid,
	.blueprint-grid,
	.blog-grid,
	.values-grid {
		grid-template-columns: 1fr;
	}

	.footer-columns {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.footer-bottom-container {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}
}
