/* Main Stylesheet for domain - Financial Audit Services */

/* Base Styles */
:root {
	--primary-dark: #1F1147;
	--primary-light: #5D2B7C;
	--accent-yellow: #FFD166;
	--accent-pink: #EF476F;
	--background: #F6F6F6;
	--text-color: #2E2E2E;
	--max-width: 1200px;
	--border-radius: 8px;
	--transition: all 0.3s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 40px;
}

body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--background);
}

section[id] {
	scroll-margin-top: 40px;
}

div {
	word-break: break-word;
	overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--primary-dark);
	margin-bottom: 1rem;
}

p {
	margin-bottom: 1.2rem;
}

a {
	color: var(--primary-light);
	text-decoration: none;
	transition: var(--transition);
}

a:hover,
footer a {
	color: var(--accent-yellow);
}

.container {
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 20px;
}

.btn {
	display: inline-block;
	background: linear-gradient(to right, var(--primary-dark), var(--primary-light));
	color: white;
	padding: 12px 24px;
	border-radius: var(--border-radius);
	border: none;
	cursor: pointer;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 1px;
	transition: var(--transition);
}

.btn:hover {
	background: linear-gradient(to right, var(--primary-light), var(--primary-dark));
	transform: translateY(-3px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	color: white;
}

.section-title {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 2rem;
	position: relative;
	padding-bottom: 1rem;
}

.section-title::after {
	content: '';
	position: absolute;
	width: 80px;
	height: 4px;
	background: linear-gradient(to right, var(--primary-dark), var(--accent-yellow));
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 2px;
}

/* Header & Navigation */
header {
	background: white;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
}

.logo {
	font-size: 1.8rem;
	font-weight: bold;
	background: linear-gradient(to right, var(--primary-dark), var(--primary-light));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-transform: lowercase;
}

/* Checkbox Hack for Burger Menu */
.burger-menu {
	display: none;
}

.burger-btn {
	display: none;
	cursor: pointer;
}

.burger-btn span {
	display: block;
	width: 30px;
	height: 3px;
	margin: 6px 0;
	background: var(--primary-dark);
	border-radius: 3px;
	transition: var(--transition);
}

nav ul {
	display: flex;
	list-style: none;
}

nav ul li {
	margin-left: 25px;
}

nav ul li a {
	color: var(--primary-dark);
	font-weight: 600;
	position: relative;
}

nav ul li a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(to right, var(--primary-dark), var(--accent-yellow));
	transition: var(--transition);
}

nav ul li a:hover::after {
	width: 100%;
}

/* Hero Section */
.hero {
	background-image: url('./img/U9gBR.jpg');
	background-size: cover;
	background-position: center;
	position: relative;
	height: 90vh;
	display: flex;
	align-items: center;
	text-align: center;
	color: white;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(31, 17, 71, 0.85), rgba(93, 43, 124, 0.85));
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	color: white;
	animation: fadeInDown 1s ease;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	animation: fadeInUp 1s ease;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	animation: fadeIn 1.5s ease;
}

/* About Section */
.about {
	padding: 5rem 0;
	background: white;
}

.about-content {
	display: flex;
	align-items: center;
	gap: 40px;
}

.about-img {
	flex: 1;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: var(--transition);
}

.about-img img {
	width: 100%;
	height: auto;
	display: block;
	transition: var(--transition);
}

.about-img:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.about-text {
	flex: 1;
}

.about-text h2 {
	margin-bottom: 1.5rem;
}

/* Services Section */
.services {
	padding: 5rem 0;
	background-color: var(--background);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 2rem;
}

.service-card {
	background: white;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: var(--transition);
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-img {
	height: 200px;
	overflow: hidden;
}

.service-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.service-card:hover .service-img img {
	transform: scale(1.05);
}

.service-content {
	padding: 20px;
}

.service-content h3 {
	color: var(--primary-dark);
	margin-bottom: 1rem;
}

/* Benefits Section */
.benefits {
	padding: 5rem 0;
	background: white;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.benefit-item {
	padding: 25px;
	background: var(--background);
	border-radius: var(--border-radius);
	transition: var(--transition);
	text-align: center;
}

.benefit-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
	margin-bottom: 1rem;
	height: 150px;
	overflow: hidden;
	border-radius: var(--border-radius);
}

.benefit-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.benefit-item h3 {
	margin-bottom: 0.8rem;
}

/* Workflow Section */
.workflow {
	padding: 5rem 0;
	background-color: var(--background);
}

.timeline {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.timeline::after {
	content: '';
	position: absolute;
	width: 6px;
	background: linear-gradient(to bottom, var(--primary-dark), var(--primary-light));
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: -3px;
	border-radius: 3px;
}

.timeline-item {
	padding: 10px 40px;
	position: relative;
	width: 50%;
	animation: fadeIn 1s ease;
}

.timeline-item::after {
	content: '';
	position: absolute;
	width: 25px;
	height: 25px;
	background-color: var(--accent-yellow);
	border: 4px solid var(--primary-dark);
	top: 15px;
	border-radius: 50%;
	z-index: 1;
}

.timeline-item:nth-child(odd) {
	left: 0;
}

.timeline-item:nth-child(even) {
	left: 50%;
}

.timeline-item:nth-child(odd)::after {
	right: -12px;
}

.timeline-item:nth-child(even)::after {
	left: -12px;
}

.timeline-content {
	padding: 20px;
	background-color: white;
	position: relative;
	border-radius: var(--border-radius);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
	margin-top: 0;
	color: var(--primary-dark);
}

/* Testimonials Section */
.testimonials {
	padding: 5rem 0;
	background: white;
}

.testimonials-slider {
	overflow: hidden;
	position: relative;
}

.testimonials-track {
	display: flex;
	transition: transform 0.5s ease;
	animation: testimonialScroll 30s linear infinite;
}

.testimonial-card {
	min-width: 300px;
	margin-right: 20px;
	padding: 25px;
	background-color: var(--background);
	border-radius: var(--border-radius);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
	position: relative;
	padding-left: 30px;
}

.testimonial-content::before {
	content: '"';
	position: absolute;
	top: -20px;
	left: 0;
	font-size: 60px;
	color: var(--primary-light);
	opacity: 0.3;
}

.client-info {
	margin-top: 20px;
	display: flex;
	align-items: center;
}

.client-img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 15px;
	overflow: hidden;
}

.client-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.client-name h4 {
	margin: 0;
}

.client-name p {
	margin: 0;
	font-size: 0.9rem;
	color: #777;
}

/* Form Section */
.contact {
	padding: 5rem 0;
	background-color: var(--background);
}

.form-container {
	max-width: 700px;
	margin: 0 auto;
	padding: 30px;
	background: white;
	border-radius: var(--border-radius);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}

.form-control {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: var(--border-radius);
	font-size: 1rem;
	transition: var(--transition);
}

.form-control:focus {
	outline: none;
	border-color: var(--primary-light);
	box-shadow: 0 0 0 3px rgba(93, 43, 124, 0.2);
}

select.form-control {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%231F1147' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: calc(100% - 12px) center;
	padding-right: 30px;
}

select.form-control option {
	background-color: white;
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
	margin-right: 10px;
	margin-top: 6px;
	width: 16px;
	height: 16px;
	accent-color: var(--primary-light);
}

.checkbox-group label {
	flex: 1;
	font-size: 0.9rem;
}

.checkbox-group label a {
	text-decoration: underline;
}

/* FAQ Section */
.faq {
	padding: 5rem 0;
	background: white;
}

.accordion {
	max-width: 800px;
	margin: 0 auto;
}

.accordion-item {
	margin-bottom: 15px;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.accordion-header {
	background: var(--background);
	padding: 0;
}

.accordion-checkbox {
	display: none;
}

.accordion-btn {
	display: block;
	padding: 15px 20px;
	width: 100%;
	text-align: left;
	position: relative;
	cursor: pointer;
	color: var(--primary-dark);
	font-weight: bold;
	transition: var(--transition);
}

.accordion-btn:hover {
	background-color: #f0f0f0;
}

.accordion-btn::after {
	content: '+';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	transition: var(--transition);
}

.accordion-checkbox:checked~.accordion-btn::after {
	content: '−';
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: white;
}

.accordion-checkbox:checked~.accordion-content {
	max-height: 500px;
}

.accordion-inner {
	padding: 15px 20px;
	border-top: 1px solid #eee;
}

/* Footer */
footer {
	background: linear-gradient(to right, var(--primary-dark), var(--primary-light));
	color: white;
	padding: 4rem 0 2rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.footer-column h3 {
	color: white;
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 10px;
}

.footer-column h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: var(--accent-yellow);
	border-radius: 3px;
}

.footer-logo {
	color: white;
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 1rem;
	display: inline-block;
}

.contact-info {
	list-style: none;
}

.contact-info li {
	margin-bottom: 15px;
	display: flex;
	align-items: flex-start;
}

.contact-info span {
	display: inline-block;
	margin-right: 10px;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.8);
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--accent-yellow);
	padding-left: 5px;
}

.copyright {
	text-align: center;
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
}

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: -100%;
	left: 0;
	right: 0;
	background: white;
	padding: 20px;
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
	z-index: 1001;
	transition: bottom 0.5s ease;
}

.cookie-popup.show {
	bottom: 0;
}

.cookie-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	max-width: var(--max-width);
	margin: 0 auto;
}

.cookie-text {
	flex: 1;
}

.cookie-text h3 {
	margin-bottom: 10px;
}

.cookie-buttons {
	display: flex;
	gap: 10px;
}

.btn-cookie {
	padding: 8px 16px;
	border-radius: var(--border-radius);
	border: none;
	cursor: pointer;
	font-weight: bold;
	transition: var(--transition);
}

.btn-accept {
	background: var(--primary-dark);
	color: white;
}

.btn-accept:hover {
	background: var(--primary-light);
}

.btn-decline {
	background: #eee;
	color: var(--text-color);
}

.btn-decline:hover {
	background: #ddd;
}

/* Thanks Page */
.thanks-container {
	margin: 8rem auto 5rem;
	padding: 40px;
	max-width: 800px;
	background: white;
	border-radius: var(--border-radius);
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border: 2px solid var(--primary-light);
}

.thanks-container h1 {
	color: var(--primary-dark);
	margin-bottom: 1.5rem;
}

.thanks-container p {
	margin-bottom: 2rem;
}

/* Policy Pages */
.policy-container {
	margin: 4rem auto;
	padding: 40px;
	max-width: 1000px;
	background: white;
	border-radius: var(--border-radius);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border: 2px solid var(--primary-light);
}

.policy-container h1 {
	color: var(--primary-dark);
	margin-bottom: 2rem;
	text-align: center;
}

.policy-container h2 {
	margin-top: 2rem;
	color: var(--primary-dark);
}

.policy-container p {
	margin-bottom: 1rem;
}

.policy-container ul,
.policy-container ol {
	margin-bottom: 1.5rem;
	padding-left: 2rem;
}

.policy-container li {
	margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes testimonialScroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-100%);
	}
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
	.section-title {
		font-size: 2rem;
	}

	.hero h1 {
		font-size: 3rem;
	}

	.timeline::after {
		left: 31px;
	}

	.timeline-item {
		width: 100%;
		padding-left: 70px;
		padding-right: 25px;
	}

	.timeline-item:nth-child(even) {
		left: 0;
	}

	.timeline-item:nth-child(odd)::after,
	.timeline-item:nth-child(even)::after {
		left: 15px;
	}
}

@media screen and (max-width: 768px) {
	.header-container {
		padding: 10px 15px;
	}

	.burger-btn {
		display: block;
	}

	nav {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 80%;
		height: 100vh;
		background: white;
		box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
		transition: var(--transition);
	}

	.burger-menu:checked~nav {
		left: 0;
	}

	nav ul {
		display: flex;
		flex-direction: column;
		padding-top: 20px;
	}

	nav ul li {
		margin: 0;
		width: 100%;
	}

	nav ul li a {
		display: block;
		padding: 15px 25px;
		width: 100%;
	}

	nav ul li a::after {
		display: none;
	}

	nav ul li a:hover {
		background-color: var(--background);
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.about-content {
		flex-direction: column;
	}

	.cta-buttons {
		flex-direction: column;
		gap: 15px;
	}

	.testimonial-card {
		min-width: 250px;
	}
}

@media screen and (max-width: 576px) {
	.section-title {
		font-size: 1.8rem;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.testimonial-card {
		min-width: 220px;
	}

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}
}