/* Gregor Font */
@font-face {
	font-family: "Gregor";
	src: url("./Gregor_reg_v20-06-2013.otf") format("opentype");
	font-weight: normal;
	font-style: normal;
}

/* Base Styles */
:root {
	--primary-color: #263248;
	--primary-light: #3a465c;
	--accent-color: #ff720d;
	--accent-color-light: #ffa05c;
	--text-light: #ffffff;
	--text-dark: #333333;
	--background-light: #ffffff;
	--background-gray: #f5f5f5;
	--border-color: #e0e0e0;
	--shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	--transition: all 0.3s ease;
	--success-color: #28a745;
	--warning-color: #ffc107;
	--danger-color: #dc3545;
	--info-color: #17a2b8;
}

::-webkit-scrollbar {
	width: 12px;
	height: 12px;
}

::-webkit-scrollbar-track {
	background: var(--background-gray);
	border-radius: 12px;
}

::-webkit-scrollbar-thumb {
	background: var(--primary-light);
	border-radius: 12px;
	border: 2px solid var(--background-gray);
}

::-webkit-scrollbar-thumb:hover {
	background: var(--primary-color);
}

input[type="checkbox"] {
	appearance: none;
	width: 18px;
	min-width: 18px;
	height: 18px;
	border: 2px solid var(--border-color);
	border-radius: 4px;
	display: inline-block;
	position: relative;
	cursor: pointer;
	background: var(--background-light);
	transition: var(--transition);
}

input[type="checkbox"]:checked {
	background: var(--success-color);
	border-color: var(--success-color);
}

input[type="checkbox"]::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3px;
	height: 8px;
	border: solid var(--text-light);
	border-width: 0 2px 2px 0;
	transform: translate(-2px, -6px) rotate(45deg);
	opacity: 0;
	transition: var(--transition);
}

input[type="checkbox"]:checked::after {
	opacity: 1;
}

select {
	background: var(--background-light);
	border: 2px solid var(--border-color);
	border-radius: 5px;
	padding: 10px;
	font-size: 16px;
	color: var(--text-dark);
	box-shadow: var(--shadow);
	transition: var(--transition);
	cursor: pointer;
	outline: none;
}

select:hover {
	border-color: var(--primary-color);
}

select:focus {
	border-color: var(--accent-color);
	box-shadow: 0 0 5px var(--accent-color);
}

select::-ms-expand {
	display: none; /* Para IE */
}

select::after {
	content: "▼";
	font-size: 14px;
	color: var(--text-dark);
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

* {
	scrollbar-width: 12px;
	scrollbar-color: var(--primary-light) var(--background-gray);
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Gregor", serif;
	line-height: 1.6;
	color: var(--text-dark);
	background-color: var(--background-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Old Standard TT", serif;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

a {
	text-decoration: none;
	color: var(--primary-color);
	transition: var(--transition);
}

a:hover {
	color: var(--accent-color);
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

#headercontainer {
	max-width: 1600px;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	position: relative;
	padding-bottom: 1rem;
	font-weight: 700;
	letter-spacing: 1px;
}

.section-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background-color: var(--accent-color);
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 1rem 2rem;
	border-radius: 30px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: var(--transition);
	border: none;
	font-size: 1rem;
	font-family: "Gregor", serif;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.primary-btn {
	background-color: var(--primary-color);
	color: var(--text-light);
}

.primary-btn:hover {
	background-color: var(--primary-light);
	transform: translateY(-3px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.secondary-btn {
	background-color: transparent;
	color: var(--text-light);
	border: 2px solid var(--text-light);
}

.secondary-btn:hover {
	background-color: var(--text-light);
	color: var(--primary-color);
	transform: translateY(-3px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Header */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgb(255, 255, 255);
	box-shadow: var(--shadow);
	z-index: 1000;
	padding: 1rem 0;
	transition: var(--transition);
}

header.scrolled {
	padding: 0.5rem 0;
}

header .container {
	display: flex;
	font-size: 1.4rem;
	justify-content: space-between;
	align-items: center;
}

.logo {
	width: 200px;
	height: fit-content;
	display: flex;
	transition: var(--transition);
	align-items: center;
	gap: 5px;
}

header.scrolled .logo {
	width: 100px;
}

.logo img {
	width: auto;
	border-radius: 4px;
	height: 100%;
	object-fit: cover;
}

nav {
	display: flex;
	align-items: center;
}

.menu {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.menu li a {
	font-weight: 500;
	padding: 0.5rem;
	position: relative;
}

.menu li a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--accent-color);
	transition: var(--transition);
}

.menu li a:hover::after {
	width: 100%;
}

.menu-toggle {
	display: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--primary-color);
}

/* Hero Section */
.hero {
	height: calc(100vh + 100px);
	background: linear-gradient(rgba(38, 50, 72, 0.7), rgba(38, 50, 72, 0.7)), url(https://i.postimg.cc/RCjbv2nR/056e83122839dd509efc9a0cff78c05a3b7ff86f.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	align-items: center;
	text-align: center;
	color: var(--text-light);
	margin-top: 0;
	padding-top: 80px;
	position: relative;
}

.hero::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
	z-index: 1;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.scrolldown-container {
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 100%;
	bottom: 20px;
	opacity: 1;
	transition: all 0.5s ease;
}

.scrolldown-item {
	width: 2em;
	height: 2em;
	background-color: transparent;
	z-index: 80;
	position: absolute;
	border-width: 0 0.25em 0.25em 0;
	border-style: solid;
	border-color: antiquewhite;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	opacity: 0;
	animation: scrolldown-animation 1.2s ease-in-out infinite;
}

.scrolldown-item:first-child {
	bottom: 40px;
}

.scrolldown-item:last-child {
	bottom: 25px;
	animation-delay: 0.15s;
}

@keyframes scrolldown-animation {
	0% {
		transform: translateX(-50%) translateY(20%) rotate(45deg);
		opacity: 0.7;
	}
	50% {
		transform: translateX(-50%) translateY(0%) rotate(45deg);
		opacity: 0.2;
	}
	100% {
		transform: translateX(-50%) translateY(20%) rotate(45deg);
		opacity: 0.7;
	}
}

.hero h1 {
	font-size: 5rem;
	margin-bottom: 0.5rem;
	color: var(--text-light);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h2 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	color: var(--text-light);
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero p {
	font-size: 1.3rem;
	margin-bottom: 2.5rem;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
	display: flex;
	justify-content: center;
	gap: 2rem;
}

.hero-buttons .primary-btn {
	background-color: var(--accent-color);
	color: var(--text-light);
}

.hero-buttons .primary-btn:hover {
	background-color: var(--accent-color-light);
	transform: translateY(-3px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.hero-buttons .secondary-btn {
	background-color: var(--primary-color);
	color: var(--text-light);
	border: 2px solid var(--text-light);
}

.hero-buttons .secondary-btn:hover {
	background-color: var(--primary-light);
	color: var(--text-light);
	transform: translateY(-3px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
	padding: 4rem 0;
	background-color: var(--background-light);
	position: relative;
}

.about-content {
	display: flex;
	align-items: center;
	gap: 4rem;
}

.about-text {
	flex: 1;
}

.about-text p {
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	line-height: 1.8;
}

.about-image {
	flex: 1;
	position: relative;
	display: flex;
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}

.about-image::before {
	content: " ";
	position: absolute;
	top: -20px;
	left: -20px;
	width: 100px;
	height: 100px;
	border-top: 5px solid var(--accent-color);
	border-left: 5px solid var(--accent-color);
	z-index: 2;
}

.about-image::after {
	content: " ";
	position: absolute;
	bottom: -20px;
	right: -20px;
	width: 100px;
	height: 100px;
	border-bottom: 5px solid var(--accent-color);
	border-right: 5px solid var(--accent-color);
	z-index: 2;
}

/* Services Section */
.services {
	padding: 4rem 0;
	background-color: var(--background-gray);
	position: relative;
}

.services::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2.5rem;
}

.service-card {
	background-color: var(--background-light);
	padding: 2.5rem 2rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: var(--primary-color);
	opacity: 0.05;
	transition: var(--transition);
	z-index: -1;
}

.service-card:hover {
	transform: translateY(-15px);
}

.service-card:hover::before {
	height: 100%;
}

.service-card i {
	font-size: 3.5rem;
	color: var(--accent-color);
	margin-bottom: 1.5rem;
	transition: var(--transition);
}

.service-card:hover i {
	transform: scale(1.1);
}

.service-card h3 {
	margin-bottom: 1.2rem;
	font-size: 1.5rem;
}

.services-contact {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin: auto;
	text-align: center;
	margin-top: 1.5rem;
	padding: 1rem 1.5rem;
	border: 2px solid var(--border-color);
	background: var(--background-light);
	color: var(--text-dark);
	border-radius: 10px;
	width: fit-content;
	max-width: 600px;
	font-size: 1rem;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.services-contact i {
	font-size: 2.5rem;
	color: var(--accent-color);
}

.services-contact a {
	color: var(--accent-color);
	font-weight: bold;
	text-decoration: none;
	transition: color 0.3s ease;
}

.services-contact a:hover {
	color: var(--accent-color-light);
}

/* FAQ Section */
.faq {
	padding: 4rem 0;
	background-color: var(--background-light);
	position: relative;
}

.faq::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: linear-gradient(to bottom, rgba(245, 245, 245, 1), rgba(245, 245, 245, 0));
}

.accordion {
	max-width: 900px;
	margin: 0 auto;
}

.accordion-item {
	margin-bottom: 1.5rem;
	border: 1px solid var(--border-color);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
}

.accordion-item:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.accordion-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.8rem;
	background-color: var(--background-light);
	cursor: pointer;
	transition: var(--transition);
}

.accordion-item.active .accordion-header {
	background-color: var(--primary-color);
}

.accordion-header h3 {
	margin: 0;
	font-size: 1.2rem;
	transition: var(--transition);
}

.accordion-item.active .accordion-header h3 {
	color: var(--text-light);
}

.accordion-header i {
	transition: var(--transition);
	color: var(--primary-color);
}

.accordion-item.active .accordion-header i {
	transform: rotate(45deg);
	color: var(--text-light);
}

.accordion-content {
	padding: 0;
	max-height: 0;
	overflow: hidden;
	transition: all 0.5s ease;
	background-color: var(--background-light);
}

.accordion-content p {
	padding: 1.8rem;
	line-height: 1.8;
}

.accordion-item.active .accordion-content {
	max-height: 500px;
}

/* Contact Section */
.contact {
	padding: 4rem 0;
	background-color: var(--background-gray);
	position: relative;
}

.contact::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.contact-content {
	display: flex;
	gap: 4rem;
}

.contact-info {
	flex: 1;
	background-color: var(--background-light);
	padding: 2.5rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-item-container {
	display: flex;
	margin-bottom: 1rem;
	justify-content: flex-start;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.contact-item {
	display: flex;
	align-items: center;
}

.contact-item i {
	font-size: 1.8rem;
	color: var(--accent-color);
	margin-right: 1.5rem;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(165, 42, 42, 0.1);
	border-radius: 50%;
	transition: var(--transition);
}

.contact-item:hover i {
	background-color: var(--accent-color);
	color: var(--text-light);
	transform: scale(1.1);
}

.contact-item p {
	font-size: 1.1rem;
}

.social-media {
	display: flex;
	gap: 1.2rem;
	margin-top: 2rem;
	flex-wrap: wrap;
	justify-content: center;
}

.availability {
	background-color: var(--background-gray);
	padding: 12px 16px;
	border-radius: 8px;
	box-shadow: var(--shadow);
	max-width: 320px;
	display: flex;
	gap: 1rem;
	flex-direction: column;
	margin-top: 2rem;
}

.availability p {
	font-size: 1.4rem;
	font-weight: bold;
}

.availability ul {
	list-style: none;
	width: 100%;
}

.availability li {
	font-size: 1rem;
	width: 100%;
	color: var(--text-dark);
	padding: 4px 0;
	border-bottom: 1px solid var(--border-color);
}

.availability li:last-child {
	border-bottom: none;
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--primary-color);
	color: var(--text-light);
	font-size: 1.3rem;
	transition: var(--transition);
}

.social-icon:hover {
	background-color: var(--accent-color);
	color: var(--primary-color);
	transform: scale(1.1);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-form {
	flex: 2;
	background-color: var(--background-light);
	padding: 2.5rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.checkbox-group {
	display: flex;
	align-items: center;
}

.checkbox-group input {
	width: auto;
	margin-right: 10px;
	cursor: pointer;
}

.checkbox-group label {
	margin: 0;
	font-size: 0.95rem;
	cursor: pointer;
}

/* Footer */
footer {
	background-color: var(--primary-color);
	color: var(--text-light);
	padding: 5rem 0 2rem;
	position: relative;
}

footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: linear-gradient(to bottom, rgba(245, 245, 245, 1), rgba(245, 245, 245, 0));
}

.labdigital {
	color: rgb(234, 247, 255);
	text-decoration: underline;
	font-weight: bold;
	transition: 0.3s ease all;
}

.labdigital:hover {
	text-decoration: underline;
	color: rgb(183, 224, 255);
}

.footer-content {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 3rem;
	margin-bottom: 4rem;
	padding-top: 4rem;
	position: relative;
	z-index: 1;
}

.footer-logo {
	height: auto;
	width: 256px;
	display: flex;
	align-items: end;
}

.footer-links h3,
.footer-contact h3 {
	color: var(--text-light);
	margin-bottom: 1.8rem;
	position: relative;
	padding-bottom: 0.8rem;
	font-size: 1.5rem;
}

.footer-links h3::after,
.footer-contact h3::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background-color: var(--accent-color);
}

.footer-links ul li {
	margin-bottom: 1rem;
}

.footer-links ul li a {
	color: var(--text-light);
	opacity: 0.8;
	transition: var(--transition);
}

.footer-links ul li a:hover {
	opacity: 1;
	padding-left: 5px;
	color: var(--accent-color);
}

.footer-contact p {
	display: flex;
	align-items: center;
	margin-bottom: 1.2rem;
}

.footer-contact p i {
	margin-right: 15px;
	color: var(--accent-color);
}

.footer-contact p a {
	color: var(--text-light);
	transition: var(--transition);
}

.footer-contact p a:hover {
	color: var(--accent-color);
}

.footer-bottom {
	text-align: center;
	padding-top: 2.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	z-index: 1;
}

/* WhatsApp Button */
.whatsapp-btn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 65px;
	height: 65px;
	background-color: #25d366;
	color: var(--text-light);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2.2rem;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
	z-index: 100;
	transition: var(--transition);
}

.whatsapp-btn:hover {
	transform: scale(1.1) rotate(10deg);
	color: var(--text-light);
}

.whatsapp-btn::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #25d366;
	opacity: 0.6;
	animation: pulse 2s infinite;
	z-index: -1;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 0.6;
	}
	70% {
		transform: scale(1.5);
		opacity: 0;
	}
	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}

/* Modal */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 2000;
	overflow-y: auto;
	backdrop-filter: blur(5px);
}

.modal-content {
	background-color: var(--background-light);
	margin: 5% auto;
	padding: 3rem;
	width: 90%;
	max-width: 800px;
	border-radius: 15px;
	position: relative;
	animation: modalFadeIn 0.5s;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

@keyframes modalFadeIn {
	from {
		opacity: 0;
		transform: translateY(-70px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.close-modal {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 2.2rem;
	cursor: pointer;
	color: var(--text-dark);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: var(--transition);
}

.close-modal:hover {
	background-color: rgba(0, 0, 0, 0.1);
	color: var(--accent-color);
	transform: rotate(90deg);
}

.modal h2 {
	text-align: center;
	margin-bottom: 2.5rem;
	font-size: 2.2rem;
	color: var(--primary-color);
	position: relative;
	margin-top: 25px;
	padding-bottom: 1rem;
}

.modal h2::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background-color: var(--accent-color);
}

.staff-request {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.staff-type {
	display: flex;
	flex-direction: column;
}

.file-upload {
	position: relative;
	overflow: hidden;
	margin-top: 10px;
	width: 100%;
}

.file-upload input[type="file"] {
	position: absolute;
	top: 0;
	right: 0;
	min-width: 100%;
	min-height: 100%;
	font-size: 100px;
	text-align: right;
	filter: alpha(opacity=0);
	opacity: 0;
	outline: none;
	cursor: pointer;
	display: block;
}

.file-upload-btn {
	display: block;
	width: 100%;
	padding: 1rem;
	background-color: var(--primary-color);
	color: var(--text-light);
	border: none;
	border-radius: 8px;
	cursor: pointer;
	text-align: center;
	transition: var(--transition);
}

.file-upload-btn:hover {
	background-color: var(--primary-light);
}

.file-name {
	margin-top: 10px;
	font-size: 0.9rem;
	color: var(--primary-color);
}

.file-size-error {
	color: var(--danger-color);
	font-size: 0.9rem;
	margin-top: 5px;
	display: none;
}

#cv-success-container,
#request-success-container {
	font-family: "Old Standard TT", serif;
	font-size: 22px;
	background-color: var(--border-color);
	color: var(--text-dark);
	border: 3px solid var(--success-color);
	border-radius: 8px;
	padding: 20px;
	text-align: center;
	box-shadow: var(--shadow);
	max-width: 600px;
	margin: 20px auto;
	line-height: 1.6;
	transition: var(--transition);
}

#cv-success-container strong,
#request-success-container strong {
	font-weight: bold;
}

#admin-access-btn {
	position: fixed;
	top: 10px;
	right: 10px;
	color: var(--primary-color);
	background-color: rgb(255, 255, 255);
	padding: 6px 6px;
	border: none;
	font-size: 1rem;
	opacity: 0.2;
	cursor: pointer;
	transition: opacity 0.3s ease;
	z-index: 100000000000000;
}

#admin-access-btn:hover {
	opacity: 0.8;
}

/* Driver's license toggle */
.toggle-container {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: -5px;
}

.toggle {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
	margin: 0.5rem 0;
}

.toggle input {
	opacity: 0;
	width: 0;
	height: 0;
}

.toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: 0.4s;
	border-radius: 34px;
}

.toggle-slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: 0.4s;
	border-radius: 50%;
}

input:checked + .toggle-slider {
	background-color: var(--success-color);
}

input:focus + .toggle-slider {
	box-shadow: 0 0 1px var(--success-color);
}

input:checked + .toggle-slider:before {
	transform: translateX(26px);
}

.toggle-label {
	font-size: 1rem;
	font-weight: 500;
}

/* CV Form Grid */
.cv-form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.cv-form-full {
	grid-column: span 2;
}

.form-group {
	margin-bottom: 1.25rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.8rem;
	font-weight: 500;
	font-size: 1.1rem;
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	font-family: serif;
	font-size: 1.1rem;
	transition: var(--transition);
}

.form-group input:not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(38, 50, 72, 0.2);
}

.form-group textarea {
	height: 180px;
	resize: vertical;
}

.dropdown {
	position: relative;
	display: inline-block;
	width: 100%;
}

.dropdown-btn {
	padding: 10px 20px;
	background-color: var(--primary-color);
	color: var(--text-light);
	border: 1px solid var(--border-color);
	border-radius: 5px;
	cursor: pointer;
	font-size: 1rem;
	width: 100%;
}

.dropdown-btn:hover {
	background-color: var(--primary-light);
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: var(--background-light);
	min-width: 160px;
	border: 1px solid var(--border-color);
	border-radius: 5px;
	z-index: 1;
	padding: 10px;
	box-shadow: var(--shadow);
	width: 100%;
}

.dropdown-content label {
	display: block;
	display: flex;
	padding: 8px;
	align-items: center;
	cursor: pointer;
	font-size: 1rem;
}

.dropdown-content label input {
	margin-right: 10px;
}

.dropdown-content label:hover {
	background-color: var(--background-gray);
}

.dropdown:hover .dropdown-content {
	display: block;
}

.dropdown-content input:checked + label {
	font-weight: bold;
}

.dropdownlng {
	position: relative;
	display: inline-block;
	width: 100%;
}

.dropdownlng-btn {
	padding: 10px 20px;
	background-color: var(--primary-color);
	color: var(--text-light);
	border: 1px solid var(--border-color);
	border-radius: 5px;
	cursor: pointer;
	font-size: 1rem;
	width: 100%;
}

.dropdownlng-btn:hover {
	background-color: var(--primary-light);
}

.dropdownlng-content {
	display: none;
	position: absolute;
	background-color: var(--background-light);
	min-width: 160px;
	border: 1px solid var(--border-color);
	border-radius: 5px;
	z-index: 1;
	padding: 10px;
	box-shadow: var(--shadow);
	width: 100%;
}

.dropdownlng-content label {
	display: block;
	display: flex;
	padding: 8px;
	align-items: center;
	cursor: pointer;
	font-size: 1rem;
}

.dropdownlng-content label input {
	margin-right: 10px;
}

.dropdownlng-content label:hover {
	background-color: var(--background-gray);
}

.dropdownlng:hover .dropdownlng-content {
	display: block;
}

.dropdownlng-content input:checked + label {
	font-weight: bold;
}

/* Status badges */
.status {
	display: inline-block;
	padding: 0.3rem 0.8rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.status-new {
	background-color: rgba(23, 162, 184, 0.2);
	color: var(--info-color);
}

.status-in-progress {
	background-color: rgba(255, 193, 7, 0.2);
	color: var(--warning-color);
}

.status-completed {
	background-color: rgba(40, 167, 69, 0.2);
	color: var(--success-color);
}

.status-rejected {
	background-color: rgba(220, 53, 69, 0.2);
	color: var(--danger-color);
}

/* Notification */
#notification-container {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 300px;
	z-index: 1000000;
}

.notification {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	padding: 1rem;
	border-radius: 5px;
	font-family: "Old Standard TT";
	font-size: 20px;
	color: white;
	font-weight: 600;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.3s ease-in-out;
}

.notification.show {
	opacity: 1;
	transform: translateY(0);
}

.notification.success {
	background-color: var(--success-color);
}

.notification.error {
	background-color: var(--danger-color);
}

.notification.info {
	background-color: var(--info-color);
}

.close-btn {
	background: none;
	border: none;
	color: white;
	font-size: 16px;
	cursor: pointer;
}

.progress-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: rgba(255, 255, 255, 0.5);
	animation: progress 5s linear forwards;
}

@keyframes progress {
	from {
		width: 100%;
	}
	to {
		width: 0%;
	}
}

/* Responsive Styles */
@media (max-width: 992px) {
	#admin-access-btn {
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
		transform: none;
		margin: 10px auto 0;
		font-size: 0.9rem;
		display: block;
	}

	.menu {
		display: flex;
		position: absolute;
		height: 100vh;
		top: 100%;
		left: 0;
		max-height: 0px;
		overflow: hidden;
		width: 100%;
		transition: all 0.5s ease;
		background-color: var(--background-light);
		flex-direction: column;
		box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
		z-index: 1000;
	}

	.availability {
		margin: auto;
		margin-top: 2rem;
	}

	.contact-item-container {
		justify-content: center;
		gap: 2rem;
	}

	.menu.active {
		height: 100vh;
		max-height: 100vh;
	}

	.menu li {
		margin: 0;
		text-align: center;
	}

	.menu li a {
		display: block;
		padding: 1rem;
	}

	.menu-toggle {
		display: block;
	}

	.hero h1 {
		font-size: 4rem;
	}

	.hero h2 {
		font-size: 2.2rem;
	}

	.about-content {
		flex-direction: column;
	}

	.contact-content {
		flex-direction: column;
	}

	.section-title {
		font-size: 2.2rem;
	}
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 3.5rem;
	}

	.hero h2 {
		font-size: 1.7rem;
	}

	.hero-buttons {
		flex-direction: column;
		gap: 1rem;
	}

	.staff-request {
		grid-template-columns: 1fr;
	}

	.modal-content {
		padding: 2rem;
		margin: 2% auto;
		max-height: 90vh;
		overflow-y: auto;
	}

	.cv-form-grid {
		grid-template-columns: 1fr;
	}

	.cv-form-full {
		grid-column: span 1;
	}
}

@media (max-width: 576px) {
	.hero h1 {
		font-size: 2.7rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
	}

	.footer-logo {
		margin: 0 auto;
	}

	.footer-links h3::after,
	.footer-contact h3::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.footer-contact p {
		justify-content: center;
	}

	.modal-content {
		padding: 1.5rem;
	}

	.dropdown-content {
		position: relative;
		max-height: 350px;
		overflow-y: auto;
	}

	.dropdownlng-content {
		position: relative;
		max-height: 350px;
		overflow-y: auto;
	}
}
