/* build: 1920100516114-31101115 */
/* HUB77 — clean TikTok-inspired aesthetic (cyan/pink accents), geometric shapes, LIGHT + lively */
/* salt: 19-59-16-51-48-5 */

:root{
  /* salt: 19-59-16-51-48-5 */
  --bg: #ffffff;
  --bg2: #f6f7fb;
  --panel: rgba(255,255,255,.72);
  --panel2: rgba(255,255,255,.88);
  --text: #131521;
  --muted: rgba(19,21,33,.70);
  --line: rgba(19,21,33,.12);
  --shadow: 0 18px 60px rgba(17, 24, 39, .14);

  --pink: #ff2d8d; /* TikTok-ish */
  --cyan: #20c9ff; /* readable on light bg */
  --lime: #8aff2f;

  --radius: 18px;
  --radius2: 26px;

  --container: 1120px;
}

*{ box-sizing: border-box; }
html{ 
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}
body{
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
  position: relative;
}
body::before{
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    /* Samo 3-5 oblika - veliki i puni */
    radial-gradient(ellipse 800px 600px at 8% 10%, rgba(32, 201, 255, .15), transparent 60%),
    radial-gradient(circle 700px at 92% 15%, rgba(255, 45, 141, .13), transparent 60%),
    radial-gradient(ellipse 750px 550px at 50% 90%, rgba(138, 255, 47, .11), transparent 60%),
    radial-gradient(ellipse 600px 400px at 25% 50%, rgba(32, 201, 255, .10), transparent 65%),
    radial-gradient(ellipse 550px 350px at 75% 45%, rgba(255, 45, 141, .09), transparent 65%);
  background-size: 
    800px 600px, 700px 700px, 750px 550px, 600px 400px, 550px 350px;
  background-position: 
    0 0, 100% 0, 50% 100%, 25% 50%, 75% 45%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  will-change: transform, opacity;
  filter: blur(0.5px);
}
body.scrolled-1::before{
  opacity: 0.7;
  transform: translateY(-20px);
}
body.scrolled-2::before{
  opacity: 0.5;
  transform: translateY(-40px) scale(1.05);
}
body.scrolled-3::before{
  opacity: 0.6;
  transform: translateY(-60px) scale(1.1);
}
body > *:not(.site-header){
  position: relative;
  z-index: 1;
}

img, iframe{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip: rect(0,0,0,0); white-space:nowrap; border:0;
}

.skip-link{
  position:absolute;
  left:-999px; top:12px;
  background: #fff; color:#111;
  padding:10px 12px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{ left: 12px; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.85);
  border-bottom: 1px solid var(--line);
  transition: opacity 200ms ease, background-color 200ms ease;
  opacity: 1;
}
.site-header.is-scrolled{
  opacity: 0.75;
  background: rgba(255,255,255,.60);
}
.site-header.is-scrolled:hover{
  opacity: 1;
  background: rgba(255,255,255,.95);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.header-left{
  display:flex;
  align-items:center;
  gap: 32px;
}
.brand{
  display:flex; align-items:center;
}
.brand-text{
  font-weight: 800;
  letter-spacing: .5px;
  font-size: 20px;
}
.brand-accent{
  color: var(--cyan);
  transition: color .3s ease;
  position: relative;
  display: inline-block;
}
.brand:hover .brand-accent{
  color: var(--pink) !important;
}

/* Simple color transition animation for 77 on main page - runs once on load */
@keyframes brandAccentColorTransition {
  0% {
    color: var(--pink);
  }
  100% {
    color: var(--cyan);
  }
}

body:not(.page-event):not(.page-social):not(.page-content) .brand-accent{
  animation: brandAccentColorTransition 1.5s ease-in-out;
  animation-fill-mode: forwards;
}
.header-tagline{
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.header-tagline a{
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.header-tagline a:hover{
  color: var(--cyan);
}
.page-event .header-tagline .tagline-active,
.page-event .header-tagline a.tagline-active{
  color: var(--pink);
  font-weight: 600;
}
.page-social .header-tagline .tagline-active,
.page-social .header-tagline a.tagline-active{
  color: var(--pink);
  font-weight: 600;
}
.page-content .header-tagline .tagline-active,
.page-content .header-tagline a.tagline-active{
  color: var(--pink);
  font-weight: 600;
}

.site-nav{
  display:flex;
  gap: 8px;
  align-items:center;
  font-weight: 600;
  color: rgba(19,21,33,.86);
}
.site-nav a{
  padding: 10px 16px;
  border-radius: 12px;
  transition: color .2s ease;
  position: relative;
}
.site-nav a::after{
  content: "";
  position: absolute;
  bottom: 6px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  transform: scaleX(0);
  transition: transform .3s ease;
  border-radius: 2px;
}
.site-nav a:hover::after,
.site-nav a:focus::after{
  transform: scaleX(1);
}
.site-nav a:hover{
  color: var(--text);
}
.site-nav .nav-cta{
  background: #ffffff;
  border: 2px solid transparent;
  background-image: 
    linear-gradient(#ffffff, #ffffff),
    linear-gradient(90deg, var(--cyan), var(--pink));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 10px 20px;
  color: var(--text);
  position: relative;
  transition: transform 0.2s ease;
}
@property --gradient-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.site-nav .nav-cta::before{
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  --gradient-angle: 0deg;
  background: conic-gradient(from var(--gradient-angle), var(--cyan) 0%, var(--cyan) 50%, var(--pink) 50%, var(--pink) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  filter: drop-shadow(0 0 0px rgba(32, 201, 255, 0));
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.site-nav .nav-cta:hover::before{
  opacity: 1;
  animation: flow-gradient-border 1s ease-in-out forwards;
}
.site-nav .nav-cta:not(:hover)::before{
  animation: none;
  --gradient-angle: 0deg;
}
.site-nav .nav-cta::after{ display: none; }
.site-nav .nav-cta:hover{
  transform: translateY(-1px);
  opacity: 1;
}
@keyframes flow-gradient-border {
  0% {
    --gradient-angle: 0deg;
    filter: drop-shadow(0 0 0px rgba(32, 201, 255, 0));
  }
  25% {
    filter: drop-shadow(0 0 8px rgba(32, 201, 255, 0.8)) drop-shadow(0 0 12px rgba(255, 45, 141, 0.6));
  }
  50% {
    --gradient-angle: 180deg;
    filter: drop-shadow(0 0 10px rgba(32, 201, 255, 0.9)) drop-shadow(0 0 15px rgba(255, 45, 141, 0.7));
  }
  75% {
    filter: drop-shadow(0 0 8px rgba(32, 201, 255, 0.8)) drop-shadow(0 0 12px rgba(255, 45, 141, 0.6));
  }
  100% {
    --gradient-angle: 0deg;
    filter: drop-shadow(0 0 0px rgba(32, 201, 255, 0));
  }
}

/* Hero */
.hero{ position: relative; padding: 84px 0 34px; overflow:hidden; }
.hero-inner{
  display:grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 28px;
  align-items: stretch;
}
.hero-bg{ position:absolute; inset:0; pointer-events:none; }
.grid-sheen{
  position:absolute; inset:-80px;
  background:
    linear-gradient(rgba(19,21,33,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19,21,33,.07) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity:.12;
  mask-image: radial-gradient(closest-side at 20% 30%, rgba(0,0,0,1), rgba(0,0,0,0));
}
.shape{
  position:absolute;
  border-radius: 999px;
  filter: blur(.2px);
  opacity: .95;
}
.shape-a{
  width: 560px; height: 560px;
  left: -210px; top: -190px;
  background: radial-gradient(circle at 35% 35%, rgba(32,201,255,.30), rgba(32,201,255,0) 60%),
              radial-gradient(circle at 70% 70%, rgba(255,45,141,.20), rgba(255,45,141,0) 55%);
  transform: rotate(12deg);
}
.shape-b{
  width: 420px; height: 420px;
  right: -180px; top: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(255,45,141,.28), rgba(255,45,141,0) 60%),
              radial-gradient(circle at 70% 70%, rgba(32,201,255,.18), rgba(32,201,255,0) 55%);
}
.shape-c{
  width: 520px; height: 520px;
  right: -220px; bottom: -260px;
  background: radial-gradient(circle at 30% 30%, rgba(138,255,47,.16), rgba(138,255,47,0) 60%),
              radial-gradient(circle at 70% 70%, rgba(32,201,255,.10), rgba(32,201,255,0) 55%);
}

.kicker{
  margin:0 0 14px;
  color: rgba(19,21,33,.70);
  font-weight: 600;
  letter-spacing: .2px;
}
.hero h1{
  margin:0 0 14px;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.grad{
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Automatsko obojavanje svake 20-te riječi */
.text-highlight-cyan {
  color: var(--cyan);
  font-weight: 600;
}
.text-highlight-pink {
  color: var(--pink);
  font-weight: 600;
}
.text-blue {
  color: var(--cyan) !important;
}
.text-pink {
  color: var(--pink) !important;
}
.text-gradient-animated {
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--cyan));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-text-flow-continuous 4s linear infinite;
}
@keyframes gradient-text-flow-continuous {
  0% {
    background-position: -100% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}
.text-gray {
  color: rgba(19,21,33,.68) !important;
}
.text-bold {
  font-weight: 600;
}
.text-underline {
  text-decoration: underline;
}
.gradient-blue-pink {
  background: linear-gradient(90deg, var(--cyan), var(--pink)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  position: relative;
}
.gradient-blue-pink::after {
  content: "• • •";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 8px;
  background: linear-gradient(90deg, var(--cyan), var(--pink)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  opacity: 0.6;
}
.separator-gradient {
  background: linear-gradient(90deg, var(--pink), rgba(19,21,33,.4)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}
.bez-sum-kaos {
  margin: 0 0 8px !important;
}
.bez-sum-kaos strong {
  font-weight: 700;
}
.lead{
  margin:0 0 18px;
  color: rgba(19,21,33,.72);
  max-width: 56ch;
}

.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 22px 0 20px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(19,21,33,.12);
  font-weight: 700;
  letter-spacing: .2px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  user-select:none;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 12px 40px rgba(0,0,0,.35); }
.btn:active{ transform: translateY(0px); }
.btn-primary{
  background: linear-gradient(90deg, rgba(32,201,255,.18), rgba(255,45,141,.16));
  border-color: rgba(19,21,33,.12);
}
.btn-secondary{
  background: rgba(255,255,255,.70);
  border-color: rgba(19,21,33,.12);
}
.btn-ghost{
  background: rgba(255,255,255,.52);
}
.btn-link{
  border: 0;
  padding: 10px 8px;
  background: transparent;
  color: rgba(19,21,33,.78);
}
.btn-link:hover{ transform: translateY(-1px); text-decoration: underline; box-shadow:none; }

.hero-metrics{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
.metric{
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(19,21,33,.10);
}
.metric-number{
  font-weight: 800;
  letter-spacing: .2px;
}
.metric-label{
  color: rgba(19,21,33,.62);
  font-size: 13px;
}

.hero-visual{
  border-radius: var(--radius2);
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(19,21,33,.10);
  box-shadow: var(--shadow);
  padding: 14px;
  overflow:hidden;
}

/* salt: 19-59-16-51-48-5 */
.services-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.service-box-wide{
  grid-column: span 2;
}
.service-box{
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.service-box-image-wrapper{
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
}
.service-box:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.service-box:active{
  transform: translateY(0px);
}
.service-box img{
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.service-box-image-wrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-box-wide .service-box-image-wrapper img{
  object-position: center 30%;
}
.service-box[data-service="drustvene-mreze"] .service-box-image-wrapper img{
  transform: scale(1.2);
}
/* Ensure first two images in drustvene-mreze box maintain their position */
.service-box[data-service="drustvene-mreze"] .svg-rotator-img:nth-child(1),
.service-box[data-service="drustvene-mreze"] .svg-rotator-img:nth-child(2){
  transform: none;
}
.service-box-overlay{
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}
.service-box-svg-rotator{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.svg-rotator-img{
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  object-fit: cover;
}
.svg-rotator-img.active{
  opacity: 1;
}
.service-box[data-service="event-organizacija"] .svg-rotator-img:nth-child(1){
  transform: scale(1.15);
}
.service-box[data-service="event-organizacija"] .svg-rotator-img:nth-child(2){
  transform: scale(1.05);
}
.service-box[data-service="drustvene-mreze"] .svg-rotator-img:nth-child(3){
  transform: translateX(-15px) translateY(-10px);
}
.service-box[data-service="drustvene-mreze"] .service-box-label{
  font-size: 22px;
  white-space: nowrap;
}
.service-box-label{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}
.service-box-label-small{
  font-size: 14px;
  letter-spacing: 1px;
  white-space: nowrap;
  text-align: center;
}
.service-box h3{
  margin: 0;
  padding: 14px 16px;
  font-size: 13px;
}
.service-box[data-service="event-organizacija"]:not(.service-box-wide) h3{
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.4;
}
.card-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}
.pill{
  display:inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  background: rgba(32,201,255,.10);
  border: 1px solid rgba(32,201,255,.18);
}
.dots span{
  display:inline-block;
  width: 7px; height: 7px;
  border-radius: 999px;
  background: rgba(19,21,33,.25);
  margin-left: 6px;
}
.card-title{ margin: 14px 0 8px; position: relative; }
.card-text{ margin:0 0 14px; color: rgba(19,21,33,.70); position: relative; }
.card-actions{ display:flex; gap: 10px; flex-wrap: wrap; position: relative; }
.card-badges{ margin-top: 16px; display:flex; gap: 8px; flex-wrap: wrap; position: relative; }
.badge{
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(19,21,33,.10);
  color: rgba(19,21,33,.72);
}

/* Sections */
.section{ padding: 72px 0; position: relative; }
.section-alt{
  background:
    radial-gradient(900px 600px at 15% 40%, rgba(255,45,141,.10), transparent 60%),
    radial-gradient(900px 600px at 80% 50%, rgba(32,201,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
#video-showcase.section-alt{
  border-top: none;
  border-bottom: none;
  background: #ffffff;
}
#video-showcase.section-alt::before,
#video-showcase.section-alt::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--cyan));
  background-size: 200% 100%;
  animation: gradient-line-flow 3s linear infinite;
}
#video-showcase.section-alt::before{
  top: 0;
}
#video-showcase.section-alt::after{
  bottom: 0;
}
@keyframes gradient-line-flow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.section-head-centered{
  text-align: center;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.section-head-centered h2{
  margin: 0 0 12px;
}
.section-head-centered h2.gradient-blue-pink::after {
  content: "• • •";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  letter-spacing: 10px;
  background: linear-gradient(90deg, var(--cyan), var(--pink)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  opacity: 0.7;
  display: block;
  width: 100%;
}
.section-head-centered p{
  max-width: 70ch;
  margin: 0 auto;
}
.section-head-decorated{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
  position: relative;
}
.section-head-decorated::before{
  content: "Naši projekti";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 900;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(19,21,33,.08);
  text-stroke: 1px rgba(19,21,33,.08);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}
.section-head-decorated h2{
  margin: 0;
  font-size: clamp(28px, 2.5vw, 38px);
  letter-spacing: -0.02em;
  position: relative;
  white-space: nowrap;
  z-index: 1;
}
.section-head-line{
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  max-width: 200px;
  position: relative;
  z-index: 1;
}
.section-head h2{
  margin:0;
  font-size: clamp(24px, 2.2vw, 34px);
  letter-spacing: -0.02em;
}
.section-head p{
  margin:0;
  color: rgba(19,21,33,.68);
  max-width: 60ch;
}
.section-head-inline{
  flex-direction: column;
  align-items: flex-start;
}
.section-head-inline h2{
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-head-separator{
  color: var(--muted);
  font-weight: 400;
}
.section-head-inline p{
  margin: 0;
}

.services-intro{
  text-align: center;
  margin-bottom: 32px;
  padding: 20px;
  background: rgba(255,255,255,.65);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.services-intro p{
  margin: 0;
  font-size: 16px;
  color: rgba(19,21,33,.72);
  font-weight: 500;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.card{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(19,21,33,.10);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: 0 14px 44px rgba(0,0,0,.28);
  transition: transform .18s ease, background .18s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card:hover{ transform: translateY(-2px); background: rgba(255,255,255,.86); }
.card-image{
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  background: #ffffff;
}
.card-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.card-image img[src$=".svg"]{
  object-fit: contain;
  padding: 10px;
  background: #ffffff;
  transform: scale(1.4);
  transform-origin: center;
}
.card[data-service-modal="produkcija-sadrzaja"] .card-image img{
  transform: scale(1.2) translateY(15px);
  transform-origin: center;
}
.card:hover .card-image img{
  transform: scale(1.05);
}
.card:hover .card[data-service-modal="produkcija-sadrzaja"] .card-image img,
.card[data-service-modal="produkcija-sadrzaja"]:hover .card-image img{
  transform: scale(1.05) translateY(15px);
}
.card-content{
  padding: 18px 18px 16px;
}
.card-header-with-icon{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 12px;
}
.card-icon{
  width: auto; height: auto;
  display:grid; place-items:center;
  font-weight: 900;
  flex-shrink: 0;
}
.card-icon img{
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.card h3{ margin: 0 0 8px; }
.card-title-gradient{
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.card p{ margin: 0 0 16px; color: rgba(19,21,33,.68); line-height: 1.6; }
.text-gradient-inline{
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.card-features{
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-features li{
  position: relative;
  padding-left: 20px;
  color: rgba(19,21,33,.70);
  font-size: 14px;
  line-height: 1.5;
}
.card-features li::before{
  content: "•";
  position: absolute;
  left: 0;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}
.list{
  margin:0;
  padding-left: 18px;
  color: rgba(19,21,33,.66);
}
.list li{ margin: 7px 0; }

/* Projects */
.projects-grid{
  display:grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}
.project-tile{
  grid-column: span 4;
  border-radius: var(--radius2);
  border: 1px solid rgba(19,21,33,.10);
  background: rgba(255,255,255,.78);
  overflow:hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.30);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.project-tile:hover{
  transform: translateY(-2px);
  border-color: rgba(32,201,255,.26);
  background: rgba(255,255,255,.88);
}
.project-featured{
  grid-column: span 12;
}
.project-featured .project-media{
  height: 480px;
}
.project-featured .project-media img{
  object-position: center 10%;
}
.project-media{
  height: 210px;
  border-bottom: 1px solid rgba(19,21,33,.10);
  position: relative;
  overflow: hidden;
}
.project-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-color-1{
  background: linear-gradient(135deg, rgba(32,201,255,.25), rgba(255,45,141,.20));
}
.project-color-2{
  background: linear-gradient(135deg, rgba(255,45,141,.25), rgba(138,255,47,.20));
}
.project-color-3{
  background: linear-gradient(135deg, rgba(138,255,47,.25), rgba(32,201,255,.20));
}
.project-color-4{
  background: linear-gradient(135deg, rgba(255,45,141,.22), rgba(32,201,255,.18));
}
.project-color-5{
  background: linear-gradient(135deg, rgba(32,201,255,.22), rgba(138,255,47,.18));
}
.project-color-6{
  background: linear-gradient(135deg, rgba(138,255,47,.22), rgba(255,45,141,.18));
}
.project-color-7{
  background: linear-gradient(135deg, rgba(255,45,141,.20), rgba(32,201,255,.22));
}
.project-color-featured{
  background: linear-gradient(135deg, rgba(32,201,255,.30), rgba(255,45,141,.25), rgba(138,255,47,.20));
}
.project-meta{
  padding: 14px 14px 16px;
}
.project-meta h3{ margin:0 0 6px; font-size: 16px; }
.project-meta p{ margin:0; color: rgba(19,21,33,.66); }
.project-meta p + p{ margin-top: 8px; }

.ph{
  background:
    radial-gradient(180px 140px at 25% 35%, rgba(32,246,255,.18), transparent 60%),
    radial-gradient(220px 160px at 75% 30%, rgba(255,45,141,.18), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,0));
}
.ph::after{
  content:"";
  position:absolute; inset: 14px;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,.18);
}
.ph-1{ background:
  radial-gradient(220px 180px at 20% 35%, rgba(255,45,141,.20), transparent 60%),
  radial-gradient(220px 180px at 80% 40%, rgba(32,246,255,.16), transparent 60%),
  linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,0)); }
.ph-2{ background:
  radial-gradient(220px 180px at 25% 40%, rgba(182,255,67,.14), transparent 60%),
  radial-gradient(220px 180px at 75% 30%, rgba(255,45,141,.16), transparent 60%),
  linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,0)); }
.ph-3{ background:
  radial-gradient(220px 180px at 25% 30%, rgba(32,246,255,.16), transparent 60%),
  radial-gradient(220px 180px at 70% 55%, rgba(182,255,67,.14), transparent 60%),
  linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,0)); }
.ph-4{ background:
  radial-gradient(220px 180px at 25% 30%, rgba(255,45,141,.18), transparent 60%),
  radial-gradient(220px 180px at 70% 55%, rgba(32,246,255,.14), transparent 60%),
  linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,0)); }
.ph-5{ background:
  radial-gradient(220px 180px at 25% 30%, rgba(182,255,67,.15), transparent 60%),
  radial-gradient(220px 180px at 70% 55%, rgba(32,246,255,.12), transparent 60%),
  linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,0)); }

.project-video{ grid-column: span 8; }
.video-embed{ padding:0; height:auto; background: transparent; border-bottom: 0; }
.video-embed iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 0;
}

.callout{
  margin-top: 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px;
  border-radius: var(--radius2);
  background: #ffffff;
  border: 2px solid transparent;
  background-image: 
    linear-gradient(#ffffff, #ffffff),
    linear-gradient(90deg, var(--cyan), var(--pink));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  position: relative;
}
.callout h3{ margin:0 0 6px; }
.callout p{ margin:0; color: rgba(19,21,33,.68); }
.callout .btn-primary{
  background: #ffffff;
  border: 2px solid var(--cyan);
  color: var(--text);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.callout .btn-primary:hover{
  border-color: var(--pink);
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}

/* Video Slider */
.video-slider-full{
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.video-slider{
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.78);
  border: none;
  padding: 40px 0;
  width: 100%;
  z-index: 1;
}
.slider-track{
  display: flex;
  gap: 24px;
  width: max-content;
  animation: slideLeft 60s linear infinite;
  will-change: transform;
}
.slider-content{
  display: flex;
  gap: 24px;
  flex-shrink: 0;
  width: max-content;
}
.slider-content:first-child .video-item:first-child{
  margin-left: 24px;
}
.slider-content:last-child .video-item:last-child{
  margin-right: 24px;
}
@keyframes slideLeft{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}
.video-item{
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid rgba(32,201,255,.15);
  aspect-ratio: 16 / 9;
  position: relative;
  flex-shrink: 0;
  width: 320px;
}
.video-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-item-jozinovic img{
  object-position: center top;
  transform: translateY(-5%);
  height: 110%;
  width: 100%;
}
.video-item-sise img{
  object-position: center top;
  transform: translateY(0%);
  height: 105%;
  width: 100%;
}
.video-item::before{
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,45,141,.15);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 1;
}
.video-placeholder{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(32,201,255,.10), rgba(255,45,141,.08));
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}
.slider-controls{
  display: none;
}
.slider-btn{
  display: none;
}
.slider-dots{
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.slider-dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(19,21,33,.15);
  cursor: pointer;
  transition: all .2s ease;
  border: 1px solid rgba(32,201,255,.20);
}
.slider-dot.active{
  background: var(--cyan);
  width: 20px;
  border-radius: 3px;
  border-color: var(--cyan);
}

/* About */
.about-showcase{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
.about-main h3{
  margin: 0 0 16px;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.about-main p{
  margin: 0 0 16px;
  color: rgba(19,21,33,.72);
  line-height: 1.6;
}
.about-miro{
  margin-top: 60px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
  padding: 40px 0;
}
.about-miro-image{
  position: relative;
  width: 100%;
  flex-shrink: 0;
  display: inline-block;
}
.about-miro-image img{
  width: 100%;
  height: auto;
  border-radius: var(--radius2);
  position: relative;
  z-index: 2;
  display: block;
  filter: drop-shadow(0 0 20px rgba(32, 201, 255, 0.4)) 
          drop-shadow(0 0 40px rgba(255, 45, 141, 0.3))
          drop-shadow(0 8px 32px rgba(0, 0, 0, 0.2));
}
.about-miro-image::before{
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: var(--radius2);
  background: linear-gradient(135deg, rgba(32, 201, 255, 0.6), rgba(255, 45, 141, 0.6));
  z-index: 1;
  filter: blur(8px);
  opacity: 0.8;
  animation: electric-glow 3s ease-in-out infinite;
}
@keyframes electric-glow {
  0%, 100% {
    opacity: 0.6;
    filter: blur(8px);
  }
  50% {
    opacity: 1;
    filter: blur(12px);
  }
}
.about-miro-text{
  padding-top: 0;
}
.about-miro-text h4{
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--text);
  line-height: 1.3;
}
.about-miro-text p{
  margin: 0 0 20px;
  color: rgba(19,21,33,.72);
  line-height: 1.7;
  font-size: 15px;
}
.about-miro-text p:last-child{
  margin-bottom: 0;
}
.about-features{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.feature-item{
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(19,21,33,.10);
}
.feature-icon{
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(32,201,255,.12), rgba(255,45,141,.10));
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 10px;
}
.feature-item h4{
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
}
.feature-item p{
  margin: 0;
  color: rgba(19,21,33,.68);
  font-size: 12px;
  line-height: 1.4;
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  align-items: start;
}
.contact-form{
  border-radius: var(--radius2);
  border: 1px solid rgba(19,21,33,.10);
  background: rgba(255,255,255,.78);
  padding: 18px 18px 16px;
}
.contact-form label{ display:block; margin-bottom: 12px; }
.contact-form span{ display:block; font-weight: 700; font-size: 13px; color: rgba(19,21,33,.74); margin-bottom: 8px;}
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(19,21,33,.14);
  background: rgba(255,255,255,.92);
  color: var(--text);
  outline: none;
  resize: none;
}
textarea{
  overflow-y: auto;
  min-height: 120px;
  max-height: 300px;
}
input:focus, textarea:focus{
  border-color: rgba(32,246,255,.35);
  box-shadow: 0 0 0 4px rgba(32,246,255,.10);
}
.form-note{ 
  margin-top: 16px; 
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(19,21,33,.08);
  color: var(--text);
  font-weight: 500;
  line-height: 1.6;
  display: none;
  opacity: 0;
}
.form-note-success,
.form-note.ok{
  color: var(--text);
  display: block;
}
.form-note-error,
.form-note.error{
  color: rgba(255, 45, 141, .85);
  display: block;
  opacity: 1;
}
#formStatus{
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.contact-aside{
  display:flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}
.contact-card{
  border-radius: var(--radius2);
  border: 1px solid rgba(19,21,33,.10);
  background: rgba(255,255,255,.78);
  padding: 18px 18px 16px;
}
.muted{ color: rgba(19,21,33,.60); }
.contact-lines{ margin-top: 14px; display:grid; gap: 10px; }
.contact-lines .label{ display:inline-block; width: 76px; color: rgba(19,21,33,.60); font-weight: 700; }
.contact-lines .value{ color: rgba(19,21,33,.84); font-weight: 800; }
.social{ margin-top: 14px; display:flex; gap: 10px; flex-wrap: wrap; }
.social-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(19,21,33,.10);
  color: rgba(19,21,33,.82);
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.3s ease;
}
.social-icon{
  font-size: 18px;
}
.social-instagram:hover{
  border-color: #E4405F;
  border-width: 2px;
}
.social-tiktok{
  position: relative;
  background-clip: padding-box;
}
.social-tiktok:hover{
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #25F4EE 0%, #FE2C55 100%) border-box;
}
.social-whatsapp:hover{
  border-color: #25D366;
  border-width: 2px;
}
.microprint{
  border-radius: var(--radius2);
  border: 1px solid rgba(19,21,33,.10);
  background: rgba(255,255,255,.68);
  padding: 16px 18px;
  color: rgba(19,21,33,.64);
}

/* Process Visual */
.process-visual{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  background: rgba(255,255,255,.78);
  border-radius: var(--radius);
  border: 1px solid rgba(19,21,33,.10);
  max-height: 120px;
}
.process-step{
  flex: 1;
  text-align: center;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process-icon{
  width: 32px;
  height: 32px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
  border: 2px solid;
  flex-shrink: 0;
}
.process-icon-1{
  border-color: rgba(32,201,255,.90);
}
.process-icon-2{
  border: 2px solid transparent;
  background: 
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(32,201,255,.70) 0%, rgba(255,45,141,.70) 100%) border-box;
  border-radius: 50%;
}
.process-icon-3{
  border-color: rgba(255,45,141,.90);
}
.process-step h4{
  margin: 0 0 3px;
  font-size: 12px;
  font-weight: 700;
}
.process-step p{
  margin: 0;
  color: rgba(19,21,33,.68);
  font-size: 10px;
  line-height: 1.3;
}
.process-arrow{
  font-size: 14px;
  color: var(--cyan);
  font-weight: 900;
  flex-shrink: 0;
  margin: 0 1px;
}

/* Footer */
.site-footer{
  padding: 26px 0 36px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.66);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}
.footer-brand .brand-accent{
  color: var(--cyan);
  transition: color .3s ease;
}
.footer-brand:hover .brand-accent{
  color: var(--pink) !important;
}
/* Copyright link - nevidljiv ali clickable, zauzima prostor */
.copyright-link{
  color: transparent;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  pointer-events: auto;
  position: relative;
  width: 1ch;
}
.copyright-link:hover{
  color: transparent;
}
.footer-links{
  display:flex;
  gap: 14px;
  color: rgba(19,21,33,.74);
  font-weight: 700;
}
.footer-links a{ 
  padding: 8px 10px; 
  border-radius: 12px;
  position: relative;
  transition: color .2s ease;
}
.footer-links a::after{
  content: "";
  position: absolute;
  bottom: 4px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  transform: scaleX(0);
  transition: transform .3s ease;
  border-radius: 2px;
}
.footer-links a:hover::after,
.footer-links a:focus::after{
  transform: scaleX(1);
}
.footer-links a:hover{ 
  background: transparent;
  color: var(--text);
}

/* Reveal animation */
[data-reveal]{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-visible{
  opacity: 1;
  transform: translateY(0px);
}

/* Responsive */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .about-showcase{ grid-template-columns: 1fr; }
  .about-features{ grid-template-columns: 1fr; }
  .about-miro{ 
    grid-template-columns: 1fr; 
    gap: 32px;
    margin-top: 40px;
    padding: 32px 0;
  }
  .about-miro-image{
    max-width: 280px;
    margin: 0 auto;
  }
  .contact-grid{ grid-template-columns: 1fr; }
  /* Header stays in one row - only adjust tagline font size on tablets */
  .header-tagline{ font-size: 13px; }
  /* Services grid - only change on smaller tablets/mobile, not desktop */
  @media (max-width: 768px) {
    .services-grid{ grid-template-columns: 1fr; }
    .service-box-wide{ grid-column: span 1; }
  }
  .slider-content{ 
    gap: 16px;
    padding: 0 16px;
  }
  .video-item{
    width: 280px;
  }
  .video-slider{
    padding: 30px 0;
  }
  .process-visual{ 
    flex-direction: column; 
    max-height: none;
    align-items: stretch;
    gap: 20px;
    padding: 20px 16px;
  }
  .process-step {
    width: 100%;
    flex: none;
  }
  .process-arrow{ 
    transform: rotate(90deg); 
    margin: 4px 0;
  }
  .project-tile{ grid-column: span 6; }
  .project-featured{ grid-column: span 12; }
}

@media (max-width: 520px){
  .mosaic .t1{ grid-column: span 12; height: 210px; }
  .mosaic .t2{ grid-column: span 12; height: 190px; }
  .mosaic .t3{ height: 180px; }
}

/* Service Modal Popup */
.service-modal{
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.15s ease;
  will-change: opacity;
}
.service-modal.active{
  display: flex;
  opacity: 1;
}
.service-modal-overlay{
  position: absolute;
  inset: 0;
  background: rgba(19, 21, 33, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-modal.active .service-modal-overlay{
  opacity: 1;
}
.service-modal-content{
  position: relative;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius2);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4),
              0 10px 40px rgba(0, 0, 0, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  will-change: opacity;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-modal.active .service-modal-content{
  opacity: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(19, 21, 33, 0.3) transparent;
}
.service-modal-content::-webkit-scrollbar{
  width: 4px;
}
.service-modal-content::-webkit-scrollbar-track{
  background: transparent;
}
.service-modal-content::-webkit-scrollbar-thumb{
  background: rgba(19, 21, 33, 0.3);
  border-radius: 2px;
}
.service-modal-content::-webkit-scrollbar-thumb:hover{
  background: rgba(19, 21, 33, 0.5);
}
.service-modal.active .service-modal-content{
  transform: scale(1);
}
.service-modal-close{
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 28px;
  font-weight: 300;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.service-modal-close:hover{
  background: rgba(255, 255, 255, 1);
  transform: rotate(90deg);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.service-modal-body{
  padding: 60px 50px 50px;
}
.service-modal-body h2{
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 24px;
  color: var(--text);
}
.service-modal-image-slider{
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: var(--radius2);
  overflow: hidden;
  margin-bottom: 32px;
  background: var(--bg2);
}
.service-modal-image-track{
  display: flex;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.service-modal-image-slide{
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.service-modal-image-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  will-change: transform;
}
.service-modal-image-nav{
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  z-index: 10;
  overflow: hidden;
}
.service-modal-image-progress{
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  border-radius: 2px;
  transition: width 0.3s ease;
  width: 0%;
}
.service-modal-image-dot{
  display: none;
}
.service-modal-image-prev,
.service-modal-image-next{
  display: none;
}
.service-modal-body p{
  font-size: 16px;
  line-height: 1.7;
  color: rgba(19, 21, 33, 0.75);
  margin: 0 0 20px;
}
.service-modal-body h3{
  font-size: 24px;
  font-weight: 700;
  margin: 32px 0 16px;
  color: var(--text);
}
.service-modal-body h3:first-of-type{
  margin-top: 0;
}
.service-modal-body ul{
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.service-modal-body ul li{
  padding: 12px 0;
  padding-left: 24px;
  position: relative;
  color: rgba(19, 21, 33, 0.75);
  font-size: 15px;
  line-height: 1.6;
}
.service-modal-body ul li::before{
  content: "→";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}
.service-modal-content-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
  align-items: start;
}
.service-modal-features ul{
  margin-bottom: 0;
}
.service-modal-process-wrapper{
  display: flex;
  flex-direction: column;
}
.service-modal-process-wrapper h3{
  margin-bottom: 20px;
}
.service-modal-features{
  flex: 1;
}
.service-modal-process-wrapper{
  flex: 1;
}
.service-modal-process{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  position: relative;
  align-items: start;
}
.service-modal-process-item{
  position: relative;
  z-index: 2;
  padding: 16px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}
.service-modal-process-item:hover{
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.process-top-left{
  grid-column: 1;
  grid-row: 1;
}
.process-top-right{
  grid-column: 2;
  grid-row: 1;
}
.process-bottom-left{
  grid-column: 1;
  grid-row: 2;
}
.process-bottom-right{
  grid-column: 2;
  grid-row: 2;
}
.service-modal-process-number{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 10px;
  box-shadow: 0 4px 15px rgba(32, 201, 255, 0.2);
  border: 2px solid transparent;
  box-sizing: border-box;
  position: relative;
}
/* Gradient borders for each step - using background approach */
.process-top-left .service-modal-process-number{
  background: 
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, var(--cyan), var(--cyan)) border-box;
}
.process-top-right .service-modal-process-number{
  background: 
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, var(--cyan) 0%, var(--cyan) 60%, var(--pink) 60%, var(--pink) 100%) border-box;
}
.process-bottom-left .service-modal-process-number{
  background: 
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, var(--cyan) 0%, var(--cyan) 40%, var(--pink) 40%, var(--pink) 100%) border-box;
}
.process-bottom-right .service-modal-process-number{
  background: 
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, var(--pink), var(--pink)) border-box;
}
.service-modal-process-item h4{
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text);
}
.service-modal-process-item p{
  font-size: 12px;
  margin: 0;
  color: rgba(19, 21, 33, 0.7);
  line-height: 1.4;
}

@media (max-width: 640px){
  .section{ padding: 56px 0; }
  .project-tile{ grid-column: span 12; }
  .section-head{ flex-direction: column; align-items:flex-start; }
  .card-image{ height: 180px; }
  .service-modal-content{
    max-width: 100%;
    max-height: 95vh;
  }
  .service-modal-body{
    padding: 40px 24px 30px;
  }
  .service-modal-body h2{
    font-size: 28px;
  }
  .service-modal-image-slider{
    height: 250px;
  }
  .service-modal-content-grid{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-modal-process{
    gap: 12px;
  }
  .service-modal-process-item{
    padding: 14px 12px;
  }
  .service-modal-process-number{
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

/* Event Produkcija Page Styles - Completely Different Layout */

/* Full-width Hero with Image Overlay */
.event-hero-full{
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  margin-top: 0;
  overflow: hidden;
  margin-bottom: 0;
}
.event-hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.event-hero-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(19,21,33,0.75) 0%, rgba(19,21,33,0.45) 100%);
  z-index: 1;
}
.event-hero-content{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 0;
}
.event-hero-text{
  color: white;
}
.event-hero-label{
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.2);
}
/* salt: 19-59-16-51-48-5 */
.event-hero-text h1{
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px;
  color: white;
}
.event-hero-lead{
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin: 0 0 32px;
  max-width: 540px;
}
.event-hero-cta{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.event-hero-stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.event-stat{
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 32px 24px;
  border-radius: var(--radius2);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.3);
}
.event-stat-number{
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.event-stat-label{
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Services - Asymmetric Grid */
.event-services{
  padding: 100px 0;
  background: var(--bg2);
}
.event-section-header{
  text-align: center;
  margin-bottom: 64px;
}
.event-section-header h2{
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--text);
}
.event-section-header p{
  font-size: 18px;
  color: var(--muted);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.event-services-split{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: stretch;
}

.event-services-left{
  display: flex;
  flex-direction: column;
  min-height: 0;
  align-self: stretch;
}

.event-services-list{
  position: relative;
  display: flex;
  flex: 1;
  min-height: 0;
  max-height: 700px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 28px 20px 32px 32px;
  overflow: hidden;
}

.event-services-list-inner{
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  padding-right: 6px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.event-services-list-inner::-webkit-scrollbar{
  width: 4px;
}

.event-services-list-inner::-webkit-scrollbar-track{
  background: transparent;
}

.event-services-list-inner::-webkit-scrollbar-thumb{
  background: transparent;
}

/* Jedna tanka linija unutar boxa: plava na vrhu, puni se rozom kad slajdaš dolje */
.event-services-scrollbar{
  position: absolute;
  top: 20px;
  bottom: 20px;
  right: 12px;
  width: 4px;
  background: var(--cyan);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.event-services-scrollbar-fill{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: var(--pink);
  border-radius: 2px;
  transition: height 0.12s ease-out;
}

.event-services-list h3{
  margin: 0 0 24px;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}

.event-service-group{
  margin-bottom: 20px;
}

.event-service-group:last-child{
  margin-bottom: 0;
}

.event-service-group h4{
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(19,21,33,.1);
}

.event-service-group ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.event-service-group li{
  position: relative;
  padding: 4px 0 4px 16px;
  font-size: 14px;
  color: rgba(19,21,33,.75);
  line-height: 1.45;
}

.event-service-group li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
}

.event-services-media{
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,.05);
}
.event-services-image{
  height: 320px;
  position: relative;
  overflow: hidden;
}
.event-services-image::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(19,21,33,.32) 100%);
  pointer-events:none;
}
.event-services-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.event-services-copy{
  padding: 28px 30px 30px;
}
.event-services-copy h3{
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
}
.event-services-copy p{
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.65;
}
.event-services-bullets{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.event-services-bullets li{
  position: relative;
  padding-left: 22px;
  color: rgba(19,21,33,.74);
  font-weight: 600;
}
.event-services-bullets li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
}

.event-process-chart{
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 28px;
  box-shadow: 0 4px 22px rgba(0,0,0,.05);
}

.event-process-chart h4{
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}

.process-chart-visual{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.chart-step{
  display: flex;
  align-items: center;
  gap: 16px;
}

.chart-step-number{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.chart-step-content{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.chart-step-bar{
  height: 8px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  border-radius: 4px;
  transition: width 0.3s ease;
}

.chart-step-content span{
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.event-services-right{
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 0;
  align-self: stretch;
  height: 100%;
}

.event-services-images{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex-shrink: 0;
}

.event-image-item{
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.event-image-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.event-image-item img{
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
}

/* Value Cards Grid - Replacement for images */
.event-services-values{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  flex-shrink: 0;
}

.event-value-card{
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 20px 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  min-height: 0;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
}

.event-value-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.event-value-card h4{
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  width: 100%;
}

.event-value-card h4.card-title-gradient{
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.event-value-card p{
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: rgba(19,21,33,.75);
  line-height: 1.5;
  width: 100%;
  flex: 1;
}

/* Process - Horizontal Timeline */
.event-process{
  padding: 100px 0;
  background: white;
}
.event-process-timeline{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  padding: 40px 0;
}
.event-process-timeline::before{
  content: "";
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  opacity: 0.2;
  z-index: 0;
}
.event-process-step{
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.event-process-number{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  color: white;
  box-shadow: 0 4px 15px rgba(32, 201, 255, 0.3);
}
.event-process-step h3{
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
}
.event-process-step p{
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.event-process-connector{
  flex: 0 0 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  margin-top: 30px;
  opacity: 0.3;
}

/* Process - Compact (desno ispod 4 slike): bijela pozadina; brojevi plavi, roza prođe unutra udesno.
   flex: 1 da donji rub bude u ravnini s boxom Popis usluga (ne dirati taj box). */
.event-process-compact{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  justify-content: space-between;
}

.event-process-compact h3{
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 12px;
  text-align: left;
  color: var(--text);
}

.event-process-compact .event-process-timeline{
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  position: relative;
  flex: 1;
  justify-content: space-between;
}

.event-process-compact .event-process-timeline::before{
  display: none;
}

.event-process-compact .event-process-step{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  flex: none;
  opacity: 1;
  visibility: visible;
}

.event-process-compact .event-process-content{
  flex: 1;
  min-width: 0;
}

.event-process-compact .event-process-number{
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #131521;
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--cyan), var(--cyan)) border-box;
  box-sizing: border-box;
}

/* Postepeno punjenje obruba plavo→rozo od 1 do 5 (sve tri stranice: 5 koraka, bez connectora) */
.event-process-compact .event-process-step:nth-child(1) .event-process-number{
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--cyan), var(--cyan)) border-box;
}
.event-process-compact .event-process-step:nth-child(2) .event-process-number{
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--cyan) 0%, var(--cyan) 75%, var(--pink) 75%, var(--pink) 100%) border-box;
}
.event-process-compact .event-process-step:nth-child(3) .event-process-number{
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--cyan) 0%, var(--cyan) 50%, var(--pink) 50%, var(--pink) 100%) border-box;
}
.event-process-compact .event-process-step:nth-child(4) .event-process-number{
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--cyan) 0%, var(--cyan) 25%, var(--pink) 25%, var(--pink) 100%) border-box;
}
.event-process-compact .event-process-step:nth-child(5) .event-process-number{
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--pink), var(--pink)) border-box;
}

.event-process-compact .event-process-content h4{
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
  line-height: 1.3;
}

.event-process-compact .event-process-content p{
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
  margin: 0;
}

.event-process-compact .event-process-connector{
  display: none;
}

/* Uvjeren? CTA Button */
.event-cta-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  padding: 5px 0 0;
}

.event-cta-button{
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 40px;
  background: transparent;
  border: none;
  text-decoration: none;
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.event-cta-button:hover{
  transform: translateY(2px);
  opacity: 0.8;
}

.event-cta-button svg{
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.event-cta-button:hover svg{
  transform: translateY(4px);
}

/* Portfolio - Staggered Grid */
.event-portfolio{
  padding: 100px 0;
  background: var(--bg2);
}
.event-portfolio-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.event-portfolio-item{
  background: white;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-portfolio-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.event-portfolio-featured{
  grid-column: span 8;
  grid-row: span 2;
}
.event-portfolio-tall{
  grid-row: span 2;
}
.event-portfolio-item:not(.event-portfolio-featured):not(.event-portfolio-tall){
  grid-column: span 4;
}
.event-portfolio-media{
  width: 100%;
  height: 240px;
  background: var(--bg2);
}
.event-portfolio-featured .event-portfolio-media{
  height: 400px;
}
.event-portfolio-tall .event-portfolio-media{
  height: 400px;
}
.event-portfolio-content{
  padding: 32px;
}
.event-portfolio-tag{
  display: inline-block;
  padding: 6px 12px;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 12px;
  margin-bottom: 16px;
}
.event-portfolio-content h3{
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
}
.event-portfolio-content p{
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.event-portfolio-cta{
  text-align: center;
  padding: 60px 0;
  background: white;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
}
.event-portfolio-cta h3{
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--text);
}

/* Contact - Split Layout */
.event-contact{
  padding: 15px 0 100px;
  background: white;
}
.event-contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.event-contact-info h2{
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 24px;
  color: var(--text);
}
.event-contact-info > p{
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 48px;
}
.event-contact-details{
  margin-bottom: 48px;
}
.event-contact-detail{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.event-contact-label{
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
}
.event-contact-detail a,
.event-contact-detail span{
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}
.event-contact-detail a:hover{
  color: var(--cyan);
}
.event-contact-social{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.event-contact-social a{
  padding: 12px 20px;
  background: var(--bg2);
  border-radius: var(--radius);
  font-weight: 700;
  color: var(--text);
  border: 1px solid var(--line);
  transition: all 0.2s ease;
}
.event-contact-social a:hover{
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}
.event-contact-form{
  background: var(--bg2);
  padding: 48px;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
}
.event-contact-form label{
  display: block;
  margin-bottom: 24px;
}
.event-contact-form label span{
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.event-contact-form input,
.event-contact-form textarea{
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s ease;
}
.event-contact-form input:focus,
.event-contact-form textarea:focus{
  outline: none;
  border-color: var(--cyan);
}
.event-contact-form textarea{
  resize: vertical;
  min-height: 120px;
}

/* Contact form buttons - white background, black text, cyan border, pink on hover, no shadow */
.contact-form .btn-primary,
.event-contact-form .btn-primary{
  background: white;
  color: var(--text);
  border: 2px solid var(--cyan);
  font-weight: 700;
  box-shadow: none !important;
  transition: border-color 0.3s ease;
}

.contact-form .btn-primary:hover,
.event-contact-form .btn-primary:hover{
  border-color: var(--pink);
  box-shadow: none !important;
  transform: none;
}

/* Responsive */
@media (max-width: 980px){
  .event-hero-content{
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 0;
  }
  .event-hero-text h1{
    font-size: 42px;
  }
  .event-hero-stats{
    grid-template-columns: 1fr;
  }
  .event-service-large,
  .event-service-wide{
    grid-column: span 12;
  }
  .event-service-card:not(.event-service-large):not(.event-service-wide){
    grid-column: span 6;
  }
  /* Tablet - keep row layout but adjust proportions */
  .event-services-split{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: nowrap;
  }
  .event-services-left {
    flex: 0 0 55%;
    min-width: 280px;
  }
  .event-services-right {
    flex: 0 0 45%;
    min-width: 200px;
  }
  /* Tablet - keep desktop scroll behavior, just adjust padding */
  .event-services-list{
    max-height: 700px; /* Keep desktop max-height on tablet */
    padding: 24px 18px 28px 24px;
  }
  .event-services-images{
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .event-services-values{
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .event-value-card{
    padding: 18px 16px;
  }
  .event-value-card h4{
    font-size: 15px;
    margin-bottom: 10px;
  }
  .event-value-card p{
    font-size: 13px;
  }
  .event-image-item img{
    height: auto;
    min-height: 100px;
    max-height: 140px;
  }
  .event-process-timeline{
    flex-direction: column;
    gap: 40px;
  }
  .event-process-timeline::before{
    display: none;
  }
  .event-process-connector{
    width: 2px;
    height: 40px;
    margin: 0 auto;
  }
  /* Tablet - keep desktop behavior, just adjust padding */
  .event-process-compact{
    padding: 18px 16px 20px;
  }
  .event-process-compact .event-process-connector{
    margin-left: 15px;
  }
  .event-portfolio-featured,
  .event-portfolio-tall{
    grid-column: span 12;
    grid-row: span 1;
  }
  .event-portfolio-item:not(.event-portfolio-featured):not(.event-portfolio-tall){
    grid-column: span 12;
  }
  .event-contact-grid{
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 640px){
  .event-hero-text h1{
    font-size: 32px;
  }
  .event-section-header h2{
    font-size: 32px;
  }
  .event-service-card{
    padding: 32px 24px;
  }
  .event-service-card:not(.event-service-large):not(.event-service-wide){
    grid-column: span 12;
  }
  /* Small mobile (640px) - panels already have fixed height from 768px media query */
  .event-services-list{ 
    padding: 24px 20px; 
  }
  .event-image-item img{ 
    height: 90px; 
  }
  .event-process-compact h3{
    font-size: 16px;
  }
  .event-process-compact .event-process-number{
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 12px;
  }
  .event-process-compact .event-process-content h4{
    font-size: 13px;
  }
  .event-process-compact .event-process-content p{
    font-size: 11px;
  }
  .event-process-compact .event-process-connector{
    margin-left: 14px;
  }
  .event-cta-button{
    font-size: 16px;
    padding: 14px 28px;
  }
  .event-cta-button svg{
    width: 18px;
    height: 18px;
  }
  .event-contact-form{
    padding: 32px 24px;
  }
}

/* ============================================
   MOBILE RESPONSIVE OPTIMIZATIONS
   ============================================ */

/* Mobile First - 768px and below */
@media (max-width: 768px) {
  /* Container adjustments */
  .container {
    width: calc(100% - 32px);
    padding: 0 16px;
  }

  /* Header & Navigation - KEEP IN ONE ROW */
  .site-header {
    padding: 0;
  }
  .header-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    flex-wrap: nowrap;
  }
  .header-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    min-width: 0;
  }
  .brand {
    flex-shrink: 0;
  }
  .brand-text {
    font-size: 18px;
    white-space: nowrap;
  }
  .header-tagline {
    display: none; /* Hide tagline on mobile to save space */
  }
  
  /* Navigation - Keep horizontal, allow scroll if needed */
  .site-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
    flex-shrink: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding: 0 4px;
  }
  .site-nav::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  .site-nav a {
    padding: 8px 10px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .site-nav a::after {
    display: none;
  }
  .site-nav .nav-cta {
    padding: 8px 12px;
    min-height: 40px;
    font-size: 13px;
    margin-left: 4px;
  }

  /* Hero Section */
  .hero {
    padding: 60px 0 40px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero h1 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .lead {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .btn {
    width: 100%;
    min-height: 48px;
    padding: 14px 20px;
    font-size: 15px;
    justify-content: center;
  }
  .hero-metrics {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .metric {
    width: 100%;
    padding: 14px 16px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-box-wide {
    grid-column: span 1;
  }
  .service-box-image-wrapper {
    height: 180px; /* Mobile only - desktop keeps 160px */
  }
  
  /* Ensure desktop maintains original values */
  @media (min-width: 1025px) {
    .service-box-image-wrapper {
      height: 160px !important;
    }
    .service-box img {
      height: 160px !important;
    }
    .services-grid {
      grid-template-columns: repeat(2, 1fr) !important;
    }
    .service-box-wide {
      grid-column: span 2 !important;
    }
    /* Panels - Desktop keeps original scroll behavior */
    .event-services-list {
      height: auto !important;
      max-height: 700px !important;
      min-height: 0 !important;
    }
    .event-process-compact {
      height: auto !important;
      max-height: none !important;
      min-height: 0 !important;
    }
  }

  /* Sections */
  .section {
    padding: 48px 0;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
  }
  .section-head h2 {
    font-size: clamp(24px, 6vw, 28px);
    line-height: 1.2;
  }
  .section-head p {
    font-size: 15px;
    line-height: 1.6;
  }
  .section-head-centered {
    text-align: left;
    align-items: flex-start;
  }
  .section-head-centered h2 {
    font-size: clamp(24px, 6vw, 28px);
  }
  .section-head-centered p {
    max-width: 100%;
    font-size: 15px;
  }

  /* Cards Grid */
  .cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .card {
    width: 100%;
  }
  .card-image {
    height: 200px;
  }
  .card-content {
    padding: 20px;
  }
  .card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  /* Projects Grid */
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .project-tile {
    grid-column: span 12;
  }
  .project-featured {
    grid-column: span 12;
  }
  .project-featured .project-media {
    height: 300px;
  }
  .project-media {
    height: 200px;
  }
  .project-meta {
    padding: 16px;
  }
  .project-meta h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .project-meta p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* About Section */
  .about-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-main h3 {
    font-size: clamp(22px, 5vw, 26px);
    margin-bottom: 16px;
  }
  .about-main p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .about-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-item {
    padding: 20px;
  }
  .feature-item h4 {
    font-size: 17px;
    margin-bottom: 8px;
  }
  .feature-item p {
    font-size: 14px;
    line-height: 1.6;
  }
  .about-miro {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }
  .about-miro-image {
    max-width: 100%;
    margin: 0 auto;
  }
  .about-miro-text h4 {
    font-size: clamp(20px, 5vw, 24px);
    margin-bottom: 16px;
  }
  .about-miro-text p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  /* Contact Section */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
  }
  .contact-form {
    padding: 24px 20px;
    width: 100%;
    box-sizing: border-box;
  }
  .contact-form label {
    display: block;
    margin-bottom: 16px;
    width: 100%;
  }
  .contact-form label span {
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
    padding: 14px 16px;
    min-height: 48px;
    width: 100%;
    box-sizing: border-box;
  }
  .contact-form textarea {
    min-height: 120px;
    resize: vertical;
  }
  .contact-form button {
    width: 100%;
    min-height: 48px;
    font-size: 15px;
    box-sizing: border-box;
  }
  .contact-aside {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .process-visual {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    padding: 20px 16px;
    max-height: none; /* Remove fixed height to prevent overlap */
    min-height: auto;
  }
  .process-step {
    width: 100%;
    flex: none;
    text-align: left;
    align-items: flex-start;
  }
  .process-icon {
    margin: 0 0 12px 0;
  }
  .process-arrow {
    transform: rotate(90deg);
    margin: 4px 0;
    align-self: center;
  }
  .process-step h4 {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .process-step p {
    font-size: 13px;
    line-height: 1.5;
  }
  .contact-card {
    padding: 24px 20px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0;
  }
  .contact-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .contact-lines {
    gap: 12px;
    margin-top: 16px;
  }
  .contact-lines > div {
    padding: 12px 0;
    font-size: 14px;
    display: block;
    width: 100%;
  }

  /* Video Slider */
  .video-slider {
    padding: 24px 0;
  }
  .video-item {
    width: 280px;
    max-width: calc(100vw - 48px);
  }
  .slider-content {
    gap: 16px;
  }
  .slider-track {
    gap: 16px;
  }

  /* Callout */
  .callout {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px;
  }
  .callout h3 {
    font-size: 18px;
  }
  .callout p {
    font-size: 14px;
  }
  .callout .btn {
    width: 100%;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 32px 0;
  }
  .footer-links {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .footer-links a {
    padding: 12px 0;
    min-height: 44px;
    font-size: 15px;
  }

  /* Event Pages Hero */
  .event-hero-full {
    min-height: 70vh;
  }
  .event-hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 0;
  }
  .event-hero-text h1 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .event-hero-lead {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .event-hero-cta {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .event-hero-cta .btn {
    width: 100%;
  }
  .event-hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
  }
  .event-stat {
    flex: 1;
    min-width: calc(50% - 8px);
  }
  .event-stat-number {
    font-size: 24px;
  }
  .event-stat-label {
    font-size: 12px;
  }

  /* Event Services - Keep row layout on mobile */
  .event-services-split {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding-bottom: 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
  }
  .event-services-split::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  
  /* Left box - Popis usluga */
  .event-services-left {
    flex: 0 0 60%;
    min-width: 260px;
    max-width: 420px;
    flex-shrink: 0;
    position: relative;
    box-sizing: border-box;
  }
  /* Panel A: Popis usluga - Fixed height with scroll */
  .event-services-list {
    height: clamp(320px, 55vh, 460px);
    max-height: clamp(320px, 55vh, 460px);
    min-height: clamp(320px, 55vh, 460px);
    padding: 20px 16px 24px 20px;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .event-services-list h3 {
    flex-shrink: 0;
    margin-bottom: 20px;
  }
  .event-services-list-inner {
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    min-height: 0;
    padding-right: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: rgba(19,21,33,.2) transparent;
  }
  .event-services-list-inner::-webkit-scrollbar {
    width: 4px;
  }
  .event-services-list-inner::-webkit-scrollbar-track {
    background: transparent;
  }
  .event-services-list-inner::-webkit-scrollbar-thumb {
    background: rgba(19,21,33,.2);
    border-radius: 2px;
  }
  .event-services-scrollbar {
    display: none; /* Hide custom scrollbar on mobile */
  }
  
  /* Right block - Images + Panel B */
  .event-services-right {
    flex: 0 0 40%;
    min-width: 180px;
    flex-shrink: 0;
    height: auto;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .event-services-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
  }
  
  /* Value Cards - Responsive */
  .event-services-values {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
  }
  .event-value-card {
    padding: 18px 16px;
  }
  .event-value-card h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .event-value-card p {
    font-size: 13px;
  }
  .event-image-item {
    width: 100%;
    height: auto;
    position: relative;
    box-sizing: border-box;
  }
  .event-image-item img {
    width: 100%;
    height: auto;
    min-height: 80px;
    max-height: 120px;
    object-fit: cover;
    display: block;
  }
  
  /* Panel B: Kako radimo - Fixed height with scroll (same as Panel A) */
  .event-process-compact {
    height: clamp(320px, 55vh, 460px);
    max-height: clamp(320px, 55vh, 460px);
    min-height: clamp(320px, 55vh, 460px);
    padding: 20px 16px 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: none;
  }
  .event-process-compact h3 {
    flex-shrink: 0;
    margin-bottom: 12px;
  }
  .event-process-compact .event-process-timeline {
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    min-height: 0;
    padding-right: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: rgba(19,21,33,.2) transparent;
  }
  .event-process-compact .event-process-timeline::-webkit-scrollbar {
    width: 4px;
  }
  .event-process-compact .event-process-timeline::-webkit-scrollbar-track {
    background: transparent;
  }
  .event-process-compact .event-process-timeline::-webkit-scrollbar-thumb {
    background: rgba(19,21,33,.2);
    border-radius: 2px;
  }
  
  .event-process-timeline {
    flex-direction: column;
    gap: 24px;
  }
  .event-process-step {
    width: 100%;
  }
  .event-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .event-contact-form {
    padding: 24px 20px;
  }
  .event-contact-form input,
  .event-contact-form textarea {
    font-size: 16px;
    padding: 14px 16px;
    min-height: 48px;
  }
  .event-contact-form textarea {
    min-height: 120px;
  }
  .event-contact-form button {
    width: 100%;
    min-height: 48px;
  }

  /* Service Modal */
  .service-modal-content {
    max-width: 100%;
    margin: 20px;
    max-height: 90vh;
  }
  .service-modal-body {
    padding: 32px 20px;
  }
  .service-modal-body h2 {
    font-size: clamp(24px, 6vw, 28px);
  }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
  /* Typography adjustments */
  .hero h1 {
    font-size: 28px;
  }
  .section-head h2 {
    font-size: 24px;
  }
  .section-head-centered h2 {
    font-size: 24px;
  }
  .card h3 {
    font-size: 17px;
  }
  .project-meta h3 {
    font-size: 17px;
  }

  /* Container */
  .container {
    width: calc(100% - 24px);
    padding: 0 12px;
  }

  /* Header - Keep in one row even on small screens */
  .header-inner {
    padding: 10px 0;
    gap: 8px;
  }
  .brand-text {
    font-size: 16px;
  }
  .site-nav {
    gap: 2px;
  }
  .site-nav a {
    padding: 6px 8px;
    font-size: 12px;
    min-height: 36px;
  }
  .site-nav .nav-cta {
    padding: 6px 10px;
    font-size: 12px;
    min-height: 36px;
  }
  .header-tagline {
    font-size: 11px;
  }

  /* Hero */
  .hero {
    padding: 48px 0 32px;
  }
  .hero h1 {
    font-size: 26px;
    margin-bottom: 14px;
  }
  .lead {
    font-size: 15px;
  }
  .btn {
    font-size: 14px;
    padding: 12px 18px;
  }

  /* Sections */
  .section {
    padding: 40px 0;
  }
  .section-head h2 {
    font-size: 22px;
  }
  .section-head p {
    font-size: 14px;
  }

  /* Cards */
  .card-image {
    height: 180px;
  }
  .card-content {
    padding: 18px;
  }
  .card h3 {
    font-size: 16px;
  }
  .card p {
    font-size: 14px;
  }

  /* Projects */
  .project-featured .project-media {
    height: 250px;
  }
  .project-media {
    height: 180px;
  }
  .project-meta {
    padding: 14px;
  }
  .project-meta h3 {
    font-size: 16px;
  }
  .project-meta p {
    font-size: 13px;
  }

  /* Video Slider */
  .video-item {
    width: 240px;
    max-width: calc(100vw - 32px);
  }

  /* Event Hero */
  .event-hero-full {
    min-height: 60vh;
  }
  .event-hero-content {
    padding: 48px 0;
  }
  .event-hero-text h1 {
    font-size: 26px;
  }
  .event-hero-lead {
    font-size: 15px;
  }
  .event-hero-stats {
    flex-direction: column;
    gap: 12px;
  }
  .event-stat {
    width: 100%;
    min-width: 100%;
  }
  .event-stat-number {
    font-size: 22px;
  }

  /* Contact Forms */
  .contact-form,
  .event-contact-form {
    padding: 20px 16px;
  }
  .contact-form input,
  .contact-form textarea,
  .event-contact-form input,
  .event-contact-form textarea {
    font-size: 16px; /* Prevent zoom on iOS */
    padding: 12px 14px;
  }
  
  /* Event Services - Adjust for very small screens (480px) */
  .event-services-left {
    min-width: 240px;
    flex: 0 0 58%;
  }
  .event-services-right {
    min-width: 160px;
    flex: 0 0 42%;
    gap: 10px;
  }
  
  /* Panels - Keep same height, adjust padding */
  .event-services-list {
    height: clamp(300px, 50vh, 420px);
    max-height: clamp(300px, 50vh, 420px);
    min-height: clamp(300px, 50vh, 420px);
    padding: 18px 14px 20px 18px;
  }
  .event-services-list h3 {
    font-size: 20px;
    margin-bottom: 18px;
  }
  .event-service-group {
    margin-bottom: 18px;
  }
  .event-service-group h4 {
    font-size: 14px;
  }
  .event-service-group li {
    font-size: 13px;
    padding: 3px 0 3px 14px;
  }
  
  .event-process-compact {
    height: clamp(300px, 50vh, 420px);
    max-height: clamp(300px, 50vh, 420px);
    min-height: clamp(300px, 50vh, 420px);
    padding: 18px 14px 16px;
  }
  .event-process-compact h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .event-image-item img {
    min-height: 70px;
    max-height: 100px;
  }
  
  /* Value Cards - Small mobile */
  .event-services-values {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .event-value-card {
    padding: 16px 14px;
  }
  .event-value-card h4 {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .event-value-card p {
    font-size: 12px;
  }

  /* Footer */
  .footer-inner {
    padding: 24px 0;
  }
  .footer-links a {
    font-size: 14px;
  }
}

  /* Additional responsive fixes */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Prevent horizontal scroll */
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }
  
  /* Fix any fixed widths that might cause overflow */
  .video-item {
    max-width: 100%;
  }
  
  /* Fix service box images - keep height: 100% to maintain aspect ratio */
  .service-box-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Fix hero shapes to not overflow */
  .shape-a,
  .shape-b,
  .shape-c {
    opacity: 0.3;
  }
  
  /* Ensure all containers don't overflow */
  .hero-visual,
  .hero-bg {
    overflow: hidden;
  }
  
  /* Ensure contact section elements don't overlap */
  .contact-grid,
  .contact-form,
  .contact-aside,
  .contact-card,
  .process-visual {
    position: relative;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Remove any negative margins that could cause overlap */
  .contact-form,
  .contact-aside,
  .contact-card {
    margin-left: 0;
    margin-right: 0;
  }
}

/* GDPR Checkbox in Forms */
.gdpr-checkbox-wrapper {
  margin-top: 16px;
  margin-bottom: 16px;
}

.gdpr-checkbox-wrapper label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

.gdpr-checkbox-wrapper input[type="checkbox"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--pink);
  flex-shrink: 0;
}

.gdpr-checkbox-wrapper a {
  color: var(--pink);
  text-decoration: underline;
}