/* DigitalHub Rent a Car - Standalone CSS */
/* Brand Colors: #4f1b62 (purple), #d7dade (lavender), #000000 (black), #ffffff (white) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-brand-purple: #4f1b62;
    --color-brand-lavender: #d6cbea;
	--color-brand-gray: #d7dade;
    --color-brand-black: #000000;
    --color-brand-white: #ffffff;
}

html, body {
	position: relative;
	z-index: 0;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
	scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-brand-purple);
    line-height: 1.2;
	text-shadow: 0 4px 16px rgba(0,0,0,0.35);
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.75rem;
    }
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-brand-purple);
    line-height: 1.2;
}

@media (min-width: 768px) {
    h2 {
        font-size: 3rem;
    }
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-brand-purple);
	text-align: center;
}

@media (min-width: 768px) {
    h3 {
        font-size: 1.875rem;
		text-align: center;
		color: var(--color-brand-purple);
    }
}

p {
    font-size: 1rem;
    line-height: 1.5;
    color: #333333;
	text-align: center;
}

small {
    font-size: 1rem;
    color: #666666;
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1280px;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255,255,255,0.85);
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(6px);
    background-color: rgba(255,255,255,0.9);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
    will-change: background-color, box-shadow;
}

/* Nav uses full screen width (override .container max-width) so all items fit on one row */
nav .container {
    max-width: none;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    flex-wrap: nowrap;
    gap: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0.75rem;
}

.nav-brand {
    display: flex;
    align-items: left;
    gap: 0.5rem;
	margin-right: 7px;
}

.nav-brand-text {
    font-weight: bold;
    font-size: 30px;
    color: #8d839f;
}

.nav-brand-text span{ color: #d6cbea; 
}

.nav-brand-icon img { height: 80px; 
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img { height: 80px; 
}
.logo-text {
  font-family: 'Bakbak One', sans-serif;
  font-size: 30px;
  color: #8d839f;
}
.logo-text span { color: #d6cbea; 
}

.nav-links {
    display: flex;
    gap: 22px;
    align-items: center;
	font-size: 1.05rem;
	white-space: nowrap;
}

.nav-links a {
	white-space: nowrap;
}

/* Compact CTA button inside nav */
nav .btn-primary {
	white-space: nowrap;
}
nav .btn-primary .btn {
	padding: 0.5rem 0.9rem;
	font-size: 0.9rem;
}

nav.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Logo and brand text keep the same size whether scrolled or not, to avoid layout
   jumps when the user crosses the scroll threshold. Only background/blur/shadow change. */

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
	.hamburger {
    display: none;
    margin-left: auto;
  }
    .logo {
    flex: 1;
  }
}
@media (max-width: 767px) {
    .hamburger {
        display: block;
        margin-left: auto;
    }

    .nav-links {
        display: none;
		position: absolute;
		top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 1rem;
        gap: 16px;
        border-bottom: 1px solid #eee;
    }

    .nav-links.active {
        display: flex;
    }
}

/* Logo size on mobile is set by general nav rules; no scroll-state override here either,
   so the nav doesn't jump when scrollY crosses the 30px threshold. */

.nav-links a {
    color: #4f1b62;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, color 0.3s;
}

.nav-links a:hover {
	transform: scale(1.3);
    color: #d6cbea;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-brand-purple);
    border-radius: 0.5rem;
	color: white;
	box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transition: transform .3s ease, box-shadow .3s ease;
}

.btn-primary:hover {
    background-color: #3a1248;
    transform: scale(1.05);
}

.btn-outline {
    border: 2px solid var(--color-brand-purple);
    color: var(--color-brand-purple);
	text-decoration: none;
	border-radius: 0.5rem;
	box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transition: transform .3s ease, box-shadow .3s ease;
  display: inline-block;
}

.btn-outline a,
.btn-outline a:link,
.btn-outline a:visited,
.btn-outline a:hover,
.btn-outline a:active {
    color: var(--color-brand-purple);
    text-decoration: none;
}

.btn-outline:hover {
    transform: translateY(-4px) scale(1.03);
	color: var(--color-brand-purple);
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
}

.btn-outline:hover a {
    color: var(--color-brand-purple);
}

.social-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  white-space: nowrap;
}
.social-nav i {
  font-size: 16px;
  color: #4f1b62;
  transition: transform .3s ease, color .3s ease;
}
.social-nav i:hover {
  transform: scale(1.3);
  color: #8d839f;
}

/* On narrower desktops, hide "Prati:"/"Follow:" text label to save space */
@media (min-width: 768px) and (max-width: 1199px) {
  .social-nav {
    font-size: 0; /* hides the bare text "Prati:"/"Follow:" — icons keep their own font-size */
    gap: 6px;
  }
  .social-nav i {
    font-size: 16px;
  }
}

/* On narrow desktop sizes (768-959px), hide the in-nav "Pošalji upit"/"Send inquiry" CTA
   to free up horizontal space — the same CTA exists in the hero section right below. */
@media (min-width: 768px) and (max-width: 959px) {
  nav > .container > .btn-primary {
    display: none;
  }
}

/* Compact mode for narrow desktop / tablet widths (768-1023px):
   shrink logo, nav links and the language switcher so the entire nav stays on a single row. */
@media (min-width: 768px) and (max-width: 1023px) {
  nav .container {
    gap: 8px;
  }
  .nav-brand-icon img {
    height: 48px;
  }
  .nav-brand-text {
    font-size: 18px;
  }
  .nav-links {
    font-size: 0.85rem;
    gap: 12px;
  }
  .lang-switch {
    margin-left: 4px;
    font-size: 12px;
  }
  .lang-switch a {
    padding: 2px 5px;
    gap: 3px;
  }
  .lang-switch img {
    width: 16px;
    height: 11px;
  }
  .social-nav i {
    font-size: 14px;
  }
}

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 6px;
  border-radius: 6px;
  text-decoration: none;
  color: #4f1b62;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lang-switch a:hover {
  background: rgba(79, 27, 98, 0.08);
  transform: scale(1.05);
}
.lang-switch a.lang-active {
  background: var(--color-brand-purple);
  color: #fff;
}
.lang-switch img {
  width: 18px;
  height: 13px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.lang-switch .lang-sep {
  color: #bbb;
  font-weight: 400;
}

@media (max-width: 767px) {
  .lang-switch {
    margin-left: auto;
    margin-right: 4px;
  }
  .lang-switch a {
    padding: 3px 5px;
    font-size: 12px;
  }
}

/* Hamburger */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
  z-index: 10000;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #4f1b62;
  margin: 6px 0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger animation on active */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile: hide secondary nav items (CTA "Pošalji upit" and social) on small screens.
   They're still accessible: hero section has "Pošalji upit" button, footer has social icons. */
@media (max-width: 767px) {
  nav > .container > .btn-primary,
  nav > .container > .social-nav {
    display: none;
  }
}

/* Desktop: hide hamburger */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

/* Mobile-only: hamburger visible by default */
@media (max-width: 767px) {
  .hamburger {
    display: block;
  }
}

/* Hero Section */
.hero {
    position: relative;
    overflow: visible;
	display: flex;
  align-items: center;
    background: linear-gradient(to bottom right, #ffffff, #f9f7fc);
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .hero {
        padding: 8rem 0;
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.hero-buttons > a,
.hero-buttons > .btn-outline {
    align-self: flex-start;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        align-items: center;
    }
}

.hero-image {
    position: relative;
    height: 24rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(215, 218, 222, 0.2) 0%, rgba(79, 27, 98, 0.1) 100%);
    border-radius: 1.5rem;
    opacity: 0.6;
    z-index: 1;
}

.hero-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
	box-shadow: 0 25px 25px rgba(0,0,0,0.15);
	filter: none;
}

/* Booking Section */
.booking {
    padding: 5rem 10%;
    background: linear-gradient(to bottom, #d6cbea, #d7dade);
}

@media (min-width: 768px) {
    .booking {
        padding: 8rem 0;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.25rem;
    max-width: 42rem;
    margin: 0 auto;
}

.small-text {
	text-align: left;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

ul li::before {
    content: "✓";
    color: var(--color-brand-purple);
}

/* Bullet lists shared base */
.rental-bullets {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* Default behaviour for .rental-bullets <li>:
   keep the flex layout from the global "ul li" rule but center the bullet+text row.
   This is what booking-cards and the booking section intro list use. */
.rental-bullets li {
	justify-content: center;
	text-align: center;
	margin-bottom: 0.5rem;
}

/* Terms-card variant: switch to display: block so text-align centers wrapping text nicely.
   This applies to "Zabranjene aktivnosti" and "Ostali uvjeti" cards. */
.terms-card .rental-bullets li {
	display: block;
	text-align: center;
	margin-bottom: 0.5rem;
	justify-content: initial;
	align-items: initial;
	gap: initial;
}

/* Terms-card-header is a flex container; make the inner content <div> grow to fill
   the available card width so centered content actually appears in the middle. */
.terms-card-header > div {
	flex: 1;
	min-width: 0;
}

/* When a terms-card contains a bullet list, also center its <h3> subtitle
   and any intro paragraph (e.g. "Strogo je zabranjeno:"). */
.terms-card:has(.rental-bullets) h3,
.terms-card:has(.rental-bullets) > .terms-card-header > div > p {
	text-align: center;
}

.booking-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .booking-options {
        grid-template-columns: 1fr 1fr;
    }
}

.booking-card {
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid #e0e0e0;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.3s;
}

.booking-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.booking-card.active {
    background-color: var(--color-brand-purple);
    color: white;
    border-color: var(--color-brand-purple);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.2);
}

.booking-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: inherit;
}

.booking-card p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    color: inherit;
}

.booking-card .price {
    font-weight: bold;
    font-size: 1.5rem;
}

.booking-card ul {
    list-style: none;
}

.booking-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: inherit;
}

.booking-card li::before {
    content: '✓';
    flex-shrink: 0;
    margin-top: 0.25rem;
    font-weight: bold;
}

.pricing-table {
    padding: 2rem;
    border-radius: 1rem;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
}

.pricing-table h3 {
    margin-bottom: 1.5rem;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th {
    text-align: left;
    padding: 1rem;
    font-weight: bold;
    color: var(--color-brand-purple);
    border-bottom: 2px solid #e0e0e0;
}

.pricing-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-table tr:hover {
    background-color: #f9f9f9;
}

.pricing-table td:last-child {
    text-align: right;
    font-weight: 600;
}

.pricing-note p {
    font-size: 0.875rem;
    color: #666666;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
	text-align: left;
}

/*Price list page */
.page-price-list #article-page {
  background: #ffffff;
  padding: 40px 20px;
}

.page-price-list .plain-content {
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px 30px;
}

.page-price-list h1 {
  margin-bottom: 22px;
}

.page-price-list p {
  margin-bottom: 20px;
  line-height: 1.7;
}
.price-page {
  max-width: 900px;
  margin: 0 auto;
}

.price-page h1 {
  font-size: 40px;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.price-page .lead {
  font-size: 19px;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 40px;
  color: #333;
}

.price-block {
  margin-bottom: 40px;
  margin-top: 40px;
}

.price-block h2 {
  font-size: 22px;
  margin-bottom: 18px;
  position: relative;
}

.price-block h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #6f42c1;
  margin-top: 8px;
  border-radius: 2px;
}

.price-block h3 {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.price-page p {
  line-height: 1.9;
  margin-bottom: 22px;
  color: #444;
}

.price-page ul {
 list-style: none;
  padding-left: 0;
  margin: 25px 0;
}

.price-page li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  line-height: 1.8;
}
.price-page li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: #6f42c1;
  border-radius: 50%;
}

.price-page a {
  color: #6f42c1;
  text-decoration: none;
}

.price-page a:hover {
  text-decoration: underline;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.last-updated {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.last-updated::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #6f42c1;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 2px;
}
.btn-qu {
    color: #666666;
	text-decoration: none;
	border-radius: 0.5rem;
  display: inline-block;
}

.btn-qu:hover {
    transform: translateY(-4px) scale(1.03);
	color: var(--color-brand-purple);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(
        to bottom,
        #ffffff,
        #f5f3f9
    );
    position: relative;
}

@media (min-width: 768px) {
    .about {
        padding: 8rem 0;
    }
}

.about .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about .container {
        grid-template-columns: 1fr 1fr;
    }
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.spec-card {
    padding: 1.5rem;
    background: linear-gradient(to bottom right, #f9f7fc, #ffffff);
    border: 2px solid var(--color-brand-lavender);
    border-radius: 0.75rem;
}

.spec-card p:first-child {
    font-size: 0.875rem;
    color: #666666;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.spec-card p:last-child {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-brand-purple);
}

/* Terms Section */
.terms {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #ffffff, #AE9FBB);
}

@media (min-width: 768px) {
    .terms {
        padding: 8rem 0;
    }
}

.terms-card {
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid var(--color-brand-purple);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.terms-card-header {
    display: flex;
    gap: 1rem;
}

.terms-card-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-brand-purple);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.terms-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--color-brand-purple);
}

.terms-card p {
    color: #333333;
}

.terms-card ul {
    list-style: none;
    margin-top: 0.75rem;
}

.terms-card li {
    color: #333333;
    margin-bottom: 0.5rem;
}

.terms-card li::before {
    content: '• ';
    color: var(--color-brand-purple);
    font-weight: bold;
}

.terms-cta {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(to right, var(--color-brand-purple), #3a1248);
    color: white;
    border-radius: 1rem;
    text-align: center;
}

.terms-cta p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.contact-form-header p {
    color: #666666;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-brand-purple);
    box-shadow: 0 0 0 3px rgba(79, 27, 98, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-note {
    font-size: 0.75rem;
    color: #999999;
    margin-top: 0.5rem;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-buttons button {
    flex: 1;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.form-buttons .btn-primary {
    background-color: var(--color-brand-purple);
    color: white;
}

.form-buttons .btn-primary:hover {
    background-color: #3a1248;
    transform: scale(1.05);
}

.form-buttons .btn-secondary {
    background-color: transparent;
    border: 2px solid #e0e0e0;
    color: #333333;
}

.form-buttons .btn-secondary:hover {
    background-color: #f9f9f9;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background-color: #ffffff;
}

@media (min-width: 768px) {
    .faq {
        padding: 8rem 0;
    }
}

.faq-container {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    border: 2px solid #e0e0e0;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background-color: #ffffff;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-brand-purple);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background-color: #f9f7fc;
}

.faq-question.active {
    background-color: #f9f7fc;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #333333;
}

.kontakt-item h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #4f1b62;
}

.kontakt-item p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #333;
}

.kontakt-item a {
  color: #6f42c1;
  text-decoration: none;
  transition: all 0.2s ease;
}

.kontakt-item a:hover {
  transform: translateX(3px);
}

/* Mobile tweak */
@media (max-width: 900px) {
  .kontakt-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .kontakt-section {
    padding: 60px 15px;
  }
}

.contact-section .section-title {
    margin-bottom: 1.5rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
	justify-content: center;
}

.map-link {
    display: block;
    text-align: center;
}

.contact-form-section {
    width: 100%;
	align-items: stretch;
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f9f7fc, #ffffff);
}

@media (min-width: 768px) {
    .contact-form-section {
        padding: 8rem 0;
    }
}

.contact-form {
    max-width: 42rem;
    margin: 0 auto;
    padding: 2rem;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
		align-items: stretch;
    }
}

.contact-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#form-success {
    opacity: 0;
    transition: 0.3s ease;
}

#form-success.show {
    opacity: 1;
}
.success-message {
    display: none;
    color: green;
    margin-top: 1rem;
    font-weight: 600;
}

/* Footer */
#site-footer {
    background: rgba(20, 20, 28, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #e8e8e8;
    padding: 3rem 10% 0;
    position: relative;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.footer-col .logo {
    justify-content: flex-start;
}

.logo-blog-text {
  font-family: 'Bakbak One', sans-serif;
  font-size: 20px;
  color: #8d839f;
}

.logo-blog-text span { color: #d6cbea; 
}

.footer-col h3 {
    color: white;
    margin: 0.8rem 0 0.3rem;
    margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.footer-col h4 {
  color: white;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
	text-align: left; 
}

.footer-col p {
    opacity: 0.75;
    line-height: 1.4;
	font-size: 0.9rem;
    text-align: left;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
    margin-bottom: 0;
}

.footer-col a {
  color: #d1d1d6;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.25s ease;
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(4px);
}
.footer-bottom {
 margin-top: 2rem;
    padding: 1rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.9rem;
    color: #8b8b93;
    position: relative;
}

.footer-bottom::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #a855f7, transparent);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

.footer-col h4 {
        text-align: center;

    .logo {
        justify-content: center;
    }
}
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-options {
        grid-template-columns: 1fr;
    }
}

/* ============================================ */
/* Privacy Policy & Terms of Service Pages      */
/* (politika_privatnosti, uvjeti_koristenja)    */
/* ============================================ */

.page-plain {
    background: #ffffff;
}

.page-article #article-page {
    background: #ffffff;
    padding: 40px 20px;
}

.page-article .plain-content,
.privacy-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
}

.privacy-page h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.privacy-page .lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 0;
}

.privacy-page p {
    line-height: 1.8;
    margin-bottom: 16px;
    color: #3a3a3a;
}

.privacy-page a {
    color: var(--color-brand-purple);
    text-decoration: none;
    font-weight: 500;
}

.privacy-page a:hover {
    text-decoration: underline;
}

/* Individual section blocks */
.privacy-block {
    margin-bottom: 28px;
    padding: 24px 28px;
    background: linear-gradient(to bottom right, #faf8fd, #ffffff);
    border: 1px solid var(--color-brand-lavender);
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(79, 27, 98, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.privacy-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(79, 27, 98, 0.10);
}

.privacy-block h2 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: var(--color-brand-purple);
    position: relative;
}

.privacy-block h2::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--color-brand-purple);
    margin-top: 8px;
    border-radius: 2px;
}

.privacy-block h3 {
    font-size: 1.05rem;
    margin-top: 18px;
    margin-bottom: 10px;
    color: #2b2b2b;
    font-weight: 600;
}

.privacy-block ul {
    list-style: none;
    padding-left: 0;
    margin: 14px 0;
}

.privacy-block li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    line-height: 1.7;
    color: #3a3a3a;
}

.privacy-block li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    background: var(--color-brand-purple);
    border-radius: 50%;
}

/* Highlighted info box (e.g., controller / company details) */
.privacy-block .info-box {
    background: var(--color-brand-purple);
    color: #ffffff;
    padding: 18px 22px;
    border-radius: 10px;
    margin-top: 8px;
}

.privacy-block .info-box p {
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.6;
}

.privacy-block .info-box p:last-child {
    margin-bottom: 0;
}

.privacy-block .info-box strong {
    font-size: 1.05rem;
    letter-spacing: 0.2px;
}

.privacy-block .info-box a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
}

.privacy-block .info-box a:hover {
    opacity: 0.85;
}

/* Mobile tweaks */
@media (max-width: 640px) {
    .page-article .plain-content,
    .privacy-page {
        margin: 20px auto;
        padding: 14px;
    }

    .privacy-block {
        padding: 18px;
        margin-bottom: 20px;
    }

    .privacy-page h1 {
        font-size: 1.8rem;
    }

    .privacy-block h2 {
        font-size: 1.15rem;
    }

    .privacy-block .info-box {
        padding: 14px 16px;
    }
}
