: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: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
  margin-top: 30px;
}

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

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

.hero-logo {
  height: 200px;
  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: 42px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 15px;
  margin-top: 35px;
}

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

.hero-highlight {
  font-size: 32px;
  color: #2f4858;
  margin-bottom: 10px;
  font-weight: 600;
}

/* BUTTON */
.hero-btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 16px 34px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.2s;
}
.hero-divider {
  width: 120px;
  height: 2px;
  background: #2f4858;
  margin: 40px auto 0;
  border-radius: 2px;
  opacity: 0.6;
}
.hero-btn:hover {
  background: var(--accent-hover);
}

/* =====================
   SECTIONS
===================== */
section {
  padding: 60px 20px;
  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 {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.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 > div {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

/* =====================
   CONTACT
===================== */
.contact {
  background: var(--bg-soft);
  border-radius: 20px;
  padding: 60px 20px;
  text-align: center;
}
.contact-text {
  text-align: center;
  margin-bottom: 15px;
  font-size: 17px;
}

.phone {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
}

.phone a {
  color: var(--accent);
  text-decoration: none;
}
/* =====================
   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;
    opacity: 0.9;
    margin: 0 auto 10px;
  }

  .hero-brand {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 10px;
    margin-bottom: 25px;
    width: 100%;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  /* TITLE */
  .hero-title {
    font-size: 28px;
    line-height: 1.25;
    font-weight: 600;
    margin-top: 10px;
    max-width: 90%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .hero-highlight {
    font-size: 22px;
    color: #2f4858;
    font-weight: 600;
  }

  .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;
  }
}

.seo-text {
  padding: 40px 20px;
  border-top: 1px solid var(--border-soft);
  margin-top: 20px;
}
.seo-text h2 {
  margin-bottom: 15px;
}
.seo-text p {
  font-size: 18px;
  text-align: left;
}
.seo-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  max-width: 800px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
