/*
Theme Name: FileCare
Theme URI: https://filecare.online
Author: AHAL
Author URI: https://filecare.online
Description: A professional, modern WordPress theme for FileCare - the all-in-one cloud platform for file management, document conversion, and scanning. Features a dark theme with green accents, responsive design, smooth animations, and multiple landing page sections.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: filecare
Tags: one-column, custom-menu, featured-images, threaded-comments, translation-ready, blog, custom-logo
*/

/* ========================================
   CSS VARIABLES & RESET
   ======================================== */
:root {
	--fc-primary: #4CAF50;
	--fc-primary-dark: #388E3C;
	--fc-primary-darker: #2E7D32;
	--fc-primary-light: #81C784;
	--fc-primary-glow: rgba(76, 175, 80, 0.3);
	--fc-bg-dark: #0B1120;
	--fc-bg-card: #111827;
	--fc-bg-card-hover: #1a2332;
	--fc-border: rgba(255, 255, 255, 0.1);
	--fc-border-hover: rgba(76, 175, 80, 0.3);
	--fc-text-white: #F8FAFC;
	--fc-text-slate: #94A3B8;
	--fc-text-muted: #64748B;
	--fc-text-green: #4ADE80;
	--fc-gradient-green: linear-gradient(135deg, #4CAF50, #81C784);
	--fc-font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	--fc-radius: 0.75rem;
	--fc-transition: all 0.3s ease;
}

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

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--fc-font-sans);
	background-color: var(--fc-bg-dark);
	color: var(--fc-text-white);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

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

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

ul, ol {
	list-style: none;
}

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

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

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1rem;
}

@media (min-width: 640px) {
	.container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
	.container { padding: 0 2rem; }
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.section-badge {
	display: inline-block;
	border-radius: 9999px;
	border: 1px solid rgba(76, 175, 80, 0.2);
	background: rgba(76, 175, 80, 0.1);
	padding: 0.375rem 1rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--fc-text-green);
	margin-bottom: 1rem;
}

.section-title {
	font-size: 1.875rem;
	font-weight: 700;
	color: var(--fc-text-white);
	letter-spacing: -0.025em;
	margin-top: 1rem;
}

@media (min-width: 640px) {
	.section-title { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
	.section-title { font-size: 3rem; }
}

.section-subtitle {
	max-width: 42rem;
	margin: 1rem auto 0;
	font-size: 1.125rem;
	color: var(--fc-text-slate);
	line-height: 1.75;
}

.text-center { text-align: center; }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 2rem;
	border-radius: 9999px;
	font-size: 1rem;
	font-weight: 600;
	transition: var(--fc-transition);
	white-space: nowrap;
}

.btn-primary {
	background: var(--fc-primary);
	color: #fff;
}
.btn-primary:hover {
	background: var(--fc-primary-dark);
	transform: translateY(-1px);
	box-shadow: 0 4px 20px var(--fc-primary-glow);
}

.btn-outline {
	background: transparent;
	color: var(--fc-text-white);
	border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
}

.btn-sm {
	padding: 0.625rem 1.5rem;
	font-size: 0.875rem;
}

.btn-full { width: 100%; }

/* ========================================
   NAVIGATION
   ======================================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: var(--fc-transition);
	padding: 0.75rem 0;
}

.site-header.scrolled {
	background: rgba(11, 17, 32, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-logo img {
	height: 32px;
	width: auto;
}

.nav-menu {
	display: none;
	align-items: center;
	gap: 0.25rem;
}

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

.nav-menu a {
	padding: 0.5rem 0.75rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: #CBD5E1;
	border-radius: 0.375rem;
	transition: var(--fc-transition);
	position: relative;
}
.nav-menu a:hover,
.nav-menu a.active {
	color: var(--fc-text-green);
}
.nav-menu a.active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1.25rem;
	height: 2px;
	background: var(--fc-text-green);
	border-radius: 9999px;
}

.nav-cta-desktop {
	display: none;
}
@media (min-width: 1024px) {
	.nav-cta-desktop { display: inline-flex; }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: #fff;
	border-radius: 0.375rem;
	transition: var(--fc-transition);
}
.mobile-menu-toggle:hover {
	background: rgba(255, 255, 255, 0.1);
}
@media (min-width: 1024px) {
	.mobile-menu-toggle { display: none; }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
	position: fixed;
	inset: 0;
	z-index: 1001;
	background: rgba(11, 17, 32, 0.98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.3s ease;
}
.mobile-menu-overlay.open {
	transform: translateX(0);
}

.mobile-menu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.5rem;
	border-bottom: 1px solid var(--fc-border);
}

.mobile-menu-header .site-title-text {
	font-size: 1.125rem;
	font-weight: 700;
	color: #fff;
}

.mobile-menu-close {
	padding: 0.5rem;
	color: #CBD5E1;
	border-radius: 0.375rem;
	transition: var(--fc-transition);
}
.mobile-menu-close:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.mobile-menu-nav {
	flex: 1;
	overflow-y: auto;
	padding: 1.5rem;
}

.mobile-menu-nav a {
	display: block;
	padding: 0.75rem 1rem;
	font-size: 1.125rem;
	font-weight: 500;
	color: #CBD5E1;
	border-radius: 0.5rem;
	margin-bottom: 0.25rem;
	transition: var(--fc-transition);
}
.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
	background: rgba(76, 175, 80, 0.1);
	color: var(--fc-text-green);
}

.mobile-menu-footer {
	padding: 1.5rem;
	border-top: 1px solid var(--fc-border);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
	position: relative;
	background: var(--fc-bg-dark);
	padding: 8rem 0 5rem;
	overflow: hidden;
}
@media (min-width: 768px) {
	.hero-section { padding: 11rem 0 8rem; }
}

.hero-bg-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	pointer-events: none;
}
.hero-bg-orb.orb-1 {
	top: 5rem;
	left: 25%;
	width: 24rem;
	height: 24rem;
	background: rgba(76, 175, 80, 0.08);
}
.hero-bg-orb.orb-2 {
	bottom: 0;
	right: 25%;
	width: 20rem;
	height: 20rem;
ackground: rgba(56, 142, 60, 0.08);
}

.hero-content {
	position: relative;
	text-align: center;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	border-radius: 9999px;
	border: 1px solid rgba(76, 175, 80, 0.2);
	background: rgba(76, 175, 80, 0.1);
	padding: 0.375rem 1rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--fc-text-green);
	margin-bottom: 1.5rem;
}
.hero-badge svg {
	width: 0.75rem;
	height: 0.75rem;
}

.hero-title {
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.025em;
	color: #fff;
}
@media (min-width: 640px) {
	.hero-title { font-size: 3rem; }
}
@media (min-width: 768px) {
	.hero-title { font-size: 3.75rem; }
}
@media (min-width: 1024px) {
	.hero-title { font-size: 4.5rem; }
}

.hero-title .gradient-text {
	background: var(--fc-gradient-green);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-description {
	max-width: 42rem;
	margin: 1.5rem auto 0;
	font-size: 1.125rem;
	color: var(--fc-text-slate);
	line-height: 1.75;
}
@media (min-width: 768px) {
	.hero-description { font-size: 1.25rem; }
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin-top: 2.5rem;
}

.hero-ctas .btn {
	padding: 1rem 2rem;
	font-size: 1rem;
}
.hero-ctas .btn svg {
	width: 1.25rem;
	height: 1.25rem;
}

.trust-badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	margin-top: 4rem;
}

.trust-badge-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--fc-text-muted);
}
.trust-badge-item svg {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--fc-primary);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
	background: var(--fc-bg-dark);
	padding: 5rem 0;
}
@media (min-width: 768px) {
	.about-section { padding: 8rem 0; }
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}
@media (min-width: 768px) {
	.stats-grid { grid-template-columns: repeat(4, 1fr); }
}

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

.stat-value {
	font-size: 2rem;
	font-weight: 700;
	color: var(--fc-primary);
}
@media (min-width: 768px) {
	.stat-value { font-size: 2.5rem; }
}

.stat-label {
	font-size: 0.875rem;
	color: var(--fc-text-muted);
	margin-top: 0.25rem;
}

.about-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: 3rem;
}
@media (min-width: 768px) {
	.about-cards { grid-template-columns: repeat(3, 1fr); }
}

.about-card {
	background: var(--fc-bg-card);
	border: 1px solid var(--fc-border);
	border-radius: var(--fc-radius);
	padding: 1.5rem;
	transition: var(--fc-transition);
}
.about-card:hover {
	border-color: var(--fc-border-hover);
}

.about-card-icon {
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.5rem;
	background: rgba(76, 175, 80, 0.1);
	margin-bottom: 1rem;
}
.about-card-icon svg {
	width: 1.5rem;
	height: 1.5rem;
	color: var(--fc-primary);
}

.about-card h3 {
	font-size: 1.125rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.5rem;
}

.about-card p {
	font-size: 0.875rem;
	color: var(--fc-text-slate);
	line-height: 1.6;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
	background: var(--fc-bg-dark);
	padding: 5rem 0;
}
@media (min-width: 768px) {
	.features-section { padding: 8rem 0; }
}

.features-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: 3rem;
}
@media (min-width: 768px) {
	.features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
	background: var(--fc-bg-card);
	border: 1px solid var(--fc-border);
	border-radius: var(--fc-radius);
	padding: 1.5rem;
	transition: var(--fc-transition);
}
.feature-card:hover {
	border-color: var(--fc-border-hover);
	box-shadow: 0 4px 20px rgba(76, 175, 80, 0.05);
}

.feature-step {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--fc-primary);
	margin-bottom: 0.75rem;
}

.feature-card-icon {
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.5rem;
	background: rgba(76, 175, 80, 0.1);
	margin-bottom: 1rem;
}
.feature-card-icon svg {
	width: 1.5rem;
	height: 1.5rem;
	color: var(--fc-primary);
}

.feature-card h3 {
	font-size: 1.125rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.5rem;
}

.feature-card p {
	font-size: 0.875rem;
	color: var(--fc-text-slate);
	line-height: 1.6;
	margin-bottom: 1rem;
}

.feature-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.feature-tag {
	font-size: 0.75rem;
	padding: 0.25rem 0.5rem;
	border-radius: 0.25rem;
	background: rgba(255, 255, 255, 0.05);
	color: var(--fc-text-slate);
}

/* ========================================
   PRODUCT TOUR / HOW IT WORKS
   ======================================== */
.product-tour-section {
	background: linear-gradient(to bottom, var(--fc-bg-dark), #0F172A);
	padding: 5rem 0;
}
@media (min-width: 768px) {
	.product-tour-section { padding: 8rem 0; }
}

.steps-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-top: 3rem;
}
@media (min-width: 768px) {
	.steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.steps-grid { grid-template-columns: repeat(4, 1fr); }
}

.step-card {
	text-align: center;
	position: relative;
}

.step-number {
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--fc-primary);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 700;
	margin: 0 auto 1rem;
}

.step-icon {
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}
.step-icon svg {
	width: 1.5rem;
	height: 1.5rem;
	color: var(--fc-primary);
}

.step-card h3 {
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.5rem;
}

.step-card p {
	font-size: 0.875rem;
	color: var(--fc-text-slate);
	line-height: 1.6;
}

/* Step connector line (desktop) */
@media (min-width: 1024px) {
	.step-card:not(:last-child)::after {
		content: '';
		position: absolute;
		top: 1.25rem;
		left: calc(50% + 2rem);
		width: calc(100% - 4rem);
		height: 2px;
		background: repeating-linear-gradient(to right, rgba(76, 175, 80, 0.3) 0, rgba(76, 175, 80, 0.3) 6px, transparent 6px, transparent 12px);
	}
}

.product-tour-cta {
	text-align: center;
	margin-top: 3rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	align-items: center;
}

.product-tour-cta a.link-text {
	color: var(--fc-text-green);
	font-size: 0.875rem;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}
.product-tour-cta a.link-text:hover {
	text-decoration: underline;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
	background: var(--fc-bg-dark);
	padding: 5rem 0;
}
@media (min-width: 768px) {
	.pricing-section { padding: 8rem 0; }
}

.pricing-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: 3rem;
}
@media (min-width: 768px) {
	.pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.pricing-grid { grid-template-columns: repeat(4, 1fr); }
}

.pricing-card {
	background: var(--fc-bg-card);
	border: 1px solid var(--fc-border);
	border-radius: var(--fc-radius);
	padding: 1.5rem;
	position: relative;
	transition: var(--fc-transition);
}
@media (min-width: 1024px) {
	.pricing-card { padding: 2rem; }
}

.pricing-card.popular {
	border-color: rgba(76, 175, 80, 0.5);
	box-shadow: 0 4px 30px rgba(76, 175, 80, 0.1);
}
@media (min-width: 1024px) {
	.pricing-card.popular {
		transform: scale(1.05);
		z-index: 1;
	}
}

.pricing-badge {
	position: absolute;
	top: -0.75rem;
	left: 50%;
	transform: translateX(-50%);\tborder-radius: 9999px;
	background: var(--fc-primary);
	padding: 0.25rem 1rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
}

.pricing-card h3 {
	font-size: 1.125rem;
	font-weight: 600;
	color: #fff;
}

.pricing-price {
	display: flex;
	align-items: baseline;
	margin-top: 1rem;
}
.pricing-price .amount {
	font-size: 2.25rem;
	font-weight: 700;
	color: #fff;
}
.pricing-price .period {
	font-size: 0.875rem;
	color: var(--fc-text-slate);
	margin-left: 0.25rem;
}

.pricing-features {
	margin-top: 2rem;
	space-y: 0.75rem;
}

.pricing-features li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.375rem 0;
}
.pricing-features li svg {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--fc-primary);
	flex-shrink: 0;
	margin-top: 0.125rem;
}
.pricing-features li span {
	font-size: 0.875rem;
	color: #CBD5E1;
}

.pricing-card .btn {
	margin-top: 2rem;
}

.pricing-card.popular .btn {
	background: var(--fc-primary);
	color: #fff;
}
.pricing-card:not(.popular) .btn {
	background: transparent;
	color: #fff;
	border: 1px solid var(--fc-border);
}
.pricing-card:not(.popular) .btn:hover {
	background: rgba(255, 255, 255, 0.05);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
	background: linear-gradient(to bottom, #0F172A, var(--fc-bg-dark));
	padding: 5rem 0;
}
@media (min-width: 768px) {
	.testimonials-section { padding: 8rem 0; }
}

.testimonials-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: 3rem;
}
@media (min-width: 768px) {
	.testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
	background: var(--fc-bg-card);
	border: 1px solid var(--fc-border);
	border-radius: var(--fc-radius);
	padding: 1.5rem;
}

.testimonial-stars {
	display: flex;
	gap: 0.125rem;
	margin-bottom: 1rem;
}
.testimonial-stars svg {
	width: 1rem;
	height: 1rem;
	color: #FBBF24;
	fill: #FBBF24;
}

.testimonial-text {
	font-size: 0.875rem;
	color: var(--fc-text-slate);
	line-height: 1.7;
	margin-bottom: 1.25rem;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.testimonial-avatar {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: rgba(76, 175, 80, 0.2);
	color: var(--fc-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 700;
	flex-shrink: 0;
}

.testimonial-name {
	font-size: 0.875rem;
	font-weight: 600;
	color: #fff;
}

.testimonial-role {
	font-size: 0.75rem;
	color: var(--fc-text-muted);
}

/* ========================================
   BLOG SECTION
   ======================================== */
.blog-section {
	background: var(--fc-bg-dark);
	padding: 5rem 0;
}
@media (min-width: 768px) {
	.blog-section { padding: 8rem 0; }
}

.blog-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: 3rem;
}
@media (min-width: 768px) {
	.blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
	background: var(--fc-bg-card);
	border: 1px solid var(--fc-border);
	border-radius: var(--fc-radius);
	overflow: hidden;
	transition: var(--fc-transition);
}
.blog-card:hover {
	border-color: var(--fc-border-hover);
}

.blog-card-image {
	height: 12rem;
	background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(56, 142, 60, 0.1));
	display: flex;
	align-items: center;
	justify-content: center;
}
.blog-card-image svg {
	width: 3rem;
	height: 3rem;
	color: var(--fc-primary);
	opacity: 0.6;
}

.blog-card-content {
	padding: 1.5rem;
}

.blog-card-meta {
	font-size: 0.75rem;
	color: var(--fc-text-muted);
	margin-bottom: 0.5rem;
}

.blog-card h3 {
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.5rem;
	transition: var(--fc-transition);
}
.blog-card:hover h3 {
	color: var(--fc-text-green);
}

.blog-card p {
	font-size: 0.875rem;
	color: var(--fc-text-slate);
	line-height: 1.6;
	margin-bottom: 1rem;
}

.blog-read-more {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--fc-text-green);
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}
.blog-read-more svg {
	width: 0.875rem;
	height: 0.875rem;
}
.blog-read-more:hover {
	text-decoration: underline;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
	background: linear-gradient(to bottom, var(--fc-bg-dark), #0F172A);
	padding: 5rem 0;
}
@media (min-width: 768px) {
	.faq-section { padding: 8rem 0; }
}

.faq-list {
	max-width: 48rem;
	margin: 3rem auto 0;
}

.faq-item {
	border: 1px solid var(--fc-border);
	border-radius: var(--fc-radius);
	margin-bottom: 0.75rem;
	overflow: hidden;
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1.5rem;
	font-size: 0.9375rem;
	font-weight: 500;
	color: #fff;
	text-align: left;
	transition: var(--fc-transition);
}
.faq-question:hover {
	color: var(--fc-text-green);
}

.faq-chevron {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--fc-text-green);
	transition: transform 0.3s ease;
	flex-shrink: 0;
	margin-left: 1rem;
}
.faq-item.open .faq-chevron {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
	max-height: 20rem;
}

.faq-answer-inner {
	padding: 0 1.5rem 1.25rem;
	font-size: 0.875rem;
	color: var(--fc-text-slate);
	line-height: 1.75;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
	background: var(--fc-bg-dark);
	padding: 5rem 0;
}
@media (min-width: 768px) {
	.contact-section { padding: 8rem 0; }
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	margin-top: 3rem;
}
@media (min-width: 1024px) {
	.contact-grid { grid-template-columns: repeat(2, 1fr); }
}

.contact-form .form-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}
@media (min-width: 640px) {
	.contact-form .form-row { grid-template-columns: repeat(2, 1fr); }
}

.contact-form .form-group {
	margin-bottom: 1.25rem;
}

.contact-form label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--fc-text-slate);
	margin-bottom: 0.375rem;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	background: var(--fc-bg-card);
	border: 1px solid var(--fc-border);
	border-radius: 0.5rem;
	color: #fff;
	font-size: 0.875rem;
	transition: var(--fc-transition);
	outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: var(--fc-text-muted);
}
.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--fc-primary);
}
.contact-form textarea {
	resize: vertical;
	min-height: 8rem;
}

.contact-info-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-info-card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	background: var(--fc-bg-card);
	border: 1px solid var(--fc-border);
	border-radius: var(--fc-radius);
	padding: 1rem;
}

.contact-info-icon {
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.5rem;
	background: rgba(76, 175, 80, 0.1);
	flex-shrink: 0;
}
.contact-info-icon svg {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--fc-primary);
}

.contact-info-label {
	font-size: 0.875rem;
	color: var(--fc-text-slate);
}

.contact-info-value {
	font-size: 0.9375rem;
	color: #fff;
	margin-top: 0.125rem;
}

.social-links {
	display: flex;
	gap: 0.75rem;
	margin-top: 2rem;
}

.social-links button {
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.5rem;
	border: 1px solid var(--fc-border);
	background: var(--fc-bg-card);
	color: var(--fc-text-slate);
	transition: var(--fc-transition);
}
.social-links button:hover {
	border-color: var(--fc-border-hover);
	color: var(--fc-text-green);
}
.social-links button svg {
	width: 1.25rem;
	height: 1.25rem;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
	background: var(--fc-bg-dark);
	border-top: 1px solid var(--fc-border);
	padding: 4rem 0 2rem;
}

.footer-top {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: flex-start;
	margin-bottom: 3rem;
}
@media (min-width: 768px) {
	.footer-top { flex-direction: row; align-items: center; }
}

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

.footer-tagline {
	font-size: 0.875rem;
	color: var(--fc-text-slate);
	line-height: 1.6;
	max-width: 36rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}
@media (min-width: 768px) {
	.footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-column h3 {
	font-size: 0.9375rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 1rem;
}

.footer-column a,
.footer-column span {
	display: block;
	font-size: 0.875rem;
	color: var(--fc-text-slate);
	margin-bottom: 0.5rem;
	transition: var(--fc-transition);
}
.footer-column a:hover {
	color: var(--fc-text-green);
}

.footer-bottom {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	align-items: center;
	justify-content: space-between;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--fc-border);
}
@media (min-width: 768px) {
	.footer-bottom { flex-direction: row; }
}

.footer-bottom p {
	font-size: 0.875rem;
	color: var(--fc-text-muted);
}

/* ========================================
   CTA BANNER (above footer)
   ======================================== */
.cta-section {
	background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(46, 125, 50, 0.15));
	border: 1px solid rgba(76, 175, 80, 0.2);
	border-radius: var(--fc-radius);
	padding: 3rem 2rem;
	text-align: center;
	margin: 0 1rem;
}
@media (min-width: 640px) {
	.cta-section { margin: 0 1.5rem; }
}
@media (min-width: 1024px) {
	.cta-section { margin: 0 auto; max-width: 80rem; padding: 4rem 2rem; }
}

.cta-section h2 {
	font-size: 1.875rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 1rem;
}
@media (min-width: 768px) {
	.cta-section h2 { font-size: 2.25rem; }
}

.cta-section p {
	font-size: 1rem;
	color: var(--fc-text-slate);
	max-width: 36rem;
	margin: 0 auto 2rem;
}

.cta-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fc-animate {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fc-animate.visible {
	opacity: 1;
	transform: translateY(0);
}

.fc-animate-delay-1 { transition-delay: 0.1s; }
.fc-animate-delay-2 { transition-delay: 0.2s; }
.fc-animate-delay-3 { transition-delay: 0.3s; }
.fc-animate-delay-4 { transition-delay: 0.4s; }
.fc-animate-delay-5 { transition-delay: 0.5s; }

/* ========================================
   SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
	width: 8px;
}
::-webkit-scrollbar-track {
	background: var(--fc-bg-dark);
}
::-webkit-scrollbar-thumb {
	background: #1E293B;
	border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
	background: #334155;
}

/* ========================================
   WORDPRESS OVERRIDES
   ======================================== */
.wp-block-image img {
	border-radius: var(--fc-radius);
}

/* Blog post single */
.single-post .post-content {
	max-width: 48rem;
	margin: 0 auto;
	padding: 2rem 1rem;
}

.single-post .post-content h1,
.single-post .post-content h2,
.single-post .post-content h3,
.single-post .post-content h4 {
	color: #fff;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.single-post .post-content p {
	color: var(--fc-text-slate);
	margin-bottom: 1.25rem;
	line-height: 1.8;
}

.single-post .post-content a {
	color: var(--fc-text-green);
}

.single-post .post-content ul,
.single-post .post-content ol {
	color: var(--fc-text-slate);
	margin-bottom: 1.25rem;
	padding-left: 1.5rem;
}
.single-post .post-content ul { list-style: disc; }
.single-post .post-content ol { list-style: decimal; }

/* Admin bar offset */
body.admin-bar .site-header {
	top: 32px;
}
@media (max-width: 782px) {
	body.admin-bar .site-header { top: 46px; }
}
