/* Main Styles for domain - Accounting Services */

/* Global Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 40px;
}

section[id] {
	scroll-margin-top: 40px;
}

body {
	font-family: 'Poppins', sans-serif;
	background-color: #131313;
	color: #EDEDED;
	line-height: 1.6;
	font-size: 16px;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

a:hover {
	color: #FF5E00;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.btn {
	display: inline-block;
	padding: 12px 28px;
	border-radius: 30px;
	background: linear-gradient(135deg, #FF5E00, #FFA500);
	color: #FFFFFF;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	box-shadow: 0 4px 15px rgba(255, 94, 0, 0.3);
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(255, 94, 0, 0.5);
	color: #FFFFFF;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 1rem;
	line-height: 1.2;
}

h1 {
	font-size: 3rem;
}

h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	position: relative;
	padding-bottom: 0.5rem;
}

h2:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 3px;
	width: 60px;
	background: linear-gradient(135deg, #FF5E00, #FFA500);
}

h3 {
	font-size: 1.8rem;
}

.text-center {
	text-align: center;
}

.text-center h2:after {
	left: 50%;
	transform: translateX(-50%);
}

section {
	padding: 5rem 0;
}

/* Header Styles */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: rgba(19, 19, 19, 0.95);
	padding: 1rem 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: #EDEDED;
}

.logo span {
	color: #FF5E00;
}

.nav-menu {
	display: flex;
	list-style: none;
}

.nav-menu li {
	margin-left: 30px;
}

.contact-info {
	display: flex;
	align-items: center;
}

.contact-info a {
	margin-left: 15px;
	font-size: 0.9rem;
}

/* Mobile Menu */
.hamburger {
	display: none;
	cursor: pointer;
}

.burger-checkbox {
	display: none;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	background-position: center;
	background-size: cover;
	position: relative;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
}

.hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.hero h1 {
	margin-bottom: 1.5rem;
	font-size: 2.5rem;
}

.hero p {
	margin-bottom: 2rem;
	font-size: 1.2rem;
}

/* Services Section */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.service-card {
	padding: 30px;
	border-radius: 10px;
	transition: all 0.3s ease;
	height: 100%;
}

.service-card:nth-child(odd) {
	background-color: #FFFFFF;
	color: #131313;
}

.service-card:nth-child(even) {
	background-color: #1E1E1E;
}

.service-card img {
	width: 100%;
	height: auto;
	max-height: 150px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 20px;
}

.service-card h3 {
	margin-bottom: 15px;
}

/* About Section */
.about-content {
	display: flex;
	align-items: center;
	gap: 40px;
}

.about-text {
	flex: 1;
}

.about-image {
	flex: 1;
	overflow: hidden;
	border-radius: 10px;
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.about-image img:hover {
	transform: scale(1.05);
}

/* Why Choose Us Section */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.feature-card {
	text-align: center;
	padding: 30px;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-10px);
}

.feature-card img {
	width: 80px;
	height: 80px;
	margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials-slider {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	margin: 0 -20px;
	padding: 20px;
}

.testimonial-card {
	flex: 0 0 calc(33.333% - 40px);
	margin: 0 20px;
	padding: 30px;
	border-radius: 10px;
	scroll-snap-align: start;
	min-width: 280px;
}

.testimonial-card:nth-child(odd) {
	background-color: #FFFFFF;
	color: #131313;
}

.testimonial-card:nth-child(even) {
	background-color: #1E1E1E;
}

.testimonial-header {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.testimonial-header img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	margin-right: 15px;
	object-fit: cover;
}

.client-info h4 {
	margin-bottom: 5px;
}

/* FAQ Section */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 15px;
	border-radius: 8px;
	overflow: hidden;
}

.faq-question {
	position: relative;
	padding: 20px;
	background-color: #1E1E1E;
	cursor: pointer;
	font-weight: 600;
	display: block;
}

.faq-checkbox {
	position: absolute;
	opacity: 0;
	z-index: -1;
}

.faq-content {
	max-height: 0;
	overflow: hidden;
	padding: 0 20px;
	transition: all 0.3s ease;
	background-color: rgba(30, 30, 30, 0.5);
}

.faq-checkbox:checked~.faq-content {
	max-height: 500px;
	padding: 20px;
}

.faq-question::after {
	content: '+';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	transition: all 0.3s ease;
}

.faq-checkbox:checked~.faq-question::after {
	transform: translateY(-50%) rotate(45deg);
}

/* Contact Form Section */
.contact-form {
	max-width: 600px;
	margin: 0 auto;
	padding: 30px;
	background-color: #1E1E1E;
	border-radius: 10px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
}

.form-control {
	width: 100%;
	padding: 12px 15px;
	border-radius: 8px;
	border: 1px solid #333333;
	background-color: #242424;
	color: #EDEDED;
	font-size: 1rem;
}

.form-control:focus {
	outline: none;
	border-color: #FF5E00;
}

select.form-control option {
	background-color: #242424;
}

.checkbox-container {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}

.checkbox-container input {
	margin-right: 10px;
	margin-top: 6px;
}

.form-submit {
	width: 100%;
	margin-top: 10px;
}

.error-message {
	color: #FF5E00;
	margin-top: 20px;
	text-align: center;
	font-weight: 500;
}

/* Thank You Page */
.thank-you {
	text-align: center;
	margin: 8rem auto 5rem;
	max-width: 600px;
	padding: 50px;
	background-color: #1E1E1E;
	border-radius: 10px;
	border: 1px solid #FF5E00;
}

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #1E1E1E;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
	z-index: 9999;
	max-width: 400px;
	text-align: center;
	display: none;
}

.cookie-popup p {
	margin-bottom: 15px;
}

.cookie-popup .cookie-btn {
	margin: 5px;
	padding: 8px 20px;
}

/* Privacy Pages */
.policy-container {
	background-color: #1E1E1E;
	border-radius: 10px;
	padding: 40px;
	margin: 6rem auto;
	max-width: 900px;
	border: 1px solid #333333;
}

.policy-container h1 {
	margin-bottom: 30px;
	text-align: center;
}

.policy-container h2 {
	margin-top: 30px;
	margin-bottom: 15px;
}

.policy-container p {
	margin-bottom: 20px;
}

.policy-container ul,
.policy-container ol {
	margin-left: 20px;
	margin-bottom: 20px;
}

.policy-container li {
	margin-bottom: 10px;
}

/* Footer */
footer {
	background-color: #0c0c0c;
	padding: 4rem 0 2rem;
}

.footer-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
}

.footer-column h4 {
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #FF5E00;
	display: inline-block;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}

.contact-item i {
	margin-right: 10px;
	color: #FF5E00;
}

.copyright {
	text-align: center;
	padding-top: 30px;
	margin-top: 30px;
	border-top: 1px solid #333333;
	font-size: 0.9rem;
	opacity: 0.7;
}

/* Media Queries */
@media (max-width: 992px) {
	.about-content {
		flex-direction: column;
	}

	.about-image {
		margin-top: 30px;
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}
}

@media (max-width: 768px) {
	header {
		padding: 0.8rem 0;
	}

	.contact-info {
		display: none;
	}

	.nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		height: 100vh;
		background-color: #1E1E1E;
		flex-direction: column;
		justify-content: flex-start;
		padding-top: 80px;
		transition: all 0.4s ease;
	}

	.nav-menu li {
		margin: 0;
		padding: 15px 30px;
		width: 100%;
		border-bottom: 1px solid #333333;
	}

	.hamburger {
		display: block;
		position: relative;
		z-index: 1001;
		width: 30px;
		height: 20px;
	}

	.hamburger span {
		display: block;
		position: absolute;
		height: 3px;
		width: 100%;
		background-color: #EDEDED;
		border-radius: 3px;
		transition: all 0.3s ease;
	}

	.hamburger span:nth-child(1) {
		top: 0;
	}

	.hamburger span:nth-child(2) {
		top: 8px;
	}

	.hamburger span:nth-child(3) {
		top: 16px;
	}

	.burger-checkbox:checked~.nav-menu {
		right: 0;
	}

	.burger-checkbox:checked~.hamburger span:nth-child(1) {
		transform: rotate(45deg);
		top: 8px;
	}

	.burger-checkbox:checked~.hamburger span:nth-child(2) {
		opacity: 0;
	}

	.burger-checkbox:checked~.hamburger span:nth-child(3) {
		transform: rotate(-45deg);
		top: 8px;
	}

	.testimonial-card {
		flex: 0 0 calc(100% - 40px);
	}
}

@media (max-width: 576px) {
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.8rem;
	}

	h3 {
		font-size: 1.5rem;
	}

	.hero p {
		font-size: 1rem;
	}

	section {
		padding: 3rem 0;
	}

	.policy-container {
		padding: 30px 20px;
		margin: 5rem auto;
	}

	.contact-form {
		padding: 20px;
	}
}