:root {
	font-family: 'Outfit', sans-serif;
	font-weight: 300;
	--gold: #ab9559;
	--gold-light: #9f9067;
	--gold-dark: #876F30;
	--dark-grey: #2C2C2C;
	--darker-grey: #1A1A1A;
	--black: #000000;
	--white: #FFFFFF;
	--light-grey: #F8F9FA;
}

* {
	box-sizing: border-box;
}

body {
	font-family: 'Outfit', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: var(--white);
	opacity: 1;
}

a {
	text-decoration: none !important;
}

.custom-navbar {
	background: linear-gradient(to bottom, #ffffff, #eaeaea);
	backdrop-filter: blur(10px);
	border-bottom: 5px solid var(--gold);
	transition: all 0.3s ease;
}

.custom-nav-link {
	color: var(--black) !important;
	font-weight: 500;
	padding: 10px 20px;
	transition: all 0.3s ease;
	position: relative;
}

.custom-nav-link:hover {
	color: var(--gold) !important;
}

.custom-nav-link.active {
	color: var(--gold) !important;
}

.blur-background {
	filter: blur(5px);
	transition: filter 0.3s ease;
}

.custom-offcanvas {
	background: var(--dark-grey);
	border-right: 3px solid var(--gold);
}

.offcanvas-nav-link {
	color: var(--white) !important;
	padding: 20px 25px;
	transition: color 0.3s ease;
	display: block;
	font-size: 1.1rem;
	font-weight: 500;
}

.offcanvas-nav-link:hover {
	color: var(--gold) !important;
}

.offcanvas-content {
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

.offcanvas-menu {
	flex: 1;
	padding-bottom: 200px;
}

.offcanvas-footer {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--black);
	padding: 20px;
	border-top: 1px solid var(--gold);
}

.offcanvas-footer-title {
	color: var(--gold);
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 10px;
	text-align: center;
}

.offcanvas-contact {
	text-align: center;
	color: #ccc;
	font-size: 0.9rem;
	line-height: 1.8;
}

.offcanvas-contact-item {
	display: block;
	margin-bottom: 5px;
}

.offcanvas-contact-label {
	color: var(--gold);
	font-weight: 600;
	display: inline-block;
	width: 60px;
	text-align: left;
}

.hero-section {
	background: var(--light-grey);
	min-height: 90vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	background-image: url('../img/logo-spine.svg');
	background-size: cover;
	background-position: center right;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 60%;
	height: 100%;
	background: rgba(212, 175, 55, 0.08);
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-photo {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-photo img{
	box-shadow: 20px 20px 0 0 var(--gold-dark);
}

.hero-photo-placeholder::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.1);
}

.hero-photo-button {
	text-align: center;
	margin-top: 30px;
	position: relative;
	z-index: 3;
}

@media (max-width: 768px) {
	.hero-photo-button {
		margin-top: 40px;
	}
}

.hero-title {
	font-size: 4rem;
	font-weight: 800;
	color: var(--dark-grey);
	margin-bottom: 1rem;
	line-height: 1.1;
	position: relative;
}

.hero-subtitle {
	font-size: 1.6rem;
	color: var(--gold);
	font-weight: 600;
	margin-bottom: 2rem;
	position: relative;
	padding-left: 20px;
}

.hero-subtitle::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 40px;
	background: var(--gold);
}

.hero-description {
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 3rem;
	line-height: 1.8;
	max-width: 600px;
}

.btn-gold {
	background: var(--gold);
	color: var(--white);
	border: none;
	padding: 18px 35px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	display: inline-block;
}

.btn-gold:hover {
	color: var(--white);
	filter: brightness(1.1);
}

.btn-outline-gold {
	background: transparent;
	color: var(--gold);
	border: 2px solid var(--gold);
	padding: 16px 33px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	display: inline-block;
	margin-left: 20px;
}

.btn-outline-gold:hover {
	background: var(--gold);
	color: var(--white);
}

.services-section {
	padding: 100px 0;
	background: var(--white);
	position: relative;
}

.services-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 200px;
	background: var(--light-grey);
	pointer-events: none;
}

.procedure-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.procedure-link {
	display: flex;
	align-items: center;
	padding: 12px 15px;
	background: var(--light-grey);
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	transition: all 0.3s ease;
	text-decoration: none;
	color: var(--dark-grey);
	position: relative;
	overflow: hidden;
}

.procedure-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(171, 149, 89, 0.1), transparent);
	transition: left 0.5s ease;
}

.procedure-link:hover::before {
	left: 100%;
}

.procedure-link:hover {
	background: var(--white);
	border-color: var(--gold);
	color: var(--dark-grey);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(171, 149, 89, 0.2);
}

.procedure-icon {
	margin-right: 12px;
	color: var(--gold);
	flex-shrink: 0;
}

.procedure-text {
	font-weight: 500;
	font-size: 0.9rem;
	line-height: 1.4;
}

.procedure-link:hover .procedure-text {
	color: var(--gold);
}

@media (max-width: 768px) {
	.procedure-link {
		padding: 10px 12px;
	}
	
	.procedure-text {
		font-size: 0.85rem;
	}
	
	.procedure-icon {
		margin-right: 10px;
	}
}


.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--dark-grey);
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: var(--gold);
}

.service-card {
	background: var(--white);
	padding: 40px 30px;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid #f0f0f0;
	height: 100%;
	position: relative;
	overflow: hidden;
	opacity: 1;
	visibility: visible;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 4px;
	background: var(--gold);
	transition: left 0.5s ease;
}

.service-card:hover::before {
	left: 0;
}

.service-card:hover {
	border-color: var(--gold);
}

.service-icon {
	width: 80px;
	height: 80px;
	background: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 2rem;
	color: var(--white);
	position: relative;
}

.service-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--dark-grey);
	margin-bottom: 15px;
}

.service-description {
	color: #666;
	line-height: 1.6;
}

.about-section {
	padding: 100px 0;
	background: var(--light-grey);
	position: relative;
}

.about-section::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 30%;
	height: 100%;
	background: repeating-linear-gradient(
		-45deg,
		transparent,
		transparent 30px,
		rgba(212, 175, 55, 0.03) 30px,
		rgba(212, 175, 55, 0.03) 60px
	);
}

.about-content {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #666;
	background: var(--white);
	padding: 40px;
	border-left: 4px solid var(--gold);
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.about-highlight {
	background: var(--gold);
	color: var(--white);
	padding: 40px;
	position: relative;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.about-highlight::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.1);
	transform: rotate(45deg);
}

.about-highlight h3 {
	color: var(--white);
	margin-bottom: 15px;
}

.location-section {
	padding: 100px 0;
	background: var(--white);
	position: relative;
}

.location-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		linear-gradient(45deg, transparent 49%, rgba(212, 175, 55, 0.03) 50%, transparent 51%),
		linear-gradient(-45deg, transparent 49%, rgba(212, 175, 55, 0.03) 50%, transparent 51%);
	background-size: 60px 60px;
	pointer-events: none;
}

.location-content {
	position: relative;
	z-index: 2;
}

.location-card {
	background: var(--white);
	padding: 40px 30px;
	border: 1px solid #f0f0f0;
	height: 100%;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.location-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 4px;
	background: var(--gold);
	transition: left 0.5s ease;
}

.location-card:hover::before {
	left: 0;
}

.location-card:hover {
	border-color: var(--gold);
}

.location-card .uk-text-small a {
	color: #888 !important;
}

.location-content-wrapper {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.location-details-section {
	flex: 1;
}

.location-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dark-grey);
	margin-bottom: 20px;
	text-align: center;
}

.location-item {
	margin-bottom: 20px;
	display: flex;
	align-items: flex-start;
}

.location-icon {
	width: 30px;
	height: 30px;
	background: var(--gold);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	font-weight: 600;
	flex-shrink: 0;
}

.location-details h4 {
	color: var(--dark-grey);
	font-weight: 600;
	margin-bottom: 5px;
	font-size: 0.9rem;
}

.location-details p {
	color: #666;
	margin: 0;
	line-height: 1.4;
	font-size: 0.9rem;
}

.map-container {
	position: relative;
	height: 200px;
	overflow: hidden;
	margin-top: auto;
}

.map-placeholder {
	width: 100%;
	height: 100%;
	background: var(--dark-grey);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 1rem;
	position: relative;
}

.map-placeholder::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	background: var(--gold);
}

.custom-footer {
	background: var(--black);
	color: var(--white);
	padding: 0;
	position: relative;
	overflow: hidden;
}

.footer-top {
	background: var(--dark-grey);
	padding: 80px 0 60px;
	position: relative;
}

.footer-top::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gold);
}

.footer-top::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.footer-brand-section {
	text-align: center;
	margin-bottom: 60px;
	position: relative;
	z-index: 2;
}

.footer-logo {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--gold);
	margin-bottom: 15px;
	letter-spacing: 2px;
}

.footer-tagline {
	font-size: 1.1rem;
	color: #ccc;
	margin-bottom: 20px;
	font-style: italic;
}

.footer-description {
	color: #999;
	line-height: 1.8;
	max-width: 500px;
	margin: 0 auto;
}

.footer-content {
	position: relative;
	z-index: 2;
}

.footer-section {
	margin-bottom: 40px;
}

.footer-title {
	color: var(--gold);
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 25px;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-title::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--gold);
}

.footer-link {
	color: #bbb;
	transition: all 0.3s ease;
	display: block;
	padding: 8px 0;
	position: relative;
	padding-left: 15px;
}

.footer-link::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: var(--gold);
	font-size: 0.8rem;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.footer-link:hover {
	color: var(--gold);
	padding-left: 20px;
}

.footer-link:hover::before {
	opacity: 1;
}

.footer-middle {
	background: var(--darker-grey);
	padding: 40px 0;
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
}

.footer-contact-info {
	text-align: center;
}

.footer-contact-item {
	display: inline-block;
	margin: 0 30px;
	color: #ccc;
	font-size: 0.9rem;
}

.footer-contact-label {
	color: var(--gold);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.8rem;
	letter-spacing: 1px;
	display: block;
	margin-bottom: 5px;
}

.footer-bottom {
	background: var(--black);
	padding: 25px 0;
	text-align: center;
	color: #666;
	font-size: 0.9rem;
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.footer-legal {
	color: #888;
}

.footer-legal a {
	color: var(--gold);
	margin: 0 10px;
}

.footer-legal a:hover {
	color: var(--gold-light);
}

.footer-associations {
	background: var(--black);
	padding: 50px 0;
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
	position: relative;
}

.footer-associations::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 2px;
	background: var(--gold);
}

.associations-content {
	text-align: center;
}

.associations-title {
	color: var(--gold);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 30px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.associations-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 60px;
	flex-wrap: wrap;
}

.association-logo img {
	height: 60px;
	width: auto;
	max-width: 120px;
	object-fit: contain;
}

@media (max-width: 768px) {
	.associations-logos {
		gap: 30px;
	}
	
	.association-logo img {
		height: 50px;
		max-width: 100px;
	}
	
	.footer-associations {
		padding: 40px 0;
	}
}

@media (max-width: 480px) {
	.associations-logos {
		flex-direction: column;
		gap: 25px;
	}
	
	.association-logo img {
		height: 45px;
		max-width: 90px;
	}
}


.contact-section {
	background: var(--light-grey);
	position: relative;
}

.contact-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		linear-gradient(45deg, transparent 49%, rgba(212, 175, 55, 0.05) 50%, transparent 51%),
		linear-gradient(-45deg, transparent 49%, rgba(212, 175, 55, 0.05) 50%, transparent 51%);
	background-size: 60px 60px;
	pointer-events: none;
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2.8rem;
		margin-top: 2rem;
	}
	
	.hero-subtitle {
		font-size: 1.3rem;
	}
	
	.btn-outline-gold {
		margin-left: 0;
		margin-top: 15px;
	}
	
	.section-title {
		font-size: 2rem;
	}

	.about-content {
		padding: 30px 20px;
	}

	.footer-contact-item {
		display: block;
		margin: 10px 0;
	}

	.footer-bottom-content {
		flex-direction: column;
		gap: 15px;
	}

	.hero-photo-placeholder {
		width: 250px;
		height: 300px;
	}

	.location-card {
		padding: 30px 20px;
	}

	.map-container {
		height: 150px;
	}

	.footer-section {
		text-align: center;
	}

	.footer-title::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.footer-link {
		text-align: center;
		padding-left: 0;
	}

	.footer-link::before {
		display: none;
	}

	.footer-link:hover {
		padding-left: 0;
	}
}

::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: var(--gold);
}

::-webkit-scrollbar-thumb:hover {
	background: var(--gold-dark);
}