/* Global Styles */
:root {
	--primary-dark: #0D1B2A;
	--secondary-dark: #1B263B;
	--background-block: #1E2A38;
	--gold: #F4D35E;
	--red: #F95738;
	--coral: #EE964B;
	--text-light: #F4F4F4;
}

* {
	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', 'Arial', sans-serif;
	background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
	color: var(--text-light);
	line-height: 1.6;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

a {
	text-decoration: none;
	color: var(--text-light);
	transition: color 0.3s ease;
}

a:hover {
	color: var(--gold);
}

button,
.btn {
	display: inline-block;
	background-color: var(--gold);
	color: var(--primary-dark);
	padding: 12px 25px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
}

button:hover,
.btn:hover {
	background-color: var(--coral);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

h1,
h2,
h3,
h4,
h5 {
	margin-bottom: 20px;
	font-weight: 700;
}

h1 {
	font-size: 3rem;
}

h2 {
	font-size: 2.5rem;
	position: relative;
	padding-bottom: 15px;
}

h2:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 4px;
	background-color: var(--gold);
}

section {
	padding: 80px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 50px;
}

.section-title h2:after {
	left: 50%;
	transform: translateX(-50%);
}

/* Header Styles */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(13, 27, 42, 0.9);
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 15px 0;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 2rem;
	font-weight: 700;
	color: var(--gold);
}

/* Navigation Menu */
.nav-menu {
	display: flex;
	list-style: none;
}

.nav-menu li {
	margin-left: 20px;
}

/* Mobile Menu (Checkbox Hack) */
.mobile-menu-toggle {
	display: none;
}

.menu-icon {
	display: none;
	cursor: pointer;
	width: 30px;
	height: 21px;
	position: relative;
}

.menu-icon span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: var(--gold);
	border-radius: 9px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: .25s ease-in-out;
}

.menu-icon span:nth-child(1) {
	top: 0px;
}

.menu-icon span:nth-child(2),
.menu-icon span:nth-child(3) {
	top: 9px;
}

.menu-icon span:nth-child(4) {
	top: 18px;
}

/* Hero Section */
#hero {
	height: 100vh;
	min-height: 600px;
	display: flex;
	align-items: center;
	background: url('../img/ZaSP1.jpg') no-repeat center center/cover;
	position: relative;
}

#hero:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(13, 27, 42, 0.7);
}

.hero-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin: 0 auto;
}

.hero-content h1 {
	font-size: 3rem;
	margin-bottom: 20px;
	animation: fadeInUp 1s ease-out;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	max-width: 600px;
	animation: fadeInUp 1s ease-out 0.3s;
	animation-fill-mode: both;
}

.cta-btn {
	animation: fadeInUp 1s ease-out 0.6s;
	animation-fill-mode: both;
}

/* About Section */
#about {
	background-color: var(--background-block);
}

.about-content {
	display: flex;
	align-items: center;
	gap: 40px;
}

.about-text {
	flex: 1;
}

.about-image {
	flex: 1;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image img {
	width: 100%;
	height: auto;
	transition: transform 0.5s ease;
}

.about-image:hover img {
	transform: scale(1.05);
}

/* Services Section */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.service-card {
	background-color: var(--background-block);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-image {
	height: 200px;
	overflow: hidden;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
	transform: scale(1.1);
}

.service-content {
	padding: 20px;
}

.service-content h3 {
	color: var(--gold);
	margin-bottom: 15px;
}

/* Why Choose Us Section */
#why-choose {
	background-color: var(--primary-dark);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.feature-item {
	text-align: center;
	padding: 30px 20px;
	background-color: var(--background-block);
	border-radius: 10px;
	transition: transform 0.3s ease;
}

.feature-item:hover {
	transform: translateY(-10px);
}

.feature-icon {
	font-size: 2.5rem;
	color: var(--gold);
	margin-bottom: 20px;
}

/* Testimonials Section */
.testimonial-slider {
	position: relative;
	overflow: hidden;
}

.testimonials {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;

}

.testimonial {
	padding: 15px;
	background-color: var(--background-block);
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
	font-style: italic;
	margin-bottom: 20px;
}

.client-info {
	display: flex;
	align-items: center;
}

.client-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
}

.client-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.client-name {
	font-weight: 600;
}

.client-position {
	color: var(--gold);
	font-size: 0.9rem;
}



/* FAQ Section */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 15px;
	border-radius: 10px;
	overflow: hidden;
}

.faq-question {
	position: relative;
	padding: 20px;
	background-color: var(--background-block);
	cursor: pointer;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-question::after {
	content: '+';
	font-size: 1.5rem;
	color: var(--gold);
}

.faq-toggle {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	background-color: rgba(30, 42, 56, 0.8);
	transition: max-height 0.5s ease;
}

.faq-answer-content {
	padding: 0 20px 20px;
}

.faq-toggle:checked~.faq-answer {
	max-height: 500px;
}

.faq-toggle:checked+.faq-question::after {
	content: '-';
}

/* Contact Form Section */
#contact {
	background-color: var(--background-block);
}

.contact-form {
	max-width: 700px;
	margin: 0 auto;
	background-color: var(--primary-dark);
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
}

.form-control {
	width: 100%;
	padding: 12px 15px;
	background-color: rgba(244, 244, 244, 0.1);
	border: 1px solid rgba(244, 244, 244, 0.2);
	border-radius: 5px;
	color: var(--text-light);
	transition: border-color 0.3s ease;
}

.form-control:focus {
	border-color: var(--gold);
	outline: none;
}

.form-control::placeholder {
	color: rgba(244, 244, 244, 0.5);
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
	margin-right: 10px;
	margin-top: 5px;
}

select.form-control {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23F4D35E' 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 15px center;
	padding-right: 45px;
}

/* Style the option background */
select.form-control option {
	background-color: var(--background-block);
	color: var(--text-light);
	padding: 10px;
}

/* Licenses Section */
.license-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.license-item {
	background-color: var(--background-block);
	padding: 20px;
	border-radius: 10px;
	text-align: center;
	transition: transform 0.3s ease;
}

.license-item:hover {
	transform: translateY(-5px);
}

.license-icon {
	font-size: 2.5rem;
	color: var(--gold);
	margin-bottom: 15px;
}

/* Footer Styles */
footer {
	background-color: var(--primary-dark);
	padding: 60px 0 30px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-column h3 {
	color: var(--gold);
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 10px;
}

.footer-column h3:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background-color: var(--gold);
}

.footer-column p,
.footer-column address {
	margin-bottom: 15px;
	font-style: normal;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(244, 244, 244, 0.1);
}

/* Thank You Page */
.thanks {
	border: 2px solid var(--gold);
	margin: 10rem auto 5rem;
	padding: 2rem;
	text-align: center;
	max-width: 500px;
	background-color: var(--background-block);
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.thanks h1 {
	color: var(--gold);
}

/* Cookie Consent */
.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--background-block);
	padding: 15px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
	z-index: 9999;
	transform: translateY(100%);
	transition: transform 0.5s ease;
}

.cookie-consent.show {
	transform: translateY(0);
}

.cookie-text {
	flex: 1;
	margin-right: 20px;
}

.cookie-buttons {
	display: flex;
	gap: 10px;
}

/* Policy Pages */
.policy-content {
	max-width: 900px;
	margin: 0 auto;
	background-color: var(--background-block);
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(244, 244, 244, 0.1);
}

.policy-content {
	word-break: break-word;
	overflow-wrap: break-word;
}


.policy-content h1 {
	color: var(--gold);
	margin-bottom: 30px;
}

.policy-content h2 {
	color: var(--coral);
	margin: 30px 0 15px;
}

.policy-content p {
	margin-bottom: 15px;
}

.policy-content ul,
.policy-content ol {
	margin-bottom: 20px;
	margin-left: 20px;
}

.policy-content li {
	margin-bottom: 10px;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
	h1 {
		font-size: 1.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	.about-content {
		flex-direction: column;
	}

	.about-image {
		order: -1;
		margin-bottom: 30px;
	}
}

@media screen and (max-width: 768px) {
	.menu-icon {
		display: block;
	}

	.nav-menu {
		position: fixed;
		top: 70px;
		left: 0;
		width: 100%;
		background-color: var(--primary-dark);
		flex-direction: column;
		padding: 20px;
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
		transition: clip-path 0.4s ease;
		z-index: 999;
	}

	.nav-menu li {
		margin: 15px 0;
	}

	.mobile-menu-toggle:checked~.nav-menu {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}

	.mobile-menu-toggle:checked+.menu-icon span:nth-child(1) {
		top: 9px;
		width: 0%;
		left: 50%;
	}

	.mobile-menu-toggle:checked+.menu-icon span:nth-child(2) {
		transform: rotate(45deg);
	}

	.mobile-menu-toggle:checked+.menu-icon span:nth-child(3) {
		transform: rotate(-45deg);
	}

	.mobile-menu-toggle:checked+.menu-icon span:nth-child(4) {
		top: 9px;
		width: 0%;
		left: 50%;
	}

	.hero-content h1 {
		font-size: 2rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
	}

	.cookie-consent {
		flex-direction: column;
		padding: 20px;
	}

	.cookie-text {
		margin-right: 0;
		margin-bottom: 15px;
	}

	.testimonial {
		width: 100%;
	}
}