/* ============================================================
   Mini bager Kragujevac — Main Stylesheet
   Aesthetic: Industrial / Editorial / Construction
   Font: Barlow Condensed (headings) + Barlow (body)
   Palette: Deep earth #1a1208 · Amber #E8A020 · Warm white #F7F2EA
   ============================================================ */

/* ─── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --amber:        #E8A020;
  --amber-dark:   #C47D0A;
  --amber-light:  #F5C04A;
  --earth:        #1a1208;
  --earth-mid:    #2d2010;
  --earth-light:  #3d2d16;
  --sand:         #C4A97A;
  --sand-light:   #E8D8BC;
  --cream:        #F7F2EA;
  --cream-dark:   #EDE4D4;
  --text:         #1a1208;
  --text-muted:   #6B5A42;
  --white:        #FFFFFF;

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Barlow', 'Segoe UI', sans-serif;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;

  --shadow-sm: 0 2px 8px rgba(26,18,8,.10);
  --shadow-md: 0 6px 24px rgba(26,18,8,.14);
  --shadow-lg: 0 16px 48px rgba(26,18,8,.20);

  --ease: cubic-bezier(.25,.46,.45,.94);
  --max-w: 1180px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Scroll lock when mobile nav is open — use html only so fixed overlay isn’t clipped on iOS. */
html.nav-open {
  overflow: hidden;
  overscroll-behavior: none;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ─── CONTAINER ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* ─── SECTION SHARED ────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(232,160,32,.12);
  border: 1px solid rgba(232,160,32,.3);
  padding: .3rem .75rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.section-tag--light {
  color: var(--amber-light);
  background: rgba(232,160,32,.1);
  border-color: rgba(232,160,32,.25);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: .01em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: .75rem;
}

.section-header--light h2 { color: var(--white); }

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin-inline: auto;
}

.section-desc--light { color: rgba(255,255,255,.6); }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--amber);
  color: var(--earth);
  padding: .9rem 1.8rem;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  transition: background 200ms var(--ease), box-shadow 200ms var(--ease), transform 150ms var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn-call:hover, .btn-call:focus-visible {
  background: var(--amber-light);
  box-shadow: 0 6px 24px rgba(232,160,32,.4);
  transform: translateY(-2px);
}

.btn-call--dark {
  background: var(--earth);
  color: var(--amber);
  border-color: var(--earth);
}

.btn-call--dark:hover, .btn-call--dark:focus-visible {
  background: var(--earth-mid);
  box-shadow: 0 6px 24px rgba(26,18,8,.3);
}

.btn-call--accent {
  background: var(--amber);
  color: var(--earth);
  font-size: 1.05rem;
  padding: 1rem 2rem;
  width: 100%;
  justify-content: center;
}

.btn-call--accent:hover, .btn-call--accent:focus-visible {
  background: var(--amber-light);
  box-shadow: 0 6px 28px rgba(232,160,32,.5);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  border: 1.5px solid rgba(255,255,255,.35);
  padding: .85rem 1.6rem;
  border-radius: var(--r-sm);
  transition: border-color 200ms, color 200ms, background 200ms;
}

.btn-outline:hover, .btn-outline:focus-visible {
  color: var(--white);
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
}

/* ─── HEADER ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  background: rgba(26,18,8,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232,160,32,.12);
  transition: box-shadow 250ms var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(26,18,8,.5);
  border-bottom-color: rgba(232,160,32,.2);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 1.25rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
  transition: opacity 180ms;
}
.logo:hover { opacity: .85; }

.logo-mark { display: flex; align-items: center; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

.logo-city {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--amber);
}

/* Nav */
.nav-main {
  margin-left: auto;
}

.nav-main ul {
  display: flex;
  gap: .15rem;
}

.nav-main a {
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  padding: .5rem .85rem;
  border-radius: var(--r-sm);
  transition: color 180ms, background 180ms;
}

.nav-main a:hover, .nav-main a:focus-visible {
  color: var(--white);
  background: rgba(255,255,255,.07);
}

/* Header phone */
.header-phone {
  display: none;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1.5px solid rgba(232,160,32,.4);
  padding: .5rem 1rem;
  border-radius: var(--r-sm);
  transition: border-color 180ms, background 180ms, color 180ms;
  white-space: nowrap;
}

.header-phone:hover, .header-phone:focus-visible {
  border-color: var(--amber);
  background: rgba(232,160,32,.1);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 140;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  transition: transform 250ms var(--ease), opacity 200ms;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 767px) {
  /* backdrop-filter creates a containing block for fixed descendants in WebKit —
     menu overlay would be clipped to header height without this. */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(26,18,8,.97);
  }

  .nav-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    max-height: 100dvh;
    max-height: -webkit-fill-available;
    box-sizing: border-box;
    background: rgba(20,14,6,1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: max(4.75rem, calc(env(safe-area-inset-top, 0px) + 3.25rem))
      max(1.25rem, env(safe-area-inset-right, 0px))
      max(1.5rem, env(safe-area-inset-bottom, 0px))
      max(1.25rem, env(safe-area-inset-left, 0px));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    transform: translateX(110%);
    transition: transform 300ms cubic-bezier(.4,0,.2,1);
    z-index: 130;
    margin-left: 0;
  }
  .nav-main.open { transform: translateX(0); }
  .nav-main ul {
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
  }
  .nav-main a {
    font-size: 1.6rem;
    font-weight: 800;
    padding: .8rem 2rem;
    color: rgba(255,255,255,.7);
    letter-spacing: .08em;
  }
  .nav-main a:hover { color: var(--amber); background: none; }
}

@media (min-width: 768px) {
  .hamburger { display: none; }
  .header-phone { display: flex; }
  .nav-main { margin-left: auto; }
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: 68px;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.03);
  transition: transform 8s ease-out;
}

.hero-image img.loaded { transform: scale(1); }

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(26,18,8,.88) 0%, rgba(26,18,8,.55) 60%, rgba(26,18,8,.3) 100%),
    linear-gradient(to bottom, transparent 40%, rgba(26,18,8,.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  padding-block: 6rem 2rem;
}

/* Hero typography — bold condensed, staggered */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(232,160,32,.4);
  padding: .3rem .8rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
  animation: fadeUp .6s .1s both;
}

h1 {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-h1-top {
  font-size: clamp(3rem, 8vw, 6.5rem);
  animation: fadeUp .6s .2s both;
  color: var(--white);
}

.hero-h1-mid {
  font-size: clamp(2.2rem, 6vw, 5rem);
  color: rgba(255,255,255,.55);
  animation: fadeUp .6s .3s both;
}

.hero-h1-bot {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  color: var(--amber);
  animation: fadeUp .6s .4s both;
}

.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.65);
  margin-bottom: 2.25rem;
  max-width: 440px;
  animation: fadeUp .6s .45s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  animation: fadeUp .6s .55s both;
}

/* Stats bar */
.hero-strip {
  position: relative;
  z-index: 1;
  background: rgba(232,160,32,.95);
  backdrop-filter: blur(8px);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding-block: .2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .85rem 2rem;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--earth);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(26,18,8,.65);
  margin-top: .2rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(26,18,8,.2);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .stat-divider { display: none; }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat {
    padding: .85rem 1rem;
    border: none !important;
  }
  .stat:nth-child(1),
  .stat:nth-child(3) { border-right: 1px solid rgba(26,18,8,.15) !important; }
  .stat:nth-child(1),
  .stat:nth-child(2) { border-bottom: 1px solid rgba(26,18,8,.15) !important; }
}

/* ─── SERVICES ──────────────────────────────────────────────── */
.services {
  padding-block: 6rem;
  background: var(--cream);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--amber-light) 50%, transparent 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(196,169,122,.25);
  border-radius: var(--r-md);
  padding: 2rem 1.75rem;
  overflow: hidden;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms;
  animation: fadeUp .5s calc(var(--i) * 80ms + .1s) both;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,160,32,.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-num {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(196,169,122,.12);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.02em;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(232,160,32,.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--amber-dark);
  transition: background 250ms, color 250ms;
}

.service-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.service-card:hover .service-icon-wrap {
  background: var(--amber);
  color: var(--earth);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: .6rem;
}

.service-card p {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── GALLERY / CAROUSEL ────────────────────────────────────── */
.gallery {
  padding-block: 6rem;
  background: var(--earth);
  position: relative;
  overflow: hidden;
}

.gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(232,160,32,.04) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(232,160,32,.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Carousel wrapper */
.carousel {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  user-select: none;
}

/* Main large image */
.carousel-main {
  position: relative;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.carousel-main-img-wrap {
  flex: 1;
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: rgba(255,255,255,.04);
  aspect-ratio: 16/10;
}

@media (max-width: 560px) {
  .carousel-main-img-wrap { aspect-ratio: 4/3; }
}

#carousel-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 220ms ease;
  display: block;
}

#carousel-main-img.fade {
  opacity: 0;
}

/* Counter badge */
.carousel-counter {
  position: absolute;
  bottom: .75rem;
  right: .75rem;
  background: rgba(26,18,8,.75);
  color: rgba(255,255,255,.7);
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .25rem .65rem;
  border-radius: var(--r-sm);
  backdrop-filter: blur(6px);
  pointer-events: none;
}

#carousel-current { color: var(--amber); }

/* Arrow buttons */
.carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 180ms, color 180ms, border-color 180ms, transform 150ms;
  flex-shrink: 0;
}

.carousel-arrow:hover {
  background: var(--amber);
  color: var(--earth);
  border-color: var(--amber);
  transform: scale(1.08);
}

@media (max-width: 480px) {
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(26,18,8,.65);
    backdrop-filter: blur(4px);
  }
  .carousel-arrow:hover { transform: translateY(-50%) scale(1.08); }
  .carousel-arrow--prev { left: .5rem; }
  .carousel-arrow--next { right: .5rem; }
  .carousel-main { position: relative; }
  .carousel-main-img-wrap { margin-inline: 0; width: 100%; }
}

/* Thumbnail strip */
.carousel-thumbs-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(232,160,32,.4) rgba(255,255,255,.05);
  border-radius: var(--r-sm);
  padding-block: .25rem;
}

.carousel-thumbs-wrap::-webkit-scrollbar {
  height: 4px;
}
.carousel-thumbs-wrap::-webkit-scrollbar-track {
  background: rgba(255,255,255,.05);
  border-radius: 2px;
}
.carousel-thumbs-wrap::-webkit-scrollbar-thumb {
  background: rgba(232,160,32,.4);
  border-radius: 2px;
}

.carousel-thumbs {
  display: flex;
  gap: .5rem;
  padding: .25rem .1rem .5rem;
  width: max-content;
}

.carousel-thumb {
  flex-shrink: 0;
  width: 90px;
  height: 68px;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: rgba(255,255,255,.04);
  transition: border-color 180ms, opacity 180ms, transform 150ms;
  opacity: .55;
}

.carousel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.carousel-thumb:hover {
  opacity: .85;
  transform: translateY(-2px);
}

.carousel-thumb.active {
  border-color: var(--amber);
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 560px) {
  .carousel-thumb { width: 72px; height: 54px; }
}

/* ─── ABOUT ─────────────────────────────────────────────────── */
.about {
  padding-block: 6rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,32,.06) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--earth);
  border: 3px solid var(--amber);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--amber);
  letter-spacing: .02em;
  line-height: 1;
}

.about-badge-text {
  display: block;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: .25rem;
}

.about-content .section-tag { margin-bottom: 1rem; }

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: .01em;
  text-transform: uppercase;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: .9rem;
  line-height: 1.7;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-block: 1.75rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  font-size: .97rem;
  color: var(--text-muted);
}

.about-list strong { color: var(--text); font-weight: 600; }

.about-list-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(232,160,32,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-dark);
  margin-top: .05rem;
}

/* ─── CONTACT ───────────────────────────────────────────────── */
.contact {
  padding-block: 6rem;
  background: var(--earth-mid);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(232,160,32,.05) 0%, transparent 55%);
  pointer-events: none;
}

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

@media (min-width: 900px) {
  /* Stretch both columns to the same row height so the CTA card can align to the top
     and grow with the left column (avoids “floating” CTA centered beside tall content). */
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
  }

  .contact-right {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .contact-cta-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.contact-left .section-tag { margin-bottom: 1rem; }

.contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  letter-spacing: .01em;
  text-transform: uppercase;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-left > p {
  color: rgba(255,255,255,.55);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.contact-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  column-gap: 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  transition: border-color 200ms, background 200ms;
}

.contact-card:hover {
  border-color: rgba(232,160,32,.3);
  background: rgba(232,160,32,.05);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,160,32,.12);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}

.contact-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .2rem;
  min-width: 0;
}

.contact-card-label {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  line-height: 1.25;
}

.contact-card-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
  line-height: 1.3;
  transition: color 180ms;
}

a.contact-card-value:hover { color: var(--amber); }

/* Contact map */
.contact-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(232,160,32,.2);
  margin-bottom: 1.5rem;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 220px;
}

/* Contact CTA box */
.contact-right {
  position: relative;
}

.contact-cta-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(232,160,32,.2);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box-decoration {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: .4;
}

.cta-box-decoration svg {
  width: 100%;
  height: 100%;
}

.cta-box-label {
  position: relative;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: .75rem;
}

.cta-box-number {
  position: relative;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 900;
  color: var(--amber);
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: .75rem;
  transition: color 180ms;
}

.cta-box-number:hover { color: var(--amber-light); }

.cta-box-note {
  position: relative;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--earth);
  border-top: 1px solid rgba(255,255,255,.06);
  padding-block: 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .footer-inner { grid-template-columns: 1fr 1fr; align-items: start; }
}

.logo--footer .logo-name { color: rgba(255,255,255,.5); }

.footer-desc {
  margin-top: 1rem;
  font-size: .875rem;
  color: rgba(255,255,255,.3);
  line-height: 1.65;
  max-width: 300px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .footer-links { align-items: flex-end; }
}

.footer-links nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .15rem;
}

@media (min-width: 640px) {
  .footer-links nav ul { justify-content: flex-end; }
}

.footer-links nav a {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  padding: .3rem .7rem;
  border-radius: var(--r-sm);
  transition: color 180ms, background 180ms;
}

.footer-links nav a:hover { color: var(--amber); background: rgba(232,160,32,.08); }

.footer-phone {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--amber);
  letter-spacing: .03em;
  transition: color 180ms;
}

.footer-phone:hover { color: var(--amber-light); }

.footer-bottom {
  background: rgba(0,0,0,.25);
  border-top: 1px solid rgba(255,255,255,.05);
  padding-block: 1.1rem;
  margin-top: 2rem;
}

.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem;
}

.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.25);
}

/* ─── FAB CALL (mobile) ─────────────────────────────────────── */
.fab-call {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 60px;
  height: 60px;
  background: #4CAF50;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(76,175,80,.5), 0 0 0 0 rgba(76,175,80,.4);
  transition: transform 180ms var(--ease), box-shadow 180ms;
  animation: pulse 2.5s ease-out 2s infinite;
}

.fab-call:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(76,175,80,.6);
  animation: none;
}

@media (min-width: 768px) {
  .fab-call { display: none; }
}

/* ─── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%   { box-shadow: 0 4px 20px rgba(232,160,32,.5), 0 0 0 0 rgba(232,160,32,.4); }
  70%  { box-shadow: 0 4px 20px rgba(232,160,32,.5), 0 0 0 16px rgba(232,160,32,0); }
  100% { box-shadow: 0 4px 20px rgba(232,160,32,.5), 0 0 0 0 rgba(232,160,32,0); }
}

/* ─── FOCUS / A11Y ──────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ─── REDUCED MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ─── MOBILE FIXES (≤ 480px) ───────────────────────────────── */
@media (max-width: 480px) {

  /* Hero — manji padding, dugmad u kolonu */
  .hero-content { padding-block: 4rem 1.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-call, .btn-outline { width: 100%; justify-content: center; font-size: .95rem; }

  /* Services — 1 kolona */
  .services-grid { grid-template-columns: 1fr; }

  /* About — smanji padding na badge */
  .about-badge { bottom: -.75rem; right: -.5rem; padding: .75rem 1rem; }
  .about-badge-num { font-size: 1.5rem; }
  .about-features { grid-template-columns: 1fr; }

  /* Contact — full width CTA */
  .btn-call--accent { font-size: 1rem; }
  .cta-box-number { font-size: 2rem; }

  /* Footer */
  .footer-bottom .container { flex-direction: column; gap: .25rem; text-align: center; }

  /* Carousel arrows — unutar slike */
  .carousel-main { position: relative; }
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    background: rgba(26,18,8,.6);
    backdrop-filter: blur(4px);
    border-color: rgba(255,255,255,.15);
  }
  .carousel-arrow:hover { transform: translateY(-50%) scale(1.05); }
  .carousel-arrow--prev { left: .5rem; }
  .carousel-arrow--next { right: .5rem; }
  .carousel-main-img-wrap { width: 100%; }

  /* Sekcije — manje padding */
  .services, .gallery, .about, .contact, .site-footer { padding-block: 4rem; }

  /* Section heading — manji */
  .section-header { margin-bottom: 2rem; }
}
