/* Global Styles */
:root {
	--primary-bg: #0f172a;
	--secondary-bg: #1e293b;
	--accent-blue: #3b82f6;
	--accent-green: #10b981;
	--text-primary: #ffffff;
	--text-secondary: #cbd5e1;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 40px;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: var(--primary-bg);
	color: var(--text-primary);
	line-height: 1.6;
}

section[id] {
	scroll-margin-top: 40px;
}

div {
	word-break: break-word;
	overflow-wrap: break-word;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 1rem;
	font-weight: 700;
	line-height: 1.2;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
}

h3 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1rem;
	color: var(--text-secondary);
}

a {
	color: var(--accent-blue);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--accent-green);
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.section-padding {
	padding: 5rem 0;
}

/* Header Styles */
header {
	background-color: var(--primary-bg);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
}

/* Navigation */
.hamburger-menu {
	display: none;
}

.menu-toggle {
	display: none;
}

nav ul {
	display: flex;
	list-style: none;
}

nav ul li {
	margin-left: 1.5rem;
}

nav ul li a {
	color: var(--text-primary);
	font-weight: 500;
}

/* Hero Section */
.hero {
	height: 80vh;
	background-image: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('./img/UMBAh.jpg');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	text-align: center;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

.cta-button {
	display: inline-block;
	padding: 0.8rem 1.5rem;
	background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
	color: white;
	border-radius: 5px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
	color: white;
}

/* About Section */
.about {
	background-color: var(--secondary-bg);
}

/* Services Section */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.service-card {
	background: linear-gradient(145deg, var(--primary-bg), var(--secondary-bg));
	border-radius: 10px;
	padding: 1.5rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.service-card img {
	width: 100%;
	height: auto;
	max-height: 150px;
	object-fit: cover;
	border-radius: 5px;
	margin-bottom: 1rem;
}

.service-card h3 {
	margin-top: 1rem;
	color: var(--accent-blue);
}

/* Benefits Section */
.benefits {
	background-color: var(--secondary-bg);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.benefit-item {
	text-align: center;
	padding: 1.5rem;
}

.benefit-item img {
	width: 64px;
	height: 64px;
	margin-bottom: 1rem;
}

/* Why Choose Us Section */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.feature-item {
	background: linear-gradient(145deg, var(--primary-bg), var(--secondary-bg));
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.feature-item h3 {
	color: var(--accent-blue);
	margin: 1rem 0;
}

/* Testimonials */
.testimonials {
	background-color: var(--secondary-bg);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.testimonial-card {
	background: linear-gradient(145deg, var(--primary-bg), var(--secondary-bg));
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-header {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.testimonial-header img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 1rem;
}

.client-name {
	font-weight: 600;
}

.client-position {
	font-size: 0.8rem;
	color: var(--text-secondary);
}

.testimonial-text {
	font-style: italic;
}

/* FAQ Section */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 1rem;
	border-radius: 5px;
	overflow: hidden;
}

.faq-question {
	cursor: pointer;
	background: linear-gradient(145deg, var(--primary-bg), var(--secondary-bg));
	padding: 1rem;
	font-weight: 600;
	display: block;
	width: 100%;
	text-align: left;
	position: relative;
}

.faq-checkbox {
	display: none;
}

.faq-answer {
	background-color: var(--secondary-bg);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease;
	padding: 0 1rem;
}

.faq-checkbox:checked~.faq-answer {
	max-height: 500px;
	padding: 1rem;
}

.faq-question:after {
	content: '+';
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
}

.faq-checkbox:checked~.faq-question:after {
	content: '-';
}

/* Contact Form Section */
.form-section {
	padding: 5rem 0;
}

.form-container {
	max-width: 600px;
	margin: 0 auto;
	background: linear-gradient(145deg, var(--primary-bg), var(--secondary-bg));
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.form-control {
	width: 100%;
	padding: 0.8rem;
	border: 1px solid var(--accent-blue);
	border-radius: 5px;
	background-color: rgba(15, 23, 42, 0.3);
	color: var(--text-primary);
	font-size: 1rem;
}

.form-control:focus {
	outline: none;
	border-color: var(--accent-green);
	box-shadow: 0 0 0 2px rgba(16, 185, 129, 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='%233b82f6' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.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: right 1rem center;
	padding-right: 2.5rem;
}

select.form-control option {
	background-color: var(--primary-bg);
	color: var(--text-primary);
}

.checkbox-group {
	margin-bottom: 1rem;
}

.checkbox-label {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.checkbox-label input {
	margin-right: 0.5rem;
}

.submit-btn {
	width: 100%;
	padding: 1rem;
	background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
	color: white;
	border: none;
	border-radius: 5px;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

/* Footer */
footer {
	background-color: var(--secondary-bg);
	padding: 3rem 0 1rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-col h3 {
	color: var(--accent-blue);
	margin-bottom: 1rem;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-bottom {
	text-align: center;
	padding-top: 1rem;
	border-top: 1px solid rgba(203, 213, 225, 0.2);
	font-size: 0.8rem;
	color: var(--text-secondary);
}

.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.social-link {
	display: inline-block;
	width: 40px;
	height: 40px;
	background-color: var(--primary-bg);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
}

.social-link:hover {
	background-color: var(--accent-blue);
}

/* Cookie Consent Popup */
.cookie-consent {
	position: fixed;
	bottom: -100%;
	left: 0;
	right: 0;
	background: linear-gradient(145deg, var(--primary-bg), var(--secondary-bg));
	padding: 1rem;
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 9999;
	transition: bottom 0.5s ease;
}

.cookie-consent.show {
	bottom: 0;
}

.cookie-text {
	flex: 1;
	margin-right: 1rem;
}

.cookie-btn {
	padding: 0.5rem 1rem;
	background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 600;
}

/* Thank You Page */
.thank-you {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 70vh;
	text-align: center;
}

.thank-you-card {
	background: linear-gradient(145deg, var(--primary-bg), var(--secondary-bg));
	border-radius: 10px;
	padding: 3rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	margin: 8rem auto 5rem;
	max-width: 600px;
}

.thank-you-card h1 {
	color: var(--accent-green);
	margin-bottom: 1.5rem;
}

/* Policy Pages */
.policy-container {
	background: linear-gradient(145deg, var(--primary-bg), var(--secondary-bg));
	border-radius: 10px;
	padding: 3rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	margin: 3rem auto;
	max-width: 900px;
}

.policy-container h1 {
	text-align: center;
	margin-bottom: 2rem;
	color: var(--accent-blue);
}

.policy-container h2 {
	color: var(--accent-green);
	margin-top: 2rem;
}

.policy-container ul,
.policy-container ol {
	margin-left: 2rem;
	margin-bottom: 1rem;
}

/* Mobile Menu */
@media (max-width: 768px) {
	nav ul {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: var(--primary-bg);
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
	}

	.hamburger-menu {
		display: flex;
		flex-direction: column;
		gap: 6px;
		order: 2;
		cursor: pointer;
		width: 30px;
		height: 20px;
		position: relative;
	}

	.hamburger-menu span {
		display: block;
		width: 30px;
		height: 2px;
		background: white;
	}

	.menu-toggle {
		display: none;
	}

	.menu-toggle:checked~nav ul {
		display: flex;
	}

	nav ul li {
		margin: 0;
		text-align: center;
		border-bottom: 1px solid rgba(203, 213, 225, 0.1);
	}

	nav ul li a {
		display: block;
		padding: 1rem;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.section-padding {
		padding: 3rem 0;
	}

	h2 {
		font-size: 1.5rem;
	}
}

/* Responsive adjustments */
@media (max-width: 576px) {
	.container {
		width: 95%;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.hero {
		height: 60vh;
	}

	.service-card,
	.feature-item,
	.testimonial-card {
		padding: 1rem;
	}
}