/* ============================================
   VULKANIZACIJA MAREK — Design System
   Premium automotive website
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Variables --- */
:root {
  --color-bg: #0a0a0a;
  --color-bg-elevated: #141414;
  --color-bg-card: #1a1a1a;
  --color-bg-card-hover: #222222;
  --color-surface: #111111;
  --color-border: #2a2a2a;
  --color-border-subtle: #1e1e1e;
  --color-text: #ffffff;
  --color-text-muted: #999999;
  --color-text-subtle: #666666;
  --color-accent: #2d7ff9;
  --color-accent-hover: #4a93ff;
  --color-accent-dark: #1f63c7;
  --color-overlay: rgba(0, 0, 0, 0.6);

  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --container-max: 1320px;
  --container-padding: 4rem;
  --section-padding: 120px;
  --section-padding-sm: 80px;
  --card-radius: 6px;
  --radius-sm: 4px;
  --radius-lg: 10px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* --- Typography --- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 18px;
  background: var(--color-accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--color-text);
}

.section-heading--xl {
  font-size: clamp(40px, 5.5vw, 72px);
}

.section-heading--lg {
  font-size: clamp(32px, 4vw, 56px);
}

.section-heading--md {
  font-size: clamp(26px, 3vw, 40px);
}

.section-heading--sm {
  font-size: clamp(20px, 2.2vw, 28px);
}

.section-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 600px;
}

.section-text--lg {
  font-size: 18px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-medium);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45, 127, 249, 0.28);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 12px 24px;
  font-size: 13px;
}

.btn-arrow {
  transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Circle Expand Button */
.circle-expand-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 32px;
  background: #333333;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  overflow: hidden;
  transition: color 0.4s ease;
  text-decoration: none;
  width: auto;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.circle-expand-button .label {
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
  white-space: nowrap;
}

.circle-expand-button .circle-icon {
  position: relative;
  width: 48px;
  height: 48px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  flex-shrink: 0;
}

.circle-expand-button .circle-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: var(--color-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.circle-expand-button:hover .circle-icon::before {
  transform: translate(-50%, -50%) scale(10);
}

.circle-expand-button:hover .label {
  color: #ffffff;
}

.circle-expand-button svg {
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.circle-expand-button:hover svg {
  transform: rotate(45deg);
}

.circle-expand-button:active .circle-icon::before {
  transform: translate(-50%, -50%) scale(10);
}

.circle-expand-button:active .label {
  color: #000000;
}

/* ============================================
   NAV LOAD ANIMATION
   ============================================ */
@keyframes navItemIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.header-logo {
  animation: navItemIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.05s both;
}

.header-nav a:nth-child(1) { animation: navItemIn 0.45s cubic-bezier(0.4,0,0.2,1) 0.12s both; }
.header-nav a:nth-child(2) { animation: navItemIn 0.45s cubic-bezier(0.4,0,0.2,1) 0.20s both; }
.header-nav a:nth-child(3) { animation: navItemIn 0.45s cubic-bezier(0.4,0,0.2,1) 0.28s both; }
.header-nav a:nth-child(4) { animation: navItemIn 0.45s cubic-bezier(0.4,0,0.2,1) 0.36s both; }
.header-nav a:nth-child(5) { animation: navItemIn 0.45s cubic-bezier(0.4,0,0.2,1) 0.44s both; }

.header-cta {
  animation: navItemIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.52s both;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: transform var(--transition-medium), opacity var(--transition-medium), background var(--transition-medium), border-color var(--transition-medium);
  will-change: transform;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--color-border);
}

.site-header.is-hidden {
  transform: translateY(-110%);
  opacity: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-logo img {
  height: 48px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-nav a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  position: relative;
  padding: 4px 0;
}

.site-header:not(.scrolled) .header-nav a {
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.site-header:not(.scrolled) .header-nav a:hover,
.site-header:not(.scrolled) .header-nav a.active {
  color: rgba(255, 255, 255, 0.98);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-medium);
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--color-text);
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

.header-cta {
  flex-shrink: 0;
}

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition-medium);
  transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium);
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--color-text);
}

.mobile-nav .btn {
  margin-top: 16px;
}

/* ============================================
   HERO ZOOM-OUT ANIMATION
   ============================================ */
@keyframes heroZoomOut {
  from { transform: scale(1.12); }
  to   { transform: scale(1);    }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--color-bg);
  padding-top: 0;
}

.hero-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.28) 0%,
    rgba(10, 10, 10, 0.28) 72%,
    rgba(10, 10, 10, 0.55) 86%,
    rgba(10, 10, 10, 0.85) 94%,
    rgba(10, 10, 10, 1) 100%
  );
  pointer-events: none;
}

.hero-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoomOut 2.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 60px;
  text-align: left;
}

.hero-eyebrow {
  margin-bottom: 24px;
  color: rgba(70, 70, 70, 0.92);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.09;
  color: var(--color-text);
  max-width: 900px;
}

.hero-stats-wrapper {
  position: relative;
  z-index: 2;
  background: transparent;
  padding: 0 0 64px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.hero-stat {
  position: relative;
  padding-right: 60px;
}

.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 30px;
  top: 0;
  height: 100%;
  width: 1px;
  background: var(--color-border);
}

.hero-stat:last-child {
  padding-right: 0;
}

.hero-stat-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-stat-label::before {
  content: '';
  width: 3px;
  height: 14px;
  background: var(--color-accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.hero-stat-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

/* Mobile Hero Content */
.hero-mobile-content {
  display: none;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 80px 0;
  position: relative;
  background: var(--color-bg);
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-border);
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* About Image */
.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--color-surface);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* About Content */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0;
}

.about-heading {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
  margin: 0;
  letter-spacing: -0.02em;
}

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

.about-description {
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin: 0;
}

.about-description strong {
  color: var(--color-text);
  font-weight: 400;
  opacity: 0.9;
}

/* About Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-stat-value {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.about-stat-label {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid {
    gap: 60px;
  }
  
  .about-heading {
    font-size: 40px;
  }
  
  .about-stat-value {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-content {
    gap: 24px;
  }
  
  .about-heading {
    font-size: 32px;
  }
  
  .about-description {
    font-size: 16px;
  }
  
  .about-stats {
    gap: 30px;
    padding: 24px 0;
  }
  
  .about-stat-value {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .about-heading {
    font-size: 28px;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .about-stat-value {
    font-size: 28px;
  }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 120px 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.services .container {
  max-width: 100%;
  padding: 0 4rem;
}

/* Services Intro */
.services-intro {
  margin-bottom: 0;
  max-width: 100%;
}

.services-intro .eyebrow {
  margin-bottom: 24px;
}

.services-main-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.services-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 100%;
}

/* Services Grid */
.services-grid {
  display: flex;
  gap: 75px;
  align-items: flex-start;
  overflow: hidden;
}

.services-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 150px;
  min-width: 0;
  overflow: hidden;
}

/* Service Card */
.service-card {
  position: relative;
  opacity: 0;
  transform: scale(0.95);
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition-medium);
}

.service-card:hover {
  transform: scale(0.95) translateY(-8px);
}

.service-card:active {
  transform: scale(0.93) translateY(-4px);
}

.service-image {
  position: relative;
  width: 690px;
  max-width: 100%;
  height: 390px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--color-surface);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

/* Service Content */
.service-content {
  display: flex;
  align-items: flex-start;
  gap: 12.5px;
  height: 82px;
}

.service-number {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  width: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
}

/* Desktop: Show numbers based on data-service attribute */
@media (min-width: 769px) {
  .service-card[data-service="1"] .service-number::before { content: "01"; }
  .service-card[data-service="2"] .service-number::before { content: "02"; }
  .service-card[data-service="3"] .service-number::before { content: "03"; }
  .service-card[data-service="4"] .service-number::before { content: "04"; }
  .service-card[data-service="5"] .service-number::before { content: "05"; }
  .service-card[data-service="6"] .service-number::before { content: "06"; }
  
  .service-card[data-service] .service-number {
    font-size: 0; /* Hide original text */
  }
  
  .service-card[data-service] .service-number::before {
    font-size: 80px; /* Show generated content */
  }
}

.service-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.service-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  height: 38px;
  color: var(--color-text);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  margin: 0;
}

.service-description {
  font-size: 14px;
  line-height: 1.21;
  height: 34px;
  color: var(--color-text-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Services Contact Card */
.services-contact-card {
  background: var(--color-bg-elevated);
  border-radius: 24px;
  padding: 60px 50px;
}

.services-contact-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.services-contact-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

.services-contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.services-contact-icon {
  width: 64px;
  height: 64px;
  background: var(--color-text);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-contact-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-bg);
}

.services-contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.services-contact-label {
  font-size: 14px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.services-contact-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.services-contact-number:hover {
  color: var(--color-accent);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    gap: 50px;
  }
  
  .services-column {
    gap: 40px;
  }
  
  .services-main-title {
    font-size: 40px;
  }
  
  .service-content {
    height: auto;
    min-height: 82px;
  }
  
  .service-title {
    font-size: 32px;
    height: auto;
  }
  
  .service-description {
    height: auto;
  }
  
  .service-number {
    font-size: 60px;
    width: 80px;
  }
  
  .services-contact-card {
    padding: 50px 40px;
  }
  
  .services-contact-title {
    font-size: 32px;
  }
  
  .services-contact-number {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 80px 0;
  }
  
  .services-grid {
    flex-direction: column;
    gap: 50px;
  }
  
  .services-column {
    gap: 80px;
  }
  
  .services-main-title {
    font-size: 32px;
  }
  
  .service-content {
    height: auto;
    gap: 16px;
  }
  
  .service-number {
    font-size: 50px;
    width: auto;
    height: auto;
  }
  
  .service-title {
    font-size: 28px;
    height: auto;
  }
  
  .service-description {
    height: auto;
  }
  
  .service-image {
    height: 300px;
  }
  
  .services-contact-card {
    padding: 40px 30px;
  }
  
  .services-contact-title {
    font-size: 28px;
  }
  
  .services-contact-text {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  .services-contact-icon {
    width: 56px;
    height: 56px;
  }
  
  .services-contact-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .services-contact-number {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .services-main-title {
    font-size: 28px;
  }
  
  .service-title {
    font-size: 24px;
    height: auto;
  }
  
  .service-number {
    font-size: 40px;
  }
  
  .service-image {
    height: 250px;
  }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  min-height: 100svh;
  padding: 120px 0;
  background: var(--color-bg-elevated);
  position: relative;
}

/* Gradient: About (bg) → Contact (bg-elevated) */
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--color-bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Contact → Footer transition handled by .site-footer--home::before */

@media (max-width: 768px) {
  .hero,
  .about,
  .contact {
    padding: 96px 0;
  }
}

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

.contact-header .eyebrow {
  margin-bottom: 24px;
}

.contact-header .section-heading {
  margin-bottom: 28px;
}

.contact-header .section-text {
  margin-bottom: 40px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 2;
}

.contact-info-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-subtle);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.5;
}

.contact-info-value a {
  color: var(--color-text);
  transition: color var(--transition-fast);
}

.contact-info-value a:hover {
  color: var(--color-accent);
}

.contact-cta {
  margin-top: 36px;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  height: 600px;
  background: var(--color-bg-card);
  margin-top: 20px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) invert(92%) contrast(85%);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-surface);
  padding: 80px 0 0;
  position: relative;
}

/* Gradient: subpage content (bg) → footer — covers all subpages */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--color-bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* Homepage: contact (bg-elevated) → footer — override gradient start color */
.site-footer--home::before {
  background: linear-gradient(to bottom, var(--color-bg-elevated) 0%, transparent 100%);
}

.footer-wordmark {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(36px, 4.2vw, 82px);
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .footer-wordmark {
    position: relative;
    bottom: auto;
    top: auto;
    font-size: 32px;
    padding: 24px 0;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
  }
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(32px, 5vw, 120px);
  padding-bottom: 60px;
  border-bottom: 1px solid var(--color-border);
}


.footer-brand-section,
.footer-logo,
.footer-company-name,
.footer-company-center {
  display: none;
}

.footer-links-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(32px, 5vw, 120px);
}

@media (max-width: 980px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

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

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-copyright {
    text-align: left;
  }

  .footer-credit {
    justify-self: start;
  }
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text);
  margin-bottom: 24px;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  align-items: start;
}

.footer-contact-row svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 2;
  margin-top: 2px;
}

.footer-hours-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-bottom: 18px;
}

.footer-hours-day {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
}

.footer-hours-time {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.footer-col-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
  transition: color var(--transition-fast);
}

.footer-col-links a:hover {
  color: var(--color-accent);
}

.footer-col-links p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin: 0;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 30px 0;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 12px;
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: var(--color-accent);
}

.footer-legal-sep {
  color: rgba(255, 255, 255, 0.25);
}

.footer-copyright {
  font-size: 14px;
  color: var(--color-text-muted);
  text-align: center;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  justify-self: end;
}

.footer-credit span {
  text-transform: uppercase;
}

.footer-credit a {
  display: flex;
  align-items: center;
}

.footer-credit img {
  display: block;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer-credit a:hover img {
  opacity: 1;
}

/* ============================================
   PAGE HERO (subpages)
   ============================================ */
.page-hero {
  padding: calc(80px + 16px) 0 40px;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(45, 127, 249, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .eyebrow {
  margin-bottom: 24px;
}

.page-hero .section-heading {
  margin-bottom: 20px;
  max-width: 800px;
}

.page-hero .section-text {
  max-width: 640px;
}

/* Breadcrumbs wrapper (subpages may place breadcrumbs outside page-hero) */
.breadcrumbs-wrapper {
  padding-top: 90px;
  background: var(--color-bg);
}

.breadcrumbs-wrapper .container {
  padding-top: 16px;
}

/* Page hero content wrapper (used by subpages) */
.page-hero-content {
  position: relative;
  z-index: 1;
}

.breadcrumbs .current {
  color: var(--color-text-muted);
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--color-text-subtle);
}

.breadcrumbs a {
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--color-accent);
}

.breadcrumbs .sep {
  color: var(--color-text-subtle);
}

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.service-detail {
  padding: 48px 0 var(--section-padding);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.service-detail-content h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  margin-top: 32px;
  color: var(--color-text);
}

.service-detail-content h2:first-child {
  margin-top: 0;
}

.service-detail-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.service-detail-content > img {
  margin-bottom: 18px !important;
}

.service-detail-content ul {
  margin-bottom: 20px;
  padding-left: 0;
}

.service-detail-content li {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid var(--color-border-subtle);
}

.service-detail-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 2px;
  background: var(--color-accent);
}

/* Sidebar */
.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  padding: 32px;
  margin-bottom: 24px;
}

.sidebar-card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  color: var(--color-text);
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-links a {
  font-size: 14px;
  color: var(--color-text-muted);
  padding: 10px 16px 10px 32px;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  position: relative;
}

.sidebar-links a::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.sidebar-links a:hover::before {
  transform: translateY(-50%) scale(1.3);
}

.sidebar-links a:hover,
.sidebar-links a.active {
  background: var(--color-bg-card-hover);
  border-color: var(--color-border);
  color: var(--color-text);
}

.sidebar-links a.active {
  border-left: 3px solid var(--color-accent);
}

.sidebar-links a.active::before {
  transform: translateY(-50%) scale(1.2);
}

.sidebar-cta {
  padding: 32px;
  text-align: center;
}

.sidebar-cta h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}

.sidebar-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  line-height: 1.5;
}

.sidebar-cta .btn {
  background: #fff;
  color: var(--color-accent);
  width: 100%;
}

.sidebar-cta .btn:hover {
  background: #f0f0f0;
}

/* CTA strip */
.cta-strip {
  padding: 80px 0;
  background: var(--color-bg);
  text-align: center;
  position: relative;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-border);
}

.cta-strip .section-heading {
  margin-bottom: 20px;
}

.cta-strip .section-text {
  margin: 0 auto 32px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
  padding: var(--section-padding) 0;
  background: var(--color-bg);
}

.legal-last-updated {
  font-size: 13px;
  color: var(--color-text-subtle);
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: 14px;
  margin-top: 40px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border-subtle);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 0 0 16px 0;
  padding-left: 0;
}

.legal-content li {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  padding: 7px 0 7px 24px;
  position: relative;
  border-bottom: 1px solid var(--color-border-subtle);
}

.legal-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 2px;
  background: var(--color-accent);
}

.legal-content a {
  color: var(--color-accent);
  text-decoration: underline;
}

.legal-content a:hover { color: var(--color-accent-hover); }

/* Related services */
.related-services {
  padding: var(--section-padding-sm) 0;
  background: var(--color-bg-elevated);
}

.related-services .eyebrow {
  margin-bottom: 20px;
}

.related-services .section-heading {
  margin-bottom: 40px;
}

/* ============================================
   PORTFOLIO PAGE
   ============================================ */
.portfolio-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  background: transparent;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--color-accent);
  color: var(--color-text);
  background: rgba(45, 127, 249, 0.12);
}

.portfolio-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* ============================================
   PROCESS SECTION (Usluge page)
   ============================================ */
.process {
  padding: var(--section-padding-sm) 0;
  background: var(--color-bg);
}

.process-header {
  margin-bottom: 60px;
}

.process-header .eyebrow {
  margin-bottom: 20px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--card-radius);
  background: var(--color-bg-card);
  transition: all var(--transition-medium);
}

.process-step:hover {
  border-color: var(--color-border);
  transform: translateY(-4px);
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--color-accent);
  margin-bottom: 16px;
  line-height: 1;
}

.process-step-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.process-step-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .portfolio-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
    --section-padding-sm: 60px;
  }

  .header-nav,
  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(80px + 60px);
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-wrapper {
    aspect-ratio: 16/9;
  }

  .about-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
    --section-padding-sm: 48px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-stat:not(:last-child)::after {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
  }

  .hero-stat {
    padding: 20px 0;
  }

  .hero-buttons {
    margin-bottom: 40px;
  }

  .portfolio-page-grid {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 1rem;
    --section-padding: 48px;
    --section-padding-sm: 40px;
  }

  .hero-title {
    font-size: 36px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 13px;
  }

  .header-inner {
    height: 64px;
  }

  .header-logo img {
    height: 38px;
  }

  /* Force all containers to be responsive */
  .container {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Ensure all text elements respect container width */
  .section-heading,
  .section-text,
  .hero-title,
  .about-heading,
  .about-description {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Footer improvements for mobile */
  .site-footer {
    padding: 0 0 0;
  }

  .footer-main {
    gap: 32px;
    padding-bottom: 40px;
    text-align: center;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-col-title {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .footer-col-links {
    gap: 10px;
    align-items: center;
  }

  .footer-col-links a {
    font-size: 14px;
  }

  .footer-contact-row {
    grid-template-columns: 18px 1fr;
    gap: 12px;
    justify-items: start;
  }

  .footer-contact-row svg {
    width: 18px;
    height: 18px;
  }

  .footer-contact-row span {
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
  }

  .footer-hours-row {
    gap: 4px;
    margin-bottom: 14px;
    text-align: center;
  }

  .footer-hours-day {
    font-size: 13px;
  }

  .footer-hours-time {
    font-size: 14px;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 0;
    text-align: center;
  }

  .footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    order: 1;
  }

  .footer-legal-sep {
    display: none;
  }

  .footer-legal-links a {
    font-size: 12px;
  }

  .footer-copyright {
    font-size: 12px;
    order: 2;
  }

  .footer-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 3;
    font-size: 11px;
  }

  /* Services adjustments */
  .services {
    overflow-x: hidden;
  }

  .services .container {
    padding: 0 1rem;
    max-width: 100%;
    overflow-x: hidden;
  }

  .services-intro {
    max-width: 100%;
    margin-bottom: -40px;
  }

  .services-main-title {
    font-size: 24px;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .services-subtitle {
    font-size: 15px;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .services-grid {
    overflow-x: hidden;
  }

  .services-column {
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden;
  }

  .service-card {
    max-width: 100%;
    overflow-x: hidden;
  }

  .service-image {
    width: 100%;
    max-width: 100%;
    height: 250px;
  }

  .service-content {
    max-width: 100%;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 12px;
  }

  .service-number {
    font-size: 48px;
    width: 70px;
    flex-shrink: 0;
  }

  .service-text-wrapper {
    max-width: 100%;
    overflow-x: hidden;
    flex: 1;
  }

  .service-title {
    font-size: 22px;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    height: auto;
  }

  .service-description {
    font-size: 13px;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    height: auto;
  }

  .services-contact-card {
    padding: 32px 24px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .services-contact-title {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .services-contact-text {
    font-size: 14px;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Contact map height */
  .contact-map {
    height: 400px;
  }

  /* Hero mobile background */
  .hero-image-bg img {
    content: url('assets/hero-mobile.jpeg');
  }

  /* Hero mobile content */
  .hero-mobile-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 128px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    width: 100%;
    padding: 0 1rem;
  }

  .hero-mobile-title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--color-text);
    text-align: center;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    margin: 0;  
    max-width: 100%;
  }

  .hero-mobile-content .circle-expand-button {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  }

  .hero-mobile-content .circle-expand-button .label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* Hero stats wrapper */
  .hero-stats-wrapper {
    padding: 0 0 48px;
    opacity: 0;
  }

  /* Circle expand button mobile */
  .circle-expand-button {
    min-width: 260px;
    font-size: 14px;
    padding: 0 0 0 24px;
  }

  .circle-expand-button .circle-icon {
    width: 44px;
    height: 44px;
  }

  /* ============================================
     USLUGE PAGES MOBILE SCROLL FIX
     ============================================ */
  /* Disable all animations and transitions on usluge pages for mobile */
  .usluge-page * {
    animation: none !important;
    transition: none !important;
  }

  /* Force all fade-up elements to be visible immediately */
  .usluge-page .fade-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  /* Disable sticky positioning on mobile (causes scroll issues) */
  .usluge-page .service-sidebar {
    position: static !important;
    top: auto !important;
  }

  /* Ensure smooth scrolling */
  .usluge-page {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Remove any transforms that might interfere with scrolling */
  .usluge-page .page-hero,
  .usluge-page .service-detail,
  .usluge-page .cta-strip,
  .usluge-page .site-footer {
    transform: none !important;
  }

  /* Ensure body and html allow proper scrolling */
  .usluge-page,
  .usluge-page html {
    height: auto !important;
    min-height: 100vh;
  }
}
