/* ----------------------------------------------
   FONTS
----------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');


/* ----------------------------------------------
   GENERAL SETTINGS
----------------------------------------------- */

* {
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.75;
	letter-spacing: 0.02em;
	color: #777;
	overflow-x: hidden !important;
	background: #fff;
	user-select: none;
}
p {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.75;
	letter-spacing: 0.02em;
	color: #777;
	margin-bottom: 20px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Inter', sans-serif;
	font-weight: 300;
	line-height: 1.25;
	margin: 0 0 20px 0;
}
img {
	width: 100%;
	height: auto;
	transition: all 0.3s;
}
span,
a,
a:hover {
	text-decoration: none;
	color: inherit;
}
b {
	font-weight: 400;
	color: #b19777;
}


/* ----------------------------------------------
   UTILS
----------------------------------------------- */

.o-hidden {
	overflow: hidden;
}
.relative {
	position: relative;
}
.full-width {
	width: 100%;
}
.bg-img {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.bg-fixed {
	background-attachment: fixed;
}
.bold {
	font-weight: 600;
}
.valign {
	display: flex;
	align-items: center;
}
.v-middle {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 0;
	transform: translate(0%, -50%);
}
.v-bottom {
	position: absolute;
	width: 100%;
	bottom: 5%;
	left: 0;
	transform: translate(0%, -5%);
}

.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}

#map {
	width: 100%;
	height: 450px;
}

@media (max-width: 767.98px) {
	#map {
		height: 300px;
	}
}


/* ----------------------------------------------
   HELPER SPACING
----------------------------------------------- */

.mt-0	 { margin-top: 0	!important; }
.mt-10   { margin-top: 10px !important; }
.mt-20   { margin-top: 20px !important; }
.mt-30   { margin-top: 30px !important; }
.mt-40   { margin-top: 40px !important; }
.mt-50   { margin-top: 50px !important; }
.mt-60   { margin-top: 60px !important; }
.mt-70   { margin-top: 70px !important; }
.mt-80   { margin-top: 80px !important; }
.mt-90   { margin-top: 90px !important; }
.mt-100  { margin-top: 100px !important; }
.mt-110  { margin-top: 110px !important; }
.mt-120  { margin-top: 120px !important; }
.mt-130  { margin-top: 130px !important; }
.mt-140  { margin-top: 140px !important; }
.mt-150  { margin-top: 150px !important; }

.mb-0	 { margin-bottom: 0	!important; }
.mb-10   { margin-bottom: 10px !important; }
.mb-20   { margin-bottom: 20px !important; }
.mb-30   { margin-bottom: 30px !important; }
.mb-40   { margin-bottom: 40px !important; }
.mb-50   { margin-bottom: 50px !important; }
.mb-60   { margin-bottom: 60px !important; }
.mb-70   { margin-bottom: 70px !important; }
.mb-80   { margin-bottom: 80px !important; }
.mb-90   { margin-bottom: 90px !important; }
.mb-100  { margin-bottom: 100px !important; }
.mb-110  { margin-bottom: 110px !important; }
.mb-120  { margin-bottom: 120px !important; }
.mb-130  { margin-bottom: 130px !important; }
.mb-140  { margin-bottom: 140px !important; }
.mb-150  { margin-bottom: 150px !important; }

.pb-0	 { padding-bottom: 0 !important; }
.no-padding { padding: 0 !important; }


/* ----------------------------------------------
   SELECTION
----------------------------------------------- */

::-webkit-selection {
	color: #777;
	background: rgba(0, 0, 0, 0.1);
}
::-moz-selection {
	color: #777;
	background: rgba(0, 0, 0, 0.1);
}
::selection {
	color: #777;
	background: rgba(0, 0, 0, 0.1);
}


/* -----------------------------------------------
	COOKIES Banner + Google Analytics
----------------------------------------------- */

#cookie-banner {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #f2f2f2;
	border: 1px solid #ccc;
	padding: 15px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	max-width: 360px;
	z-index: 9999;
	font-family: sans-serif;
}

#cookie-banner p {
	margin: 0 0 15px;
	font-size: 14px;
	color: #333;
}

#cookie-banner .buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

#cookie-banner button {
	padding: 8px 12px;
	border: none;
	font-size: 14px;
	cursor: pointer;
	flex: 1;
	border-radius: 0;
}

#cookie-popup button {
	padding: 8px 20px;
}

#accept-btn {
	background-color: #b19777;
	color: white;
}

#refuse-btn,
#info-btn,
#close-popup {
	background-color: rgba(128, 128, 128, 0.5);
	color: white;
}

#refuse-btn:hover,
#info-btn:hover,
#close-popup:hover {
	background-color: rgba(128, 128, 128, 1);
}

#cookie-popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	background: rgba(0, 0, 0, 0.3);
	z-index: 10000;
}

#cookie-popup-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #f2f2f2;
	border: 1px solid #ccc;
	padding: 20px;
	width: 90%;
	max-width: 400px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	border-radius: 0;
}

#cookie-popup-content p {
	font-size: 15px;
	color: #333;
}

#close-popup {
	padding: 6px 12px;
	border: none;
	cursor: pointer;
}

@media (max-width: 400px) {
	#cookie-banner {
		right: 12px;
		left: 12px;
		max-width: unset;
	}
}

#cookie-banner {
	opacity: 0;
	transition: opacity 0.6s ease-in-out;
}

#cookie-banner.visible {
	opacity: 1;
}


/* ----------------------------------------------
	PRELOADER Styles
----------------------------------------------- */

.preloader-bg,
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #fff;
	z-index: 999999;
	display: flex;
	justify-content: center;
	align-items: center;
}

.preloader-position {
	position: relative;
	margin: 0 auto;
	text-align: center;
	box-sizing: border-box;
}

.loader {
	position: relative;
	width: 55px;
	height: 55px;
	animation: rotate 1s linear infinite;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 50%;
}

.loader span {
	position: absolute;
	top: -1px;
	left: -1px;
	width: 55px;
	height: 55px;
	border: 1px solid transparent;
	border-top-color: #b19777;
	border-radius: 50%;
}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


/* -----------------------------------------------
	BACK-TO-TOP BUTTON Styles
----------------------------------------------- */

.back-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	height: 40px;
	width: 40px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset 0 0 0 1px #bfbfbf; /* cerc gri deschis */
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 400ms linear;
}

.back-to-top.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top::after {
	position: absolute;
	font-family: "themify";
	content: "\e648"; /* simbolul săgeată */
	text-align: center;
	line-height: 40px;
	font-size: 12px;
	font-weight: 700;
	color: #bfbfbf; /* săgeata gri deschis */
	left: 0;
	top: 0;
	height: 40px;
	width: 40px;
	display: block;
	z-index: 1;
	transition: color 400ms linear;
}

/* Hover efect pentru culoare */
.back-to-top:hover {
	box-shadow: inset 0 0 0 1px #b19777; /* cerc auriu */
}

.back-to-top:hover::after {
	color: #b19777; /* săgeata aurie */
}



/* ----------------------------------------------
	NAVBAR Styles
----------------------------------------------- */

.navbar {
	width: 100%;
	height: 90px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
	transition: background-color 0.3s;
}

/*---- sticky Navbar ------*/

.sticky.navbar {
	background-color: #fff !important;
	transform: translateY(0);
	animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
	}
	to {
		transform: translateY(0);
	}
}

/*---- Navbar Transparent ------*/

.navbar.navbar-transparent {
	background: transparent;
}

.navbar.navbar-transparent .navbar-nav a {
	color: #e6e6e6;
}

.navbar.navbar-transparent .navbar-nav a.active-menu,
.navbar.navbar-transparent .navbar-nav a:hover {
	color: #b19777;
}

/*---- Navbar White ------*/

.navbar.navbar-white {
	background-color: #fff;
}

.navbar.navbar-white .navbar-nav a {
	color: #bfbfbf;
}

.navbar.navbar-white .navbar-nav a.active-menu,
.navbar.navbar-white .navbar-nav a:hover {
	color: #b19777;
}

/*---- Navbar Text ------*/

.navbar.navbar-transparent .navbar-nav a,
.navbar.navbar-white .navbar-nav a {
	font-size: 15px;
	font-weight: 300;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin: 1px;
	transition: color 0.3s;
	padding-right: 0px;
	padding-left: 40px;
	font-family: "Inter", sans-serif;
}

.sticky.navbar.navbar-transparent .navbar-nav a,
.sticky.navbar.navbar-white .navbar-nav a {
	color: #bfbfbf;
}

.sticky.navbar.navbar-transparent .navbar-nav a.active-menu,
.sticky.navbar.navbar-transparent .navbar-nav a:hover,
.sticky.navbar.navbar-white .navbar-nav a.active-menu,
.sticky.navbar.navbar-white .navbar-nav a:hover {
	color: #b19777;
}

/*---- Navbar LOGO Brand ------*/

.navbar-brand,
.navbar-brand:hover,
.navbar-brand:focus {
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0;
	font-family: "Inter", sans-serif;
	line-height: 40px;
	font-size: 24px;
	font-weight: 200;
	letter-spacing: 3px;
}

.navbar-brand .logo-text-black {
	color: #000;
	margin-left: 5px;
}

.navbar-brand .logo-text-white {
	color: #fff;
	margin-left: 5px;
}

.logo-scroll,
.sticky .logo-start {
	display: none;
}

.sticky .logo-scroll {
	display: flex;
}

@media (max-width: 991.98px) {
	/* Navbar
	-------------------------------------------------------*/

	.navbar {
		height: 60px;
	}

	/* Off-canvas
	-------------------------------------------------------*/

	#offcanvasNavbar {
		background: #fff;
		transition: transform 0.2s ease-in-out;
		border: none !important;
		display: flex;
		height: 100vh;
	}

	#offcanvasNavbar .navbar-nav a {
		font-size: 18px;
		padding: 0;
		margin: 20px 30px;
		color: #bfbfbf;
	}

	#offcanvasNavbar .navbar-nav a:hover,
	#offcanvasNavbar .navbar-nav a.active-menu {
		color: #b19777;
	}

	/* Toggle (Hamburger) Button
	-------------------------------------------------------*/

	.navbar-toggler {
		z-index: 100;
		padding: 0;
		border: none;
		border-radius: 0;
		position: relative;
		width: 26px;
		height: 17px;
		line-height: 17px;
		cursor: pointer;
		opacity: 1;
		box-shadow: none !important;
	}

	.navbar-toggler span {
		background: #000;
		border: none;
		height: 1px;
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;
		cursor: pointer;
	}

	.navbar-toggler span:nth-of-type(2) {
		top: 8px;
	}

	.navbar-toggler span:nth-of-type(3) {
		top: 16px;
	}

	.navbar-transparent .navbar-toggler span {
		background: #fff;
	}

	.sticky.navbar-transparent .navbar-toggler span {
		background: #000;
	}

	/* Close Button - Off-canvas
	-------------------------------------------------------*/

	.btn-close {
		background-image: url("../images/close-btn.svg");
		background-size: 20px;
		width: 27px;
		height: 27px;
		padding: 0;
	}

	.btn-close,
	.btn-close:hover {
		opacity: 1;
	}

	.btn-close:focus {
		outline: none !important;
		box-shadow: none !important;
	}
}


/* ----------------------------------------------
	HERO SLIDER GRID BACKGROUND Styles
----------------------------------------------- */

.hero-grid-slider {
	/* Fallback desktop */
	height: 100vh;

	/* Mobil – când JS setează --vh */
	height: calc(var(--vh, 1vh) * 100);

	background: #000;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
	color: #272727;
}

/* --- Imaginile de fundal dinamice --- */
.hero-grid-slider .grid-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: 1;
	transform: scale(1);
	transition: transform 5s, opacity 0.35s;
	opacity: 0;
}

.hero-grid-slider .grid-img-active {
	opacity: 0.65;
	transform: scale(1.1); /* efect de zoom pe imaginea activă */
}

.hero-grid-slider:hover .grid-img-active {
	opacity: 0.65; /* fix pentru hover consistency */
}

/* --- Conținutul central (sliderul) --- */
.hero-grid-slider .content {
	position: absolute;
	z-index: 2;
	left: 50%;
	transform: translateX(-50%);
	bottom: 14%; /* poziționat la 10% de marginea de jos */
}

/* --- Slide individual --- */
.hero-grid-slider .swiper-slide {
	margin-bottom: 30px;
	display: flex; /* asigură aliniere corectă internă */
}

/* --- Conținutul fiecărui slide --- */
.grid-con {
	display: flex;
	align-items: flex-end; /* aliniere jos */
	width: 100%;
	padding: 80px 30px 30px;
	min-height: 340px;
	background: transparent;
	color: currentColor;
	text-decoration: none;
	position: relative;
	outline: 1px solid rgba(255, 255, 255, 0.7);
	outline-offset: -2px;
	transition: all 0.3s;
}

/* --- Stiluri active și hover pentru grid --- */
.grid-con:hover,
.grid-con.grid-con-active {
	background: rgba(255, 255, 255, 0.6);
	outline: none;
}

/* --- Subtitlu --- */
.grid-con .subtitle {
	display: block;
	font-size: 12px;
	font-weight: 400;
	color: #fff;
	margin-bottom: 20px;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.grid-con:hover .subtitle,
.grid-con.grid-con-active .subtitle {
	color: #927654;
}

/* --- Titlu --- */
.grid-con .title {
	display: block;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.5em;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #fff;
}

.grid-con:hover .title,
.grid-con.grid-con-active .title {
	color: #272727;
}

/* --- Paginarea swiperului --- */
.swiper-pagination {
	position: relative;
}

.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	transition: all 0.2s;
}

.swiper-pagination-bullet-active {
	background: #b19777;
	border: 1px solid #b19777;
}

/* --- RESPONSIVE: sub 1200px --- */
@media only screen and (max-width: 1199.98px) {
	.grid-con {
		min-height: 300px;
	}

	.grid-con .title {
		font-size: 18px;
	}
}

/* --- RESPONSIVE: sub 768px --- */
@media only screen and (max-width: 767.98px) {
	.grid-con {
		min-height: 240px;
		padding: 80px 25px 25px;
	}

	.grid-con .title {
		font-size: 16px;
	}
}


/* ----------------------------------------------
	PAGE BANNER HEADER Styles
----------------------------------------------- */

.banner-header {
	height: 50vh;
	z-index: -2;
}

.banner-header {
	position: relative; /* pentru pseudoelement */
	width: 100%;
	height: 50vh;
	z-index: -2;
}

.banner-header::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 100%, rgba(255, 255, 255, 0.5) 100%);
	z-index: 1;
}

@media screen and (max-width: 991.98px) {
	.banner-header {
		height: 30vh;
		margin-top: 60px;
	}
}


/* ----------------------------------------------
	SECTION Styles
----------------------------------------------- */

.section-title {
	font-size: 40px;
	font-weight: 400;
	color: #272727;
	text-transform: uppercase;
	position: relative;
	letter-spacing: 7px;
	word-spacing: 5px;
	line-height: 1.3;
	margin-bottom: 30px;
}

.section-title2 {
	font-size: 30px;
	font-weight: 400;
	color: #272727;
	text-transform: uppercase;
	position: relative;
	letter-spacing: 7px;
	word-spacing: 5px;
	line-height: 1.3;
	margin-bottom: 30px;
}

.section-title span,
.section-title2 span {
	color: #b19777;
}

@media (max-width: 575.98px) {
	.section-title {
		font-size: 32px;
	}
}


/* ----------------------------------------------
   PORTFOLIO
----------------------------------------------- */

.portfolio {
	display: grid;
	grid-gap: 30px;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: 340px;
	grid-auto-flow: dense;
}

.portfolio-item {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative !important;
	cursor: pointer;
}

.portfolio-bg {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: 0.3s;
	transform: scale(1);
}

.portfolio-item .overlay-mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

/* Săgeata tooltip pentru touch */
.portfolio-tooltip {
	z-index: 5;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 32px;
	font-weight: 100;
	color: white;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease-in-out;
}

.portfolio-tooltip::before {
	content: "→";
}

.portfolio-item:hover .portfolio-bg,
.portfolio-item.touch-hover .portfolio-bg {
	transform: scale(1.1);
}

.portfolio-item:hover .overlay-mask,
.portfolio-item.touch-hover .overlay-mask {
	opacity: 0.5;
}

.portfolio-item:hover .info-box,
.portfolio-item.touch-hover .info-box {
	bottom: 0;
	transform: translateY(0);
}

.portfolio-item.touch-hover .portfolio-tooltip {
	opacity: 1;
}

.portfolio-item .info-box {
	position: absolute;
	left: 0;
	bottom: -11px;
	background-color: #fff;
	padding: 25px 25px 0 0;
	transform: translateY(100%);
	transition: transform 0.3s, bottom 0.3s;
}

.portfolio-item .info-title {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 15px;
	color: #272727;
	font-weight: 300;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.portfolio-item .info-subtitle {
	font-size: 13px;
	line-height: 1em;
	color: #b19777;
	font-weight: 300;
	letter-spacing: 3px;
	text-transform: uppercase;
}

@media (max-width: 1199.98px) {
	.portfolio {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 300px;
	}
}

@media (max-width: 991.98px) {
	.portfolio {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 220px;
	}
}

@media (max-width: 767.98px) {
	.portfolio {
		grid-template-columns: repeat(1, 1fr);
		grid-auto-rows: 300px;
		grid-gap: 13px;
	}
}

@media (max-width: 575.98px) {
	.portfolio {
		grid-template-columns: repeat(1, 1fr);
		grid-auto-rows: 260px;
		grid-gap: 14px;
	}
}

.filter-buttons {
	width: 100%;
	padding: 0 0 30px 0;
	position: relative;
	margin-bottom: 0;
}

.filter-buttons li {
	margin: 0 20px 10px 20px;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	color: #cccccc;
	font-weight: 300;
}

.filter-buttons li.active,
.filter-buttons li:hover {
	color: #b19777;
	border-bottom: 1px solid;
	transition: transform 0.3s;
}


/* ----------------------------------------------
	ABOUT Styles
----------------------------------------------- */

.about .row {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
}

.about-img {
	width: 100%;
	height: 100%;
	overflow: hidden; /* ascunde overflow la scalare */
	position: relative;
}

.about-bg {
	background-size: cover;
	background-position: center;
	height: 100%;
	width: 100%;
	transition: transform 0.3s ease, filter 0.3s ease;
}

.about-bg:hover {
	transform: scale(1.1);
	filter: brightness(0.6) saturate(0.4);
}

.about-caption {
	position: absolute;
	right: 30px;
	bottom: 0;
	transform: translateY(50%);
	background: #f8f9fa;
	color: #000;
	padding: 15px 25px;
	white-space: nowrap;
	box-sizing: border-box;
	font-size: 14px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 3px;
	text-align: left;
}

@media (max-width: 991.98px) {
	.about-bg {
		height: auto;
		aspect-ratio: 8 / 5;
	}
}

@media (max-width: 575.98px) {
	.about-caption {
		white-space: normal;
		max-width: 260px;
	}
}


/* ----------------------------------------------
	TEAM Styles
----------------------------------------------- */

.team .item {
	margin-bottom: 60px;
}

.team img {
	transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
}
.team img {
	filter: grayscale(100%) sepia(30%) brightness(0.85);
	-webkit-filter: grayscale(100%) sepia(30%) brightness(0.85);
	-moz-filter: grayscale(100%) sepia(30%) brightness(0.85);
}
.team img:hover {
	filter: grayscale(0%);
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
}

.team .info {
	text-align: center;
	padding: 30px 0 0 0;
	position: relative;
	overflow: hidden;
}

.team .info h6 {
	font-size: 17px;
	margin-bottom: 5px;
	text-transform: uppercase;
	font-weight: 300;
	letter-spacing: 3px;
	color: #b19777;
}

.team .info p {
	margin-bottom: 5px;
	color: #777;
}


/* ----------------------------------------------
   Projects More
----------------------------------------------- */

.projects-more a {
	display: inline-block;
	font-size: 16px;
	color: #777;
	line-height: 1em;
}

.projects-more a i {
	font-size: 20px;
}

.projects-more a:hover {
	color: #b19777;
}

.projects-more a i {
	font-size: 12px;
	margin-left: 5px;
}

@media (max-width: 575.98px) {
	.projects-more {
		text-align: center;
	}
}


/* ----------------------------------------------
	SERVICES HOME Styles
----------------------------------------------- */

.services .item {
	padding: 50px 34px;
	margin-bottom: 30px;
	position: relative;
	border: 1px solid #ededed;
	transition: all 0.3s ease;
}

.services .item:hover {
	background: #f2f2f2;
}

.services .item:hover .numb {
	color: #b19777;
}

.services .item h5 {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 15px;
	color: #777;
	line-height: 1.5;
	text-transform: uppercase;
	letter-spacing: 5px;
}

.services .item p {
	margin-bottom: 0;
}

.services .item img {
	width: 60px;
	margin-bottom: 20px;
}

.services .item .numb {
	font-size: 40px;
	font-weight: 300;
	position: absolute;
	bottom: 30px;
	right: 30px;
	color: transparent;
	line-height: 1em;
}

/* line animation */

.services .item .line {
	width: 100%;
	display: inline-block;
	position: relative;
	margin-bottom: 5px;
}

.services .item .line:after {
	position: absolute;
	left: 0;
	bottom: 10px;
	width: 50px;
	height: 1px;
	background-color: #ececec;
	content: "";
	transition: all 0.3s ease;
}

.services .item:hover .line:after {
	width: 100%;
	background-color: rgba(177, 151, 119, 0.5);
	transition: all 0.6s ease;
}


/* -----------------------------------------------
	SERVICES 2 Styles
----------------------------------------------- */

.services2 {
	text-align: center;
	position: relative;
	padding-bottom: 30px;
}

.services2 .title-box {
	position: absolute;
	left: 40px;
	right: 40px;
	bottom: 0;
	z-index: 2;
	background-color: #f2f2f2;
	padding: 20px 0;
	opacity: 1;
	visibility: visible;
	margin-bottom: 0;
	color: #777;
}

.services2 .title-box h3 {
	font-size: 16px;
	font-weight: 200;
	margin-bottom: 15px;
	color: #272727;
	text-transform: uppercase;
	letter-spacing: 5px;
}

.services2 .services2-img {
	position: relative;
}

.services2 .services2-img:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 0;
	width: 100%;
	background-color: #1a1a1a;
	opacity: 0.7;
	visibility: hidden;
}

.services2 .services2-content {
	position: absolute;
	left: 0;
	right: 0;
	top: 45%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 20px;
	margin-top: 50px;
	opacity: 0;
	visibility: hidden;
}

.services2 .icon img {
	width: 60px;
	color: #fff;
	margin-bottom: 20px;
}

.services2 .services2-title {
	font-size: 20px;
	font-weight: 300;
	margin-bottom: 15px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 5px;
}

.services2 .services2-subtitle {
	color: #b19777;
	font-weight: 300;
	font-size: 13px;
	font-weight: 300;
	letter-spacing: 5px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.services2 .services2-text {
	color: #fff;
	margin-left: auto;
	margin-right: auto;
}

.services2 .title-box,
.services2 .services2-content,
.services2 .services2-img:before {
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s;
}

.services2:hover .services2-content {
	opacity: 1;
	visibility: visible;
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
	margin-top: 1px;
}

.services2:hover .title-box {
	opacity: 0;
	visibility: hidden;
	margin-bottom: 80px;
}

.services2:hover .services2-img::before {
	height: 100%;
	visibility: visible;
}

@media (max-width: 1199.98px) {
	.services2 .title-box {
		left: 20px;
		right: 20px;
		padding: 25px 0;
	}

	.services2 .services2-text {
	}
}


/* ----------------------------------------------
	CONTACT Styles
----------------------------------------------- */

.contact p {
	text-indent: -67px;
	margin-left: 67px;
}


/* ----------------------------------------------
	PROJECT GALLERY Styles
----------------------------------------------- */

.project-header {
	width: 100%;
	aspect-ratio: 8 / 5;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	overflow: hidden;
}

.project-mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.2;
	pointer-events: none;
	z-index: 1;
}

.project-header h1 {
	position: absolute;
	left: calc(28% - 30px);
	bottom: 80px;
	margin-bottom: 0;
	font-size: 40px;
	text-transform: uppercase;
	line-height: 1;
	color: #fff;
	font-weight: 400;
	letter-spacing: 8px;
	word-spacing: 5px;
	z-index: 1;
}

.project-bar {
	position: relative;
	width: 72%;
	margin-left: auto;
	margin-right: 30px;
	margin-top: -50px;
	padding: 30px 30px 0 30px;
	background-color: #f2f2f2;
	box-sizing: border-box;
	overflow: hidden;
	z-index: 10;
}

.bar-item {
	float: left;
	padding-bottom: 30px;
	margin: 0;
	box-sizing: border-box;
	width: 33.3333%;
}

/*
.bar-item:nth-child(3) {
	padding-bottom: 0;
}
*/

.bar-item h5 {
	font-size: 16px;
	font-weight: 400;
	color: #b19777;
	margin-bottom: 10px;
}

.bar-item h6 {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
	color: #777;
	margin: 0;
}

@media (max-width: 991.98px) {
	.bar-item {
		width: 50%;
	}

	.bar-item:nth-child(3) {
		width: 100%;
	}
}

@media (max-width: 767.98px) {
	.project-header {
		aspect-ratio: 4 / 3;
	}

	.project-header h1 {
		left: 30px;
		bottom: 30px;
		font-size: 40px;
	}

	.project-bar {
		width: 100%;
		margin-top: 0;
	}
}

@media (max-width: 575.98px) {
	.bar-item {
		width: 100%;
	}
}

/* Gallery Styles */

.gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	grid-auto-flow: dense;
}

@media (max-width: 991.98px) {
	.gallery {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767.98px) {
	.gallery {
		grid-template-columns: repeat(1, 1fr);
		gap: 13px;
	}
}

.gallery-item {
	position: relative;
	width: 100%;
	aspect-ratio: 8 / 5;
	overflow: hidden;
	cursor: pointer;
}

.gallery-bg {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-bg:hover {
	transform: scale(1.1);
	filter: grayscale(50%) brightness(50%);
}

.gallery-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 30px;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-icon {
	opacity: 1;
}

.tall {
	grid-row: span 2;
	aspect-ratio: auto;
}

@media (max-width: 767px) {
	.tall {
		aspect-ratio: 4 / 5;
	}
}

/* Fancybox Styles */

.fancybox-bg {
	background: #fff;
}

.fancybox-is-open .fancybox-bg {
	opacity: 1;
}

/* Fancybox Counter */

.fancybox-infobar {
	font-size: 16px;
	font-weight: 200;
	padding: 0 14px;
	color: #999;
}

/* Fancybox Buttons */

.fancybox-button {
	background: #f2f2f2;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
	color: #888;
}

.fancybox-button:hover {
	color: #000;
}

/* Fancybox Captions */

.fancybox-caption {
	background: transparent;
	color: #999;
	font-family: "Inter", sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 44px;
	letter-spacing: 0.3px;
	padding: 0px 44px 0px 44px;
	height: 44px;
}

/* prev/next project */

.projects-prev-next {
	padding: 40px 0 60px 0;
	border: none;
	border-top: 1px solid #f2f2f2;
	position: relative;
}

@media (max-width: 576px) {
	.projects-prev-next {
		text-align: center;
	}

	.projects-prev-next-left {
		margin-bottom: 10px;
	}
}

.projects-prev-next a {
	display: inline-block;
	font-size: 16px;
	color: #777;
	line-height: 1;
}

.projects-prev-next a i {
	font-size: 20px;
}

.projects-prev-next a:hover {
	color: #b19777;
}

.projects-prev-next .projects-prev-next-left a i {
	margin-right: 5px;
	font-size: 12px;
}

.projects-prev-next .projects-prev-next-right a i {
	font-size: 12px;
	margin-left: 5px;
}


/* ----------------------------------------------
   PROMO VIDEO and TESTIMONIALS
----------------------------------------------- */

.testimonials-bg {
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	width: 100%;
	padding: 0;
}

.testimonials-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3); /* negru, 50% opacitate */
	z-index: 0;
}

/* Coloana 1 - Buton Play */

.vid-area {
	position: relative;
	top: 100px;
}

.play-button {
	position: relative;
	width: 100px;
	height: 100px;
	background-color: rgba(197, 164, 126, 0.5);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	margin-bottom: 30px;
	/* Centrare fina Icon Play */
	padding-left: 7px;
	padding-top: 3px;
}

.play-button i {
	font-size: 35px;
	color: white;
	position: relative;
	z-index: 2;
	transform: translateY(1px);
}

.play-button svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	height: 100px;
	transform: rotate(-90deg);
	z-index: 1;
}

.play-button svg circle {
	fill: transparent;
	stroke: rgba(255, 255, 255, 0.5);
	stroke-width: 1.5;
	stroke-dasharray: 317.3;
	stroke-dashoffset: 317.3;
	transition: stroke-dashoffset 0.5s ease;
}

.play-button:hover svg circle {
	stroke-dashoffset: 0;
}

.vid-area h5 {
	font-size: 20px;
	font-weight: 300;
	color: #fff;
	letter-spacing: 5px;
	margin-bottom: 50px;
	text-transform: uppercase;
}

/* Coloana 2 - Testimonials Info */

.testimonials-box {
	position: relative;
	top: 100px;
	padding: 60px;
	background: #fff;
}

.testimonials-box h4 {
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 5px;
	border-bottom: 1px solid #f4f4f4;
	padding-bottom: 15px;
	text-transform: uppercase;
	line-height: 1.5;
}

.testimonials-box p {
	margin-top: 20px;
}

.testimonials-box .quote {
	position: absolute;
	right: 40px;
	bottom: 90px;
	width: 90px;
	margin: 0 auto 30px;
	opacity: 0.2;
}

.signature-box {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 30px;
}

.signature-box img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.signature-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.signature-text h6 {
	font-weight: 400;
	line-height: 1;
	margin-bottom: 10px;
}

.signature-text span {
	line-height: 1;
}

/* Responsive Testimonials--- */

@media (max-width: 991.98px) {
	.testimonials-box {
		position: relative;
		top: 0;
		margin-top: 80px;
		margin-bottom: 80px;
		padding: 40px;
	}

	.vid-area {
		position: relative;
		top: 0;
		margin-top: 80px;
	}
}

@media (max-width: 767.98px) {
	.testimonials-bg {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.testimonials-box,
	.vid-area {
		margin-top: 0;
		margin-bottom: 0;
	}
}


/* ----------------------------------------------
   CLIENTS Logo
----------------------------------------------- */

.clients {
	background-color: #f9f9f9;
}

.logos {
	overflow: hidden;
	white-space: nowrap;
	padding: 40px 0;
	user-select: none;
	background: transparent;
}

.logos-inner {
	display: inline-block;
	animation: scroll 15s linear infinite;
}

.logos-inner img {
	height: 60px;
	margin: 0 20px;
	vertical-align: middle;
	width: auto;
	user-select: none;
}

.logos:hover .logos-inner {
	animation-play-state: paused;
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}


/* -----------------------------------------------
   FOOTER
----------------------------------------------- */

.main-footer {
	border-bottom: 1px solid #f2f2f2;
}

.footer-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.footer-item {
	padding: 50px 30px;
	border-left: 1px solid #f2f2f2; /* border stanga implicit */
}

.footer-item:last-child {
	border-right: 1px solid #f2f2f2;
}

.footer-item h6 {
	color: #b19777;
	margin-bottom: 10px;
}

.footer-item p {
	margin-bottom: 0;
}

.social-icon {
	text-align: left;
}

.social-icon a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 12px;
	border: 1px solid #e6e6e6;
	color: #777;
	border-radius: 100%;
	margin-right: 5px;
	transition: all 0.4s;
	display: inline-block;
}

.social-icon a:hover {
	border: 1px solid #b19777;
	background: transparent;
	color: #b19777;
}

@media (max-width: 767.98px) {
	.footer-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.main-footer {
		padding: 80px 0 30px 0;
	}

	.sub-footer {
		padding: 30px 0 60px 0;
	}

	/* Pe mobil, scoatem bordurile */
	.footer-item {
		border: none !important;
		padding: 0;
	}
}


/* ----------------------------------------------
   RESPONSIVE (GENERAL)
----------------------------------------------- */

@media (min-width: 1200px) {
	.container {
		max-width: 1140px !important;
	}
}
