:root {
	--primary-red: #bc2127;
	--primary-red-light: #d32f2f;
	--primary-red-dark: #8b0000;
	--dark-bg: #0a0a0a;
	--dark-bg-secondary: #121212;
	--dark-bg-tertiary: #1a1a1a;
	--dark-card: #1e1e1e;
	--text-primary: #ffffff;
	--text-secondary: #b0b0b0;
	--text-muted: #808080;
	--border-color: #2a2a2a;
	--gradient-red: linear-gradient(135deg, #bc2127 0%, #d32f2f 100%);
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
	--shadow-red: 0 8px 32px rgba(188, 33, 39, 0.3);
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Poppins', sans-serif;
	background-color: var(--dark-bg);
	color: var(--text-primary);
	overflow-x: hidden;
	line-height: 1.6;
}

/* Navbar */
.navbar {
	padding: 1.2rem 0;
	background: transparent;
	transition: all 0.4s ease;
	z-index: 1000;
}

.navbar.scrolled {
	background: rgba(18, 18, 26, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: var(--shadow-md);
	padding: 0.8rem 0;
}

.navbar-brand {
	display: flex;
	align-items: center;
}

.brand-logo {
	height: 60px;
	width: auto;
	transition: transform 0.3s ease;
}

.navbar.scrolled .brand-logo {
	height: 50px;
}

.brand-logo:hover {
	transform: scale(1.05);
}

.nav-link {
	color: var(--text-secondary) !important;
	font-weight: 500;
	padding: 0.5rem 1rem !important;
	transition: all 0.3s ease;
	position: relative;
}

.nav-link:hover {
	color: var(--primary-red) !important;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--gradient-red);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.nav-link:hover::after {
	width: 80%;
}

.btn-consultation {
	background: var(--gradient-red);
	color: var(--text-primary) !important;
	border-radius: 25px;
	padding: 0.6rem 1.5rem !important;
	margin-left: 1rem;
}

.btn-consultation:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-red);
}

.btn-consultation::after {
	display: none;
}

/* Hero Section */
.hero-section {
	position: relative;
	min-height: 100vh;
	background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 100%);
	overflow: hidden;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
			circle at 20% 50%,
			rgba(188, 33, 39, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(188, 33, 39, 0.05) 0%,
			transparent 50%
		);
	pointer-events: none;
}

.hero-particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.particle {
	position: absolute;
	background: rgba(188, 33, 39, 0.3);
	border-radius: 50%;
	animation: float linear infinite;
}

@keyframes float {
	0% {
		transform: translateY(100vh) scale(0);
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		transform: translateY(-100vh) scale(1);
		opacity: 0;
	}
}

.hero-content {
	position: relative;
	z-index: 2;
	padding: 2rem 0;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(188, 33, 39, 0.2);
	border: 1px solid rgba(188, 33, 39, 0.3);
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	margin-bottom: 2rem;
	animation: fadeInUp 0.8s ease;
}

.hero-badge .material-icons {
	font-size: 1.2rem;
	color: var(--primary-red);
}

.hero-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 4rem;
	font-weight: 900;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	animation: fadeInUp 0.8s ease 0.2s both;
}

.text-gradient {
	background: var(--gradient-red);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: block;
}

.hero-subtitle {
	font-size: 1.2rem;
	color: var(--text-secondary);
	margin-bottom: 2.5rem;
	max-width: 600px;
	animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 3rem;
	animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-primary-custom {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--gradient-red);
	color: var(--text-primary);
	padding: 1rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	box-shadow: var(--shadow-md);
}

.btn-primary-custom:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-red);
	color: var(--text-primary);
}

.btn-secondary-custom {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: transparent;
	color: var(--text-primary);
	padding: 1rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	border: 2px solid var(--primary-red);
	transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
	background: var(--gradient-red);
	color: var(--text-primary);
	transform: translateY(-3px);
}

.btn-light-custom {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--text-primary);
	color: var(--dark-bg);
	padding: 1rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-light-custom:hover {
	background: var(--primary-red);
	color: var(--text-primary);
	transform: translateY(-3px);
}

.hero-stats {
	display: flex;
	gap: 3rem;
	flex-wrap: wrap;
	animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.stat-item .material-icons {
	font-size: 2.5rem;
	color: var(--primary-red);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0;
}

.stat-item p {
	color: var(--text-secondary);
	margin: 0;
	font-size: 0.9rem;
}

/* Hero Visual */
.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
	animation: fadeIn 1s ease;
}

.falcon-circle {
	position: relative;
	width: 400px;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.circle-ring {
	position: absolute;
	border: 2px solid rgba(188, 33, 39, 0.3);
	border-radius: 50%;
	animation: pulse 3s ease-in-out infinite;
}

.circle-ring:nth-child(1) {
	width: 300px;
	height: 300px;
	animation-delay: 0s;
}

.circle-ring:nth-child(2) {
	width: 350px;
	height: 350px;
	animation-delay: 1s;
}

.circle-ring:nth-child(3) {
	width: 400px;
	height: 400px;
	animation-delay: 2s;
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.3;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.6;
	}
}

.falcon-icon {
	font-size: 8rem;
	color: var(--primary-red);
	animation: soar 4s ease-in-out infinite;
}

@keyframes soar {
	0%,
	100% {
		transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(-20px) scale(1.05);
	}
}

.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	animation: bounce 2s infinite;
}

.scroll-indicator .material-icons {
	font-size: 2.5rem;
	color: var(--primary-red);
}

@keyframes bounce {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(10px);
	}
}

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

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Section Styling */
section {
	padding: 6rem 0;
	position: relative;
}

.section-header {
	margin-bottom: 4rem;
}

.section-label {
	display: inline-block;
	color: var(--primary-red);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.section-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.section-subtitle {
	font-size: 1.2rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

/* Services Section */
.services-section {
	background: var(--dark-bg-secondary);
}

.service-card {
	background: var(--dark-card);
	border: 1px solid var(--border-color);
	border-radius: 20px;
	padding: 2.5rem;
	height: 100%;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

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

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

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

.service-card.featured {
	border-color: var(--primary-red);
	background: linear-gradient(
		135deg,
		rgba(188, 33, 39, 0.1) 0%,
		var(--dark-card) 100%
	);
}

.featured-badge {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	background: var(--gradient-red);
	color: var(--text-primary);
	padding: 0.4rem 1rem;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
}

.service-icon {
	width: 80px;
	height: 80px;
	background: var(--gradient-red);
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 1.5rem;
}

.service-icon .material-icons {
	font-size: 2.5rem;
	color: var(--text-primary);
}

.service-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.service-card p {
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
}

.service-features {
	list-style: none;
	margin-bottom: 1.5rem;
}

.service-features li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	color: var(--text-secondary);
}

.service-features .material-icons {
	color: var(--primary-red);
	font-size: 1.2rem;
}

.service-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--primary-red);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.service-link:hover {
	gap: 1rem;
}

/* Tax Season CTA */
.tax-season-cta {
	background: var(--gradient-red);
	padding: 3rem 0;
	position: relative;
	overflow: hidden;
}

.tax-season-cta::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
}

.cta-content {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.cta-icon {
	font-size: 4rem;
	color: var(--text-primary);
}

.cta-content h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.cta-content p {
	margin: 0;
	opacity: 0.9;
}

/* About Section */
.about-section {
	background: var(--dark-bg);
}

.about-visual {
	position: relative;
	height: 500px;
}

.about-image-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.floating-card {
	position: absolute;
	background: var(--dark-card);
	border: 1px solid var(--border-color);
	border-radius: 15px;
	padding: 2rem;
	text-align: center;
	box-shadow: var(--shadow-lg);
	animation: floatCard 6s ease-in-out infinite;
}

.floating-card .material-icons {
	font-size: 3rem;
	color: var(--primary-red);
	margin-bottom: 1rem;
}

.floating-card h4 {
	margin: 0;
	font-size: 1.2rem;
}

.floating-card.card-1 {
	top: 10%;
	left: 10%;
	animation-delay: 0s;
}

.floating-card.card-2 {
	top: 40%;
	right: 10%;
	animation-delay: 2s;
}

.floating-card.card-3 {
	bottom: 10%;
	left: 20%;
	animation-delay: 4s;
}

@keyframes floatCard {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
}

.about-text {
	color: var(--text-secondary);
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
}

.about-features {
	margin-top: 2rem;
}

.feature-item {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 2rem;
	align-items: flex-start;
}

.feature-item .material-icons {
	font-size: 2.5rem;
	color: var(--primary-red);
}

.feature-item h4 {
	margin-bottom: 0.5rem;
	font-size: 1.2rem;
}

.feature-item p {
	color: var(--text-secondary);
	margin: 0;
}

/* Why Us Section */
.why-us-section {
	background: var(--dark-bg-secondary);
}

.advantage-card {
	background: var(--dark-card);
	border: 1px solid var(--border-color);
	border-radius: 20px;
	padding: 2.5rem;
	text-align: center;
	transition: all 0.4s ease;
	height: 100%;
}

.advantage-card:hover {
	transform: translateY(-10px);
	border-color: var(--primary-red);
	box-shadow: var(--shadow-md);
}

.advantage-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(
		135deg,
		rgba(188, 33, 39, 0.2) 0%,
		rgba(188, 33, 39, 0.1) 100%
	);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 1.5rem;
}

.advantage-icon .material-icons {
	font-size: 2.5rem;
	color: var(--primary-red);
}

.advantage-card h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
}

.advantage-card p {
	color: var(--text-secondary);
	margin: 0;
}

/* Contact Section */
.contact-section {
	background: var(--dark-bg);
}

.contact-info {
	padding-right: 2rem;
}

.contact-methods {
	margin: 2rem 0;
}

.contact-method {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 2rem;
	align-items: flex-start;
}

.contact-method .material-icons {
	font-size: 2rem;
	color: var(--primary-red);
}

.contact-method h4 {
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.contact-method a {
	color: var(--primary-red);
	text-decoration: none;
	transition: all 0.3s ease;
}

.contact-method a:hover {
	color: var(--primary-red-light);
}

.contact-method p {
	color: var(--text-secondary);
	margin: 0;
}

.business-hours {
	background: var(--dark-card);
	border: 1px solid var(--border-color);
	border-radius: 15px;
	padding: 1.5rem;
	margin-top: 2rem;
}

.business-hours h4 {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.business-hours .material-icons {
	color: var(--primary-red);
}

.business-hours p {
	color: var(--text-secondary);
	margin-bottom: 1rem;
}

.extended-hours {
	color: var(--primary-red) !important;
	font-weight: 600;
	margin: 0 !important;
}

.contact-form-container {
	background: var(--dark-card);
	border: 1px solid var(--border-color);
	border-radius: 20px;
	padding: 3rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	background: var(--dark-bg-secondary);
	border: 1px solid var(--border-color);
	border-radius: 10px;
	color: var(--text-primary);
	font-family: 'Poppins', sans-serif;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-red);
	box-shadow: 0 0 0 3px rgba(183, 28, 28, 0.1);
}

.form-message {
	padding: 1.5rem;
	border-radius: 10px;
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 1rem;
}

.form-message.success {
	background: rgba(76, 175, 80, 0.2);
	border: 1px solid rgba(76, 175, 80, 0.3);
	color: #4caf50;
}

.form-message .material-icons {
	font-size: 2rem;
}

/* Footer */
.footer {
	background: var(--dark-bg-tertiary);
	border-top: 1px solid var(--border-color);
	padding: 4rem 0 2rem;
}

.footer-logo {
	height: 80px;
	width: auto;
	margin-bottom: 1rem;
}

.footer-brand h3 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 900;
	font-size: 1.5rem;
	letter-spacing: 2px;
	color: var(--primary-red);
	margin-bottom: 0;
}

.footer-tagline {
	font-size: 0.9rem;
	letter-spacing: 2px;
	color: var(--text-secondary);
	margin-bottom: 0.5rem;
}

.footer-desc {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-bottom: 1rem;
}

.footer-brand p {
	color: var(--text-secondary);
	font-size: 0.95rem;
}

.footer h4 {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

.footer-links {
	list-style: none;
	padding-left: 0;
}

.footer-links li {
	margin-bottom: 0.75rem;
	text-align: left;
}

.footer-links a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
}

.footer-links a:hover {
	color: var(--primary-red);
	padding-left: 0;
	transform: translateX(5px);
}

.newsletter-form {
	display: flex;
	gap: 0.5rem;
	margin-top: 1rem;
}

.newsletter-form input {
	flex: 1;
	padding: 0.75rem 1rem;
	background: var(--dark-bg-secondary);
	border: 1px solid var(--border-color);
	border-radius: 25px;
	color: var(--text-primary);
}

.newsletter-form input:focus {
	outline: none;
	border-color: var(--primary-red);
}

.newsletter-form button {
	width: 50px;
	height: 50px;
	background: var(--gradient-red);
	border: none;
	border-radius: 50%;
	color: var(--text-primary);
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.newsletter-form button:hover {
	transform: scale(1.1);
}

.footer-bottom {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border-color);
	text-align: center;
}

.footer-bottom p {
	color: var(--text-secondary);
	margin: 0;
}

/* Scroll to Top Button */
.scroll-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 50px;
	height: 50px;
	background: var(--gradient-red);
	border: none;
	border-radius: 50%;
	color: var(--text-primary);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 999;
	box-shadow: var(--shadow-md);
}

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

.scroll-to-top:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-red);
}

/* Responsive Design */
@media (max-width: 991px) {
	.navbar-collapse {
		background: rgba(18, 18, 26, 0.98);
		backdrop-filter: blur(10px);
		padding: 1.5rem;
		border-radius: 15px;
		margin-top: 1rem;
		box-shadow: var(--shadow-lg);
	}

	.nav-link {
		padding: 0.75rem 1rem !important;
	}

	.btn-consultation {
		margin-left: 0;
		margin-top: 0.5rem;
		width: 100%;
		text-align: center;
		justify-content: center;
	}

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

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

	.hero-stats {
		gap: 2rem;
	}

	.falcon-circle {
		width: 300px;
		height: 300px;
	}

	.circle-ring:nth-child(1) {
		width: 200px;
		height: 200px;
	}

	.circle-ring:nth-child(2) {
		width: 250px;
		height: 250px;
	}

	.circle-ring:nth-child(3) {
		width: 300px;
		height: 300px;
	}

	.falcon-icon {
		font-size: 6rem;
	}

	.about-visual {
		height: 400px;
		margin-bottom: 3rem;
	}

	.cta-content {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}

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

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

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

	.btn-primary-custom,
	.btn-secondary-custom,
	.btn-light-custom {
		width: 100%;
		justify-content: center;
	}

	.hero-stats {
		flex-direction: column;
		gap: 1.5rem;
	}

	.hero-visual {
		margin-top: 3rem;
	}

	.contact-info {
		padding-right: 0;
		margin-bottom: 3rem;
	}

	.contact-form-container {
		padding: 2rem;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	section {
		padding: 4rem 0;
	}
}

@media (max-width: 576px) {
	.hero-title {
		font-size: 2rem;
	}

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

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

	.service-card,
	.advantage-card {
		padding: 2rem;
	}

	.navbar-brand {
		font-size: 0.9rem;
	}

	.brand-logo {
		height: 45px;
	}
}
