/**
 * Home (New) - Page-specific styles
 * Loaded only on pages using the Home (New) template
 *
 * @package Point_Concept
 */

/* -------------------------------------------------------------------------
   Fonts
   ------------------------------------------------------------------------- */
@font-face {
	font-family: 'Red Hat Display';
	src: url('../fonts/RedHatDisplay-Regular.woff2') format('woff2'),
	     url('../fonts/RedHatDisplay-Regular.woff') format('woff'),
	     url('../fonts/RedHatDisplay-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Red Hat Display';
	src: url('../fonts/RedHatDisplay-SemiBold.woff2') format('woff2'),
	     url('../fonts/RedHatDisplay-SemiBold.woff') format('woff'),
	     url('../fonts/RedHatDisplay-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Red Hat Display';
	src: url('../fonts/RedHatDisplay-Bold.woff2') format('woff2'),
	     url('../fonts/RedHatDisplay-Bold.woff') format('woff'),
	     url('../fonts/RedHatDisplay-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Red Hat Display';
	src: url('../fonts/RedHatDisplay-Black.woff2') format('woff2'),
	     url('../fonts/RedHatDisplay-Black.woff') format('woff'),
	     url('../fonts/RedHatDisplay-Black.ttf') format('truetype');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

/* -------------------------------------------------------------------------
   Color & font variables
   ------------------------------------------------------------------------- */
:root {
	--color-primary: #111215;
	--color-secondary: #ffffff;
	--font-primary: 'Red Hat Display', sans-serif;
	--font-weight-regular: 400;
	--font-weight-semibold: 600;
	--font-weight-bold: 700;
	--font-weight-black: 900;
	--font-size-counting: clamp(3.8rem, 5vw, 7.2rem); /* 38px min, 72px max (10px root) */
	--line-height-paragraph: 16px;
	--line-height-h1: 62px;
	--line-height-h2: 56px;
	--line-height-h3: 32px;
}

@media (max-width: 800px) {
	:root {
		--line-height-h1: 57px;
		--line-height-h2: 32px;
	}
}

@media (max-width: 479px) {
	:root {
		--line-height-h1: 34px;
	}
}

/* -------------------------------------------------------------------------
   Base / Layout
   ------------------------------------------------------------------------- */
html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

.home-new-container {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

/* Utility: padding-left 14px samo ispod 1200px */
@media (max-width: 1199px) {
	.home-new-pl-left-below-1200 {
		padding-left: 14px;
	}
	.home-new-pl-right-below-1200 {
		padding-right: 14px;
	}
}

.home-new-main {
	min-height: 50vh;
}

/* -------------------------------------------------------------------------
   Header
   ------------------------------------------------------------------------- */
.home-new-header {
	position: relative;
	z-index: 100;
	background-color: var(--color-secondary);
	padding: 1rem 1.5rem;
}

.home-new-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

/* Logo */
.home-new-header__logo {
	display: flex;
	align-items: center;
	color: var(--color-primary);
	text-decoration: none;
	flex-shrink: 0;
}

.home-new-header__logo svg {
	width: 134px;
	height: 59px;
}

/* Overlay - dims content when menu is open (mobile) */
.home-new-header__overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(17, 18, 21, 0.1);
	z-index: 998;
	border: none;
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.35s ease-out;
}

@media (max-width: 991px) {
	.home-new-header__overlay {
		display: block;
		pointer-events: none;
	}

	.home-new-header.is-open .home-new-header__overlay {
		opacity: 1;
		pointer-events: auto;
	}
}

@media (min-width: 992px) {
	.home-new-header__overlay {
		display: none !important;
	}
}

/* Navigation */
.home-new-header__nav {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	max-width: 360px;
	background: var(--color-secondary);
	z-index: 999;
	padding: 1.5rem 1.5rem 2rem;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform 0.35s ease-out;
	box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
}

/* Logo inside mobile nav (above menu) */
.home-new-header__nav-logo {
	display: none;
	color: var(--color-primary);
	text-decoration: none;
	margin-bottom: 2rem;
}

.home-new-header__nav-logo svg {
	width: 100px;
	height: 44px;
}

@media (max-width: 991px) {
	.home-new-header__nav-logo {
		display: block;
	}
}

@media (min-width: 992px) {
	.home-new-header__nav-logo {
		display: none !important;
	}

	.home-new-header__nav {
		padding: 0;
	}
}

.home-new-header.is-open .home-new-header__nav {
	transform: translateX(0);
}

@media (min-width: 992px) {
	.home-new-header__nav {
		position: static;
		width: auto;
		max-width: none;
		transform: none;
		transition: none;
		padding: 0;
		overflow: visible;
		box-shadow: none;
	}
}

.home-new-header__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

/* Mobile: menu items stagger animation (0.1s between each) */
@media (max-width: 991px) {
	.home-new-header__menu > .home-new-header__item {
		opacity: 0;
		transform: translateX(20px);
		transition: opacity 0.3s ease, transform 0.3s ease;
		transition-delay: 0s;
	}

	.home-new-header__menu > .home-new-header__item:nth-child(1) { transition-delay: 0s; }
	.home-new-header__menu > .home-new-header__item:nth-child(2) { transition-delay: 0.1s; }
	.home-new-header__menu > .home-new-header__item:nth-child(3) { transition-delay: 0.2s; }
	.home-new-header__menu > .home-new-header__item:nth-child(4) { transition-delay: 0.3s; }
	.home-new-header__menu > .home-new-header__item:nth-child(5) { transition-delay: 0.4s; }
	.home-new-header__menu > .home-new-header__item:nth-child(6) { transition-delay: 0.5s; }
	.home-new-header__menu > .home-new-header__item:nth-child(7) { transition-delay: 0.6s; }
	.home-new-header__menu > .home-new-header__item:nth-child(8) { transition-delay: 0.7s; }

	.home-new-header.is-open .home-new-header__menu > .home-new-header__item {
		opacity: 1;
		transform: translateX(0);
	}

	.home-new-header:not(.is-open) .home-new-header__menu > .home-new-header__item {
		transition-delay: 0s;
	}
}

@media (min-width: 992px) {
	.home-new-header__menu {
		flex-direction: row;
		align-items: center;
		gap: 0.25rem;
	}

	/* 105px gap between second-to-last item (e.g. Press) and Contact */
	.home-new-header__menu > .home-new-header__item:last-child {
		margin-left: 105px;
	}
}

.home-new-header__item {
	position: relative;
	margin: 0;
}

.home-new-header__item > a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 500;
}

@media (min-width: 992px) {
	.home-new-header__item > a {
		padding: 0.5rem 1rem;
	}
}

/* CTA poslednje stavke menija: assets/css/header-cta.css (globalno + Home New) */

/* Items with submenu */
.home-new-header__item.menu-item-has-children {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.home-new-header__item.menu-item-has-children > a {
	flex: 1;
	min-width: 0;
}

/* Chevron u HTML-u – ostaje u markupu, vizuelno sakriveno */
.home-new-header__chevron {
	display: none !important;
}

.home-new-header__sub-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	color: var(--color-primary);
}

.home-new-header__sub-toggle span {
	display: block;
	width: 12px;
	height: 12px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s;
	margin-bottom: 4px;
}

.home-new-header__item.is-open > .home-new-header__sub-toggle span {
	transform: rotate(-135deg);
	margin-bottom: 0;
	margin-top: 4px;
}

@media (min-width: 992px) {
	.home-new-header__sub-toggle {
		display: none;
	}
}

/* Submenu */
.home-new-header__submenu {
	list-style: none;
	margin: 0;
	padding: 0 0 0 1rem;
	width: 100%;
}

@media (min-width: 992px) {
	.home-new-header__submenu {
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		min-width: 200px;
		padding: 0.5rem 0;
		background: var(--color-secondary);
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
		border-radius: 8px;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.2s, visibility 0.2s;
	}

	.home-new-header__item:hover > .home-new-header__submenu {
		opacity: 1;
		visibility: visible;
	}
}

.home-new-header__submenu .menu-item {
	margin: 0;
}

.home-new-header__submenu a {
	display: block;
	padding: 0.5rem 1rem;
	color: var(--color-primary);
	text-decoration: none;
	white-space: nowrap;
}

.home-new-header__submenu a:hover {
	background: rgba(0, 0, 0, 0.05);
}

/* Mobile: hide submenu by default, show when .is-open */
@media (max-width: 991px) {
	.home-new-header__item.menu-item-has-children > .home-new-header__submenu {
		display: none;
	}

	.home-new-header__item.menu-item-has-children.is-open > .home-new-header__submenu {
		display: block;
	}

	/* Submenu items stagger animation (same as main menu - 0.1s between each) */
	.home-new-header__submenu .menu-item {
		opacity: 0;
		transform: translateX(20px);
		transition: opacity 0.3s ease, transform 0.3s ease;
		transition-delay: 0s;
	}

	.home-new-header__submenu .menu-item:nth-child(1) { transition-delay: 0s; }
	.home-new-header__submenu .menu-item:nth-child(2) { transition-delay: 0.1s; }
	.home-new-header__submenu .menu-item:nth-child(3) { transition-delay: 0.2s; }
	.home-new-header__submenu .menu-item:nth-child(4) { transition-delay: 0.3s; }
	.home-new-header__submenu .menu-item:nth-child(5) { transition-delay: 0.4s; }
	.home-new-header__submenu .menu-item:nth-child(6) { transition-delay: 0.5s; }
	.home-new-header__submenu .menu-item:nth-child(7) { transition-delay: 0.6s; }
	.home-new-header__submenu .menu-item:nth-child(8) { transition-delay: 0.7s; }

	.home-new-header__item.menu-item-has-children.is-open > .home-new-header__submenu .menu-item {
		opacity: 1;
		transform: translateX(0);
	}

	.home-new-header__item.menu-item-has-children:not(.is-open) > .home-new-header__submenu .menu-item {
		transition-delay: 0s;
	}
}

/* Hamburger toggler */
.home-new-header__toggler {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	color: var(--color-primary);
	z-index: 1000;
}

@media (min-width: 992px) {
	.home-new-header__toggler {
		display: none;
	}
}

.home-new-header__toggler-icon,
.home-new-header__toggler-icon::before,
.home-new-header__toggler-icon::after {
	display: block;
	width: 24px;
	height: 2px;
	background: currentColor;
	transition: transform 0.3s;
}

.home-new-header__toggler-icon {
	position: relative;
}

.home-new-header__toggler-icon::before,
.home-new-header__toggler-icon::after {
	content: '';
	position: absolute;
	left: 0;
}

.home-new-header__toggler-icon::before {
	top: -8px;
}

.home-new-header__toggler-icon::after {
	top: 8px;
}

.home-new-header.is-open .home-new-header__toggler-icon {
	background: transparent;
}

.home-new-header.is-open .home-new-header__toggler-icon::before {
	transform: translateY(8px) rotate(45deg);
}

.home-new-header.is-open .home-new-header__toggler-icon::after {
	transform: translateY(-8px) rotate(-45deg);
}

/* -------------------------------------------------------------------------
   Hero section
   Glavna hero sekcija na početnoj stranici: slika pozadina,
   naslov, paragraf i dugme u donjem levom uglu
   ------------------------------------------------------------------------- */
.home-new-hero {
	position: relative;
	min-height: 95vh;
	margin-top: -6rem;
	padding-top: 6rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.home-new-hero__image {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.home-new-hero__image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.1);
	pointer-events: none;
}

.home-new-hero__content {
	position: absolute;
	bottom: 8.9rem; /* 89px od donje ivice do CTA (10px root) */
	left: 0;
	right: 0;
	z-index: 1;
}

.home-new-hero__inner {
	max-width: 700px;
	width: 100%;
	margin: 0;
	padding: 0 14px;
}

.home-new-hero__title {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: 6.2rem; /* 62px (10px root) */
	line-height: var(--line-height-h1);
	color: var(--color-secondary);
	margin: 0 0 30px;
}

.home-new-hero__title strong {
	font-weight: var(--font-weight-bold);
}

.home-new-hero__text {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: 1.8rem; /* 18px (10px root) */
	line-height: var(--line-height-paragraph);
	color: var(--color-secondary);
	margin: 0 0 30px;
}

.home-new-hero__btn {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 13px;
	padding: 20px 10px;
	width: 201px;
	height: 44px;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.82) !important;
	color: var(--color-primary);
	border: 1px solid transparent;
	border-radius: 50px;
	box-shadow: inset 0 0 0 1px transparent;
	text-decoration: none;
	font-size: 1.6rem; /* 16px (10px root) */
	transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.home-new-hero__btn:hover {
	background: #000 !important;
	color: var(--color-secondary);
	box-shadow: inset 0 0 0 1px var(--color-secondary);
}

.home-new-hero__btn-icon {
	flex-shrink: 0;
}

@media (min-width: 768px) {
	.home-new-hero {
		background-position: center center;
	}
}

@media (max-width: 767px) {
	.home-new-hero {
		background-position: center center;
		background-size: cover;
	}

	.home-new-hero__content {
		bottom: 2rem;
	}

	.home-new-hero__inner {
		padding: 0 1rem;
	}
}

/* iPhone 17 Pro Max i slični (440px) – blok teksta ispod slike, bela pozadina */
@media (max-width: 440px) {
	.home-new-hero {
		display: flex;
		flex-direction: column;
		min-height: auto;
		margin-top: 0;
		padding: 0;
	}

	.home-new-hero__image {
		position: relative;
		flex: 0 0 50vh;
		min-height: 60vh;
		inset: auto;
		background-image: url('../images/home-new/hero_mobile.webp') !important;
	}

	.home-new-hero__image::after {
		display: none;
	}

	.home-new-hero__content {
		position: static;
		margin: auto 0;
	}

	.home-new-hero__inner {
		position: static;
		margin-top: 20px;
		padding: 0 1.5rem;
		background: var(--color-secondary);
		max-width: none;
		left: auto;
		right: auto;
		bottom: auto;
	}

	.home-new-hero__title {
		font-size: 3.4rem; /* 34px (10px root) */
		color: var(--color-primary);
		margin: 0 0 20px;
	}

	.home-new-hero__text {
		font-size: 1.6rem; /* 16px (10px root) */
		color: var(--color-primary);
		margin: 0 0 30px;
	}

	/* belo dugme na belom bloku: vidljiv obrub */
	.home-new-hero__btn {
		box-shadow: inset 0 0 0 1px rgba(17, 18, 21, 0.15);
	}

	.home-new-hero__btn:hover {
		box-shadow: inset 0 0 0 1px var(--color-secondary);
	}
}

/* -------------------------------------------------------------------------
   counting_numbers
   Tri kućice sa brojačima: 200+, 10+, 50+
   ------------------------------------------------------------------------- */
.home-new-counting_numbers {
	padding: 100px 1.5rem;
}

.home-new-counting_numbers__inner {
	display: flex;
	gap: 2rem;
	justify-content: space-between;
}

.home-new-counting_numbers__item {
	flex: 1;
	min-width: 0;
	text-align: center;
}

.home-new-counting_numbers__content {
	display: inline-block;
	text-align: left;
}

.home-new-counting_numbers__number {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-black);
	font-size: var(--font-size-counting);
	line-height: 1.2;
	color: var(--color-primary);
	margin: 0 0 0.5rem;
}

.home-new-counting_numbers__text {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: 1.8rem; /* 18px (10px root) */
	line-height: 1.4;
	color: var(--color-primary);
	margin: 0;
}

.home-new-counting_numbers__br {
	display: none;
}

/* counting_numbers na mobilnom (440px) – jedna pored druge */
@media (max-width: 440px) {
	.home-new-counting_numbers {
		padding: 72px 1.5rem 50px;
	}

	.home-new-counting_numbers__inner {
		flex-direction: row;
		gap: 0.5rem;
	}

	.home-new-counting_numbers__item {
		flex: 1;
	}

	.home-new-counting_numbers__number {
		margin: 0 0 0.25rem;
	}

	.home-new-counting_numbers__br {
		display: block;
	}

	.home-new-counting_numbers__text {
		font-size: 1.5rem; /* 12px (10px root) */
		line-height: 1.3;
	}
}

/* -------------------------------------------------------------------------
   client_logos
   Trusted by + infinite scroll logotipi klijenta
   ------------------------------------------------------------------------- */
.home-new-client_logos {
	padding: 4rem 1.5rem;
}

.home-new-client_logos__title {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-bold);
	font-size: 2.4rem; /* 24px (10px root) */
	line-height: var(--line-height-h2);
	text-align: center;
	margin: 0 0 70px;
	color: var(--color-primary);
}

.home-new-client_logos__track-wrap {
	overflow: hidden;
}

.home-new-client_logos__track {
	display: flex;
	align-items: center;
	gap: 4rem;
	width: max-content;
	animation: home-new-client_logos-scroll 90s linear infinite;
}

@keyframes home-new-client_logos-scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.home-new-client_logos__item {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
}

.home-new-client_logos__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.home-new-client_logos__item--al-futtain img {
	transform: scale(2.5);
	transform-origin: center center;
}

@media (max-width: 800px) {
	.home-new-client_logos {
		padding: 0;
	}
}

@media (max-width: 440px) {
	.home-new-client_logos__title {
		margin-bottom: 32px;
	}
}

/* -------------------------------------------------------------------------
   our_interior
   Our Interior Design Team – dve kolone, crna pozadina
   ------------------------------------------------------------------------- */
.home-new-our_interior {
	padding-top: 110px;
	margin-top: 60px;
	background-color: var(--color-primary);
}

.home-new-our_interior__inner {
	display: flex;
	align-items: stretch;
	padding-left: 0;
	padding-right: 0;
}

.home-new-our_interior__col1 {
	width: 420px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.home-new-our_interior__title {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: clamp(2.9rem, 4.5vw, 5.6rem); /* 36px min, 56px max – uvek manji od h1 (62px) */
	line-height: var(--line-height-h2);
	color: var(--color-secondary);
	margin: 0;
}

.home-new-our_interior__title::after {
	content: '';
	display: block;
	width: 195px;
	height: 1px;
	background: var(--color-secondary);
	margin-top: 30px;
}

.home-new-our_interior__title strong {
	font-weight: var(--font-weight-semibold);
}

.home-new-our_interior__btn {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 13px;
	padding: 20px 10px;
	width: 144px;
	height: 44px;
	box-sizing: border-box;
	background: var(--color-secondary);
	color: var(--color-primary);
	border: 1px solid transparent;
	border-radius: 50px;
	box-shadow: inset 0 0 0 1px transparent;
	text-decoration: none;
	font-size: 1.6rem;
	transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
	align-self: flex-start;
	margin-top: 2rem;
	margin-bottom: 63px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.home-new-our_interior__btn:hover {
	background: var(--color-primary);
	color: var(--color-secondary);
	box-shadow: inset 0 0 0 1px var(--color-secondary);
}

.home-new-our_interior__btn-icon {
	flex-shrink: 0;
}

.home-new-our_interior__col2 {
	flex: 1;
	min-width: 0;
}

.home-new-our_interior__text {
	max-width: 721px;
}

.home-new-our_interior__text p {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: 1.6rem; /* 16px (10px root) */
	line-height: var(--line-height-paragraph);
	color: var(--color-secondary);
	margin: 0 0 1.5rem;
}

.home-new-our_interior__text p:last-child {
	margin-bottom: 44px;
}

.home-new-our_interior__image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* our_interior responsive: ispod 800px – jedna kolona, redom: naslov, tekst, CTA, slika */
@media (max-width: 799px) {
	.home-new-our_interior {
		padding-top: 70px;
	}
	.home-new-our_interior__inner {
		flex-direction: column;
		gap: 0;
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.home-new-our_interior__col1,
	.home-new-our_interior__col2 {
		display: contents;
	}

	.home-new-our_interior__title {
		order: 1;
		margin-bottom: 40px;
	}

	.home-new-our_interior__title::after {
		margin-top: 20px;
	}

	.home-new-our_interior__text {
		order: 2;
		max-width: none;
		margin-bottom: 2rem;
	}

	.home-new-our_interior__text p:last-child {
		margin-bottom: 1.5rem;
	}

	.home-new-our_interior__btn {
		order: 3;
		margin-top: 0;
		margin-bottom: 40px;
	}

	.home-new-our_interior__image {
		order: 4;
	}
}

/* -------------------------------------------------------------------------
   design_projects: Latest Design Projects – grid 2 reda fotografija
   ------------------------------------------------------------------------- */
.home-new-design_projects {
	padding-top: 120px;
	padding-bottom: 120px;
	background-color: var(--color-secondary);
}

.home-new-design_projects__inner {
	padding-left: 14px;
	padding-right: 14px;
}

@media (min-width: 1200px) {
	.home-new-design_projects__inner {
		padding-left: 0;
		padding-right: 0;
	}
}

.home-new-design_projects__title {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: clamp(2.9rem, 4.5vw, 5.6rem);
	line-height: var(--line-height-h2);
	color: var(--color-primary);
	margin: 0 0 30px;
}

.home-new-design_projects__title::after {
	content: '';
	display: block;
	width: 195px;
	height: 1px;
	background: var(--color-primary);
	margin-top: 30px;
}

.home-new-design_projects__title strong {
	font-weight: var(--font-weight-bold);
}

.home-new-design_projects__text {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: 1.6rem;
	line-height: var(--line-height-paragraph);
	color: var(--color-primary);
	margin: 0 0 36px;
}

.home-new-design_projects__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5px;
	margin-bottom: 2.4rem;
}

.home-new-design_projects__item {
	position: relative;
	display: block;
	aspect-ratio: 397 / 288;
	overflow: hidden;
	text-decoration: none;
}

.home-new-design_projects__item-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform 0.3s ease;
}

.home-new-design_projects__item:hover .home-new-design_projects__item-bg {
	transform: scale(1.05);
}

.home-new-design_projects__item-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(17, 18, 21, 0) 0%, rgba(17, 18, 21, 1) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.home-new-design_projects__item:hover .home-new-design_projects__item-overlay {
	opacity: 1;
}

.home-new-design_projects__item-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1.5rem;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	z-index: 1;
}

.home-new-design_projects__item:hover .home-new-design_projects__item-content {
	opacity: 1;
	transform: translateY(0);
}

.home-new-design_projects__item-title {
	display: block;
	font-family: var(--font-primary);
	font-weight: var(--font-weight-semibold);
	font-size: 2.4rem;
	color: var(--color-secondary);
}

.home-new-design_projects__item-description {
	display: block;
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: 1.4rem;
	color: var(--color-secondary);
	opacity: 0.9;
}

.home-new-design_projects__footer {
	display: flex;
	justify-content: flex-end;
}

.home-new-design_projects__btn {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 13px;
	padding: 20px 10px;
	height: 44px;
	box-sizing: border-box;
	background: var(--color-primary);
	color: var(--color-secondary);
	border: 1px solid transparent;
	border-radius: 50px;
	box-shadow: inset 0 0 0 1px transparent;
	text-decoration: none;
	font-size: 1.6rem;
	transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.home-new-design_projects__btn:hover {
	background: var(--color-secondary);
	color: var(--color-primary);
	box-shadow: inset 0 0 0 1px var(--color-primary);
}

.home-new-design_projects__btn-icon {
	flex-shrink: 0;
}

/* design_projects responsive: 800px */
@media (max-width: 800px) {
	.home-new-design_projects {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.home-new-design_projects__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Naziv i opis uvek vidljivi – nema hover na touch uređajima */
	.home-new-design_projects__item-overlay {
		opacity: 1;
		top: auto;
		height: 55%;
	}

	.home-new-design_projects__item-content {
		opacity: 1;
		transform: translateY(0);
		padding: 1rem 1.2rem;
	}

	.home-new-design_projects__item-title {
		font-size: 2rem;
	}

	.home-new-design_projects__item-description {
		font-size: 1.3rem;
	}
}

/* design_projects responsive: 440px (mobilni) */
@media (max-width: 440px) {
	.home-new-design_projects {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.home-new-design_projects__inner {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.home-new-design_projects__title::after {
		margin-top: 20px;
	}

	.home-new-design_projects__text {
		margin-bottom: 2rem;
	}

	.home-new-design_projects__grid {
		grid-template-columns: 1fr;
		gap: 5px;
		margin-bottom: 1.5rem;
	}

	.home-new-design_projects__item-overlay {
		height: 45%;
	}

	.home-new-design_projects__item-content {
		padding: 0.8rem 1rem 1.2rem;
	}

	.home-new-design_projects__item-title {
		font-size: 1.8rem;
	}

	.home-new-design_projects__item-description {
		font-size: 1.2rem;
	}
}

/* -------------------------------------------------------------------------
   services: Integrated Interior Design Services – dve kolone, bela pozadina
   ------------------------------------------------------------------------- */
.home-new-services {
	padding-top: 20px;
	padding-bottom: 120px;
	background-color: var(--color-secondary);
}

.home-new-services__inner {
	display: flex;
	align-items: stretch;
	padding-left: 0;
	padding-right: 0;
}

.home-new-services__col1 {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.home-new-services__title {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: clamp(2.9rem, 4.5vw, 5.6rem);
	line-height: var(--line-height-h2);
	color: var(--color-primary);
	margin: 0;
}

.home-new-services__title strong {
	font-weight: var(--font-weight-bold);
}

.home-new-services__title::after {
	content: '';
	display: block;
	width: 195px;
	height: 1px;
	background: var(--color-primary);
	margin-top: 30px;
}

.home-new-services__tagline {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: 2rem;
	line-height: var(--line-height-paragraph);
	color: var(--color-primary);
	margin: 30px 0 0;
}

.home-new-services__btn {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 13px;
	width: 232px;
	height: 44px;
	padding: 20px 6px;
	box-sizing: border-box;
	background: var(--color-primary);
	color: var(--color-secondary);
	border: 1px solid transparent;
	border-radius: 50px;
	box-shadow: inset 0 0 0 1px transparent;
	text-decoration: none;
	font-size: 1.6rem;
	transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
	align-self: flex-start;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	user-select: none;
	-webkit-user-select: none;
}

.home-new-services__btn:link,
.home-new-services__btn:visited {
	color: var(--color-secondary);
}

/* Klik / prevlačenje: ostaje isto kao default dok nije hover */
.home-new-services__btn:active:not(:hover) {
	background: var(--color-primary);
	color: var(--color-secondary);
	box-shadow: inset 0 0 0 1px transparent;
}

.home-new-services__btn::selection,
.home-new-services__btn *::selection {
	background: var(--color-primary);
	color: var(--color-secondary);
}

.home-new-services__btn:hover::selection,
.home-new-services__btn:hover *::selection {
	background: rgba(17, 18, 21, 0.15);
	color: var(--color-primary);
}

.home-new-services__btn:focus-visible:not(:hover) {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

.home-new-services__btn:hover,
.home-new-services__btn:hover:link,
.home-new-services__btn:hover:visited,
.home-new-services__btn:hover:active,
.home-new-services__btn:hover:focus,
.home-new-services__btn:hover:focus-visible {
	background: var(--color-secondary);
	color: var(--color-primary);
	box-shadow: inset 0 0 0 1px var(--color-primary);
}

.home-new-services__btn-icon {
	flex-shrink: 0;
}

.home-new-services__col2 {
	width: 612px;
	flex-shrink: 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.home-new-services__col2 .home-new-services__btn {
	align-self: flex-start;
	margin-top: auto;
}

.home-new-services__block {
	margin-bottom: 20px;
}

.home-new-services__block-header {
	display: flex;
	align-items: center;
	gap: 19px;
}

.home-new-services__block-icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.home-new-services__block-title {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-black);
	font-size: 2.4rem;
	line-height: var(--line-height-h3);
	color: var(--color-primary);
	margin: 0;
	margin-left: -6px;
}

.home-new-services__block:first-of-type {
	margin-top: 7px;
}

.home-new-services__block:last-of-type {
	margin-bottom: 45px;
}

.home-new-services__block-text {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: 1.6rem;
	line-height: var(--line-height-paragraph);
	color: var(--color-primary);
	margin: 10px 20px 0 -5px;
	padding-left: calc(18px + 19px);
}

.home-new-services__line {
	width: 100%;
	max-width: calc(100% - 2rem);
	height: 1px;
	background: var(--color-primary);
	opacity: 0.5;
	margin-bottom: 2rem;
}

.home-new-services__line--between {
	margin: 0 0 20px 0;
}

/* services responsive: 840px */
@media (max-width: 840px) {
	.home-new-services {
		padding-top: 70px;
	}
}

/* services responsive: ispod 800px */
@media (max-width: 799px) {
	.home-new-services {
		padding-top: 0;
	}

	.home-new-services__inner {
		flex-direction: column;
		gap: 0;
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.home-new-services__col1,
	.home-new-services__col2 {
		display: contents;
	}

	.home-new-services__title {
		order: 1;
		margin-bottom: 20px;
	}

	.home-new-services__title::after {
		margin-top: 20px;
	}

	.home-new-services__tagline {
		order: 2;
		margin-bottom: 2rem;
	}

	.home-new-services__btn {
		order: 100;
	}

	.home-new-services__block-title {
		line-height: var(--line-height-h3);
	}

	.home-new-services__line--between {
		margin: 0 0 20px 0;
	}
}

/* services responsive: 440px (mobilni) */
@media (max-width: 440px) {
	.home-new-services__line--between {
		max-width: none;
		width: 100%;
	}

	.home-new-services {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.home-new-services__inner {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.home-new-services__title::after {
		margin-top: 20px;
	}

	.home-new-services__tagline {
		font-size: 2rem;
		margin-top: 0.5rem;
	}

	.home-new-services {
		padding-top: 20px;
	}
}

/* -------------------------------------------------------------------------
   awards: Nagrade – 5 kolona desktop, infinite scroll mobilni
   ------------------------------------------------------------------------- */
.home-new-awards {
	padding: 20px 1.5rem 80px;
}

.home-new-awards__title {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: clamp(2.9rem, 4.5vw, 5.6rem);
	line-height: var(--line-height-h2);
	color: var(--color-primary);
	text-align: center;
	margin: 0 0 70px;
}

.home-new-awards__title strong {
	font-weight: var(--font-weight-bold);
}

.home-new-awards__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 70px;
}

.home-new-awards__track-wrap {
	display: none;
	overflow: hidden;
}

.home-new-awards__item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
}

.home-new-awards__image-wrap {
	width: 100%;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 1rem;
}

.home-new-awards__image {
	width: 180px;
	height: 120px;
	object-fit: contain;
	object-position: left center;
}

.home-new-awards__item-title {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-semibold);
	font-size: 2.4rem;
	line-height: 24px;
	color: var(--color-primary);
	margin: 0 0 0.5rem;
	font-style: italic;
}

.home-new-awards__item-subtitle {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: 1.6rem;
	color: var(--color-primary);
	margin: 0;
	font-style: italic;
}

/* awards carousel: infinite scroll (≤1050px) */
@media (max-width: 1050px) {
	.home-new-awards {
		padding-top: 70px;
		padding-bottom: 50px;
	}

	.home-new-awards__title {
		margin-bottom: 32px;
	}

	.home-new-awards__grid {
		display: none;
	}

	.home-new-awards__track-wrap {
		display: block;
	}

	.home-new-awards__track {
		display: flex;
		align-items: flex-start;
		gap: 70px;
		width: max-content;
		animation: home-new-awards-scroll 30s linear infinite;
	}

	@keyframes home-new-awards-scroll {
		0% { transform: translateX(0); }
		100% { transform: translateX(-50%); }
	}

	.home-new-awards__track-item {
		flex-shrink: 0;
		width: 180px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}

	.home-new-awards__track-item .home-new-awards__image-wrap {
		height: 100px;
		margin-bottom: 0.5rem;
	}

	.home-new-awards__track-item .home-new-awards__image {
		width: 140px;
		height: 100px;
		object-position: left center;
	}

	.home-new-awards__track-item .home-new-awards__item-title {
		font-size: 2rem;
		line-height: 24px;
		margin-top: 0;
		font-style: italic;
	}

	.home-new-awards__track-item .home-new-awards__item-subtitle {
		font-size: 1.4rem;
		font-style: italic;
	}
}

@media (max-width: 768px) {
	.home-new-awards {
		padding-top: 0;
	}
}

/* -------------------------------------------------------------------------
   latest_news: Latest From Point Concept – blog postovi
   ------------------------------------------------------------------------- */
.home-new-latest_news {
	padding: 105px 1.5rem;
}

.home-new-latest_news__inner {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

.home-new-latest_news__col1 {
	width: 400px;
	flex-shrink: 0;
}

.home-new-latest_news__title {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: clamp(2.9rem, 4.5vw, 5.6rem);
	line-height: var(--line-height-h2);
	color: var(--color-primary);
	margin: 0;
}

.home-new-latest_news__title strong {
	font-weight: var(--font-weight-bold);
}

.home-new-latest_news__col2 {
	flex: 1;
	min-width: 0;
}

.home-new-latest_news__item {
	margin: 0;
}

.home-new-latest_news__item-inner {
	display: flex;
	gap: 0;
	align-items: center;
}

.home-new-latest_news__image-wrap {
	flex-shrink: 0;
	display: block;
	line-height: 0;
}

.home-new-latest_news__image {
	width: 334px;
	height: 239px;
	object-fit: cover;
	display: block;
}

.home-new-latest_news__image--placeholder {
	width: 334px;
	height: 239px;
	background: #e5e5e5;
}

.home-new-latest_news__content {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
	padding-left: 40px;
}

.home-new-latest_news__post-title {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-bold);
	font-size: 2.4rem;
	line-height: 24px;
	margin: 0;
}

.home-new-latest_news__post-title a {
	color: var(--color-primary);
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.home-new-latest_news__post-title a:hover {
	opacity: 0.7;
}

.home-new-latest_news__date {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: 1.6rem;
	color: var(--color-primary);
}

.home-new-latest_news__read-more {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: 1.6rem;
	color: var(--color-primary);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	position: relative;
	width: fit-content;
	padding-bottom: 2px;
	border-bottom: 1px solid currentColor;
}

.home-new-latest_news__read-more::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1px;
	width: 0;
	background: currentColor;
	transition: width 0.3s ease;
}

.home-new-latest_news__read-more:hover::after {
	width: 100%;
}

.home-new-latest_news__read-more-icon {
	flex-shrink: 0;
}

.home-new-latest_news__line {
	width: 100%;
	height: 1px;
	background: var(--color-primary);
	opacity: 0.3;
	margin: 3px 0;
}

.home-new-latest_news__item:first-of-type .home-new-latest_news__line {
	margin-top: 3px;
}

.home-new-latest_news__btn {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 13px;
	padding: 20px 10px;
	height: 44px;
	box-sizing: border-box;
	background: var(--color-primary);
	color: var(--color-secondary);
	border: 1px solid transparent;
	border-radius: 50px;
	box-shadow: inset 0 0 0 1px transparent;
	text-decoration: none;
	font-size: 1.6rem;
	transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
	margin-top: 40px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.home-new-latest_news__btn:hover {
	background: var(--color-secondary);
	color: var(--color-primary);
	box-shadow: inset 0 0 0 1px var(--color-primary);
}

.home-new-latest_news__btn-icon {
	flex-shrink: 0;
}

/* latest_news responsive: mobilni */
@media (max-width: 768px) {
	.home-new-latest_news {
		padding: 50px 1.5rem 40px;
	}

	.home-new-latest_news__inner {
		flex-direction: column;
		gap: 40px;
		padding-left: 0;
		padding-right: 0;
	}

	.home-new-latest_news__col1 {
		width: 100%;
	}

	.home-new-latest_news__item-inner {
		flex-direction: column;
		align-items: stretch;
		text-align: left;
	}

	.home-new-latest_news__image-wrap {
		width: 100%;
	}

	.home-new-latest_news__image,
	.home-new-latest_news__image--placeholder {
		width: 100%;
		height: auto;
		aspect-ratio: 334 / 239;
		max-height: 239px;
	}

	.home-new-latest_news__content {
		padding-left: 0;
		padding-top: 16px;
		gap: 12px;
	}

	.home-new-latest_news__post-title {
		font-size: 2rem;
	}

	.home-new-latest_news__line {
		margin: 30px 0;
	}

	.home-new-latest_news__item:first-of-type .home-new-latest_news__line {
		margin-top: 30px;
	}

	.home-new-latest_news__btn {
		margin-top: 24px;
	}
}

@media (max-width: 500px) {
	.home-new-latest_news__content {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.home-new-latest_news__post-title {
		flex: 0 0 100%;
	}

	.home-new-latest_news__date {
		flex: 0 0 auto;
	}

	.home-new-latest_news__read-more {
		margin-left: auto;
	}
}

@media (max-width: 440px) {
	.home-new-latest_news {
		padding: 65px 1.5rem 30px;
	}

	.home-new-latest_news__inner {
		gap: 30px;
	}

	.home-new-latest_news__post-title {
		font-size: 1.8rem;
	}

	.home-new-latest_news__btn {
		margin-top: 20px;
	}
}

/* -------------------------------------------------------------------------
   follow_us: Follow Us + Instagram
   ------------------------------------------------------------------------- */
.home-new-follow_us {
	background: var(--color-primary);
	padding: 80px 1.5rem 100px;
}

.home-new-follow_us__title {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: 2.4rem;
	line-height: var(--line-height-h2);
	color: var(--color-secondary);
	margin-bottom: -5px;
}

.home-new-follow_us__handle {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: 2.4rem;
	color: var(--color-secondary);
	text-decoration: none;
	display: inline-block;
	margin-bottom: 60px;
	position: relative;
	padding-bottom: 2px;
}

.home-new-follow_us__handle::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1px;
	width: 0;
	background: currentColor;
	transition: width 0.3s ease;
}

.home-new-follow_us__handle:hover {
	color: var(--color-secondary);
}

.home-new-follow_us__handle:hover::after {
	width: 100%;
	background: var(--color-secondary);
}

.home-new-follow_us__feed {
	/* Instagram shortcode placeholder */
}

@media (max-width: 768px) {
	.home-new-follow_us {
		padding: 30px 1.5rem 50px;
	}
}

/* -------------------------------------------------------------------------
   get_in_touch: Get in Touch + mapa (2/3 crna, 1/3 mapa)
   ------------------------------------------------------------------------- */
.home-new-get_in_touch {
	margin-top: 150px;
	width: 100%;
	scroll-margin-top: 5rem; /* in-page #get-in-touch anchor, odstup od gornjeg brida */
}

.home-new-get_in_touch__inner {
	display: flex;
	width: 100%;
	min-height: 400px;
}

.home-new-get_in_touch__content {
	flex: 0 0 66.666%;
	background: var(--color-primary);
}

.home-new-get_in_touch__content-inner {
	padding: 20px 120px 20px 120px;
	max-width: 1200px;
}

.home-new-get_in_touch__title {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: 3.2rem;
	line-height: var(--line-height-h2);
	color: var(--color-secondary);
	margin: 0;
}

.home-new-get_in_touch__intro {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: 2rem;
	line-height: 1.55;
	color: var(--color-secondary);
	opacity: 0.88;
	margin: 0px 0 12px 0;
	max-width: 36em;
}

.home-new-get_in_touch__line {
	width: 198px;
	height: 1px;
	background: var(--color-secondary);
	opacity: 0.5;
	margin: 0 0 40px 0;
}

.home-new-get_in_touch__columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 70px;
}

/* get_in_touch < 1200px: flex-wrap, treća kolona prelazi u novi red */
@media (max-width: 1199px) {
	.home-new-get_in_touch__columns {
		display: flex;
		flex-wrap: wrap;
		gap: 70px;
	}

	.home-new-get_in_touch__col {
		flex: 1 1 calc(50% - 35px);
		min-width: 220px;
	}
}

.home-new-get_in_touch__col {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.home-new-get_in_touch__label {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-semibold);
	font-size: 1.6rem;
	color: var(--color-secondary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.home-new-get_in_touch__value {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: 1.8rem;
	color: var(--color-secondary);
	opacity: 0.7;
	text-decoration: none;
	line-height: 1.5;
	position: relative;
	display: inline-block;
}

.home-new-get_in_touch__value::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	height: 1px;
	width: 0;
	background: currentColor;
	transition: width 0.3s ease;
}

a.home-new-get_in_touch__value:hover {
	color: #ffffff;
	opacity: 1;
}

a.home-new-get_in_touch__value:hover::after {
	width: 100%;
}

.home-new-get_in_touch__address-wrap {
	font-style: normal;
}

a.home-new-get_in_touch__address:hover {
	color: #ffffff;
	opacity: 1;
}

.home-new-get_in_touch__form {
	margin-top: 60px;
}

.home-new-get_in_touch__map {
	flex: 0 0 33.333%;
	min-height: 400px;
	background: #e5e5e5;
	position: relative;
	overflow: hidden;
	filter: grayscale(100%);
}

.home-new-get_in_touch__map-link {
	position: absolute;
	bottom: 16px;
	right: 16px;
	padding: 8px 16px;
	background: var(--color-primary);
	color: var(--color-secondary);
	font-family: var(--font-primary);
	font-size: 1.4rem;
	font-weight: var(--font-weight-semibold);
	text-decoration: none;
	z-index: 1000;
	transition: opacity 0.2s;
}

.home-new-get_in_touch__map-link:hover {
	opacity: 0.9;
}

.home-new-get_in_touch__map-inner {
	width: 100%;
	height: 100%;
	min-height: 400px;
}

.home-new-get_in_touch__map .leaflet-container {
	background: #e5e5e5;
	font-family: inherit;
}

.home-new-get_in_touch__map .home-new-map__marker {
	background: none;
	border: none;
}

.home-new-get_in_touch__map .home-new-map__marker-bg {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	backdrop-filter: blur(4px);
}

.home-new-get_in_touch__map .home-new-map__marker img {
	display: block;
	pointer-events: none;
}

/* get_in_touch responsive: mobilni – kolone jedna ispod druge */
@media (max-width: 768px) {
	.home-new-get_in_touch {
		margin-top: 0px;
	}

	.home-new-get_in_touch__inner {
		flex-direction: column;
	}

	.home-new-get_in_touch__content {
		flex: 1 1 auto;
	}

	.home-new-get_in_touch__content-inner {
		padding: 60px 1.5rem;
	}

	.home-new-get_in_touch__title {
		font-size: 2.4rem;
	}

	.home-new-get_in_touch__intro {
		font-size: 1.6rem;
		line-height: 1.5;
		margin: 0px 0 12px 0;
		max-width: none;
	}

	.home-new-get_in_touch__value {
		font-size: 16px;
	}

	.home-new-get_in_touch__columns {
		gap: 40px;
	}

	.home-new-get_in_touch__col {
		flex: 1 1 100%;
		min-width: 100%;
	}

	.home-new-get_in_touch__map {
		flex: 1 1 auto;
		min-height: 300px;
	}

	.home-new-get_in_touch__map-inner {
		min-height: 300px;
	}
}

/* -------------------------------------------------------------------------
   footer: primary (ostatak do 1200px) | newsletter 395px; unutra gap + contact 305px
   ------------------------------------------------------------------------- */
.home-new-footer {
	--home-new-footer-gutter: 2.4rem;
	background: var(--color-secondary);
	padding: 74px 1.5rem 20px;
}

.home-new-footer__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.home-new-footer__columns {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: var(--home-new-footer-gutter);
}

/* Ostatak širine reda (unutar max 1200px) — Quick links, Get in touch, Follow us */
.home-new-footer__primary {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: var(--home-new-footer-gutter);
}

.home-new-footer__primary .home-new-footer__col--contact {
	flex: 0 0 305px;
	width: 305px;
	max-width: 100%;
	box-sizing: border-box;
}

/* Quick links i Follow us dele preostali prostor u primary koloni */
.home-new-footer__primary .home-new-footer__col--links,
.home-new-footer__primary .home-new-footer__col--social {
	flex: 1 1 0;
	min-width: 0;
	box-sizing: border-box;
}

.home-new-footer__newsletter-aside {
	flex: 0 0 395px;
	width: 395px;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.home-new-footer__col--newsletter {
	min-width: 0;
}

.home-new-footer__heading {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-bold);
	font-size: 1.9rem;
	color: var(--color-primary);
	margin: 0 0 20px 0;
	line-height: var(--line-height-h3);
	text-transform: uppercase;
}

.home-new-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.home-new-footer__menu li {
	margin: 0 0 -3px 0;
	padding: 0;
}

.home-new-footer__menu li:last-child {
	margin-bottom: 0;
}

.home-new-footer__menu a,
.home-new-footer__menu a:hover,
.home-new-footer__menu li a,
.home-new-footer__menu li a:hover {
	text-decoration: none !important;
	border-bottom: none !important;
	box-shadow: none !important;
}

.home-new-footer__menu a::after,
.home-new-footer__menu a::before,
.home-new-footer__menu li a::after,
.home-new-footer__menu li a::before {
	display: none !important;
}

.home-new-footer__menu a {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: 1.8rem;
	color: var(--color-primary);
	display: block;
	padding: 0;
	margin-bottom: 0;
	width: fit-content;
	opacity: 1;
	transition: opacity 0.2s ease;
}

.home-new-footer__menu a:hover {
	opacity: 0.7;
}

.home-new-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.home-new-footer__contact-item {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: 1.8rem;
	color: var(--color-primary);
	text-decoration: none;
	display: inline-block;
	transition: opacity 0.2s ease;
}

.home-new-footer__contact-item:hover {
	opacity: 0.7;
}

.home-new-footer__address {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: 1.8rem;
	color: var(--color-primary);
	font-style: normal;
	margin: 25px 0 0 0;
	line-height: 1.3;
}

.home-new-footer__address a {
	color: inherit;
	text-decoration: none;
	display: inline-block;
	transition: opacity 0.2s ease;
}

.home-new-footer__address a:hover {
	opacity: 0.7;
}

.home-new-footer__social {
	display: flex;
	gap: 16px;
}

.home-new-footer__social-link {
	display: inline-flex;
	color: var(--color-primary);
	transition: opacity 0.2s;
}

.home-new-footer__social-link:hover {
	opacity: 0.7;
}

.home-new-footer__newsletter-title {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-bold);
	font-size: 3.2rem;
	color: var(--color-primary);
	margin: 0 0 20px 0;
	line-height: var(--line-height-h3);
}

/*
 * Newsletter u footeru: jača specifičnost od plugina (.contact-me-form--newsletter …)
 * da redosled učitavanja (form.css posle home-new) ne vrati email + dugme u jedan red.
 */
.home-new-footer .contact-me-form-wrap.contact-me-form--newsletter .contact-me-form__row--newsletter {
	flex-direction: column;
	align-items: stretch;
	gap: 12px;
}

.home-new-footer .contact-me-form-wrap.contact-me-form--newsletter .contact-me-form__field--newsletter {
	min-width: 100%;
	flex: 1 1 100%;
}

.home-new-footer .contact-me-form-wrap.contact-me-form--newsletter .contact-me-form__btn--newsletter {
	align-self: flex-end;
}

.home-new-footer .contact-me-form-wrap.contact-me-form--newsletter .contact-me-form__btn--newsletter .contact-me-form__btn-text {
	flex-direction: row-reverse;
	justify-content: flex-end;
}

.home-new-footer__bottom {
	margin-top: 10px;
	padding-top: 20px;
	border-top: 1px solid rgba(17, 18, 21, 0.2);
}

.home-new-footer__copyright {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: 1.4rem;
	color: var(--color-primary);
	opacity: 0.8;
	margin: 0;
}

.home-new-footer__copyright a {
	color: inherit;
	text-decoration: none;
	display: inline-block;
	transition: opacity 0.2s ease;
}

.home-new-footer__copyright a:hover {
	opacity: 0.7;
}

/* footer: ispod 769px — vertikalni flex (bez display:contents), puna širina */
@media (max-width: 768px) {
	.home-new-footer {
		padding: 50px 1.5rem 50px;
	}

	.home-new-footer__inner {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.home-new-footer__columns {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		max-width: 100%;
		gap: 36px;
		box-sizing: border-box;
	}

	.home-new-footer__primary {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		flex: none;
		gap: 36px;
		box-sizing: border-box;
	}

	.home-new-footer__primary .home-new-footer__col--links,
	.home-new-footer__primary .home-new-footer__col--social {
		flex: none;
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.home-new-footer__primary .home-new-footer__col--contact {
		flex: none;
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.home-new-footer__newsletter-aside {
		flex: none;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		box-sizing: border-box;
	}

	.home-new-footer__col--newsletter {
		width: 100%;
		max-width: 100%;
	}

	.home-new-footer__col--links,
	.home-new-footer__col--contact,
	.home-new-footer__col--social {
		margin-right: 0;
	}

	.home-new-footer .contact-me-form-wrap.contact-me-form--newsletter,
	.home-new-footer .contact-me-form.contact-me-form--newsletter-form {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.home-new-footer__newsletter-title {
		font-size: clamp(2rem, 5vw, 2.8rem);
	}
}

@media (max-width: 600px) {
	.home-new-footer {
		padding: 36px 1.25rem 44px;
	}

	.home-new-footer__columns {
		gap: 28px;
	}

	.home-new-footer__newsletter-title {
		font-size: 2.4rem;
	}

	.home-new-footer__copyright {
		font-size: 1.3rem;
		line-height: 1.45;
	}
}
