@font-face {
    font-family: 'Inter';
    src: url('../font/Inter_18pt-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../font/Inter_18pt-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../font/Inter_18pt-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../font/Inter_18pt-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../font/Inter_18pt-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../font/Inter_18pt-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../font/Inter_18pt-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* -- VARIABLES -- */
:root{
	--primary:   #0a1929;
	--accent:    #fe8706;
	--accent-h:  #eb8424;
	--white:     #ffffff;
	--gray-50:   #f9fafb;
	--gray-100:  #f3f4f6;
	--gray-200:  #e5e7eb;
	--gray-400:  #9ca3af;
	--gray-600:  #4b5563;
	--gray-700:  #374151;
	--radius-sm: 0.75rem;
	--radius:    1rem;
	--radius-lg: 1.5rem;
	--shadow:    0 4px 20px rgba(0,0,0,0.08);
	--shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
	--shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
}

/* --  RESET -- */

*, *::before, *::after{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html{
	font-size: 16px;
	scroll-behavior: smooth;
    overflow-x: hidden;
}
body{
	font-family: 'Inter', sans-serif;
	color: var(--primary);
	background: var(--white);
	line-height: 1.6;
	overflow-x: hidden;
	font-weight: 400;
}
input, textarea, button, select, a, i, svg, img, span, div, .aside-products .wrapper-text p{
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a{
	text-decoration: none;
	color: inherit;
	transition: color .2s;
}
ul{
	list-style: none;
}
img{
	max-width: 100%;
	display: block;
}
button{
	cursor: pointer;
	border: none;
	background: none;
	font-family: inherit;
}
input, textarea, select{
	font-family: inherit;
	font-size: inherit;
}

/* -- CONTAINER — prilagođen svim uređajima -- */

.container {
	width: 100%;
	margin: 0 auto;
	padding: 0 1rem;
}

/* xs: do 576px — pun ekran sa paddingom */
@media screen and (min-width: 0px) {
    html{
        font-size: 14.1px;
    }
    .container {
        max-width: 100%;
        padding: 0 1rem;
    }
    .bezirke-outer{
        max-width: 575px;
    }
}
/* sm: 576px+ */
@media screen and (min-width: 576px) {
    html{
        font-size: 14.3px;
    }
    .container {
        max-width: 540px;
    }
    .bezirke-outer{
        max-width: 540px;
    }
}
/* md: 768px+ */
@media screen and (min-width: 768px) {
    html{
        font-size: 14.5px;
    }
    .container {
         max-width: 720px;
    }
    .bezirke-outer{
        max-width: 720px;
    }
}
/* lg: 992px+ */
 @media screen and (min-width: 992px) {
    html{
        font-size: 14px;
    }
	.container {
		max-width: 960px;
	}
    .bezirke-outer{
        max-width: 960px;
    }
}
/* xl: 1200px+ */
@media screen and (min-width: 1200px) {
    html{
        font-size: 14.4px;
    }
    .container {
        max-width: 1120px;
    }
    .bezirke-outer{
        max-width: 1120px;
    }
}
/* xxl: 1400px+ */
@media screen and (min-width: 1400px) {
    html{
        font-size: 15.4px;
    }
	.container {
		max-width: 1350px;
	}
    .bezirke-outer{
        max-width: 1400px;
    }
}
/* xxxl: 1600px+ */
@media screen and (min-width: 1600px) {
    html{
        font-size: 15.7px;
    }
	.container {
		max-width: 1400px;
	}
}
/* 4K: 1920px+ */
@media screen and (min-width: 1920px) {
    html{
        font-size: 16px;
    }
	.container {
		max-width: 1530px;
	}
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: var(--gray-400) !important;
}

input::-moz-input-placeholder,
textarea::-moz-input-placeholder {
    color: var(--gray-400) !important;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: var(--gray-400) !important;
}

.relative{
    position: relative;
}

.absolute{
    position: absolute;
}

.fixed{
    position: fixed;
}

.accent-color{
    color: var(--accent);
}

#overlay-submit{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 999999;
    display: none;
}

/* -- TYPOGRAPHY UTILITIES -- */

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}
.section-title {
	font-size: clamp(1.75rem, 3vw, 2.75rem);
	font-weight: 700;
	color: var(--primary);
	line-height: 1.35;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}
.section-subtitle {
	font-size: 1.1rem;
	color: var(--gray-700);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

/* -- BUTTONS -- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .7rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    border: none;
    white-space: nowrap;
}
.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1.05rem;
}
.btn-accent {
    background: var(--accent);
    color: var(--primary);
}
.btn-accent:hover {
    background: var(--accent-h);
    box-shadow: 0 8px 24px rgba(255,160,0,.35);
    transform: translateY(-1px);
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    opacity: .9;
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}

/* -- HEADER -- */

.site-header {
    background: var(--primary);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
}
.header-logo img {
    height: 2.5rem;
    width: auto;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.header-nav a {
    color: rgba(255,255,255,.85);
    font-weight: 500;
    font-size: .95rem;
    white-space: nowrap;
    transition: color .2s;
}
.header-nav a:hover, .header-nav a.active {
    color: var(--accent);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.header-phone {
    color: rgba(255,255,255,.85);
    font-weight: 500;
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: .4rem;
    transition: color .2s;
}
.language-header{
    color: rgba(255,255,255,.85);
    font-weight: 500;
    margin-top: 0.1rem;
    font-size: 1.1rem;
    line-height: 0.8;
}
.header-phone:hover, .language-header:hover{
    color: var(--accent);
}
.header-phone svg {
    width: 1rem;
    height: 1rem;
}
.header-actions .header-buchen{
    padding: .5rem 1.4rem;
    font-size: .95rem;
}
.hamburger {
    display: none;
    color: white;
}

/* Mobile aside */

.aside-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    z-index: 1999;
    display: none;
}
.aside-overlay.open {
    display: block;
}
.mobile-aside {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    transition: right .3s ease;
    box-shadow: -4px 0 30px rgba(0,0,0,.2);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.mobile-aside.open {
    right: 0;
}
.aside-close {
    display: flex;
    justify-content: flex-end;
    cursor: pointer;
    color: var(--primary);
}
.aside-nav-links {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}
.aside-nav-links a {
    padding: .75rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-weight: 500;
    color: var(--primary);
    transition: color .2s;
}
.aside-nav-links a:hover {
    color: var(--accent);
}

/* -- HERO -- */

.hero {
    min-height: 100vh;
    background: radial-gradient(ellipse at top left, rgba(255,160,0,.08) 0%, transparent 50%), radial-gradient(ellipse at bottom right, rgba(255,160,0,.08) 0%, transparent 50%), linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    display: flex;
    align-items: center;
    padding: 5rem 0 0 0;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--accent);
    color: var(--primary);
    padding: .5rem 1.25rem;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(255,160,0,.3);
}
.hero-badge svg {
    width: 1rem;
    height: 1rem;
}
.hero-title {
    font-size: clamp(1.75rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 1.25rem;
    letter-spacing: -.02em;
}
.hero-text {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 2rem;
}
.hero-usps {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}
.hero-usp {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex: 0 1 calc(50% - 4rem);
}
.hero-usp-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .4rem;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-usp-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
}
.hero-usp-title {
    font-weight: 700;
    color: var(--primary);
    font-size: .95rem;
    line-height: 1.3;
}
.hero-usp-sub {
    font-size: .82rem;
    color: var(--gray-600);
}
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}
.hero-trust {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}
.hero-trust-item .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.hero-trust-item .label {
    font-size: .85rem;
    color: var(--gray-600);
}
.hero-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-dots {
    position: absolute;
    transform: rotateZ(90deg);
    top: 2.5rem;
    right: -4rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    z-index: 0;
}
.hero-dots span {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background: #ffdeba;
    display: block;
}
.hero-dots span:nth-child(even) {
    background: #dce1e7;
}
.hero-img-clip {
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    clip-path: polygon(0 0, 100% 0, 100% 93%, 90% 100%, 0 100%);
}
.hero-img-clip img {
    max-height: 75vh;
    width: auto;
    display: block;
    object-fit: cover;
}
.hero-badges-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    display: flex;
    gap: .75rem;
    z-index: 2;
}
.hero-badge-box {
    background: var(--primary);
    border-bottom: 2px solid var(--accent);
    padding: 1rem 1.5rem;
    border-radius: .75rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.hero-badge-box .val {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
}
.hero-badge-box .lbl {
    font-size: .8rem;
    color: var(--white);
    font-weight: 500;
}

/* -- SERVICES -- */

.section-services {
    padding: 5rem 0;
    background: var(--gray-50);
}
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--accent);
    box-shadow: var(--shadow);
    transition: all .3s;
    flex: 1 1 calc(25% - 2.125rem);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.service-card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: .8rem;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform .3s;
}
.service-card:hover .service-card-icon {
    transform: scale(1.1);
}
.service-card-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--accent);
}
.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .75rem;
    line-height: 1.5;
}
.service-card-text {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.service-features {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.service-features li {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: var(--gray-700);
    font-size: .95rem;
}
.service-features li::before {
    content: '';
    width: .4rem;
    height: .4rem;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

/* -- BEZIRKE SLIDER -- */

.section-bezirke {
    padding: 5rem 0;
    background: var(--white);
}
.bezirke-outer {
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}
.bezirke-slider-wrap {
    overflow: hidden;
}
.bezirke-track {
    display: flex;
    gap: 1.5rem;
    transition: transform .5s ease;
}
.bezirke-track .bezirk-card{
    padding: 0;
}
.bezirk-card {
    flex: 0 0 calc(25% - 1rem);
}
.bezirk-card:hover {
    box-shadow: var(--shadow);
}
.bezirk-img-wrap {
    position: relative;
    /* height: 12rem; */
    overflow: hidden;
    aspect-ratio: 16 / 10;
}
.bezirk-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.bezirk-card:hover .bezirk-img-wrap img {
    transform: scale(1.08);
}
.bezirk-code {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: var(--white);
    padding: .35rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .85rem;
}
.bezirk-body {
    padding: 1rem 1.3rem 1.5rem 1.3rem;
}
.bezirk-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .5rem;
}
.bezirk-desc {
    color: var(--gray-600);
    font-size: .9rem;
    line-height: 1.6;
}
.slider-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all .2s;
}
.slider-btn:hover {
    background: var(--gray-50);
}
.slider-btn:disabled {
    opacity: .4;
    cursor: not-allowed;
}
.slider-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}
.slider-btn-prev {
    left: 1rem;
}
.slider-btn-next {
    right: 1rem;
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 2rem;
}
.slider-dot {
    width: .5rem;
    height: .5rem;
    border-radius: 50px;
    background: var(--gray-200);
    border: none;
    cursor: pointer;
    transition: all .3s;
    padding: 0;
}
.slider-dot.active {
    background: var(--accent);
    width: 2rem;
}

/* -- PRICING -- */

.section-pricing {
    padding: 5rem 0;
    background: var(--gray-50);
}
.pricing-inner {
    max-width: 900px;
    margin: 0 auto;
}
.price-table-wrap {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    margin-bottom: 2rem;
}
.price-table {
    width: 100%;
    border-collapse: collapse;
}
.price-table thead tr {
    background: var(--primary);
}
.price-table thead th {
    padding: 1rem;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
}
.price-table thead th:nth-child(2) {
    text-align: left;
}
.price-table tbody tr {
    border-bottom: 1px solid var(--gray-200);
    transition: background-color .2s;
}
.price-table tbody tr:hover {
    background: var(--gray-50);
}
.price-table tbody tr:last-child{
    border-bottom: unset;
}
.price-table tbody td {
    padding: 1rem;
    color: var(--primary);
    font-weight: 600;
    text-align: center;
}
.price-table tbody td:nth-child(2) {
    text-align: left;
}
.price-table tbody td:nth-child(3), .price-table tbody td:nth-child(4), .price-table tbody td:nth-child(5) {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.05rem;
}
.price-pagination{
    padding: 0 1rem;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .375rem;
    margin-top: 1.4rem;
    padding-bottom: 1.4rem;
}

.pagination button {
    background: var(--white);
    border: 1px solid var(--gray-200);
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
    border-radius: .5rem;
    transition: 0.2s;
    font-weight: 600;
}

.pagination button:hover{
    background-color: var(--gray-100);
}

.pagination button.active {
    background: var(--accent);
    color: #fff;
    font-weight: bold;
}

.pagination button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination .dots {
    padding: 0 .25rem;
    color: #666;
}

/* .price-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 1.5rem;
}
.price-pagination button {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .5rem;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.price-pagination button:hover {
    background: var(--gray-50);
}
.price-pagination button.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.price-pagination button:disabled {
    opacity: .4;
    cursor: not-allowed;
} */
.price-included {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--accent);
    box-shadow: var(--shadow);
}
.price-included h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.included-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.included-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex: 1 1 calc(50% - .5rem);
    min-width: 220px;
    color: var(--gray-700);
}
.included-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: rgba(255,160,0,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.included-icon svg {
    width: 1rem;
    height: 1rem;
    color: var(--accent);
}

/* -- PROMO -- */

.section-promo {
    padding: 2rem 1rem 5rem 1rem;
    background: var(--gray-50);
}
.promo-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    min-height: 350px;
    box-shadow: var(--shadow-xl);
}
.promo-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--primary) 0%, rgba(10,25,41,.95) 50%, rgba(10,25,41,.7) 100%);
}
.promo-decor-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background: rgba(255,160,0,.1);
    border-radius: 50%;
    filter: blur(3rem);
}
.promo-decor-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(255,160,0,.05);
    border-radius: 50%;
    filter: blur(3rem);
}
.promo-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem;
}
.promo-left {
    flex: 1;
}
.promo-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--accent);
    color: var(--white);
    padding: .5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: 1rem;
}
.promo-badge-pill svg {
    width: 1.1rem;
    height: 1.1rem;
}
.promo-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: .5rem;
    letter-spacing: -.02em;
}
.promo-headline span {
    color: var(--accent);
}
.promo-line {
    width: 8rem;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}
.promo-text {
    color: rgba(255,255,255,.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 700px;
    font-size: 1rem;
}
.promo-text span {
    color: var(--accent);
    font-weight: 700;
    line-height: 1.6;
}
.promo-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 2rem;
}
.promo-pill {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: var(--white);
    padding: .4rem .875rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
}
.promo-pill svg {
    width: 1rem;
    height: 1rem;
    color: var(--accent);
}
.promo-right {
    flex-shrink: 0;
}
.promo-circle {
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), rgba(255,160,0,.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    border: 4px solid rgba(255,255,255,.2);
    position: relative;
}
.promo-circle .big-num {
    font-size: 5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}
.promo-circle .big-lbl {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}
.promo-circle-badge {
    position: absolute;
    width: 3.2rem;
    height: 3.2rem;
    top: -.3rem;
    right: -.3rem;
    background: var(--white);
    border-radius: 50%;
    padding: .8rem;
    box-shadow: var(--shadow);
}
.promo-circle-badge svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--accent);
}
.promo-circle-tag {
    position: absolute;
    bottom: -.75rem;
    left: -.75rem;
    background: var(--white);
    border-radius: 50px;
    padding: .5rem 1rem;
    font-weight: 900;
    color: var(--primary);
    font-size: .85rem;
    box-shadow: var(--shadow);
}
.promo-footer-bar {
    background: rgba(255,255,255,.1);
    border-top: 1px solid rgba(255,255,255,.2);
    padding: .75rem 2rem;
    backdrop-filter: blur(8px);
}
.promo-footer-bar p {
    color: rgba(255,255,255,.8);
    font-size: .75rem;
    text-align: center;
}
.promo-footer-bar strong {
    color: var(--white);
}

/* -- WHY CHOOSE US -- */

.section-why {
    padding: 5rem 0;
}
.why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.why-item {
    display: flex;
    gap: 1.25rem;
    flex: 1 1 calc(33.333% - 1.333rem);
    min-width: 280px;
}
.why-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: .8rem;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .3s;
}
.why-item:hover .why-icon {
    transform: scale(1.1);
}
.why-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--accent);
}
.why-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .4rem;
}
.why-text {
    color: var(--gray-600);
    line-height: 1.6;
}

/* -- FLEET -- */

.section-fleet {
    padding: 3rem 0 5rem 0;
}
.fleet-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}
.fleet-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--accent);
    box-shadow: var(--shadow);
    transition: all .3s;
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 280px;
    max-width: 380px;
}
.fleet-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.fleet-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 1rem;
}
.fleet-desc {
    color: var(--gray-700);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.fleet-spec {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
}
.fleet-spec-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .4rem;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fleet-spec-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
}
.fleet-spec-text {
    font-weight: 500;
    color: var(--gray-700);
}
.fleet-price-row {
    border-top: 1px solid var(--gray-200);
    padding-top: 1.5rem;
    margin-top: .5rem;
    text-align: center;
}
.fleet-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* -- SERVICE AREAS -- */

.section-areas {
    padding: 3rem 0 5rem 0;
}
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.area-card {
    position: relative;
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 260px;
    border-radius: 1.5rem;
    overflow: hidden;
    height: 320px;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
}
.area-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
    display: block;
}
.area-card:hover img {
    transform: scale(1.1);
}
.area-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--primary) 0%, rgba(10,25,41,.6) 50%, transparent 100%);
}
.area-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.5rem 1.7rem 1.5rem;
    color: var(--white);
}
.area-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}
.area-desc {
    color: rgba(255,255,255,.9);
    line-height: 1.6;
    font-size: .9rem;
    margin-bottom: 1rem;
}
.area-link {
    color: var(--accent);
    font-weight: 600;
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    transition: gap .2s;
}
.area-card:hover .area-link {
    gap: .5rem;
}

/* -- TESTIMONIALS -- */

.section-testimonials {
    padding: 3rem 0 5rem 0;
}
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem;
    border: 1px solid var(--gray-100);
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    transition: all .3s;
    flex: 1 1 calc(25% - 1.125rem);
    min-width: 240px;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: rgba(255,160,0,.2);
}
.testimonial-stars {
    display: flex;
    gap: .2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}
.testimonial-stars svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: var(--accent);
}
.testimonial-text {
    color: var(--gray-700);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}
.testimonial-divider {
    border: none;
    border-top: 1px solid var(--gray-100);
    margin-bottom: 1rem;
}
.testimonial-name {
    font-weight: 700;
    color: var(--primary);
}
.testimonial-role {
    font-size: .85rem;
    color: var(--gray-600);
    margin-top: .25rem;
}

/* -- FAQ -- */

.section-faq {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--gray-50), var(--white));
    text-align: center;
}
.faq-list {
    max-width: 48rem;
    margin: 0 auto 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    overflow: hidden;
    transition: box-shadow .3s;
}
.faq-item:hover {
    box-shadow: var(--shadow-lg);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem;
    text-align: left;
    background: none;
    cursor: pointer;
    transition: background-color .2s;
}
.faq-question:hover {
    background: var(--gray-50);
}
.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--primary);
    padding-right: 2rem;
}
.faq-chevron {
    width: 2rem;
    height: 2rem;
    border-radius: .5rem;
    background: rgba(255,160,0,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .3s;
}
.faq-chevron svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    transition: transform .3s;
}
.faq-item.open .faq-chevron {
    background: var(--accent);
}
.faq-item.open .faq-chevron svg {
    transform: rotate(180deg);
    color: var(--white);
}
.faq-answer {
    display: none;
    padding: 0 1.2rem 1rem;
}
.faq-item.open .faq-answer {
    display: block;
}
.faq-answer p {
    color: var(--gray-600);
    line-height: 1.7;
    text-align: left;
}

/* -- CONTACT (homepage section) -- */

.section-contact-home {
    padding: 3rem 0 6rem 0;
    background: linear-gradient(to bottom, var(--white), var(--gray-50));
}
.contact-home-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 100%;
    margin: 0 auto;
}
.contact-home-info {
    flex: 0 1 450px;
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
    margin-top: 1rem;
}
.contact-home-form-wrap {
    position: relative;
    flex: 0 1 600px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
}
.contact-home-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.contact-home-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.8rem;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .3s;
}
.contact-home-item:hover .contact-home-icon {
    transform: scale(1.1);
}
.contact-home-icon svg {
    color: var(--accent);
    width: 1.5rem;
    height: 1.5rem;
}
.contact-home-label {
    font-size: 1.15rem;
    line-height: 1;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .5rem;
}
.contact-home-value {
    color: var(--gray-700);
    font-weight: 500;
    line-height: 1.4;
    display: block;
}
.contact-home-value:hover {
    color: var(--accent);
}
.contact-home-sub {
    font-size: .85rem;
    color: var(--gray-600);
    margin-top: .15rem;
}
.contact-home-form-wrap input + span, .contact-home-form-wrap textarea + span{
    color: #ef4444;
    margin-top: 0.2rem;
    font-size: .9rem;
    line-height: 1.4;
}

.loading-icon{
    display: none;
    animation-play-state: paused;
    position: absolute;
    bottom: 1.3rem;
    left: 50%;
    transform: translateX(-50%) translateY(-1.3rem) rotateZ(0deg);
    width: 3rem;
    z-index: 9999999;
    animation: rotate_loader 2s linear infinite;
}

@keyframes rotate_loader {
    0%{
        transform: translateX(-50%) translateY(-1.3rem) rotateZ(0deg);
    }
    100%{
        transform: translateX(-50%) translateY(-1.3rem) rotateZ(360deg);
    }
}

.message-info{
    display: none;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    font-weight: 500;
    border-radius: 0.75rem;
    background-color: var(--primary);
}

.message-info #send-reservaion-info, .message-info #send-message-info{
    color: var(--accent);
}

/* -- FORM ELEMENTS -- */

.form-group {
    margin-bottom: 1.25rem;
}
.form-label {
    display: block;
    font-size: .9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: .4rem;
}
.form-control {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: .75rem;
    font-size: .95rem;
    color: var(--primary);
    background: var(--gray-50);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}
.form-control:focus {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255,160,0,.12);
}
.form-control::placeholder {
    color: var(--gray-400);
}
textarea.form-control {
    resize: vertical;
    min-height: 150px;
}
.form-control + p, .calendar .input + p{
    color: #ef4444;
    margin-top: 0.2rem;
    font-size: .9rem;
    line-height: 1.4;
}
.form-check-label {
    display: flex;
    align-items: center;
    gap: .6rem;
    cursor: pointer;
    font-size: .9rem;
    color: var(--primary);
}
.form-check-label input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: var(--accent);
    cursor: pointer;
}
.toggle-box {
    background: var(--gray-50);
    border-radius: .75rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}
.toggle-fields {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-200);
}
.agb-label {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .85rem;
    color: var(--gray-600);
    cursor: pointer;
}
.agb-label input {
    margin-top: .15rem;
    accent-color: var(--accent);
}
.agb-label a {
    color: var(--accent);
}

/* Price summary box */

.price-box {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 2rem;
    color: var(--white);
    position: sticky;
    top: 6rem;
}
.price-box-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(255,255,255,.15);
}
.price-box-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .875rem;
    color: rgba(255,255,255,.7);
    margin-bottom: .6rem;
}
.price-box-row strong {
    color: var(--white);
}
.price-box-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: .875rem;
    border-top: 1px solid rgba(255,255,255,.15);
    margin-top: .5rem;
}
.price-box-total-label {
    font-size: 1rem;
    font-weight: 600;
}
.price-box-total-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

/* -- FOOTER -- */

.site-footer {
    background: var(--primary);
    color: var(--white);
    padding: 3.5rem 0 0;
}
.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.footer-col {
    flex: 1 1 calc(25% - 2rem);
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
}
.footer-logo img {
    height: 3.5rem;
    width: auto;
    margin-bottom: 1.2rem;
}
.footer-desc {
    color: rgba(255,255,255,.75);
    font-size: .9rem;
    line-height: 1.7;
}
.footer-col-title {
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.footer-links a {
    color: rgba(255,255,255,.75);
    font-size: .9rem;
    transition: color .2s;
}
.footer-links a:hover {
    color: var(--accent);
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .875rem;
}
.footer-contact-icon {
    width: 2rem;
    height: 2rem;
    border-radius: .4rem;
    background: rgba(255,160,0,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer-contact-icon svg {
    width: 1rem;
    height: 1rem;
    color: var(--accent);
}
.footer-contact-text {
    color: rgba(255,255,255,.75);
    font-size: .875rem;
    line-height: 1.5;
}
.footer-contact-text a {
    color: rgba(255,255,255,.75);
    transition: color .2s;
}
.footer-contact-text a:hover {
    color: var(--accent);
}
.footer-social {
    display: flex;
    gap: .75rem;
}
.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .5rem;
    background: rgba(255,160,0,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s;
}
.footer-social a:hover {
    background: var(--accent);
}
.footer-social a svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
}
.footer-social a:hover svg {
    color: var(--white);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.15);
    padding: 1.25rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.footer-copy {
    color: rgba(255,255,255,.6);
    font-size: .85rem;
}
.footer-legal {
    display: flex;
    gap: 1.5rem;
}
.footer-legal a {
    color: rgba(255,255,255,.6);
    font-size: .85rem;
    transition: color .2s;
}
.footer-legal a:hover {
    color: var(--accent);
}

/* -- INNER PAGES -- */

.page-breadcrumb {
    background: var(--gray-50);
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    color: var(--gray-600);
}
.breadcrumb a {
    color: var(--gray-600);
    transition: color .2s;
}
.breadcrumb a:hover {
    color: var(--accent);
}
.breadcrumb svg {
    width: 1rem;
    height: 1rem;
    color: var(--gray-400);
}
.booking-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0;
    background: var(--white);
    text-align: center;
}
.booking-hero h1 {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -.02em;
}
.booking-hero p {
    font-size: 1.1rem;
    color: var(--gray-700);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
}
.booking-form-section {
    padding: 4rem 0;
    background: var(--gray-50);
}
.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start;
}
.form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}
.form-block-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--gray-100);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.form-block-title svg {
    width: 1.1rem;
    height: 1.1rem;
    color: var(--accent);
}
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.form-group {
    flex: 1 1 200px;
    margin-bottom: 1.25rem;
}
.form-group.full {
    flex: 1 1 100%;
}
.form-label .req {
    color: var(--accent);
}
.section-about {
    padding: 5rem 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
}
.about-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}
.about-text p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.values-section {
    padding: 5rem 0;
    background: var(--gray-50);
}
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.value-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 240px;
    box-shadow: var(--shadow);
}
.value-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.value-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--white);
}
.value-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .5rem;
}
.value-text {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.65;
}
.section-how {
    padding: 5rem 0;
    background: var(--white);
}
.how-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}
.how-step {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 220px;
    text-align: center;
}
.step-circle {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .5rem;
}
.step-text {
    color: var(--gray-600);
    line-height: 1.5;
}
.section-contact-page {
    padding: 5rem 0;
    background: var(--white);
}
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}
.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.contact-info-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255,160,0,.1);
    border-radius: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
}
.contact-info-label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .2rem;
}
.contact-info-value {
    font-weight: 500;
    color: var(--primary);
    font-size: 1rem;
}
.contact-info-value a {
    color: var(--accent);
}
.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    height: 380px;
    margin-top: 2rem;
}
.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.section-faq-page {
    padding: 5rem 0;
    background: var(--white);
}
.faq-group-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 3rem 0 1.5rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--gray-100);
}
.faq-group-title:first-of-type {
    margin-top: 0;
}
.section-danke {
    padding: 6rem 0;
    background: var(--gray-50);
}
.danke-wrap {
    max-width: 48rem;
    margin: 0 auto;
}
.danke-icon {
    width: 5rem;
    height: 5rem;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}
.danke-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #16a34a;
}
.booking-table {
    width: 100%;
    border-collapse: collapse;
}
.booking-table tr {
    border-bottom: 1px solid var(--gray-200);
}
.booking-table td {
    padding: .875rem 1rem;
    font-size: .9rem;
}
.booking-table td:first-child {
    color: var(--gray-600);
}
.booking-table td:last-child {
    font-weight: 600;
    color: var(--primary);
}
.next-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.next-step-dot {
    width: 2rem;
    height: 2rem;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}
.next-step-title {
    font-size: .9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: .2rem;
}
.next-step-text {
    font-size: .85rem;
    color: var(--gray-600);
    line-height: 1.6;
}
.info-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: .75rem;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}
.info-box svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #3b82f6;
    flex-shrink: 0;
    margin-top: .1rem;
}
.info-box p {
    font-size: .875rem;
    color: #1e40af;
    line-height: 1.6;
}
.info-box a {
    color: #2563eb;
}

/* Contact CTA */
.uber-uns-contact-cta {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.uber-uns-contact-cta .uber-uns-contact-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.uber-uns-contact-cta .uber-uns-contact-cta-text {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.uber-uns-contact-cta .uber-uns-contact-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ------------------------------------------------
   FAQ PAGE
   ------------------------------------------------ */

.faq-page-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-page-item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-page-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-page-item .faq-page-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    text-align: left;
    background: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.faq-page-item .faq-page-question:hover {
    background: var(--gray-50);
}

.faq-page-item .faq-page-question h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    padding-right: 2rem;
    line-height: 1.4;
}

.faq-page-item .faq-page-question .faq-page-chevron {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.faq-page-item .faq-page-question .faq-page-chevron svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-page-item .faq-page-question .faq-page-chevron.open {
    background: var(--accent);
}

.faq-page-item .faq-page-question .faq-page-chevron.open svg {
    transform: rotate(180deg);
    color: var(--white);
}

.faq-page-item .faq-page-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
}

.faq-page-item .faq-page-answer p {
    color: var(--gray-700);
    line-height: 1.75;
}

/* FAQ CTA */
.faq-cta {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.faq-cta .faq-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.faq-cta .faq-cta-text {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.faq-cta .faq-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ------------------------------------------------
   WIENER BEZIRKE PAGE — iste kartice kao slider
   ------------------------------------------------ */

.wb-section {
    padding: 4rem 0;
    background: var(--white);
}

.wb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.wb-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s;
    display: block;
    text-decoration: none;
}

.wb-card:hover {
    box-shadow: var(--shadow-xl);
}

.wb-card .wb-card-img-wrap {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.wb-card .wb-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
    display: block;
}

.wb-card:hover .wb-card-img-wrap img {
    transform: scale(1.1);
}

.wb-card .wb-card-img-wrap .wb-card-code {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

.wb-card .wb-card-body {
    padding: 1.5rem;
}

.wb-card .wb-card-body .wb-card-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.wb-card:hover .wb-card-body .wb-card-name {
    color: var(--accent);
}

.wb-card .wb-card-body .wb-card-desc {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Info grid */
.wb-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.wb-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    flex: 1 1 calc(25% - 1.125rem);
}

.wb-info-card .wb-info-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.wb-info-card .wb-info-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--accent);
}

.wb-info-card .wb-info-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.wb-info-card .wb-info-text {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.65;
}

/* Responsive */
@media screen and (max-width: 1199px) {
    .wb-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .wb-info-card {
        flex: 1 1 calc(50% - 1.25rem);
    }
}

@media screen and (max-width: 767px) {
    .wb-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wb-info-card {
        flex: 1 1 calc(50% - 0.75rem);
    }
}

@media screen and (max-width: 480px) {
    .wb-grid {
        grid-template-columns: 1fr;
    }

    .wb-info-card {
        flex: 1 1 100%;
    }
}

/* ------------------------------------------------
   BEZIRK DETAIL PAGE
   ------------------------------------------------ */

.bezirk-hero {
    position: relative;
    height: 22rem;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.bezirk-hero .bezirk-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bezirk-hero .bezirk-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--primary) 0%, rgba(10,25,41,0.7) 50%, transparent 100%);
}

.bezirk-hero .bezirk-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-bottom: 3rem;
}

.bezirk-hero .bezirk-hero-content .bezirk-hero-code {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    color: var(--primary);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.bezirk-hero .bezirk-hero-content .bezirk-hero-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.bezirk-hero .bezirk-hero-content .bezirk-hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    line-height: 1.6;
}

/* Layout */
.bezirk-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

.bezirk-left {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bezirk-sidebar {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 6rem;
}

/* Cards */
.bezirk-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    /* box-shadow: var(--shadow); */
    transition: box-shadow .3s;
}

.bezirk-card .bezirk-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.bezirk-card .bezirk-card-text {
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* Highlights */
.bezirk-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.bezirk-highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,160,0,0.1);
    color: var(--primary);
    padding: 0.4rem 0.875rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.bezirk-highlight-tag svg {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--accent);
    flex-shrink: 0;
}

/* Stats */
.bezirk-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.bezirk-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1 1 180px;
}

.bezirk-stat .bezirk-stat-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bezirk-stat .bezirk-stat-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--accent);
}

.bezirk-stat .bezirk-stat-label {
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.bezirk-stat .bezirk-stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

/* Included */
.bezirk-included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
}

.bezirk-included-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.bezirk-included-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: rgba(255,160,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bezirk-included-icon svg {
    width: 0.9rem;
    height: 0.9rem;
    color: var(--accent);
}

/* Price card */
.bezirk-price-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.bezirk-price-card .bezirk-price-card-header {
    background: var(--primary);
    padding: 1.25rem 1.5rem;
}

.bezirk-price-card .bezirk-price-card-header h3 {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.bezirk-price-card .bezirk-price-card-header p {
    color: rgba(255,255,255,0.65);
    font-size: 0.8rem;
}

.bezirk-price-card .bezirk-price-rows {
    background: var(--white);
}

.bezirk-price-card .bezirk-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.bezirk-price-card .bezirk-price-row:last-child {
    border-bottom: none;
}

.bezirk-price-card .bezirk-price-label {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.bezirk-price-card .bezirk-price-sub {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.bezirk-price-card .bezirk-price-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
}

/* Badge box */
.bezirk-badge-box {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 1.75rem;
    text-align: center;
}

.bezirk-badge-box .bezirk-badge-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.bezirk-badge-box .bezirk-badge-label {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.bezirk-badge-box .bezirk-badge-sub {
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .bezirk-sidebar {
        position: static;
        flex: 1 1 100%;
    }
}

@media screen and (max-width: 575px) {
    .bezirk-included-grid {
        grid-template-columns: 1fr;
    }
}

/* -- RESPONSIVE -- */

@media screen and (max-width: 1599px){
    .header-nav{
        gap: 1.3rem
    }
}

@media (max-width: 1439px) {
    .header-phone{
        display: none;
    }
    .hero-grid{
        gap: 2rem;
    }
    .hero-usp{
        flex: 0 1 calc(50% - 2rem)
    }
    .hero-title{
        font-size: 2.3rem;
    }
    .hero-text{
        font-size: 1rem;
    }
    .hero-img-clip img{
        max-height: 70vh;
    }
    .btn-lg{
        padding: .7rem 1.75rem;
        font-size: 1rem;
    }
    .hero-trust{
        padding-top: 1.3rem;
    }
    .section-title{
        font-size: 2.2rem;
    }
    .service-card{
        flex: 0 1 calc(50% - 2rem);
    }
    .area-card{
        flex: 1 1 calc(50% - 2rem);
    }
    .testimonial-card{
        flex: 1 1 calc(33.33% - 1.5rem);
    }
    .contact-home-info{
        flex: 0 1 calc(40% - 3rem);
    }
    .contact-home-form-wrap{
        flex: 0 1 calc(50% - 3rem);
    }
}

@media (max-width: 1199px) {
    .hero{
        min-height: 50vh;
        padding: 10rem 0 6rem 0;
    }
    .hero-grid {
        display: flex;
        flex-wrap: wrap;
        grid-template-columns: unset; /* Ovaj stil za grid uklanjam kako bih mogao ovde da koristim flex layout. */
        gap: 5rem;
    }
    .hero-grid > div:first-child{
        flex: 0 1 calc(55% - 2rem);
    }
    .hero-image-wrap{
        flex: 0 1 calc(42% - 2rem);
    }
    .hero-badges-overlay{
        left: -2rem;
    }
    /* .hero-image-wrap {
        display: none;
    } */
    .booking-form-grid {
        grid-template-columns: 1fr;
    }
    .price-box {
        position: static;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
    .fleet-title{
        font-size: 1.6rem;
    }
    .fleet-price-row{
        padding-top: 0.5rem;
    }
    .fleet-price{
        margin-bottom: 0.5rem;
        font-size: 1.6rem;
    }
    .contact-home-info {
        flex: 0 1 calc(40% - 3rem);
    }
    .contact-home-form-wrap {
        flex: 0 1 calc(60% - 3rem);
    }
}

@media (max-width: 991px) {
    .header-nav {
        display: none;
    }
    .header-phone {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .language-header{
        font-size: 1.2rem;
    }
    .hero{
        min-height: 50vh;
        padding: 9rem 0 6rem 0;
    }
    .hero-grid {
        display: flex;
        flex-wrap: wrap;
        grid-template-columns: unset; /* Ovaj stil za grid uklanjam kako bih mogao ovde da koristim flex layout. */
        gap: 4rem;
    }
    .hero-grid > div:first-child{
        flex: 0 1 calc(85% - 2rem);
    }
    .hero-image-wrap{
        flex: 0 1 calc(90% - 0rem);
        padding-left: 10rem;
    }
    .hero-badges-overlay{
        left: 0rem;
    }
    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }
    .area-card {
        flex: 1 1 calc(50% - 1rem);
    }
    .bezirk-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
    .contact-home-info{
        flex: 0 1 calc(100% - 3rem);
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .contact-home-item{
        flex: 0 1 calc(50% - 1.7rem);
    }
    .contact-home-form-wrap {
        flex: 0 1 calc(100% - 3rem);
    }
    .footer-col {
        flex: 1 1 calc(50% - 2rem);
        align-content: flex-start;
    }
}

@media (max-width: 767px) {
    .header-logo img{
        height: 2.5rem;
    }
    .hero-grid > div:first-child{
        flex: 1 1 calc(100% - 4rem);
    }
    .hero-image-wrap{
        flex: 1 1 calc(100% - 4rem);
        padding-left: 7rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .service-card {
        flex: 1 1 calc(100% - 2rem);
    }
    .bezirk-card {
        flex: 0 0 calc(50% - .75rem);
    }
    .promo-right {
        display: none;
    }
    .promo-content {
        padding: 2rem;
    }
    .testimonial-card {
        flex: 1 1 calc(50% - .75rem);
    }
    .fleet-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .why-item {
        flex: 1 1 100%;
    }
    .contact-home-info, .contact-home-form-wrap {
        flex: 1 1 100%;
    }
}
@media (max-width: 575px) {
    .header-inner{
        padding: 0.6rem 0;
    }
    .header-actions .header-buchen{
        display: none;
    }
    .hero{
        padding-top: 7.5rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-trust {
        gap: 1rem;
    }
    .hero-usp {
        flex: 0 1 calc(50% - 1rem);
    }
    .hero-badge-box{
        flex: 0 0 6rem;
        padding: 0.7rem 1rem;
    }
    .hero-image-wrap{
        padding-left: 0;
    }
    .hero-badges-overlay{
        width: 100%;
        justify-content: center;
        bottom: -2rem;
        left: 50%;
        gap: .75rem;
        transform: translateX(-50%);
    }
    .hero-badge-box .val{
        font-size: 1.3rem;
    }
    .hero-dots{
        display: none;
    }
    .bezirk-card {
        flex: 0 0 100%;
    }
    .service-card {
        flex: 1 1 100%;
    }
    .testimonial-card {
        flex: 1 1 100%;
    }
    .area-card {
        flex: 1 1 100%;
    }
    .promo-headline {
        font-size: 2rem;
    }
    .included-item {
        flex: 1 1 100%;
    }
    .contact-home-item{
        flex: 1 1 calc(100% - 1.7rem);
    }
    .contact-home-form-wrap{
        padding: 2rem;
    }
    .footer-grid{
        gap: 1rem;
    }
    .footer-col {
        flex: 1 1 calc(100% - 2rem);
        align-content: flex-start;
    }
    .footer-bottom{
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-desc{
        font-size: 1rem;
    }
    .footer-col-title{
        font-size: 1.1rem;
    }
    .footer-links a{
        font-size: 1rem;
    }
    .footer-contact-text{
        font-size: .95rem;
    }
    .footer-copy{
        font-size: .95rem;
    }
    .footer-legal{
        gap: 1rem;
    }
    .footer-legal a{
        font-size: .95rem;
    }
    .btn-accent{
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        font-size: .95rem;
    }
    .btn-lg{
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        font-size: .95rem;
    }
}