/* Main Styles for domain financial audit services */
:root {
	--dark-blue: #0F172A;
	--orange: #F97316;
	--green: #10B981;
	--yellow: #FACC15;
	--white: #FFFFFF;
	--light-gray: #D1D5DB;
	--border-color: #1E293B;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 40px;
}

body {
	font-family: 'Arial', sans-serif;
	background-color: var(--dark-blue);
	color: var(--white);
	line-height: 1.6;
}

section[id] {
	scroll-margin-top: 40px;
}

div {
	word-break: break-word;
	overflow-wrap: break-word;
}

a {
	color: var(--green);
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header Styles */
header {
	background-color: var(--dark-blue);
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid var(--border-color);
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.logo {
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--white);
	text-decoration: none;
}

/* Mobile Menu (Burger) */
.menu-toggle {
	display: none;
}

.menu-btn {
	display: none;
	cursor: pointer;
}

.nav-menu {
	display: flex;
	list-style: none;
}

.nav-menu li {
	margin-left: 2rem;
}

.nav-menu a {
	color: var(--light-gray);
	text-decoration: none;
	transition: color 0.3s;
}

.nav-menu a:hover {
	color: var(--orange);
}

/* Hero Section */
.hero {
	height: 80vh;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	text-align: center;
	position: relative;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(15, 23, 42, 0.7);
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: var(--light-gray);
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
	transition: transform 0.3s;
}

.btn:hover {
	transform: translateY(-3px);
}

.btn-primary {
	background: linear-gradient(135deg, var(--orange), var(--green));
	color: var(--white);
}

/* Sections */
section {
	padding: 5rem 0;
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.section-title h2 {
	font-size: 2.5rem;
	position: relative;
	display: inline-block;
	padding-bottom: 0.5rem;
}

.section-title h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: var(--orange);
}

/* About Section */
.about-content {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.about-text {
	flex: 1;
}

.about-image {
	flex: 1;
}

.about-image img {
	width: 100%;
	border-radius: 10px;
}

/* Features Section */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.feature-card {
	background-color: rgba(30, 41, 59, 0.5);
	border: 1px solid var(--border-color);
	border-radius: 10px;
	padding: 2rem;
	text-align: center;
	transition: transform 0.3s;
}

.feature-card:hover {
	transform: translateY(-10px);
}

.feature-icon {
	margin-bottom: 1.5rem;
}

.feature-icon img {
	width: 60px;
	height: 60px;
}

/* Services Section */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.service-card {
	background-color: rgba(30, 41, 59, 0.5);
	border: 1px solid var(--border-color);
	border-radius: 10px;
	overflow: hidden;
	transition: transform 0.3s;
}

.service-card:hover {
	transform: translateY(-5px);
}

.service-image {
	height: 150px;
	overflow: hidden;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-content {
	padding: 1.5rem;
}

/* Why Us Section */
.why-us-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.why-us-item {
	background-color: rgba(30, 41, 59, 0.5);
	border: 1px solid var(--border-color);
	border-radius: 10px;
	padding: 1.5rem;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.why-us-icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--orange), var(--green));
	border-radius: 50%;
}

.why-us-icon img {
	width: 30px;
	height: 30px;
}

/* Testimonials */
.testimonials-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin: 0 auto;
}

.testimonial {
	background-color: rgba(30, 41, 59, 0.5);
	border: 1px solid var(--border-color);
	border-radius: 10px;
	padding: 2rem;
	margin-bottom: 2rem;
}

.testimonial-content {
	margin-bottom: 1rem;
	font-style: italic;
}

.testimonial-author {
	font-weight: bold;
	color: var(--light-gray);
}

/* FAQ Section */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 1rem;
	border: 1px solid var(--border-color);
	border-radius: 10px;
	overflow: hidden;
}

.faq-question {
	background-color: rgba(30, 41, 59, 0.8);
	padding: 1rem;
	cursor: pointer;
	position: relative;
}

.faq-question label {
	display: block;
	padding-right: 30px;
	cursor: pointer;
	font-weight: bold;
}

.faq-question label::after {
	content: '+';
	position: absolute;
	right: 1rem;
	top: 1rem;
	transition: transform 0.3s;
}

.faq-toggle {
	display: none;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s;
	background-color: rgba(30, 41, 59, 0.5);
}

.faq-answer-content {
	padding: 0 1rem;
	margin: 0;
}

.faq-toggle:checked~.faq-answer {
	max-height: 500px;
}

.faq-toggle:checked~.faq-question label::after {
	transform: rotate(45deg);
}

/* Form Section */
.form-container {
	max-width: 600px;
	margin: 0 auto;
	background-color: rgba(30, 41, 59, 0.5);
	border: 1px solid var(--border-color);
	border-radius: 10px;
	padding: 2rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: bold;
}

.form-input,
.form-select {
	width: 100%;
	padding: 10px;
	border: 1px solid var(--border-color);
	border-radius: 5px;
	background-color: rgba(15, 23, 42, 0.8);
	color: var(--white);
}

.form-select {
	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='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 1em;
}

.form-select option {
	background-color: var(--dark-blue);
	color: var(--white);
}

.checkbox-container {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 1rem;
}

.checkbox-container input {
	margin-top: 5px;
}

.checkbox-label a {
	color: var(--orange);
	text-decoration: none;
}

.checkbox-label a:hover {
	text-decoration: underline;
}

.form-submit {
	width: 100%;
	padding: 12px;
	border: none;
	border-radius: 5px;
	background: linear-gradient(135deg, var(--orange), var(--green));
	color: var(--white);
	font-weight: bold;
	cursor: pointer;
	transition: transform 0.3s;
}

.form-submit:hover {
	transform: translateY(-3px);
}

/* Footer */
footer {
	background-color: rgba(15, 23, 42, 0.9);
	border-top: 1px solid var(--border-color);
	padding: 3rem 0;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 2rem;
}

.footer-logo {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 1rem;
}

.footer-column {
	flex: 1;
	min-width: 200px;
}

.footer-column h3 {
	margin-bottom: 1rem;
	color: var(--light-gray);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: var(--light-gray);
	text-decoration: none;
}

.footer-links a:hover {
	color: var(--orange);
}

.contact-info {
	margin-top: 1rem;
}

.contact-item {
	margin-bottom: 0.5rem;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.copyright {
	text-align: center;
	margin-top: 3rem;
	padding-top: 1rem;
	border-top: 1px solid var(--border-color);
	color: var(--light-gray);
}

/* Thank You Page */
.thank-you {
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.thank-you-container {
	background-color: rgba(30, 41, 59, 0.5);
	border: 1px solid var(--border-color);
	border-radius: 10px;
	padding: 3rem;
	text-align: center;
	margin: 8rem auto 5rem;
	max-width: 600px;
}

.thank-you-container h1 {
	margin-bottom: 1.5rem;
	color: var(--green);
}

/* Policy Pages */
.policy-container {
	max-width: 800px;
	margin: 4rem auto;
	background-color: rgba(30, 41, 59, 0.5);
	border: 1px solid var(--border-color);
	border-radius: 10px;
	padding: 2rem;
}

.policy-container h1 {
	margin-bottom: 2rem;
	text-align: center;
}

.policy-section {
	margin-bottom: 2rem;
}

.policy-section h2 {
	margin-bottom: 1rem;
	color: var(--light-gray);
}

/* Cookie Consent */
.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(15, 23, 42, 0.95);
	border-top: 1px solid var(--border-color);
	padding: 1.5rem;
	z-index: 9999;
	display: none;
}

.cookie-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.cookie-text {
	flex: 1;
	min-width: 200px;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
}

.cookie-btn {
	padding: 8px 16px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
}

.accept-cookies {
	background-color: var(--green);
	color: var(--white);
}

.decline-cookies {
	background-color: transparent;
	border: 1px solid var(--light-gray);
	color: var(--light-gray);
}

/* Responsive */
@media (max-width: 768px) {

	/* Mobile Navigation */
	.menu-btn {
		display: block;
		font-size: 1.5rem;
		background: none;
		border: none;
		color: var(--white);
		z-index: 1001;
	}

	.menu-toggle {
		display: none;
	}

	.nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		height: 100vh;
		width: 70%;
		max-width: 300px;
		background-color: var(--dark-blue);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transition: right 0.3s;
		z-index: 1000;
	}

	.menu-toggle:checked~.nav-menu {
		right: 0;
	}

	.nav-menu li {
		margin: 1.5rem 0;
	}

	/* Sections */
	.about-content {
		flex-direction: column;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	/* Footer */
	.footer-content {
		flex-direction: column;
	}

	/* Cookie Consent */
	.cookie-buttons {
		margin-top: 1rem;
		width: 100%;
		justify-content: center;
	}
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}