@font-face {
  font-family: 'Cera Round Pro';
  src: url('../fonts/TypeMates  CeraRoundProRegular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cera Round Pro';
  src: url('../fonts/TypeMates  CeraRoundProMedium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cera Round Pro';
  src: url('../fonts/TypeMates  CeraRoundProBlack.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cera Round Pro Bold';
  src: url('../fonts/TypeMates  Cera Round Pro Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Minion Pro';
  src: url('../fonts/MinionPro-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Cera Round Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #464427;
  background-color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
body.loaded {
  opacity: 1;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cera Round Pro Bold', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
h1 {
  font-size: 3rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}
h2 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.2rem;
}
h5 {
  font-size: 1.1rem;
}
p {
  margin-bottom: 1rem;
}
a {
  color: #464427;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #B57345;
}
strong {
  font-weight: 500;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 15px;
}
.language-switcher {
  display: flex;
  background: transparent;
  align-items: center;
  justify-content: center;
}
.language-switcher .lang-flag {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 8px 4px 8px 16px;
}
.language-switcher .lang-flag img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.language-switcher .lang.btn {
  padding: 8px 4px;
  border: none;
  color: #464427;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.language-switcher .lang.btn.active {
  color: #7e2494;
}
.language-switcher .lang.btn:hover:not(.active) {
  color: #4c1646;
}
@media (max-width: 768px) {
  .language-switcher .lang.btn {
    color: #ffffff;
  }
  .language-switcher .lang.btn.active {
    color: #ffffff;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 1000;
  transition: all 0.3s ease;
}
.header .header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
}
@media (max-width: 980px) {
  .header .header-content {
    flex-direction: row;
    gap: 20px;
  }
}
@media (max-width: 676px) {
  .header .header-content {
    flex-direction: column;
    gap: 3px;
  }
}
.header .logo img {
  height: 111px;
  width: auto;
}
@media (max-width: 1024px) {
  .header .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  .header .main-nav.mobile-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
.header .main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}
@media (max-width: 1024px) {
  .header .main-nav ul {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }
}
.header .main-nav a {
  font-size: 18px;
  font-weight: normal;
  color: #7e2494;
  padding: 10px 0;
  position: relative;
}
@media (max-width: 1024px) {
  .header .main-nav a {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
  }
  .header .main-nav a:last-child {
    border-bottom: none;
  }
}
.header .main-nav a:hover {
  color: #4c1646;
}
.header .main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #464427;
  transition: width 0.3s ease;
}
@media (max-width: 1024px) {
  .header .main-nav a::after {
    display: none;
  }
}
.header .main-nav a:hover::after {
  width: 100%;
}
.header .mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 15px;
  transition: all 0.3s ease;
  position: relative;
  width: 50px;
  height: 50px;
  flex-direction: column;
  justify-content: space-around;
  border-radius: 8px;
}
@media (max-width: 1024px) {
  .header .mobile-menu-btn {
    display: flex;
  }
}
.header .mobile-menu-btn span {
  display: block;
  height: 4px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.header .mobile-menu-btn:hover {
  background: #F6FAFC;
}
.header .mobile-menu-btn:hover span {
  background: #464427;
}
.header .mobile-menu-btn.active span {
  background: #464427;
}
.header .mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.header .mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.header .mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.header .header-contact {
  background-image: url('../assets/bublina1.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.header .header-contact .phone-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 45px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: min-content;
}
.header .header-contact .phone-btn:hover {
  transform: translateY(-2px);
}
.header .header-contact .phone-btn strong {
  font-size: 17px;
}
.hero {
  position: relative;
  min-height: 100vh;
  color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 0;
}
.hero .container {
  max-width: 100%;
  width: 100%;
  padding: 0;
}
.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero .hero-content {
  z-index: 2;
  position: relative;
  top: -175px;
}
@media (max-width: 1400px) {
  .hero .hero-content {
    top: -125px;
  }
}
@media (max-width: 1200px) {
  .hero .hero-content {
    top: -90px;
  }
}
@media (max-width: 768px) {
  .hero .hero-content {
    top: -120px;
  }
}
@media (max-width: 676px) {
  .hero .hero-content {
    top: 158px;
  }
}
.hero .hero-text {
  text-align: left;
  max-width: 650px;
  margin-left: calc((100% - 1200px) / 2 + 20px);
}
@media (max-width: 1200px) {
  .hero .hero-text {
    margin-left: 20px;
  }
}
@media (max-width: 768px) {
  .hero .hero-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.hero .hero-title {
  color: #7e2494;
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
  white-space: normal;
}
@media (max-width: 768px) {
  .hero .hero-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 676px) {
  .hero .hero-title {
    color: #ffffff;
  }
}
.hero .hero-subtitle {
  font-size: 1.6rem;
  font-weight: 500;
  opacity: 1;
  line-height: 1.15;
  color: #000;
  white-space: normal;
}
@media (max-width: 768px) {
  .hero .hero-subtitle {
    font-size: 1.1rem;
  }
}
@media (max-width: 676px) {
  .hero .hero-subtitle {
    color: #ffffff;
  }
}
.boxes {
  padding: 50px 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  .boxes {
    padding: 60px 0;
  }
}
.boxes .boxes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  top: -200px;
  margin-bottom: -215px;
}
@media (max-width: 768px) {
  .boxes .boxes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    top: -100px;
    margin-bottom: -100px;
  }
}
.boxes .box-item {
  background: #ffffff;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.boxes .box-item:nth-child(1) {
  background: #7e2494;
}
.boxes .box-item:nth-child(2) {
  background: #4c1646;
}
.boxes .box-item:nth-child(3) {
  background: #2c0e28;
}
.boxes .box-item h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #9cdfe8;
  margin-bottom: 20px;
}
.boxes .box-item p {
  font-size: 1rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 20px;
}
.kolicek-img {
  max-height: 200px;
}
.cols {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .cols {
    flex-direction: column;
    gap: 30px;
  }
}
.col {
  width: 100%;
}
.col img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.col-2-3 {
  width: 66.66%;
}
@media (max-width: 768px) {
  .col-2-3 {
    width: 100%;
  }
}
.col-2-8 {
  width: 25%;
}
@media (max-width: 768px) {
  .col-2-8 {
    width: 100%;
  }
}
.col-1-3 {
  width: 33.33%;
}
@media (max-width: 768px) {
  .col-1-3 {
    width: 100%;
  }
}
.col-1-8 {
  width: 12.5%;
}
@media (max-width: 768px) {
  .col-1-8 {
    width: 100%;
    text-align: center;
  }
}
.col-7-8 {
  width: 87.5%;
}
@media (max-width: 768px) {
  .col-7-8 {
    width: 100%;
  }
}
.col-6-8 {
  width: 75%;
}
@media (max-width: 768px) {
  .col-6-8 {
    width: 100%;
  }
}
.col-1-2 {
  width: 50%;
}
@media (max-width: 768px) {
  .col-1-2 {
    width: 100%;
  }
}
.box-shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  padding: 50px;
}
@media (max-width: 768px) {
  .box-shadow {
    padding: 30px 20px;
  }
}
.phone-number {
  font-size: 1.8rem;
  font-weight: 500;
  background-color: #7e2494;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
  width: fit-content;
}
@media (max-width: 768px) {
  .phone-number {
    font-size: 1.3rem;
    padding: 8px 15px;
    width: 100%;
    text-align: center;
  }
}
.phone-number a {
  color: #ffffff;
  text-decoration: none;
}
.phone-number a:hover {
  color: #ffffff;
  text-decoration: none;
}
.laundry-collection {
  padding: 50px 0;
  background: #fff0b7;
}
@media (max-width: 768px) {
  .laundry-collection {
    padding: 60px 0;
  }
}
.laudry {
  padding: 50px 0;
  background: #fff0b7;
}
@media (max-width: 768px) {
  .laudry {
    padding: 60px 0;
  }
}
.laudry .hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .laudry .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px 20px;
  }
}
.laudry .hero-stats .stat-item {
  aspect-ratio: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .laudry .hero-stats .stat-item {
    padding: 15px;
  }
}
.laudry .hero-stats .stat-item:nth-child(1) {
  background-color: #f8973f;
}
.laudry .hero-stats .stat-item:nth-child(2) {
  background-color: #d22027;
}
.laudry .hero-stats .stat-item:nth-child(3) {
  background-color: #7e2494;
}
.laudry .hero-stats .stat-item:nth-child(4) {
  background-color: #3f1603;
}
.laudry .hero-stats .stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #fff0b7;
  line-height: 1;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .laudry .hero-stats .stat-number {
    font-size: 2.5rem;
  }
}
.laudry .hero-stats .stat-number.counting {
  animation: pulse 0.5s ease-in-out;
}
.laudry .hero-stats .stat-label {
  font-size: 14px;
  color: #fff0b7;
  text-align: center;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.section-header {
  text-align: center;
  margin-bottom: 20px;
}
.section-header h2 {
  color: #4c1646;
  font-family: 'Cera Round Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  margin-bottom: 20px;
  font-weight: 500;
}
.section-subtitle {
  font-size: 1.5rem;
  color: #6B5CA6;
  margin: 20px auto;
  text-align: center;
}
.section-subtitle.purple {
  color: #7e2494;
  font-size: 1.5rem;
}
.section-subtitle.blue {
  color: #448baa;
  font-size: 1.3rem;
}
.about {
  padding: 50px 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }
}
.laundry-demand {
  padding: 50px 0;
  background: #cff0fc;
}
@media (max-width: 768px) {
  .laundry-demand {
    padding: 60px 0;
  }
}
.laundry-demand .section-header {
  text-align: left;
}
.laundry-demand .section-subtitle {
  text-align: left;
}
.laundry-demand .col img {
  max-height: 350px;
}
.services {
  padding: 50px 0;
  background: #7e2494;
}
@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }
}
.services .section-header {
  text-align: left;
}
.services .section-header h2 {
  color: #ffffff;
  text-align: left;
}
.services .section-subtitle {
  color: #ffffff;
  text-align: left;
}
.services p {
  color: #ffffff;
}
.services a {
  color: #ffffff;
}
.services a:hover {
  color: #ffffff;
}
.services a:visited {
  color: #ffffff;
}
.services .col img {
  width: auto;
  height: 100%;
  object-fit: cover;
  max-height: 300px;
}
.services .col-2-8 {
  margin: 0 auto;
  text-align: center;
}
.services .bullets {
  background-color: #4c1646;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.services .bullets ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.services .bullets ul li {
  background-image: url('../assets/kolicek-bullet.png');
  background-size: 30px 30px;
  background-position: left top;
  background-repeat: no-repeat;
  padding-left: 50px;
  margin-bottom: 10px;
  color: #ffffff;
  text-align: left;
  min-height: 30px;
  display: flex;
  align-items: center;
}
.pricing {
  padding: 50px 0;
  background: #4c1646;
}
@media (max-width: 768px) {
  .pricing {
    padding: 60px 0;
  }
}
.pricing .section-header h2 {
  color: #ffffff;
}
.pricing .pricing-table {
  max-width: 700px;
  margin: 0 auto;
  color: #ffffff;
  border: none;
  overflow: hidden;
}
.pricing .pricing-table .pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  transition: background-color 0.3s ease;
}
.pricing .pricing-table .pricing-item:hover {
  background: #fff0b7;
  color: #4c1646;
}
.pricing .pricing-table .pricing-item:hover .item-name {
  color: #4c1646;
}
.pricing .pricing-table .pricing-item:hover .item-price {
  color: #4c1646;
}
.pricing .pricing-table .pricing-item .item-name {
  color: #ffffff;
  font-size: 1.3rem;
}
.pricing .pricing-table .pricing-item .item-price {
  font-size: 1.3rem;
  color: #ffffff;
}
.pricing .pricing-note {
  margin-top: 25px;
  text-align: center;
}
.pricing .pricing-note .update-date {
  color: #ffffff;
  font-style: italic;
  text-align: center;
}
.contact {
  padding: 50px 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }
}
.contact .contact-map {
  text-align: center;
  margin-bottom: 40px;
}
.contact .contact-map iframe {
  width: 700px;
  height: 400px;
  border: none;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact .contact-map iframe {
    width: 100%;
    height: 300px;
  }
}
.contact hr {
  border: none;
  border-top: 1px solid #A7BDC3;
  margin: 20px 0;
}
.contact .address {
  padding: 25px 0 0;
}
.contact address {
  font-style: normal;
}
.contact .contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) {
  .contact .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.contact .contact-info .contact-item {
  margin-bottom: 40px;
  padding: 30px;
  background: #ffffff;
}
.contact .contact-info .contact-item h3 {
  color: #464427;
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.contact .contact-info .contact-item a {
  font-size: 1.3rem;
  color: #B57345;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact .contact-info .contact-item a:hover {
  color: #464427;
}
.contact .contact-info .contact-item p {
  margin-bottom: 10px;
  color: #464427;
  line-height: 1.6;
}
.contact .contact-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  background: #ffffff;
}
.contact .contact-actions .btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  padding: 15px 25px;
  font-size: 1.1rem;
}
.contact .contact-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.contact .contact-actions .btn.btn-primary {
  background: #7e2494;
  color: #ffffff;
  border: none;
}
.contact .contact-actions .btn.btn-primary:hover {
  background: #4c1646;
  transform: translateY(-2px);
  color: #ffffff;
}
.contact .contact-actions .btn.btn-secondary {
  background: transparent;
  color: #2c0e28;
  border: 2px solid #2c0e28;
}
.contact .contact-actions .btn.btn-secondary:hover {
  background: #2c0e28;
  color: #ffffff;
  transform: translateY(-2px);
}
.contact .contact-form-wrapper {
  max-width: 700px;
  margin: 60px auto 0;
  padding: 40px;
  background: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.contact .contact-form-wrapper .section-header h3 {
  color: #4c1646;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.contact .contact-form-wrapper .form-subtitle {
  color: #464427;
  font-size: 1rem;
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  .contact .contact-form-wrapper {
    padding: 30px 20px;
    margin-top: 40px;
  }
  .contact .contact-form-wrapper .section-header h3 {
    font-size: 1.5rem;
  }
}
.contact .contact-form {
  width: 100%;
}
.contact .contact-form .form-row {
  margin-bottom: 25px;
}
.contact .contact-form .form-group {
  position: relative;
  width: 100%;
}
.contact .contact-form .form-group.has-error .error-message {
  display: block;
}
.contact .contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #464427;
  font-weight: 500;
  font-size: 1rem;
}
.contact .contact-form input[type="text"],
.contact .contact-form input[type="email"],
.contact .contact-form input[type="tel"],
.contact .contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #A7BDC3;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Cera Round Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #464427;
  background: #ffffff;
  transition: all 0.3s ease;
}
.contact .contact-form input[type="text"]:focus,
.contact .contact-form input[type="email"]:focus,
.contact .contact-form input[type="tel"]:focus,
.contact .contact-form textarea:focus {
  outline: none;
  border-color: #7e2494;
  box-shadow: 0 0 0 3px rgba(126, 36, 148, 0.1);
}
.contact .contact-form input[type="text"].error,
.contact .contact-form input[type="email"].error,
.contact .contact-form input[type="tel"].error,
.contact .contact-form textarea.error {
  border-color: #d22027;
}
.contact .contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact .contact-form .error-message {
  display: none;
  color: #d22027;
  font-size: 0.875rem;
  margin-top: 5px;
}
.contact .contact-form .btn-submit {
  width: 100%;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  background: #7e2494;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact .contact-form .btn-submit:hover {
  background: #4c1646;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.contact .contact-form .btn-submit:active {
  transform: translateY(0);
}
.contact .contact-form .btn-submit:disabled {
  background: #A7BDC3;
  cursor: not-allowed;
  transform: none;
}
.contact .contact-form .form-messages {
  margin-top: 20px;
}
.contact .contact-form .success-message {
  padding: 15px 20px;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 6px;
  color: #155724;
  font-size: 1rem;
  text-align: center;
}
.contact .contact-form .error-message-general {
  padding: 15px 20px;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 6px;
  color: #721c24;
  font-size: 1rem;
  text-align: center;
}
.form-success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}
.form-success-modal .form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}
.form-success-modal .form-success-content {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 50px 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease;
  border-top: 5px solid #7e2494;
}
.form-success-modal .form-success-content h3 {
  color: #4c1646;
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}
.form-success-modal .form-success-content p {
  color: #464427;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
.form-success-modal .form-success-content .btn {
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  background: #7e2494;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}
.form-success-modal .form-success-content .btn:hover {
  background: #4c1646;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(126, 36, 148, 0.3);
}
@media (max-width: 768px) {
  .form-success-modal .form-success-content {
    padding: 40px 30px;
  }
  .form-success-modal .form-success-content h3 {
    font-size: 1.5rem;
  }
  .form-success-modal .form-success-content p {
    font-size: 1rem;
  }
}
.form-success-modal .form-success-icon {
  margin: 0 auto 30px;
  animation: checkmark 0.6s ease 0.2s both;
}
.form-success-modal .form-success-icon svg {
  filter: drop-shadow(0 4px 10px rgba(126, 36, 148, 0.2));
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes checkmark {
  0% {
    transform: scale(0) rotate(-45deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.1) rotate(0deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}
.privacy-policy h1,
.cookie-settings-page h1 {
  color: #4c1646;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .privacy-policy h1,
  .cookie-settings-page h1 {
    font-size: 2rem;
  }
}
.privacy-policy h2,
.cookie-settings-page h2 {
  color: #7e2494;
  font-size: 1.8rem;
  margin-top: 30px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .privacy-policy h2,
  .cookie-settings-page h2 {
    font-size: 1.5rem;
  }
}
.privacy-policy h3,
.cookie-settings-page h3 {
  color: #4c1646;
  font-size: 1.4rem;
  margin-top: 20px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .privacy-policy h3,
  .cookie-settings-page h3 {
    font-size: 1.2rem;
  }
}
.privacy-policy p,
.cookie-settings-page p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #464427;
}
.privacy-policy ul,
.cookie-settings-page ul {
  margin-left: 30px;
  margin-bottom: 20px;
  line-height: 1.8;
}
.privacy-policy ul li,
.cookie-settings-page ul li {
  margin-bottom: 10px;
  color: #464427;
}
.privacy-policy a,
.cookie-settings-page a {
  color: #7e2494;
  text-decoration: underline;
}
.privacy-policy a:hover,
.cookie-settings-page a:hover {
  color: #4c1646;
}
.privacy-policy .btn,
.cookie-settings-page .btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  background: #7e2494;
  color: #ffffff;
  padding: 12px 30px;
  font-size: 1.1rem;
  text-decoration: none;
}
.privacy-policy .btn:hover,
.cookie-settings-page .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.privacy-policy .btn:hover,
.cookie-settings-page .btn:hover {
  background: #4c1646;
  transform: translateY(-2px);
  color: #ffffff;
}
.footer {
  background: #2c0e28;
  color: #ffffff;
  padding: 40px 0;
}
.footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .footer-content a {
  color: #fff0b7;
  text-decoration: none;
}
.footer .footer-content a:hover {
  color: #cff0fc;
}
@media (max-width: 768px) {
  .footer .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.footer .footer-logo img {
  height: 140px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer .footer-info p {
  color: #ccc;
  margin: 0;
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 3px solid #7e2494;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  padding: 20px;
}
.cookie-notice .cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .cookie-notice .cookie-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.cookie-notice .cookie-text {
  flex: 1;
}
.cookie-notice .cookie-text h4 {
  color: #7e2494;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.cookie-notice .cookie-text p {
  color: #464427;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
.cookie-notice .cookie-text .cookie-links {
  display: flex;
  gap: 20px;
}
.cookie-notice .cookie-text .cookie-links a {
  color: #7e2494;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}
.cookie-notice .cookie-text .cookie-links a:hover {
  color: #4c1646;
}
.cookie-notice .cookie-buttons {
  display: flex;
  gap: 15px;
}
@media (max-width: 768px) {
  .cookie-notice .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}
.cookie-notice .btn-cookie {
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cookie-notice .btn-cookie.btn-accept {
  background: #7e2494;
  color: #ffffff;
}
.cookie-notice .btn-cookie.btn-accept:hover {
  background: #4c1646;
  transform: translateY(-1px);
}
.cookie-notice .btn-cookie.btn-necessary {
  background: transparent;
  color: #7e2494;
  border: 2px solid #4c1646;
}
.cookie-notice .btn-cookie.btn-necessary:hover {
  background: #4c1646;
  color: #ffffff;
}
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cookie-modal .cookie-modal-content {
  background: #ffffff;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.cookie-modal .cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid #A7BDC3;
}
.cookie-modal .cookie-modal-header h3 {
  color: #7e2494;
  margin: 0;
}
.cookie-modal .cookie-modal-header .cookie-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #6B5CA6;
  cursor: pointer;
  padding: 5px;
}
.cookie-modal .cookie-modal-header .cookie-modal-close:hover {
  color: #4c1646;
}
.cookie-modal .cookie-modal-body {
  padding: 30px;
}
.cookie-modal .cookie-modal-body .cookie-category {
  margin-bottom: 25px;
  padding: 20px;
  background: #F6FAFC;
  border-radius: 8px;
  border-left: 4px solid #7e2494;
}
.cookie-modal .cookie-modal-body .cookie-category:last-child {
  margin-bottom: 0;
}
.cookie-modal .cookie-modal-body .cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.cookie-modal .cookie-modal-body .cookie-category-header h4 {
  color: #7e2494;
  margin: 0;
  font-size: 1.1rem;
}
.cookie-modal .cookie-modal-body .cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}
.cookie-modal .cookie-modal-body .cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .cookie-modal-body .cookie-toggle input:checked + .cookie-slider {
  background-color: #7e2494;
}
.cookie-modal .cookie-modal-body .cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(26px);
}
.cookie-modal .cookie-modal-body .cookie-toggle input:disabled + .cookie-slider {
  background-color: #A7BDC3;
  cursor: not-allowed;
}
.cookie-modal .cookie-modal-body .cookie-toggle .cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #A7BDC3;
  transition: 0.3s;
  border-radius: 24px;
}
.cookie-modal .cookie-modal-body .cookie-toggle .cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #ffffff;
  transition: 0.3s;
  border-radius: 50%;
}
.cookie-modal .cookie-modal-body p {
  color: #464427;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
.cookie-modal .cookie-modal-footer {
  padding: 20px 30px;
  border-top: 1px solid #A7BDC3;
  text-align: center;
}
.cookie-modal .cookie-modal-footer .btn-save {
  background: #7e2494;
  color: #ffffff;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cookie-modal .cookie-modal-footer .btn-save:hover {
  background: #4c1646;
  transform: translateY(-1px);
}
@media print {
  .language-switcher,
  .header,
  .footer,
  .cookie-notice,
  .cookie-modal {
    display: none;
  }
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  .hero {
    min-height: auto;
    padding: 40px 0;
  }
}
