/* =====================
   ROOT – PREMIUM PALETTE
===================== */
:root {
  --bg-main: #f6f6f4;
  --bg-soft: #eeeeea;
  --bg-dark: #111;

  --text-main: #1c1c1c;
  --text-muted: #6b6b6b;

  --accent: #2f4858;
  --accent-hover: #263b48;
  --accent-light: #dbe3e8;

  --border-soft: rgba(0, 0, 0, 0.08);
}

/* =====================
   GLOBAL
===================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  text-decoration: none;
  transition: 0.2s;
}

/* =====================
   NAVBAR
===================== */
/* =========================
   PREMIUM NAVBAR
========================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 74px;

  display: flex;
  align-items: center;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 1000;
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 30px;
}

.nav-logo {
  height: 55px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 38px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  font-size: 16px;
}

.nav-links a:hover {
  opacity: 0.6;
}

.nav-call {
  background: var(--accent);
  color: white;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.nav-call:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
/* =====================
   HERO – MINIMAL PREMIUM
===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
}

.hero-center {
  max-width: 720px;
  width: 100%;
  padding: 20px;
}

.hero-logo-wrap {
  position: relative;
  margin: 0 auto 10px;
}

.hero-logo {
  height: 450px;
  display: block;
  margin-bottom: 60px;
  margin: 0 auto;
}

.hero-brand {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 2px;
  font-size: 44px;
  white-space: nowrap;
  max-width: 90vw;
  color: var(--text-main);
}

/* NASLOV */
.hero-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 30px;
  margin-top: 35px;
}

.hero-title strong {
  color: var(--accent);
}

/* BUTTON */
.hero-btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 16px 34px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.2s;
}

.hero-btn:hover {
  background: var(--accent-hover);
}

/* =====================
   SECTIONS
===================== */
section {
  padding: 70px 30px;
  max-width: 1100px;
  margin: auto;
}
h1 {
  font-family: "Playfair Display", serif;
}
h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

/* =====================
   SERVICES
===================== */
.services {
  background: var(--bg-main);
}

.services-list.with-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}

.service-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* =====================
   SLIDER
===================== */
.slider-wrapper {
  position: relative;
  margin-bottom: 14px;
}

.service-slider {
  position: relative;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.service-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: 0.4s;
  padding: 12px;
}

.service-slider img.active {
  opacity: 1;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: white;
  color: var(--accent);
  font-size: 2rem;
  cursor: pointer;
  z-index: 5;
}

.slider-arrow.prev {
  left: 10px;
}
.slider-arrow.next {
  right: 10px;
}

/* =====================
   PROCESS
===================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.process-steps h3 {
  margin-bottom: 6px;
}

/* =====================
   CONTACT
===================== */
.contact {
  background: var(--bg-soft);
  border-radius: 20px;
  text-align: center;
}

/* =====================
   FOOTER
===================== */
footer {
  padding: 30px;
  text-align: center;
  background: var(--bg-dark);
  color: white;
}

/* =====================
   BACK TO TOP
===================== */
#backToTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 6;
}

#backToTop.show {
  opacity: 1;
  pointer-events: auto;
}
.sticky-socials {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 90;
}

.sticky-socials img {
  width: 42px;
  height: 42px;

  transition: 0.2s;
}

.sticky-socials img:hover {
  transform: scale(1.1);
}

.sticky-socials img[src*="instagram"] {
  transform: scale(1.5);
}
.sticky-socials img[src*="instagram"]:hover {
  transform: scale(1.6);
}

/* =====================
   MOBILE
===================== */
@media (max-width: 880px) {
  .hero {
    padding-top: 90px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    width: 100%;
  }

  /* LOGO WRAP */
  .hero-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: 10px;
  }

  /* LOGO */
  .hero-logo {
    width: 75%;
    max-width: 320px;
    height: auto;

    margin: 0 auto 10px;
  }

  .hero-brand {
    position: static;
    transform: none;

    font-family: "Playfair Display", serif;
    font-weight: 700;

    font-size: 28px;
    letter-spacing: 1.5px;

    margin-bottom: 20px;
  }

  /* TITLE */
  .hero-title {
    font-size: 28px;
    line-height: 1.25;
    font-weight: 600;
    margin-top: 10px;
    max-width: 90%;
  }

  .hero-title strong {
    display: block;
  }

  /* NAV */
  .nav-links {
    display: none;
  }

  /* GRID */
  .services-list.with-images {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .sticky-socials {
    display: none;
  }
}
.mobile-contact-bar {
  position: fixed;
  bottom: 15px;
  left: 50%;

  transform: translateX(-50%);

  background: white;

  display: flex;
  gap: 12px;

  padding: 10px 14px;

  border-radius: 50px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

  z-index: 999;
}

.mc-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 46px;

  border-radius: 30px;

  padding: 0 18px;
}

.mc-btn img {
  width: 44px;
}

/* DESKTOP HIDE */

@media (min-width: 900px) {
  .mobile-contact-bar {
    display: none;
  }
}
