#cenik {
  position: relative;
  overflow: hidden;
}

#cenik::before {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -180px;
  width: 650px;
  height: 650px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.04) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

#cenik::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.022) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

#cenik > .container {
  position: relative;
  z-index: 1;
}

:root {
  --bg-dark: #111111;
  --bg-darker: #1a1a1a;
  --accent-gold: #c9a84c;
  --accent-gold-hover: #a88a35;
  --text-main: #f0ebe3;
  --text-muted: #9e9080;
  --font-head: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
  --transition: all 0.3s ease;
}

html {
  scroll-padding-top: 75px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Reusable */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-padding {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

.gold-text {
  background: linear-gradient(
    135deg,
    #a87c2a 0%,
    #e8c96a 40%,
    #c9a84c 70%,
    #f5e09a 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #b8922e 0%, #e8c96a 50%, #a88a35 100%);
  background-size: 200% auto;
  color: #111111;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition:
    background-position 0.4s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-primary:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid rgba(201, 168, 76, 0.6);
  transition:
    var(--transition),
    box-shadow 0.3s ease;
}

.btn-secondary:hover {
  background-color: rgba(201, 168, 76, 0.1);
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
  transform: translateY(-2px);
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition:
    background-color 0.4s ease,
    padding 0.4s ease,
    box-shadow 0.4s ease;
  background-color: transparent;
}

.navbar.scrolled {
  background-color: rgba(17, 17, 17, 0.98);
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Navbar nad tmavým hero */
.navbar:not(.scrolled) .nav-links a,
.navbar:not(.scrolled) .logo {
  color: #ffffff;
}

.navbar:not(.scrolled) .menu-toggle .bar {
  background-color: #ffffff;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.logo-img {
  max-height: 45px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-gold);
}

.mobile-only-btn {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-actions .btn {
  padding: 10px 20px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: var(--text-main);
  transition: all 0.3s ease;
  border-radius: 3px;
}

@media (max-width: 992px) {
  .nav-actions > .btn {
    display: none;
    /* Skrýt pouze to tlačítko, co visí vedle samotného hamburger menu na liště */
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: rgba(17, 17, 17, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 100px;
    padding-left: 30px;
    padding-right: 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    transition: right 0.4s ease;
    align-items: flex-start;
    gap: 20px;
  }

  .mobile-only-btn {
    display: flex;
    margin-top: 20px;
    width: 100%;
  }

  .mobile-only-btn .btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  .nav-links.active {
    right: 0;
  }

  /* Hamburger to X Animation */
  .menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #0d1117;
  padding-top: 80px;
  overflow: hidden;
}

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

.hero-group-img {
  position: absolute;
  width: 26vw;
  max-width: 320px;
  height: auto;
  border-radius: 16px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(201, 168, 76, 0.1);
  pointer-events: none;
  user-select: none;
  filter: brightness(0.7) saturate(0.9);
}

.hero-group-img--1 {
  top: 14%;
  left: 2%;
  animation: floatNeg8 7s ease-in-out infinite;
}
.hero-group-img--2 {
  top: 50%;
  left: 5%;
  animation: floatPos6 9s ease-in-out infinite;
}
.hero-group-img--3 {
  top: 12%;
  right: 2%;
  animation: floatPos5 8s ease-in-out infinite;
}
.hero-group-img--4 {
  top: 48%;
  right: 4%;
  animation: floatNeg5 10s ease-in-out infinite;
}

@keyframes floatNeg8 {
  0%,
  100% {
    transform: rotate(-8deg) translateY(0px);
  }
  50% {
    transform: rotate(-8deg) translateY(-14px);
  }
}
@keyframes floatPos6 {
  0%,
  100% {
    transform: rotate(6deg) translateY(0px);
  }
  50% {
    transform: rotate(6deg) translateY(-12px);
  }
}
@keyframes floatPos5 {
  0%,
  100% {
    transform: rotate(5deg) translateY(0px);
  }
  50% {
    transform: rotate(5deg) translateY(-10px);
  }
}
@keyframes floatNeg5 {
  0%,
  100% {
    transform: rotate(-5deg) translateY(0px);
  }
  50% {
    transform: rotate(-5deg) translateY(-14px);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse 70% 60% at 50% 50%,
      transparent 0%,
      rgba(13, 17, 23, 0.55) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(13, 17, 23, 0.8) 0%,
      rgba(13, 17, 23, 0.45) 30%,
      rgba(13, 17, 23, 0.45) 70%,
      rgba(13, 17, 23, 0.8) 100%
    ),
    radial-gradient(
      ellipse 60% 50% at 50% 50%,
      rgba(201, 168, 76, 0.14) 0%,
      transparent 70%
    );
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
  padding: 60px 0;
}

.hero h1 {
  font-size: clamp(40px, 5.8vw, 74px);
  line-height: 1.08;
  margin-bottom: 28px;
  color: #ffffff;
  text-shadow:
    0 2px 30px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(201, 168, 76, 0.1);
  letter-spacing: -1px;
}

.hero p {
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 44px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero .btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

/* Trust Bar */
.trust-bar {
  background-color: var(--bg-darker);
  padding: 50px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
}

.trust-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(201, 168, 76, 0.035) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.trust-bar > .container {
  position: relative;
  z-index: 1;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.trust-item h3 {
  font-size: clamp(36px, 4vw, 52px);
  background: linear-gradient(135deg, #a87c2a 0%, #e8c96a 45%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 700;
}

.trust-item p {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Services */
.services {
  background-color: var(--bg-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -220px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.045) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.services::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.022) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.services > .container {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: clamp(32px, 4vw, 50px);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 60px;
  font-size: 18px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--bg-dark);
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}


.service-icon {
  font-size: 42px;
  color: var(--accent-gold);
  margin-bottom: 20px;
  display: inline-block;
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.4));
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-muted);
}

/* Results */
.results {
  background-color: var(--bg-darker);
  position: relative;
  overflow: hidden;
}

.results::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -250px;
  transform: translateY(-50%);
  width: 650px;
  height: 650px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.04) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.results::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.022) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.results > .container {
  position: relative;
  z-index: 1;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
}

.result-card {
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.result-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 168, 76, 0.2);
}

.result-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #222222;
  position: relative;
  overflow: hidden;
}

.result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.result-card:hover .result-image img {
  transform: scale(1.05);
}

.result-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(30, 22, 5, 0.85) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.result-card:hover .result-overlay {
  opacity: 1;
}

.result-overlay i {
  font-size: 40px;
  margin-bottom: 12px;
  color: var(--accent-gold);
}

.result-overlay span {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-head);
}

.result-caption {
  padding: 20px;
  text-align: center;
  font-style: italic;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.92);
  overflow-y: auto;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.open {
  display: flex;
  flex-direction: column;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2010;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--accent-gold);
}

.lightbox-prev,
.lightbox-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -30px;
  color: white;
  font-weight: bold;
  font-size: 36px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  z-index: 2010;
}

.lightbox-next {
  right: 0;
  border-radius: 4px 0 0 4px;
}

.lightbox-prev {
  left: 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: var(--accent-gold);
}

.lightbox-content {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  margin: auto;
  flex-direction: column;
  animation: scaleIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (min-width: 768px) {
  .lightbox-content {
    flex-direction: row;
    align-items: center;
  }
}

.lightbox-col {
  flex: 1;
  text-align: center;
}

.lightbox-col h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 24px;
  letter-spacing: 1px;
  font-family: var(--font-head);
}

.lightbox-col img {
  width: 100%;
  max-height: 45vh;
  /* Větší na mobilu, roztáhne se na celý displej pod sebou */
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
  .lightbox-content {
    gap: 15px;
    /* Menší mezery pod sebou */
  }

  .lightbox-col h3 {
    display: none;
    /* Schovat nadpisy Před a Po na mobilu */
  }
}

@media (min-width: 768px) {
  .lightbox-col img {
    max-height: 75vh;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Testimonials */
.testimonials {
  background-color: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 650px;
  height: 650px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.04) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.testimonials::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.022) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.testimonials > .container {
  position: relative;
  z-index: 1;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testi-card {
  background-color: var(--bg-darker);
  padding: 40px;
  border-radius: 12px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.07);
}


.testi-card::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 60px;
  color: rgba(201, 168, 76, 0.15);
  font-family: var(--font-head);
  line-height: 1;
}

.testi-card p {
  color: var(--text-main);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testi-author {
  color: var(--accent-gold);
  font-weight: 700;
}

/* FAQ */
.faq {
  background-color: var(--bg-darker);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.04) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.faq::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.faq > .container {
  position: relative;
  z-index: 1;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: var(--font-head);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header i {
  color: var(--accent-gold);
  transition: transform 0.3s;
}

.accordion-header.active i {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content p {
  padding-bottom: 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Path Chooser */
.path-chooser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.path-card {
    padding: 36px 32px;
    border-radius: 12px;
    background-color: var(--bg-darker);
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.path-card--existing {
    border-color: rgba(201, 168, 76, 0.3);
    background: linear-gradient(135deg, var(--bg-darker) 0%, rgba(201, 168, 76, 0.04) 100%);
}

.path-card-icon {
    font-size: 28px;
    color: var(--accent-gold);
    filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.3));
}

.path-card-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-gold);
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    padding: 3px 10px;
    border-radius: 20px;
    width: fit-content;
}

.path-card h3 {
    font-size: 20px;
    color: var(--text-main);
    font-family: var(--font-head);
    margin: 0;
}

.path-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.path-card-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
}

.path-card-cta i {
    color: var(--accent-gold);
    animation: bounceDown 2s ease-in-out infinite;
}

.path-card-btn {
    margin-top: 4px;
    width: fit-content;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(5px); }
}

@media (max-width: 640px) {
    .path-chooser {
        grid-template-columns: 1fr;
    }
}

/* Form section label */
.form-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--accent-gold);
    background: rgba(201, 168, 76, 0.07);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 8px;
    padding: 10px 16px;
    margin-bottom: 28px;
}

/* Contact Section */
.contact {
  background-color: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 750px;
  height: 750px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.045) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.022) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.contact > .container {
  position: relative;
  z-index: 1;
}

.contact-wrapper {
  background-color: var(--bg-darker);
  padding: 50px;
  border-radius: 8px;
  border: 1px solid rgba(201, 168, 76, 0.18);
}

.contact-form-wrapper {
  background-color: var(--bg-darker);
  padding: 50px;
  border-radius: 8px;
  border: 1px solid rgba(201, 168, 76, 0.18);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

/* Two-Column Contact Section Layout */
.contact-section-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .contact-section-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Contact Info Column (Left) */
.contact-info {
  padding: 40px 30px;
  background-color: var(--bg-darker);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

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

.contact-logo {
  max-width: 140px;
  height: auto;
}

.contact-info h3 {
  font-size: 22px;
  color: var(--text-main);
  margin: 0;
  font-family: var(--font-head);
  line-height: 1.3;
}

.contact-info > div > p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: -8px 0 0 0;
  font-size: 15px;
}

/* Contact Details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-detail-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.contact-icon-box {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: rgba(201, 168, 76, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 15px;
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.15);
}

.contact-detail-item strong {
  color: var(--text-main);
  display: block;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.contact-detail-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.4;
}

.contact-detail-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-detail-item a:hover {
  color: var(--accent-gold);
}

/* Google Map */
.google-map-container {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.google-map-container iframe {
  width: 100%;
  height: 100%;
}

/* Form Column (Right) */
.contact-form-wrapper {
  /* Styling handled by existing .contact-wrapper class */
}

@media (max-width: 768px) {
  .contact-info {
    padding: 30px 20px;
  }
}

.form-control {
  width: 100%;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  border-radius: 4px;
  font-family: var(--font-body);
  transition:
    border-color 0.3s,
    background-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  background-color: rgba(255, 255, 255, 0.07);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.checkbox-group input {
  margin-top: 4px;
  accent-color: var(--accent-gold);
}

.checkbox-group label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
}

.radio-group input[type="radio"] {
  accent-color: var(--accent-gold);
  cursor: pointer;
}

.radio-group label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
  cursor: pointer;
}

.form-control[type="file"] {
  padding: 12px 15px;
  cursor: pointer;
}

.form-control[type="file"]::file-selector-button {
  background-color: var(--accent-gold);
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 12px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.form-control[type="file"]::file-selector-button:hover {
  background-color: var(--accent-gold-hover);
}

.success-message {
  display: none;
  background-color: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--accent-gold);
  color: #fff;
  padding: 20px;
  border-radius: 4px;
  text-align: center;
  margin-top: 20px;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
.footer {
  background-color: var(--bg-darker);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer h4 {
  font-size: 20px;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.footer-logo {
  max-height: 40px;
  width: auto;
  margin-bottom: 20px;
  display: block;
}

.footer p {
  color: var(--text-muted);
  margin-bottom: 10px;
}

.footer i.fa-solid {
  margin-right: 8px;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.07);
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--accent-gold);
  transform: translateY(-3px);
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-muted);
  font-size: 14px;
}

/* Floating WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Chat Assistant */
.chat-btn {
  position: fixed;
  bottom: 30px;
  right: 100px;
  width: 60px;
  height: 60px;
  background-color: var(--accent-gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    background-color 0.3s;
  border: none;
}

.chat-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.5);
  background-color: var(--accent-gold-hover);
}

.chat-window {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 340px;
  height: 480px;
  background-color: var(--bg-darker);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}

.chat-window.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.chat-header {
  background-color: var(--bg-dark);
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-title {
  font-family: var(--font-head);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.chat-title i {
  color: var(--accent-gold);
  font-size: 20px;
}

.close-chat {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 20px;
  transition: color 0.3s;
}

.close-chat:hover {
  color: #fff;
}

.chat-body {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Custom Scrollbar for chat */
.chat-body::-webkit-scrollbar {
  width: 6px;
}

.chat-body::-webkit-scrollbar-track {
  background: transparent;
}

.chat-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.chat-body::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.15);
}

.message {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
}

.message.assistant {
  background-color: rgba(255, 255, 255, 0.07);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.message.assistant p {
  margin: 0 0 8px 0;
}
.message.assistant p:last-child {
  margin-bottom: 0;
}
.message.assistant strong {
  font-weight: 600;
}
.message.assistant ul,
.message.assistant ol {
  padding-left: 18px;
  margin: 4px 0 8px;
}
.message.assistant li {
  margin-bottom: 2px;
}

.message.user {
  background-color: var(--accent-gold);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.typing-indicator {
  display: none;
  background-color: rgba(255, 255, 255, 0.07);
  padding: 12px 16px;
  border-radius: 14px;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  gap: 5px;
  align-items: center;
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  background-color: var(--text-muted);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) {
  animation-delay: -0.32s;
}

.typing-indicator span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

.chat-footer {
  padding: 15px;
  background-color: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  gap: 10px;
}

.chat-input {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  padding: 10px 15px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.3s;
}

.chat-input:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.chat-send {
  background-color: var(--accent-gold);
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.3s,
    transform 0.2s;
}

.chat-send:active {
  transform: scale(0.95);
}

.chat-send:hover {
  background-color: var(--accent-gold-hover);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .hero-content {
    padding: 40px 0;
  }
  .hero-group-img {
    width: 40vw;
  }
}

@media (max-width: 480px) {
  .hero-group-img {
    width: 46vw;
  }
}

@media (max-width: 768px) {
  .chat-window {
    width: calc(100% - 40px);
    right: 20px;
    bottom: 100px;
    height: 400px;
  }

  .whatsapp-btn,
  .chat-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }

  .chat-btn {
    bottom: 20px;
    right: 80px;
  }

  .section-padding {
    padding: 70px 0;
  }

  .contact-wrapper {
    padding: 30px 20px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }
}

/* ===== Decorative Scissors ===== */
.deco-scissors {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    color: var(--accent-gold);
    opacity: 0.055;
}

.deco-scissors--services {
    width: 200px;
    height: 200px;
    bottom: 30px;
    right: 5%;
    animation: scissorsFloatServices 9s ease-in-out infinite;
}

.deco-scissors--testimonials {
    width: 160px;
    height: 160px;
    top: 40px;
    right: 4%;
    animation: scissorsFloatTestimonials 11s ease-in-out infinite;
}

/* Rotace zabudovaná přímo do float animace */
@keyframes scissorsFloatServices {
    0%, 100% { transform: rotate(-30deg) translateY(0px); }
    50%       { transform: rotate(-30deg) translateY(-14px); }
}

@keyframes scissorsFloatTestimonials {
    0%, 100% { transform: rotate(20deg) translateY(0px); }
    50%       { transform: rotate(20deg) translateY(-12px); }
}
