/* Common styles */
:root {
	--brown: #826B5B;
	--brown-dark: #5D493D;
	--cream: #F5EEE7;
	--cream-light: #FFFAF6;
	--white: #FFFFFF;
	--black: #000000;
	--black-transparent: rgba(0, 240, 255, 0.08);
	--orange: #D5835C;
	--red: #FF0055;
	--dark: #292C35;
}

html, body {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	background-color: var(--brown);
}

h2 {
	font-size: 20px;
	color: var(--white);
}

h2::after {
	background-color: var(--white) !important;
}

p.first {
	margin-top: 0px !important;
}

p.last {
	margin-bottom: 0px !important;
}

ul, ol {
	list-style: outside;
}

ul {
	margin-left: 40px;
}

li::marker {
	margin-right: 10px;
}

a,
a:hover,
a:focus {
	color: var(--brown);
}

.btn-custom {
	padding: 15px 40px;
	font-size: 14px;
	font-weight: 600;
	color: var(--white);
	border: 0px solid var(--white) !important;
	border-radius: 0px !important;
	cursor: pointer;
	position: relative;
	background: rgba(255, 255, 255, 0.2) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	overflow: hidden;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.75);
}

.btn-custom:hover {
	background: rgba(255, 255, 255, 0.3) !important;
	border: 1px solid rgba(255, 255, 255, 0.5);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.btn-custom::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
	90deg,
	transparent,
	rgba(255, 255, 255, 0.4),
	transparent
	);
	transition: left 0.7s ease;
}

.btn-custom:hover::before {
	left: 100%;
}

img {
	box-shadow: 0 10px 30px 0 rgba(38, 40, 64, .5)
}

.section-title {
	margin-bottom: 40px;
}

.hide {
	display: initial !important;
}

.unhide {
	display: none;
}
/* Common styles */



/* Intro */
#welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);
    transform: translateY(0);
    overflow: hidden;
}

#welcome-overlay.curtain-up {
    transform: translateY(-100%);
}

.overlay-logo {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.3s;
    width: 80%;
    text-align: center;
}

.overlay-logo svg {
    width: 100%;
    height: auto;
    fill: #fff;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

/* Obrisati nakon što se definiše logo kao SVG */
.overlay-logo img {
    width: 100%;
    height: auto;
    fill: #fff;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
	box-shadow: none;
	max-width: 400px;
}
/* Obrisati nakon što se definiše logo kao SVG */

.overlay-logo .logo-text {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 5px;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.overlay-logo .logo-sub {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 4px;
    font-family: 'Open Sans', sans-serif;
}

/* Dugme u overlay-u - isti stil kao btn-custom */
.overlay-btn {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 2.2s;
    margin-top: 40px;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
	border: 0px solid #fff !important;
    cursor: pointer;
    position: relative;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
//  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.75);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
	border-radius: 999px !important;
}

.overlay-btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
//  border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.overlay-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.7s ease;
}

.overlay-btn:hover::before {
    left: 100%;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

body.curtain-open #welcome-overlay {
    pointer-events: none;
}

@media (max-width: 600px) {
    .overlay-logo .logo-text { font-size: 22px; }
    .overlay-logo .logo-sub { font-size: 14px; letter-spacing: 2px; }
    .overlay-btn { font-size: 15px; padding: 12px 35px; }
}
/* Intro */



/* Header */
#menu.navbar-default {
	background-color: var(--cream-light);
	box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

#menu {
	padding: 5px;
}

#menu .navbar-brand {
	color: #5E2A3C !important;
	padding: 0px 0px 0px 15px;
	display: flex;
}

#menu .navbar-brand svg {
	outline: none;
	outline-offset: inherit;
	box-shadow: none;
	width: 150px;
	height: auto;
	fill: var(--brown);
}

#menu .navbar-brand span {
	color: var(--white);
	font-size: 24px;
	font-weight: 700;
	display: inline-block;
	//margin: 26px 0px 0px 15px;
	margin: 26px 0px 0px 0px;
	line-height: 0px;
}

#menu .navbar-right {
	margin-right: 0px;
}

#menu .navbar-right li a {
	color: var(--brown) !important;
	transition: all 0.3s;
}

#menu .navbar-right li a:hover {
	color:  var(--brown) !important;
	transition: all 0.3s;
}

#menu ul a {
	position: relative;
	text-decoration: none;
}

#menu ul a:hover {
	color: #75C4F3;
}

#menu ul a::before {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: var(--brown);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

#menu ul a:hover::before {
  transform: scaleX(1);
}

#menu ul li.last a.page-scroll {
	margin-right: 0px;
}
/* Header */



/* Intro infro */
#header .intro {
	box-shadow: inset 0 0 0 2000px rgb(0 0 0 / 20%);
}
#header .intro .overlay {
	background: transparent;
	height: 100vh;
}

#header .intro h1 {
	filter: drop-shadow(0px 0px 7px #333);
}

#header .intro h2 {
	color: var(--white);
	filter: drop-shadow(0px 0px 7px #333);
	margin-bottom: 50px;
}

#header .intro hr {
	background: var(--white);
	filter: drop-shadow(0px 0px 7px #333);
}

#header br.responsive {
	display: none;
}

#header .btn-custom.welcome {
	background: transparent;
//	border: 2px solid var(--white);
	color: var(--white);
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s;
	letter-spacing: 1px;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.75);
	border-radius: 0px !important;
}

#header .btn-custom.welcome:hover {
	background: var(--white);
//	border: 2px solid var(--white);
	transition: all 0.3s;
}

#header {
	height: 100vh;
	padding: 0 !important;
}

#header .carousel-inner .item {
	height: 100vh;
	background-size: cover;
	background-position: center;
}

#header .carousel-inner .item::after {
	content: '';
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	background: rgba(0,0,0,0.35); /* semi-transparent overlay */
	z-index: 1;
}
#header .carousel-inner .item > img {
	display: none; /* we use background images */
}
#header .carousel-caption {
	z-index: 10;
	bottom: 50%;
	transform: translateY(50%);
	text-shadow: 0 2px 8px rgba(0,0,0,0.7);
	right: 0%;
	left: 0%;
}

#header .carousel-caption h1 {
	filter: drop-shadow(0px 0px 7px #333);
	font-family: 'Montserrat', sans-serif;
	color: var(--white);
	font-size: 50px;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 10px;
	text-shadow: 0 0 15px var(--black);
}

#header .carousel-caption h2 {
	color: var(--white);
	filter: drop-shadow(0px 0px 7px var(--black));
	margin-bottom: 50px;
}

#header .carousel-caption hr {
	background: var(--white);
	filter: drop-shadow(0px 0px 7px #333);
}

.carousel-control .fa {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	display: inline-block;
	color: var(--white);
	text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.carousel-control.left .fa {
	left: 30%;
}
.carousel-control.right .fa {
	right: 30%;
}
/* Intro */



/* About us */
#about {
	background-color: var(--cream);
	padding: 121px 0px 50px 0px;
}

#about h2 {
	font-size: 20px;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 20px 0;
	margin-top: 0px;
	margin-bottom: 20px;
	font-weight: 700;
}

#about .section-title h2,
#about .service-media h2 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	color: var(--brown);
	margin: 0px;
	margin-bottom: 0px;
	padding: 0px;
	padding-bottom: 0px;
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(130, 107, 91, 0.35);
}

#about .section-title h2::after,
#about .service-media h2::after {
	background-color: var(--brown) !important;
	position: absolute;
	content: "";
	height: 3px;
	width: 50px;
	bottom: -1px;
	left: 0;
}

#about .row .col-md-12 {
	margin-bottom: 0px;
}

#about .row .col-md-12 .service-media {
	position: relative;
	padding: 40px;
	background-color: var(--white);
//	border: 2px solid var(--white);
	box-shadow: 0 10px 30px 0 rgba(38, 40, 64, .5);
	color: var(--brown);
	border-radius: 0px;
}

#about h3 {
	font-size: 18px;
	color: var(--white);
	font-weight: 700;
	padding: 5px 0;
}

#about p {
	margin: 15px 0px;
}
/* About us */



/* Services */
#services {
	background: var(--brown);
	padding: 141px 0px 50px 0px;
	position: relative;
	min-height: 100vh;
	overflow: hidden;
}

#services .bg-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: opacity 1.5s ease-in-out;
	z-index: 0;
}

#services .bg-layer.active {
	opacity: 1;
}

#services .bg-layer.inactive {
	opacity: 0;
}

#services .bg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
	z-index: 1;
}

#services .container {
	position: relative;
	z-index: 2;
}

.services-slider {
	display: none;
}

@media (max-width: 767px) {
	.services-slider {
		display: block;
		position: relative;
//  	width: calc(100% + 80px);
		margin: -30px -30px 25px -30px;
		overflow: hidden;
		border-radius: 24px 24px 0px 0px;
	}

	.slider-container {
		position: relative;
		width: 100%;
		height: 250px;
		overflow: hidden;
		background: var(--brown);
	}

	.slide {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 0;
		transition: opacity 1.5s ease-in-out;
		z-index: 1;
	}

	.slide.active {
		opacity: 1;
		z-index: 2;
	}

	.slide img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}

	.slider-controls {
		position: absolute;
		bottom: 15px;
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		align-items: center;
		gap: 15px;
		z-index: 10;
		background: rgba(0, 0, 0, 0.5);
		padding: 6px 12px;
		border-radius: 0px;
		backdrop-filter: blur(5px);
		-webkit-backdrop-filter: blur(5px);
		display: none;
	}

	.slider-btn {
		background: transparent;
		border: none;
		color: #fff;
		font-size: 14px;
		cursor: pointer;
		padding: 4px 6px;
		transition: all 0.3s ease;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.slider-btn:hover {
		transform: scale(1.2);
		color: #fff;
	}

	.slider-btn:focus {
		outline: none;
	}

	.slider-dots {
		display: flex;
		gap: 6px;
		align-items: center;
	}

	.dot {
		width: 8px;
		height: 8px;
		border-radius: 0%;
		background: rgba(255, 255, 255, 0.4);
		cursor: pointer;
		transition: all 0.3s ease;
	}

	.dot.active {
		background: #fff;
		transform: scale(1.2);
	}

	.dot:hover {
		background: rgba(255, 255, 255, 0.8);
	}
}

.services-image {
	display: none !important;
}

#services .container .row .services {
//	overflow: hidden;
	background-color: rgba(255, 255, 255, 0.65);
//	border: 2px solid var(--white);
	box-shadow: 0 10px 30px 0 rgba(38, 40, 64, .5);
	color: var(--brown);
	border-radius: 24px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

#services .container .row .services h2 {
	color: var(--brown);
	border-bottom: 1px solid rgba(130, 107, 91, 0.35);
}

#services .container .row .services h2::after {
	background-color: var(--brown) !important;
}

#services .services-text {
	padding: 40px;
}

#services .services-text button {
	background: var(--orange) !important;
	margin: 0px;
}

#services .services-text button.right {
	background: var(--white) !important;
	margin: 0px 0px 0px 15px;
	color: var(--brown);
}

#services .corner-label {
	position: absolute;
	top: -20px;
	right: 40px;
	background-color: var(--orange);
	color: white;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	border-radius: 30px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	z-index: 999;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

#services .services-text h2 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	color: var(--white);
	color: var(--white);
	margin: 0px;
	margin-bottom: 0px;
	padding: 0px;
	padding-bottom: 0px;
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

#services .services-text h2::after {
	background-color: var(--white) !important;
	position: absolute;
	content: "";
	height: 3px;
	width: 50px;
	bottom: -1px;
	left: 0;
}

#services .container .row .services p {
  margin: 15px 0px;
}

#services .container .row .services p.last {
  margin-bottom: 0px;
}

@media (max-width: 767px) {
  #services {
    padding: 132px 15px 80px 15px;
    background: var(--brown);
    min-height: auto;
  }
  
  #services .bg-layer {
    background-attachment: scroll;
  }
  
  #services .container .row .services {
    width: 100% !important;
    margin-left: 0;
    padding: 0;
    border-radius: 0px;
  }
  
  #services .services-text {
    padding: 0px;
  }
  
  #services .container .row .services h2 {
    padding-bottom: 15px;
    margin-top: 15px;
  }
}

@media (min-width: 768px) {
  #services .container .row .services {
    width: calc(50% - 13px);
    float: right;
    margin: 0px 15px;
	padding: 0px;
  }
}
/* Services */



/* Description 01 */
#description-01 {
	background-color: var(--cream-light);
	padding: 80px 0px 50px 0px;
}

#description-01 h2 {
	font-size: 20px;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 20px 0;
	margin-top: 0px;
	margin-bottom: 20px;
	font-weight: 700;
}

#description-01 p {
	margin: 15px 0px 30px 0px;
	color: var(--brown);
}

#description-01 .section-title {
	margin-bottom: 20px;
}

#description-01 .section-title h2 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	color: var(--brown);
	margin: 0px;
	margin-bottom: 0px;
	padding: 0px;
	padding-bottom: 0px;
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(130, 107, 91, 0.35);
}

#description-01 .section-title h2::after {
	background-color: var(--brown) !important;
	position: absolute;
	content: "";
	height: 3px;
	width: 50px;
	bottom: -1px;
	left: 0;
}

#description-01 .service-media h2 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	color: var(--white);
	margin: 0px;
	margin-bottom: 0px;
	padding: 0px;
	padding-bottom: 0px;
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

#description-01 .service-media h2::after {
	background-color: var(--white) !important;
	position: absolute;
	content: "";
	height: 3px;
	width: 50px;
	bottom: -1px;
	left: 0;
}

#description-01 .service-media p {
	margin: 15px 0px 30px 0px;
	color: var(--brown);
}

#description-01 h3 {
	font-size: 18px;
	color: var(--white);
	font-weight: 700;
	padding: 5px 0;
}

#description-01 .row .col-md-6 {
	margin-bottom: 30px;
}

#description-01 .row .col-md-6 .service-media {
	position: relative;
	padding: 40px;
	background-color: var(--white);
//	border: 2px solid var(--white);
	box-shadow: 0 10px 30px 0 rgba(38, 40, 64, .5);
	color: var(--brown);
	border-radius: 24px;
	min-height: 170px;
}

#description-01 .row .col-md-6 .service-media p {
	margin: 0px !important
}

#description-01 .row .col-md-6 .service-media p i {
	font-size: 30px;
	margin-bottom: 15px;
}
/* Description 01 */



/* Description 02 */
#description-02 {
	background-color: var(--cream);
	padding: 80px 0px 50px 0px;
}

#description-02 h2 {
	font-size: 20px;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 20px 0;
	margin-top: 0px;
	margin-bottom: 20px;
	font-weight: 700;
}

#description-02 p {
	margin: 15px 0px 30px 0px;
	color: var(--brown);
}

#description-02 .section-title {
	margin-bottom: 20px;
}

#description-02 .section-title h2 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	color: var(--brown);
	margin: 0px;
	margin-bottom: 0px;
	padding: 0px;
	padding-bottom: 0px;
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(130, 107, 91, 0.35);
}

#description-02 .section-title h2::after {
	background-color: var(--brown) !important;
	position: absolute;
	content: "";
	height: 3px;
	width: 50px;
	bottom: -1px;
	left: 0;
}

#description-02 .service-media h2 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	color: var(--brown);
	margin: 0px;
	margin-bottom: 0px;
	padding: 0px;
	padding-bottom: 0px;
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(130, 107, 91, 0.35);
}

#description-02 .service-media h2::after {
	background-color: var(--brown) !important;
	position: absolute;
	content: "";
	height: 3px;
	width: 50px;
	bottom: -1px;
	left: 0;
}

#description-02 .service-media p {
	margin: 15px 0px 30px 0px;
	color: var(--brown);
}

#description-02 .service-media img {
	box-shadow: none;
	margin: 30px 0px 0px 0px;
	display: block;
	margin: 30px auto 0px auto;
	height: 245px;
}

#description-02 i {
	font-size: 26px;
	margin-bottom: 15px;
}

#description-02 h3 {
	font-size: 18px;
	color: var(--brown);
	font-weight: 700;
	padding: 5px 0;
}

#description-02 .row .col-md-6 {
	margin-bottom: 30px;
}

#description-02 .row .col-md-6 .service-media {
	position: relative;
	padding: 40px;
	background-color: var(--white);
//	border: 2px solid var(--white);
	box-shadow: 0 10px 30px 0 rgba(38, 40, 64, .5);
	color: var(--brown);
	border-radius: 24px;
	min-height: 480px;
}

#description-02 .row .col-md-6 .service-media p {
	margin: 0px !important
}

#description-02 .row .col-md-6 .service-media p i {
	font-size: 30px;
	margin-bottom: 15px;
}
/* Description 02 */



/* Description 03 */
#description-03 {
	background-color: var(--cream-light);
	padding: 80px 0px 50px 0px;
}

#description-03 h2 {
	font-size: 20px;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 20px 0;
	margin-top: 0px;
	margin-bottom: 20px;
	font-weight: 700;
}

#description-03 p {
	margin: 15px 0px 30px 0px;
	color: var(--brown);
}

#description-03 .section-title {
	margin-bottom: 20px;
}

#description-03 .section-title h2 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	color: var(--brown);
	margin: 0px;
	margin-bottom: 0px;
	padding: 0px;
	padding-bottom: 0px;
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(130, 107, 91, 0.35);
}

#description-03 .section-title h2::after {
	background-color: var(--brown) !important;
	position: absolute;
	content: "";
	height: 3px;
	width: 50px;
	bottom: -1px;
	left: 0;
}

#description-03 .service-media h2 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	color: var(--brown);
	margin: 0px;
	margin-bottom: 0px;
	padding: 0px;
	padding-bottom: 0px;
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(130, 107, 91, 0.35);
}

#description-03 .service-media h2::after {
	background-color: var(--brown) !important;
	position: absolute;
	content: "";
	height: 3px;
	width: 50px;
	bottom: -1px;
	left: 0;
}

#description-03 .service-media p {
	margin: 15px 0px 30px 0px;
	color: var(--brown);
}

#description-03 .service-media img {
	box-shadow: none;
	margin: 30px 0px 0px 0px;
	display: block;
	margin: 30px auto 0px auto;
	height: 248px;
}

#description-03 i {
	font-size: 26px;
	margin-bottom: 15px;
}

#description-03 h3 {
	font-size: 18px;
	color: var(--brown);
	font-weight: 700;
	padding: 5px 0;
}

#description-03 .row .col-md-3 {
	margin-bottom: 30px;
}

#description-03 .row .col-md-3 .service-media {
	position: relative;
	padding: 40px;
	background-color: var(--white);
//	border: 2px solid var(--white);
	box-shadow: 0 10px 30px 0 rgba(38, 40, 64, .5);
	color: var(--brown);
	border-radius: 24px;
}

#description-03 .row .col-md-3 .service-media p {
	margin: 0px !important;
}

#description-03 .row .col-md-3 .service-media p.underline {
	border-bottom: 1px solid rgba(130, 107, 91, 0.35);
	padding-bottom: 10px;
	margin-bottom: 15px !important;
}

#description-03 .row .col-md-3 .service-media p i {
	font-size: 30px;
	margin-bottom: 15px;
}

#description-03 .corner-label {
	position: absolute;
	top: -20px;
	right: 40px;
	background-color: var(--orange);
	color: white;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	border-radius: 30px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	z-index: 999;
	letter-spacing: 0.5px;
	white-space: nowrap;
}
/* Description 03 */



/* Description 04 */
#description-04 {
	background-color: var(--cream);
	padding: 80px 0px 50px 0px;
}

#description-04 h2 {
	font-size: 20px;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 20px 0;
	margin-top: 0px;
	margin-bottom: 20px;
	font-weight: 700;
}

#description-04 p {
	margin: 15px 0px 30px 0px;
	color: var(--brown);
}

#description-04 .section-title {
	margin-bottom: 20px;
}

#description-04 .section-title h2 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	color: var(--brown);
	margin: 0px;
	margin-bottom: 0px;
	padding: 0px;
	padding-bottom: 0px;
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(130, 107, 91, 0.35);
}

#description-04 .section-title h2::after {
	background-color: var(--brown) !important;
	position: absolute;
	content: "";
	height: 3px;
	width: 50px;
	bottom: -1px;
	left: 0;
}

#description-04 .service-media h2 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	color: var(--brown);
	margin: 0px;
	margin-bottom: 0px;
	padding: 0px;
	padding-bottom: 0px;
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(130, 107, 91, 0.35);
}

#description-04 .service-media h2::after {
	background-color: var(--brown) !important;
	position: absolute;
	content: "";
	height: 3px;
	width: 50px;
	bottom: -1px;
	left: 0;
}

#description-04 .service-media p {
	margin: 15px 0px 30px 0px;
	color: var(--brown);
}

#description-04 .service-media img {
	box-shadow: none;
	margin: 30px 0px 0px 0px;
	display: block;
	margin: 30px auto 0px auto;
	height: 248px;
}

#description-04 i {
	font-size: 26px;
	margin-bottom: 15px;
}

#description-04 h3 {
	font-size: 18px;
	color: var(--brown);
	font-weight: 700;
	padding: 5px 0;
}

#description-04 .row .col-md-6 {
	margin-bottom: 30px;
}

#description-04 .row .col-md-6 .service-media {
	position: relative;
	padding: 40px;
	background-color: rgba(255, 255, 255, 0.70);
	box-shadow: 0 10px 30px 0 rgba(38, 40, 64, .5);
	color: var(--brown);
	border-radius: 24px;
	backdrop-filter: blur(8px);
}

#description-04 .row .col-md-6 .service-media.no-style {
	padding: 0px;
	border-radius: none;
	box-shadow: none;
	background-color: transparent;
	border-radius: 24px;
}

#description-04 .row .col-md-6 .service-media video {
	width: 100%;
	border-radius: 24px;
	box-shadow: 0 10px 30px 0 rgba(38, 40, 64, .5);
}

#description-04 .row .col-md-6 .service-media p {
	margin: 0px !important
}

#description-04 button {
	background: var(--orange) !important;
	margin: 15px 0px 0px 0px;
}
/* Description 04 */



/* Description 05 */
#description-05 {
	background-color: var(--cream-light);
	padding: 80px 0px 50px 0px;
}

#description-05 h2 {
	font-size: 20px;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 20px 0;
	margin-top: 0px;
	margin-bottom: 20px;
	font-weight: 700;
}

#description-05 p {
	margin: 15px 0px 30px 0px;
	color: var(--brown);
}

#description-05 .section-title {
	margin-bottom: 20px;
}

#description-05 .section-title h2 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	color: var(--brown);
	margin: 0px;
	margin-bottom: 0px;
	padding: 0px;
	padding-bottom: 0px;
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(130, 107, 91, 0.35);
}

#description-05 .section-title h2::after {
	background-color: var(--brown) !important;
	position: absolute;
	content: "";
	height: 3px;
	width: 50px;
	bottom: -1px;
	left: 0;
}

#description-05 .service-media h2 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	color: var(--brown);
	margin: 0px;
	margin-bottom: 0px;
	padding: 0px;
	padding-bottom: 0px;
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(130, 107, 91, 0.35);
}

#description-05 .service-media h2::after {
	background-color: var(--brown) !important;
	position: absolute;
	content: "";
	height: 3px;
	width: 50px;
	bottom: -1px;
	left: 0;
}

#description-05 .service-media p {
	margin: 15px 0px 30px 0px;
	color: var(--brown);
}

#description-05 .service-media img {
	box-shadow: none;
	margin: 30px 0px 0px 0px;
	display: block;
	margin: 30px auto 0px auto;
	height: 248px;
}

#description-05 i {
	font-size: 26px;
	margin-bottom: 15px;
}

#description-05 h3 {
	font-size: 18px;
	color: var(--brown);
	font-weight: 700;
	padding: 5px 0;
}

#description-05 .row .col-md-4 {
	margin-bottom: 30px;
}

#description-05 .row .col-md-4 .service-media {
	position: relative;
	padding: 40px;
	background-color: var(--white);
//	border: 2px solid var(--white);
	box-shadow: 0 10px 30px 0 rgba(38, 40, 64, .5);
	color: var(--brown);
	border-radius: 24px;
}

#description-05 .row .col-md-4 .service-media.no-style {
	padding: 0px;
	border-radius: none;
	box-shadow: none;
	background-color: transparent;
}

#description-05 .row .col-md-4 .service-media video {
	width: 100%;
	border-radius: 24px;
	box-shadow: 0 10px 30px 0 rgba(38, 40, 64, .5);
}

#description-05 .row .col-md-4 .service-media p {
	margin: 0px !important;
}

#description-05 .row .col-md-4 .service-media p.underline {
	border-bottom: 1px solid rgba(130, 107, 91, 0.35);
	padding-bottom: 10px;
	margin-bottom: 15px !important;
}

#description-05 .row .col-md-4 .service-media p i {
	font-size: 30px;
	margin-bottom: 15px;
}
/* Description 05 */



/* Description 06 */
#description-06 {
	background-color: var(--cream);
	padding: 80px 0px 50px 0px;
}

#description-06 h2 {
	font-size: 20px;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 20px 0;
	margin-top: 0px;
	margin-bottom: 20px;
	font-weight: 700;
}

#description-06 p {
	margin: 15px 0px 30px 0px;
	color: var(--brown);
}

#description-06 .section-title {
	margin-bottom: 20px;
}

#description-06 .section-title h2 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	color: var(--brown);
	margin: 0px;
	margin-bottom: 0px;
	padding: 0px;
	padding-bottom: 0px;
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(130, 107, 91, 0.35);
}

#description-06 .section-title h2::after {
	background-color: var(--brown) !important;
	position: absolute;
	content: "";
	height: 3px;
	width: 50px;
	bottom: -1px;
	left: 0;
}

#description-06 .service-media h2 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	color: var(--brown);
	margin: 0px;
	margin-bottom: 0px;
	padding: 0px;
	padding-bottom: 0px;
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(130, 107, 91, 0.35);
}

#description-06 .service-media h2::after {
	background-color: var(--brown) !important;
	position: absolute;
	content: "";
	height: 3px;
	width: 50px;
	bottom: -1px;
	left: 0;
}

#description-06 .service-media p {
	margin: 15px 0px 30px 0px;
	color: var(--brown);
}

#description-06 i {
	font-size: 26px;
	margin-bottom: 15px;
}

#description-06 h3 {
	font-size: 18px;
	color: var(--brown);
	font-weight: 700;
	padding: 5px 0;
}

#description-06 .row .col-md-6 {
	margin-bottom: 30px;
}

#description-06 .row .col-md-6 .service-media {
	position: relative;
	padding: 40px;
	background-color: var(--white);
//	border: 2px solid var(--white);
	box-shadow: 0 10px 30px 0 rgba(38, 40, 64, .5);
	color: var(--brown);
	border-radius: 24px;
	min-height: 392px;
}

#description-06 .row .col-md-6 .service-media span {
	color: var(--brown);
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
	display: inline-block;
	font-size: 72px;
	line-height: 1.1;
	display: block;
}

#description-06 .row .col-md-6 .service-media span.no-style {
	font-size: 24px;
	margin-bottom: 12px;
}

#description-06 .row .col-md-6 .service-media button {
	background: var(--orange) !important;
	margin: 0px;
}

#description-06 .row .col-md-6 .service-media p {
	margin: 0px !important
}

#description-06 .row .col-md-6 .service-media p i {
	font-size: 30px;
	margin-bottom: 15px;
}
/* Description 06 */



/* Locations */
#locations {
	background-color: var(--cream-light);
	padding: 80px 0px;
}

#locations h2 {
	font-size: 20px;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 20px 0;
	margin-top: 0px;
	margin-bottom: 20px;
	font-weight: 700;
}

#locations p {
	margin: 15px 0px 30px 0px;
	color: var(--brown);
}

#locations .section-title {
	margin-bottom: 20px;
}

#locations .section-title h2 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	color: var(--brown);
	margin: 0px;
	margin-bottom: 0px;
	padding: 0px;
	padding-bottom: 0px;
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(130, 107, 91, 0.35);
}

#locations .section-title h2::after {
	background-color: var(--brown) !important;
	position: absolute;
	content: "";
	height: 3px;
	width: 50px;
	bottom: -1px;
	left: 0;
}

#locations .service-media h2 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	color: var(--brown);
	margin: 0px;
	margin-bottom: 0px;
	padding: 0px;
	padding-bottom: 0px;
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(130, 107, 91, 0.35);
}

#locations .service-media h2::after {
	background-color: var(--brown) !important;
	position: absolute;
	content: "";
	height: 3px;
	width: 50px;
	bottom: -1px;
	left: 0;
}

#locations .service-media p {
	margin: 15px 0px 30px 0px;
	color: var(--brown);
}

#locations h3 {
	font-size: 18px;
	color: var(--brown);
	font-weight: 700;
	padding: 5px 0;
}


#locations .row .col-md-12 {
	margin-bottom: 0px;
}

#locations .row .col-md-6 {
	margin-top: 30px;
}

#locations .row .col-md-12 .service-media,
#locations .row .col-md-6 .service-media {
	position: relative;
	padding: 40px;
	background-color: var(--white);
//	border: 2px solid var(--white);
	box-shadow: 0 10px 30px 0 rgba(38, 40, 64, .5);
	color: var(--brown);
	border-radius: 24px;
}

#locations .row .col-md-12 .service-media p,
#locations .row .col-md-6 .service-media p {
	margin: 0 0 10px !important;
}
/* Locations */



/* Instagram */
#instagram {
	background-color: var(--cream);
	padding: 80px 0px 50px 0px;
}

#instagram h2 {
	font-size: 20px;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 20px 0;
	margin-top: 0px;
	margin-bottom: 20px;
	font-weight: 700;
}

#instagram .section-title h2,
#instagram .service-media h2 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	color: var(--brown);
	margin: 0px;
	margin-bottom: 0px;
	padding: 0px;
	padding-bottom: 0px;
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(130, 107, 91, 0.35);
}

#instagram .section-title h2::after,
#instagram .service-media h2::after {
	background-color: var(--brown) !important;
	position: absolute;
	content: "";
	height: 3px;
	width: 50px;
	bottom: -1px;
	left: 0;
}

#instagram .row .col-md-12 {
	margin-bottom: 30px;
}

#instagram .row .col-md-12 .service-media {
	position: relative;
	padding: 40px;
	background-color: var(--black-transparent);
//	border: 2px solid var(--white);
	box-shadow: 0 10px 30px 0 rgba(38, 40, 64, .5);
	color: var(--white);
	border-radius: 0px;
	display: block;
}

#instagram h3 {
	font-size: 18px;
	color: var(--white);
	font-weight: 700;
	padding: 5px 0;
}

#instagram p {
	display: block;
	text-align: center;
	margin: 10px 0px 0px 0px;
	text-transform: uppercase;
}

.insta-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
//	max-width: 900px;
	margin: 0 auto;
}

.insta-card {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 24px;
	background-color: #e0e0e0;
	display: block;
	text-decoration: none;
//	border: 2px solid var(--white);
	box-shadow: 0 10px 30px 0 rgba(38, 40, 64, .5);
	aspect-ratio: 9 / 16;
}

.insta-card img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.4s ease;
	box-shadow: none;
}

.insta-card:hover img {
	transform: scale(1.05);
}

.insta-overlay {
position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.75);
	color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	transition: opacity 0.3s ease;
	text-align: center;
}

.insta-card:hover .insta-overlay {
	opacity: 1;
}

.insta-caption {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	word-break: break-word;
}

.insta-action {
	margin-top: 10px;
	font-size: 15px;
	color: #e0e0e0;
	line-height: 1.3;
}

.insta-status {
	grid-column: 1 / -1;
	text-align: center;
	color: #8e8e8e;
	padding: 40px 0;
	font-size: 15px;
}

#instagram .service-media.followus {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/instagram.webp");
	object-fit: cover;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
}

#instagram .service-media.followus h3 {
	padding: 0px;
	margin: auto;
	text-transform: uppercase;
	text-align: center;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.75);
	font-size: 24px;
}

@media (max-width: 768px) {
	.insta-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
}

@media (max-width: 480px) {
	.insta-grid {
		grid-template-columns: 1fr;
	}
}
/* Instagram */



/* FAQ */
#faq {
	background-color: var(--cream);
	padding: 80px 0px 50px 0px;
}

#faq .section-title h2 {
	border-bottom: 1px solid rgba(130, 107, 91, 0.35);
	color: var(--brown);
}

#faq .section-title h2::after {
	background-color: var(--brown) !important;
}

#faq .section-title {
	margin-bottom: 20px;
}

#faq p {
	margin: 15px 0px 30px 0px;
}


#faq {
	color: var(--brown);
}

#faq .col-md-12 {
	padding: 0px;
}

#faq .col-md-12 .service-media {
	position: relative;
	padding: 40px;
	background-color: rgba(255, 255, 255, 0.65);
//	border: 2px solid var(--white);
	box-shadow: 0 10px 30px 0 rgba(38, 40, 64, .5);
	color: var(--white);
	border-radius: 24px;
	margin-bottom: 0px;
}

#faq .col-md-12 .service-media h2 {
	color: var(--white);
	margin: 0px;
	padding: 0px;
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

#faq .col-md-12 .service-media h2::after {
	position: absolute;
	content: "";
	background-color: var(--white) !important;
	height: 3px;
	width: 50px;
	bottom: -1px;
	left: 0;
}

#faq .col-md-12 .service-media p {
	color: var(--brown);
}

#faq .faq-container {
	padding: 10px 0;
}

#faq .faq-item {
	border-bottom: 1px solid rgba(130, 107, 91, 0.35);
	padding: 0px;
	cursor: pointer;
}

#faq .faq-item:last-child {
	border-bottom: none;
}

#faq .faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--brown);
	font-weight: 600;
	padding: 12px 0px;
	user-select: none;
}

#faq .faq-question span {
	transition: color 0.3s ease;
}

#faq .faq-toggle {
	background: transparent;
	border: none;
	color: var(--brown);
	cursor: pointer;
	padding: 0 8px;
	transition: transform 0.5s ease;
	line-height: 1;
	flex-shrink: 0;
	pointer-events: none; /* Onemogućavamo klik na dugme jer ceo element reaguje */
}

#faq .faq-toggle:focus {
	outline: none;
}

#faq .faq-toggle.active {
	transform: rotate(360deg);
}

#faq .faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.3s ease;
	padding: 0px;
	color: #ddd;
	font-size: 15px;
	line-height: 1.6;
}

#faq .faq-answer.open {
	max-height: 300px;
	padding: 0px 0px 12px 0px;
}

#faq .faq-answer p {
	margin: 0px;
}

#faq .service-media {
	background-color: rgba(0, 240, 255, 0.05);
}
/* FAQ */



/* Kontakt */
#contact {
	background: var(--brown);
	padding: 80px 0px 50px 0px;
	color: var(--white);
}

#contact .section-title {
	margin-bottom: 20px;
}

#contact h2 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	margin-bottom: 20px;
}

#contact h2::after {
	background-color: var(--white) !important;
}

#contact a {
	color: var(--white);
	transition: all 0.3s;
}

#contact a:hover {
	color: var(--white);
	transition: all 0.3s;
}

#contact p {
	margin-bottom: 30px;
}

#contact .contact-item p {
	margin: 20px 0px;
}

#contact form {
    padding-top: 0px;
}

#contact .form-group {
    margin-bottom: 10px;
}

#contact .col-md-6 .form-group {
    margin-bottom: 30px;
	box-shadow: 0 10px 30px 0 rgba(38, 40, 64, .5);
}

#contact .form-control {
	height: 50px;
	border-radius: 12px;
}

#contact .form-group p {
    margin-bottom: 10px;
	border-radius: 9px;
}

#contact .btn-custom {
	margin: 0px;
	border-radius: 999px !important;
}

#contact .btn-custom:hover {
	margin: 0px;
	color: var(--white);
}

#contact h4 {
	margin-bottom: 33px;
}

#contact .text-danger {
	background-color: var(--red);
	color: var(--white);
	font-size: 12px;
}

#contact .text-danger ul {
	padding: 6px 12px;
	list-style: none !important;
	margin-left: 0px;
}

#contact .alert {
	border-radius: 0px;
	margin-bottom: 30px;
}

#contact .contact-info {
	padding: 0px;
}

#contact .contact-logo {
	display: flex;
	padding-top: 5px;
}

#contact .contact-logo svg {
	outline: none;
	outline-offset: inherit;
	box-shadow: none;
	width: 220px;
	height: auto;
	fill: var(--white);
}

#contact .contact-logo span {
	color: var(--white);
	font-size: 24px;
	font-weight: 700;
	display: inline-block;
	//margin: 0px 0px 0px 15px;
}

#contact .contact-info .contact-item {
	margin-top: 0px;
}

#contact i {
	font-size: 26px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	padding: 12px;
	border-radius: 100%;
	color: var(--white);
	width: 50px;
	height: 50px;
	margin-right: 15px;
}

#contact #success {
	display: none;
}

/* Kontakt */



/* Footer */
#footer {
	padding: 12px;
	background: var(--brown-dark);
}

#footer p {
	margin: 0px;
	color: rgba(255,255,255,.65);
}

#footer p.copyright {
	float: left;
}

#footer p.privacy-policy {
	float: right;
}

#footer p.privacy-policy a,
#footer p.privacy-policy a:hover {
	color: #888;
}
/* Footer */



/* Floating call button */
.call-container {
    display: none;
    bottom: 148px; /* Najviše */
    position: fixed;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    padding: 13px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.3);
    transition: all 0.3s;
//  border: 2px solid var(--white) !important;
    background: green !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    animation: strong-pulse 1.2s infinite;
    z-index: 9999;
}

.call-container i {
    font-size: 24px;
    color: white;
    animation: icon-shake 1.2s infinite;
}

.call-container:hover {
    background-color: var(--red) !important;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    animation: none;
}

.call-container:hover i {
    animation: none;
}

.call-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.7s ease;
}

.call-container:hover::before {
    left: 100%;
}

/* Keyframes za call dugme */
@keyframes strong-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 85, 0.9), 0 0 0 0 rgba(255, 0, 85, 0.7);
        background: var(--red);
    }
    25% {
        transform: scale(1.1);
        background: #FF3377;
    }
    50% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(255, 0, 85, 0), 0 0 0 25px rgba(255, 0, 85, 0);
        background: var(--red);
    }
    75% {
        transform: scale(1.05);
        background: #FF1A66;
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 85, 0), 0 0 0 0 rgba(255, 0, 85, 0);
        background: var(--red);
    }
}

@keyframes icon-shake {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(5deg); }
    60% { transform: rotate(-5deg); }
    70% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

@media (max-width: 767px) {
    .call-container {
        display: flex;
    }
}
/* Floating call button */



/* Floating Instagram DM button */
.dm-container {
    bottom: 84px; /* Sredina - između call i back-to-top */
    position: fixed;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    padding: 13px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.3);
    transition: all 0.3s;
//  border: 2px solid var(--white) !important;
    background: #E1306C !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    animation: dm-pulse 1.5s infinite;
    z-index: 9999;
}

.dm-container i {
    font-size: 24px;
    color: white;
}

.dm-container:hover {
    background: #C13584 !important;
    animation: none;
}

.dm-container:hover i {
    animation: none;
}

.dm-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.7s ease;
}

.dm-container:hover::before {
    left: 100%;
}

@media (max-width: 767px) {
    .dm-container {
        display: flex;
    }
}
/* Floating Instagram DM button */



/* Back to top */
.back-to-top {
    bottom: 20px;
    position: fixed;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
	background-color: var(--orange);
//  border: 2px solid var(--white);
    z-index: 9999;
}

.back-to-top i {
    font-size: 24px;
    color: var(--white);
    line-height: 1;
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.7s ease;
}

.back-to-top:hover::before {
    left: 100%;
}
/* Back to top */




/* Styles for the content section */
.content {
	width: 77%;
	margin: 50px auto;
	font-family: 'Merriweather', serif;
	font-size: 17px;
	color: #6c767a;
	line-height: 1.9;
}

@media (min-width: 500px) {
	.content {
		width: 43%;
	}

	#button {
		margin: 30px;
	}
}

.content h1 {
	margin-bottom: -10px;
	color: #03a9f4;
	line-height: 1.5;
}

.content h3 {
	font-style: italic;
	color: #96a2a7;
}
/* Styles for the content section */



/* Responsive view */
@media (max-width: 767px) {
	
	.hide {
		display: none !important;
	}

	.unhide {
		display: initial;
	}
	
	#header {
		margin-top: 33px;
	}
	
	#header .intro-text {
		padding-top: 200px;
	}
	
	#header br.responsive {
		display: initial;
	}
	
	#menu .navbar-brand {
		color: #5E2A3C !important;
		font-size: 24px !important;
		padding-top: 15px;
	}

	.navbar-toggle {
		background: transparent !important;
		border: none !important;
		padding: 9px 10px !important;
		margin-top: 9px !important;
		margin-bottom: 8px !important;
		margin-right: -10px !important;
		position: relative !important;
		width: 44px !important;
		height: 34px !important;
		transition: all 0.3s ease !important;
	}

	.navbar-toggle .icon-bar {
		display: block !important;
		width: 24px !important;
		height: 2px !important;
		border-radius: 0px !important;
		background-color: var(--brown) !important;
		transition: all 0.3s ease !important;
		position: absolute !important;
		left: 10px !important;
		margin: 0 !important;
	}

	.navbar-toggle .top-bar {
		top: 8px !important;
	}

	.navbar-toggle .middle-bar {
		top: 15px !important;
	}

	.navbar-toggle .bottom-bar {
		top: 22px !important;
	}

	.navbar-toggle:not(.collapsed) .top-bar {
		transform: rotate(45deg) !important;
		top: 15px !important;
	}

	.navbar-toggle:not(.collapsed) .middle-bar {
		opacity: 0 !important;
		transform: scaleX(0) !important;
	}

	.navbar-toggle:not(.collapsed) .bottom-bar {
		transform: rotate(-45deg) !important;
		top: 15px !important;
	}
	
	.navbar-default .navbar-collapse,
	.navbar-default .navbar-form {
		margin-top: 0px;
		border: none;
	}
	
	.navbar-default .navbar-toggle .icon-bar {
		background-color: var(--white);
	}
	
	#header .carousel-control .fa-2x {
		font-size: 1.5em;
	}
	
	#header .carousel-control.left .fa {
		left: 20%;
	}
	
	#header .carousel-control.right .fa {
		right: 20%;
	}
	
	#about .row .col-md-12 .service-media {
		padding: 30px;
	}
	
	#services {
		background: var(--brown);
		height: auto;
	}
	
	#services .services-image {
		display: block !important;
		margin: -60px 0px 20px -30px;
		width: calc(100% + 60px);
		overflow: hidden;
	}
	
	#services .services-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: left center;
		display: block;
		border-radius: 0px;
		box-shadow: 0 10px 30px 0 rgba(38, 40, 64, .5);
	}
	
	#services .container .row .services {
		width: 100% !important;
		margin-left: 0;
		float: none;
		padding: 30px;
		border-radius: 24px;
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
	}
	
	#services .container .row .services-text {
		padding-top: 0;
	}
	
	#services .corner-label {
		right: 20px;
	}

	#services .corner-label {
		position: absolute;
		top: -20px;
		left: 50%;
		right: auto;
		transform: translateX(-50%);
		text-align: center;
		font-size: 12px;
		padding: 8px 16px;
		max-width: 90%;
	}

	#services .container .row .services {
		position: relative;
		overflow: visible;
	}
	
	#services .services-text button.right {
		margin: 15px 0px 0px 0px;
	}
	
	#locations .row .col-md-12 .service-media,
	#locations .row .col-md-6 .service-media {
		padding: 30px;
	}
	
	#instagram .row .col-md-12 .service-media {
		padding: 30px;
	}
	
	#instagram .row .col-md-12 {
		margin-bottom: 30px;
	}

	#testimonials .col-md-12 .service-media {
		padding: 30px !important;
	}
	
	#faq .col-md-12 .service-media {
		padding: 30px !important;
	}

	#info-modal .modalconent {
		width: 320px;
		padding: 40px 20px;
	}
	
	#contact .container {
		padding-right: 15px;
		padding-left: 15px;
	}
	
	#testimonials\ m .row .col-md-6 .service-media {
		padding: 30px;
	}
	
	#testimonials\ s .row .col-md-12 .service-media {
		padding: 30px;
	}
	
	#footer p {
		float: none !important;
	}
	
	#footer p.privacy-policy {
		margin-top: 13px;
	}
	
	.call-container {
		display: flex;
	}
	
	#testimonials\ m .pagination-wrapper {
        gap: 15px;
        margin-top: 30px;
    }
    
    #testimonials\ m .pagination-btn {
        padding: 8px 20px;
        font-size: 12px;
    }
}

@media (min-width: 768px) {
	
	#services {
		background-image: url('../img/services-bg.webp');
		background-size: cover;
		background-position: left center;
		background-attachment: fixed;
	}
	
	#services::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 0;
	}
	
	#services .container {
		position: relative;
		z-index: 1;
	}
	
}

@media (min-width: 992px) { 

    #get-touch .flex-vertical-center {
        display: flex;
        align-items: center;
    }
	
}

@media (max-width: 991px) {
	
	#menu .navbar-header {
		margin: 0px;
	}
	
	#menu a.navbar-brand {
		padding: 0px;
	}
	
	#menu .navbar-brand img {
		height: 30px;
		margin-top: 10px;
	}
	
	#menu .navbar-brand span {
		font-size: 20px;
	}
	
	#services .container .row .services {
		padding: 30px;
		max-height: fit-content !important;
		margin-left: 0px;
		width: 100%;
		width: calc(100% - 30px);
	}

	#services .img-responsive {
		width: 100%;
		margin: 0px;
		padding: 0px;
	}
	
	#description-01 .service-media, 
	#description-02 .service-media,
	#description-03 .service-media, 
	#description-04 .service-media,
	#description-05 .service-media,
	#description-06 .service-media	{
		padding: 30px !important;
	} 
	
	#description-04 .service-media.no-style,
	#description-05 .service-media.no-style	{
		padding: 0px !important;
	} 
	
	#description-06 .row .col-md-6 .service-media {
		min-height: auto;
	}

}

@media (min-width: 991px) and (max-width: 1199px) { 

    #services {
		height: auto;
	}
	
}
/* Responsive view */



