@charset "UTF-8";
/* Custom Breadcrumb */
.custom-breadcrumb {
  padding: 1.5rem 0rem;
  margin-bottom: 1rem;
  border-radius: 0.25rem;
}
.custom-breadcrumb a:link, .custom-breadcrumb a:visited {
  color: #193560;
  text-decoration: none;
}
.custom-breadcrumb a:link:hover, .custom-breadcrumb a:visited:hover {
  text-decoration: underline;
}
.custom-breadcrumb span {
  color: #6c757d;
}

/* Základní text */
body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #222;
}

/* Nadpisy */
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.6em;
}

h2 {
  color: #193560;
}

h3 {
  color: #000000;
}

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

/* === JEDNOTNÉ STYLY TLAČÍTEK === */
/* Základní styl pro všechna tlačítka */
.button,
.elementor-button,
a.button,
button.button,
input[type=submit].button {
  padding: 14px 32px;
  border-radius: 8px;
  border-width: 2px;
  border-style: solid;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  line-height: 1.5;
}

/* Primární tlačítko */
.button-primary,
.elementor-button.elementor-button-primary,
.button.button-primary {
  background: #193560;
  color: #fff;
  border-color: #193560;
}
.button-primary:hover, .button-primary:focus,
.elementor-button.elementor-button-primary:hover,
.elementor-button.elementor-button-primary:focus,
.button.button-primary:hover,
.button.button-primary:focus {
  background: rgb(14.4628099174, 30.6611570248, 55.5371900826);
  border-color: rgb(14.4628099174, 30.6611570248, 55.5371900826);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.button-primary:visited,
.elementor-button.elementor-button-primary:visited,
.button.button-primary:visited {
  color: #fff;
}

/* Outline tlačítko */
.button-outline,
.elementor-button.elementor-button-outline,
.button.button-outline {
  background: transparent;
  color: #193560;
  border-color: #193560;
}
.button-outline:hover, .button-outline:focus,
.elementor-button.elementor-button-outline:hover,
.elementor-button.elementor-button-outline:focus,
.button.button-outline:hover,
.button.button-outline:focus {
  background: #193560;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.button-outline:visited,
.elementor-button.elementor-button-outline:visited,
.button.button-outline:visited {
  color: #193560;
}

/* Sekundární tlačítko (bílé varianty pro tmavé pozadí) */
.button-secondary,
.elementor-button.elementor-button-secondary,
.button.button-secondary {
  background: #fff;
  color: #193560;
  border-color: #fff;
}
.button-secondary:hover, .button-secondary:focus,
.elementor-button.elementor-button-secondary:hover,
.elementor-button.elementor-button-secondary:focus,
.button.button-secondary:hover,
.button.button-secondary:focus {
  background: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.button-secondary:visited,
.elementor-button.elementor-button-secondary:visited,
.button.button-secondary:visited {
  color: #193560;
}

/* Outline bílé tlačítko pro tmavé pozadí */
.button-outline-white,
.elementor-button.elementor-button-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.button-outline-white:hover, .button-outline-white:focus,
.elementor-button.elementor-button-outline-white:hover,
.elementor-button.elementor-button-outline-white:focus {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}
.button-outline-white:visited,
.elementor-button.elementor-button-outline-white:visited {
  color: #fff;
}

/* Override pro všechny Elementor specifické třídy - zajistí jednotné rozměry */
.elementor-element .elementor-button,
.elementor-widget-button .elementor-button {
  padding: 14px 32px !important;
  border-radius: 8px !important;
  border-width: 2px !important;
}

/* === KONEC JEDNOTNÝCH STYLŮ TLAČÍTEK === */
/* Top Contact Bar */
.top-contact-bar {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 12px 0;
  font-size: 0.9rem;
}
.top-contact-bar .contact-info {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}
.top-contact-bar .contact-item {
  color: #222;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: color 0.3s ease;
}
.top-contact-bar .contact-item:hover, .top-contact-bar .contact-item:active, .top-contact-bar .contact-item:focus {
  color: #193560;
  text-decoration: none;
}
.top-contact-bar .contact-item:visited {
  color: #222;
  text-decoration: none;
}
.top-contact-bar .contact-item i {
  font-size: 1rem;
  color: #193560;
}
.top-contact-bar .social-links {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  align-items: center;
}
.top-contact-bar .social-item {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #5FA8E5;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.top-contact-bar .social-item:hover, .top-contact-bar .social-item:active, .top-contact-bar .social-item:focus {
  background-color: rgb(14.4628099174, 30.6611570248, 55.5371900826);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.top-contact-bar .social-item:visited {
  background-color: #5FA8E5;
  color: #fff;
  text-decoration: none;
}
.top-contact-bar .social-item i {
  font-size: 1rem;
}
.top-contact-bar {
  /* Responsive adjustments */
}
@media (max-width: 767px) {
  .top-contact-bar .contact-info,
  .top-contact-bar .social-links {
    justify-content: center;
  }
  .top-contact-bar .row > div {
    margin-bottom: 10px;
  }
  .top-contact-bar .row > div:last-child {
    margin-bottom: 0;
  }
}

.site-header {
  display: flex;
  align-items: center;
}

.menu-section {
  padding-top: 15px;
  padding-bottom: 15px;
}

@media (min-width: 1201px) {
  .menu-section {
    transition: padding 0.3s ease;
  }
  .menu-section.scrolled {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.fp-header-section {
  background-color: #193560;
  color: #fff;
  padding: 25px 0 60px 0px;
  text-align: center;
}
.fp-header-section h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  margin-top: 10px;
}
.fp-header-section p {
  font-size: 1.5rem;
}
.fp-header-section span {
  font-size: 2rem;
  color: #bce9ff;
}

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

/* Properties Section - Nabídka nemovitostí */
.properties-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.property-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.property-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.property-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: #e9ecef;
}
.property-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.property-image:hover img {
  transform: scale(1.05);
}

.property-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #193560;
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 1;
}

.property-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.property-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
  line-height: 1.4;
  min-height: 2.8em;
}

.property-location {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.property-location i {
  color: #193560;
  font-size: 0.9rem;
}

.property-details {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e9ecef;
}

.property-detail-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #666;
}
.property-detail-item i {
  color: #193560;
  font-size: 0.95rem;
}

.property-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.property-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #193560;
}

.btn-property-detail, .btn-property-detail:active, .btn-property-detail:focus, .btn-property-detail:visited {
  padding: 8px 20px;
  background-color: transparent;
  color: #193560;
  border: 2px solid #193560;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.btn-property-detail:hover, .btn-property-detail:active:hover, .btn-property-detail:focus:hover, .btn-property-detail:visited:hover {
  background-color: #193560;
  color: #fff;
  text-decoration: none;
}

/* Responsive adjustments for properties */
@media (max-width: 991px) {
  .property-card {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .property-image {
    height: 200px;
  }
  .property-title {
    font-size: 1.05rem;
  }
  .property-price {
    font-size: 1.2rem;
  }
}
/* Why Us Section - Proč si vybrat právě nás */
.why-us-section {
  padding: 80px 0;
  background-color: #fff;
}

.why-us-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  height: 100%;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.why-us-card:hover {
  border-color: #193560;
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(26, 118, 179, 0.15);
}
.why-us-card:hover .why-us-icon {
  background: linear-gradient(135deg, #193560 0%, rgb(9.194214876, 19.4917355372, 35.305785124) 100%);
  transform: scale(1.1);
}

.why-us-icon-wrapper {
  margin-bottom: 20px;
}

.why-us-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(30.2685950413, 64.1694214876, 116.2314049587) 0%, #193560 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 118, 179, 0.25);
}
.why-us-icon i {
  font-size: 2rem;
  color: #fff;
}

.why-us-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.why-us-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.why-us-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 0;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-top: 10px;
}

/* Why Us Section V2 - with photos and colors */
.why-us-section-v2 {
  padding: 50px 0;
}

.why-us-card-v2 {
  position: relative;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.why-us-card-v2:hover .why-us-icon-v2 {
  transform: scale(1.1) rotate(5deg);
}

.why-us-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.9;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.why-us-overlay-blue {
  background: rgba(25, 53, 96, 0.9411764706);
}

.why-us-overlay-green {
  background: linear-gradient(135deg, rgba(91, 239, 223, 0.95) 0%, rgba(2, 71, 63, 0.9) 100% 100%);
}

.why-us-overlay-orange {
  background: linear-gradient(135deg, rgba(255, 194, 103, 0.95) 0%, rgba(255, 133, 5, 0.9) 100%);
}

.why-us-overlay-purple {
  background: linear-gradient(135deg, rgba(123, 31, 162, 0.95) 0%, rgba(81, 45, 168, 0.9) 100%);
}

.why-us-overlay-red {
  background: linear-gradient(135deg, rgba(253, 170, 169, 0.95) 0%, rgba(213, 0, 0, 0.9) 100%);
}

.why-us-overlay-teal {
  background: linear-gradient(135deg, rgba(0, 150, 136, 0.95) 0%, rgba(0, 121, 107, 0.9) 100%);
}

.why-us-overlay-indigo {
  background: linear-gradient(135deg, rgba(151, 166, 247, 0.95) 0%, rgba(3, 10, 55, 0.9) 100%);
}

.why-us-overlay-amber {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.95) 0%, rgba(255, 160, 0, 0.9) 100%);
}

.why-us-content-v2 {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.why-us-icon-v2 {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.why-us-icon-v2 i {
  font-size: 1.6rem;
  color: #fff;
}

.why-us-title-v2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.why-us-text-v2 {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for why us */
@media (max-width: 991px) {
  .why-us-section {
    padding: 60px 0;
  }
  .why-us-card {
    margin-bottom: 20px;
  }
  .why-us-section-v2 {
    padding: 40px 0;
  }
  .why-us-card-v2 {
    height: 260px;
  }
}
@media (max-width: 767px) {
  .why-us-icon {
    width: 70px;
    height: 70px;
  }
  .why-us-icon i {
    font-size: 1.75rem;
  }
  .why-us-title {
    font-size: 1.2rem;
  }
  .why-us-card-v2 {
    height: 240px;
    border-radius: 12px;
  }
  .why-us-content-v2 {
    padding: 20px 15px;
  }
  .why-us-icon-v2 {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
  }
  .why-us-icon-v2 i {
    font-size: 1.4rem;
  }
  .why-us-title-v2 {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }
  .why-us-text-v2 {
    font-size: 0.85rem;
  }
}
/* ===================================
   FRONT PAGE CUSTOM STYLES
   =================================== */
/* General Typography */
body {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1f2937;
  overflow-x: hidden;
}

/* Anchor offset for fixed header */
:where([id]) {
  scroll-margin-top: 125px;
}

@media (max-width: 991px) {
  :where([id]) {
    scroll-margin-top: 80px;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 700;
}

/* ===================================
   SECTION STYLING - IMPROVED
   =================================== */
section {
  position: relative;
}

/* Add subtle background patterns */
.why-us-section::before,
.properties-section::before,
.blog-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 51, 128, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
  background: linear-gradient(90deg, rgb(0, 51, 128) 0%, rgba(0, 51, 128, 0.95) 40%, rgba(0, 51, 128, 0.7) 70%, rgba(0, 51, 128, 0.4) 100%), url("../img/home.webp");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 140px 20px;
  color: white;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  filter: grayscale(0.5) brightness(1.1);
}

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

/* Hero Section Kontakt - Variant s jinou fotkou */
.hero-section-kontakt {
  background: linear-gradient(270deg, rgb(0, 51, 128) 0%, rgba(0, 51, 128, 0.95) 40%, rgba(0, 51, 128, 0.7) 70%, rgba(0, 51, 128, 0.4) 100%), url(../img/mate-nemovitost-k-prodeji.jpg);
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 150px 20px;
  color: white;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  filter: grayscale(0.5) brightness(1.1);
}

/* Mobile < 600px: gradient-only hero (no photo) */
@media (max-width: 600px) {
  .hero-section {
    background: linear-gradient(90deg, rgb(0, 51, 128) 0%, rgba(0, 51, 128, 0.95) 40%, rgba(0, 51, 128, 0.7) 70%, rgba(0, 51, 128, 0.4) 100%), url("../img/home.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(0.5) brightness(1.1);
  }
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
  animation: slideInDown 0.8s ease;
}

.hero-title {
  color: #fff;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
  animation: slideInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideInUp 0.8s ease 0.4s both;
}

.btn-hero-primary {
  background: white;
  color: #003380;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-hero-primary:hover,
.btn-hero-primary:active,
.btn-hero-primary:focus {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: #003380;
  text-decoration: none;
}

.btn-hero-primary:visited {
  color: #003380;
  text-decoration: none;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid white;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover,
.btn-hero-secondary:active,
.btn-hero-secondary:focus {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
}

.btn-hero-secondary:visited {
  color: white;
  text-decoration: none;
}

/* Floating Phone Button */
.floating-phone {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.floating-phone-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #00b142;
  color: white;
  padding: 15px 25px 15px 15px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.floating-phone-btn img {
  width: 30px;
  height: 30px;
}

.floating-phone-btn:hover,
.floating-phone-btn:active,
.floating-phone-btn:focus {
  background: #20ba5a;
  color: white;
  text-decoration: none;
  transform: scale(1.05);
}

.floating-phone-btn:visited {
  color: white;
  text-decoration: none;
}

.phone-icon {
  font-size: 24px;
}

.phone-number {
  font-weight: 600;
}

/* ===================================
   WHY US SECTION
   =================================== */
.why-us-section {
  padding: 80px 20px;
  background: #fff;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
}

.why-us-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.why-us-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px auto;
  border-radius: 16px;
  background: rgba(0, 51, 128, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us-icon .icon {
  width: 40px;
  height: 40px;
  stroke: #003380;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-us-title {
  font-size: 1.5rem;
  color: #003380;
  margin-bottom: 15px;
}

.why-us-text {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* ===================================
   PROPERTIES SECTION
   =================================== */
.properties-section {
  padding: 80px 20px;
  background: white;
}

.properties-placeholder {
  padding: 60px;
  background: #f9fafb;
  border-radius: 15px;
  text-align: center;
  border: 2px dashed #d1d5db;
}

.properties-placeholder p {
  color: #9ca3af;
  font-size: 1.2rem;
  margin: 0;
}

/* ===================================
   STEPS SECTION
   =================================== */
.steps-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #003380 0%, #000000 100%);
  color: white;
}

.step-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  opacity: 0.7;
}

.step-title {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.step-text {
  opacity: 0.9;
  line-height: 1.6;
  margin: 0;
}

.carousel-indicators {
  top: -8px;
}

/* Steps Section: Responsive Carousel & Grid */
.steps-carousel-tablet,
.steps-carousel-mobile {
  display: none;
}

.steps-grid-desktop {
  display: flex;
  flex-wrap: wrap;
}

/* Tablet: show carousel with 4 items (768px–1199px) */
@media (max-width: 1199px) {
  .steps-grid-desktop {
    display: none;
  }
  .steps-carousel-tablet {
    display: block;
  }
}
/* Mobile: show carousel with 1 item (<768px) */
@media (max-width: 767px) {
  .steps-carousel-tablet {
    display: none;
  }
  .steps-carousel-mobile {
    display: block;
  }
}
.steps-carousel-tablet .carousel-item {
  padding: 20px 60px;
}

.steps-carousel-mobile .carousel-item {
  padding: 20px 60px;
}

/* Carousel controls styling for steps */
.steps-carousel-tablet .carousel-control-prev,
.steps-carousel-tablet .carousel-control-next,
.steps-carousel-mobile .carousel-control-prev,
.steps-carousel-mobile .carousel-control-next {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.steps-carousel-tablet .carousel-control-prev,
.steps-carousel-mobile .carousel-control-prev {
  left: -10px;
}

.steps-carousel-tablet .carousel-control-next,
.steps-carousel-mobile .carousel-control-next {
  right: -10px;
}

.steps-carousel-tablet .carousel-control-prev:hover,
.steps-carousel-tablet .carousel-control-next:hover,
.steps-carousel-mobile .carousel-control-prev:hover,
.steps-carousel-mobile .carousel-control-next:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.5);
}

.steps-carousel-tablet .carousel-control-prev-icon,
.steps-carousel-tablet .carousel-control-next-icon,
.steps-carousel-mobile .carousel-control-prev-icon,
.steps-carousel-mobile .carousel-control-next-icon {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Small screens (≤420px): hide arrows and add minimal padding for content */
@media (max-width: 420px) {
  .steps-carousel-mobile .carousel-item {
    padding: 20px 5px 5px 5px;
  }
  .steps-carousel-mobile .carousel-control-prev,
  .steps-carousel-mobile .carousel-control-next {
    display: none;
  }
}
/* Larger screens (>420px): show arrows with reduced padding */
@media (min-width: 421px) {
  .steps-carousel-mobile .carousel-item {
    padding: 20px 60px;
  }
}
/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
  padding: 80px 20px;
  background: white;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 15px 30px;
  background: white;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-question:focus {
  outline: none;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: #003380;
  min-width: 30px;
  text-align: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 20px 30px 25px 30px;
  color: #6b7280;
  line-height: 1.8;
}

/* ===================================
   BLOG SECTION
   =================================== */
.blog-section {
  padding: 80px 20px;
  background: #f9fafb;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-image {
  height: 200px;
  background: linear-gradient(135deg, #003380 0%, #000000 100%);
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.blog-title a {
  text-decoration: none;
  color: #1f2937;
  transition: color 0.3s ease;
}

.blog-title a:hover,
.blog-title a:active,
.blog-title a:focus {
  color: #003380;
}

.blog-title a:visited {
  color: #1f2937;
}

.blog-excerpt {
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.6;
  flex: 1;
}

.blog-link {
  color: #003380;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-link:hover,
.blog-link:active,
.blog-link:focus {
  color: #000000;
  text-decoration: none;
}

.blog-link:visited {
  color: #003380;
  text-decoration: none;
}

/* ===================================
   CTA SECTION - IMPROVED
   =================================== */
.cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #003380 0%, #000000 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

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

.cta-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-contact-info {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.cta-contact-item:hover,
.cta-contact-item:active,
.cta-contact-item:focus {
  color: white;
  text-decoration: none;
  transform: scale(1.05);
}

.cta-contact-item:visited {
  color: white;
  text-decoration: none;
}

.cta-icon {
  font-size: 1.5rem;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
/* Tablets */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 300px;
  }
  .section-title {
    font-size: 2rem;
  }
  .cta-title {
    font-size: 2rem;
  }
  .floating-phone {
    bottom: 20px;
    right: 20px;
  }
  .phone-number {
    display: none;
  }
  .faq-item {
    padding-bottom: 10px;
  }
}
/* Mobile */
@media (max-width: 576px) {
  .hero-section {
    padding: 80px 20px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .why-us-section,
  .properties-section,
  .steps-section,
  .faq-section,
  .blog-section,
  .cta-section {
    padding: 60px 20px;
  }
  .why-us-card,
  .step-card {
    padding: 30px 20px;
  }
  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }
  .faq-answer-content {
    padding: 15px 20px 5px 20px;
  }
  .cta-title {
    font-size: 1.8rem;
  }
  .cta-contact-info {
    flex-direction: column;
    gap: 15px;
  }
  /* Footer Responsive */
  .footer-section {
    padding: 40px 20px !important;
  }
  .footer-title {
    font-size: 1.1rem;
  }
}
/* ===================================
   TESTIMONIALS SECTION - REFERENCES
   =================================== */
.testimonials-section {
  padding: 80px 20px;
  background: white;
}

/* Carousel Styling */
.testimonials-section .carousel {
  padding: 0 60px;
  position: relative;
}

.testimonials-section .carousel-item {
  padding: 20px 0;
}

/* Mobile responsivní - skrytí druhého prvku */
@media (max-width: 767px) {
  .testimonial-col:nth-child(2) {
    display: none;
  }
}
.testimonial-card {
  background: #f9fafb;
  padding: 35px;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 400px;
}

.testimonial-rating {
  margin-bottom: 20px;
}

.testimonial-rating .star {
  font-size: 1.2rem;
  margin-right: 3px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #1f2937;
  margin-bottom: 25px;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #003380 0%, #000000 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 5px 0;
}

.testimonial-location {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
}

/* Carousel Controls */
.testimonials-section .carousel-control-prev,
.testimonials-section .carousel-control-next {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonials-section .carousel-control-prev {
  left: -18px;
}

.testimonials-section .carousel-control-next {
  right: -18px;
}

.testimonials-section .carousel-control-icon {
  width: 20px;
  height: 20px;
}

.testimonials-section .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23003380'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.testimonials-section .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23003380'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.testimonials-section .carousel-control-prev:hover,
.testimonials-section .carousel-control-next:hover {
  background: #003380;
}

.testimonials-section .carousel-control-prev:hover .carousel-control-prev-icon,
.testimonials-section .carousel-control-next:hover .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.testimonials-section .carousel-control-next:hover .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Carousel Indicators */
.testimonials-section .carousel-indicators {
  bottom: -50px;
  margin-bottom: 0;
  position: static;
  margin-top: 30px;
}

.testimonials-section .carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #cbd5e1;
  border: none;
  opacity: 1;
  margin: 0 5px;
}

.testimonials-section .carousel-indicators li.active {
  background-color: #003380;
}

/* Responsive */
@media (max-width: 991px) {
  .testimonials-section .carousel {
    padding: 0 50px;
  }
  .testimonial-card {
    min-height: 250px;
  }
}
@media (max-width: 768px) {
  .testimonials-section .carousel {
    padding: 0 0px;
  }
  .testimonials-section {
    padding: 40px 20px;
  }
  .testimonials-section .carousel-control-prev,
  .testimonials-section .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  .testimonials-section .carousel-indicators {
    bottom: -40px;
  }
  .testimonials-section .carousel-indicators {
    margin-top: 0px;
  }
}
/* ===================================
   FOOTER SECTION - MODERN MINIMALIST
   =================================== */
.footer-section {
  background: #001330;
  color: #cbd5e1;
  padding: 80px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section .container {
  max-width: 1200px;
}

/* Footer Title */
.footer-title {
  font-size: 1.6rem;
  font-weight: 500;
  color: white;
  margin-bottom: 35px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.5px;
}

/* Footer Text */
.footer-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #dddddd;
  margin-bottom: 20px;
}

/* Footer Lists */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

a.footer-link:hover,
a.footer-link:active,
a.footer-link:focus {
  color: #fff;
  text-decoration: none;
}

a.footer-link:visited {
  color: #cbd5e1;
  text-decoration: none;
}

/* Footer Contact */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  margin-bottom: 15px;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-list i {
  font-size: 1.3rem;
  min-width: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  color: #193560;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.footer-social-link:hover,
.footer-social-link:active,
.footer-social-link:focus {
  background: #e2e2e2;
  color: #193560;
  transform: translateY(-2px);
  text-decoration: none;
}

.footer-social-link:visited {
  background: #fff;
  color: #193560;
  text-decoration: none;
}

/* Footer Divider */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 25px 0;
}

/* Footer Bottom */
.footer-bottom-text {
  font-size: 0.85rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
}

.footer-link-small {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.85rem;
}

.footer-link-small:hover,
.footer-link-small:active,
.footer-link-small:focus {
  color: #ffffff;
  text-decoration: none;
}

.footer-link-small:visited {
  color: #94a3b8;
  text-decoration: none;
}

/* Print styles */
@media print {
  .floating-phone {
    display: none;
  }
}
/* ========================================
   O nás Page Styles
   ======================================== */
.page-o-nas {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

/* Hero Section */
.hero-section-onas {
  background: linear-gradient(135deg, #003380 0%, #000000 100%);
  color: white;
  padding: 75px 0;
  text-align: center;
}

.hero-section-onas .page-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-section-onas .hero-subtitle {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
}

.intro-section p {
  font-size: 1.1rem;
}

.intro-section h2 {
  font-size: 2.2rem;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #193560;
  margin-bottom: 10px;
}

.stat-label {
  color: #666;
  font-size: 1rem;
}

/* Value Cards */
.value-card {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
  font-size: 3rem;
  color: #193560;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.value-card p {
  color: #666;
  line-height: 1.6;
}

/* Service Box */
.service-box {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 10px;
  height: 100%;
}

.service-box h3 {
  color: #333;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.service-box h3 i {
  color: #193560;
  margin-right: 10px;
}

.service-box li {
  font-size: 1.1rem;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: #555;
}

.service-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #193560;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Process Timeline */
.process-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.process-step:not(:last-child):after {
  content: "";
  position: absolute;
  left: 35px;
  top: 70px;
  width: 2px;
  height: calc(100% + 40px);
  background: #e0e0e0;
}

.step-number {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.5019607843);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-right: 30px;
  z-index: 1;
}

.process-section {
  padding-left: 10px;
  padding-right: 10px;
}

.process-section .step-number {
  background-color: #5FA8E5;
  opacity: 1;
}

.process-section .ste .step-content h4 {
  color: #333;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.step-content p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Team Members */
.team-member {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 10px;
}

.member-photo {
  width: 250px;
  height: 250px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
}

.member-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.team-member h4 {
  color: #333;
  margin-bottom: 5px;
  font-size: 1.3rem;
}

.member-role {
  color: #193560;
  font-weight: 600;
  margin-bottom: 15px;
}

.team-member p {
  color: #666;
  line-height: 1.6;
}

.member-description {
  color: #666;
  line-height: 1.6;
}
.member-description p {
  margin-bottom: 0.5rem;
}
.member-description p:last-child {
  margin-bottom: 0;
}

/* Why Us */
.why-item {
  display: flex;
  margin-bottom: 30px;
}

.why-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #193560;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 20px;
}

.why-content h4 {
  color: #333;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.why-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Testimonials */
.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
  color: #ffc107;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.testimonial-text {
  color: #555;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  color: #193560;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #003380 0%, #000000 100%);
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section .lead {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

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

.btn {
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-light {
  background: white;
  color: #193560;
}

.btn-light:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-light:hover {
  background: white;
  color: #193560;
}

/* Background helpers */
.bg-light {
  background-color: #f8f9fa !important;
}

.bg-primary {
  background-color: #193560 !important;
}

.text-white {
  color: white !important;
}

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

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 10px auto 0;
}

/* Values Section - Modern Design */
.values-grid {
  margin-top: 2rem;
}

.value-card-modern {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.value-card-modern__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #193560 0%, #2a4a7f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.value-card-modern__icon i {
  font-size: 2.5rem;
  color: white;
}

.value-card-modern__title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #193560;
  margin-bottom: 1rem;
}

.value-card-modern__description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section-onas .page-title {
    font-size: 2.5rem;
  }
  .hero-section-onas .hero-subtitle {
    font-size: 1.1rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  .section-padding {
    padding: 50px 10px;
  }
  .process-step {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .step-number {
    margin-bottom: 20px;
  }
  .process-step:not(:last-child):after {
    display: none;
  }
  .cta-section h2 {
    font-size: 2rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 300px;
  }
}
/* ===================================
   REVIEWS PAGE (RECENZE)
   =================================== */
/* Hero Section for Reviews */
.hero-section-recenze, .hero-section-onas {
  background: linear-gradient(135deg, #003380 0%, var(--gradient-color-2, #000000) 100%);
  background-size: cover;
  background-position: center;
  padding: 75px 20px;
  color: white;
  text-align: center;
}

.hero-section-recenze .section-eyebrow, .hero-section-onas .section-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-section-recenze .page-title, .hero-section-onas .page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.2;
}

.hero-section-recenze .hero-subtitle, .hero-section-onas .hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-section-recenze .hero-actions, .hero-section-onas .hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-section-recenze .button, .hero-section-onas .button {
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero-section-recenze .button-primary, .hero-section-onas .button-primary {
  background: #fff;
  color: #193560;
  border: 2px solid #fff;
}

.hero-section-recenze .button-primary:hover, .hero-section-onas .button-primary:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-section-recenze .button-outline, .hero-section-onas .button-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.hero-section-recenze .button-outline:hover, .hero-section-onas .button-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Section Intro */
.section-intro-recenze {
  padding: 60px 0;
  background: #f9fafb;
}

.section-intro-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b5563;
}

.section-intro-content h2 {
  color: #193560;
  margin-bottom: 20px;
}

/* Stats Section */
.section-stats-recenze {
  padding: 60px 0;
  background: #fff;
}

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

.stat-card {
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, rgba(0, 51, 128, 0.05) 0%, rgba(0, 51, 128, 0.1) 100%);
  border-radius: 15px;
  border: 2px solid rgba(0, 51, 128, 0.1);
}

.stat-value {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #193560;
  margin-bottom: 10px;
}

.stat-label {
  display: block;
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
}

/* Reviews Section */
.section-reviews {
  padding: 80px 0;
  background: #FFF;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #193560;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: #6b7280;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.review-card-inner {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.review-card-header {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.review-card-avatar {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(0, 51, 128, 0.1);
}

.review-card-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.review-card-meta {
  flex-grow: 1;
}

.review-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #193560;
  margin-bottom: 5px;
}

.review-card-client {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 3px;
}

.review-card-city {
  color: #9ca3af;
}

.review-card-transaction {
  font-size: 0.85rem;
  color: #9ca3af;
  margin: 0;
}

.review-card-body {
  flex-grow: 1;
  margin-bottom: 20px;
}

.review-card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
  font-style: italic;
  margin: 0;
}

.review-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #e5e7eb;
  font-size: 0.85rem;
}

.review-card-rating {
  font-weight: 600;
  color: #193560;
}

.review-card-date {
  color: #9ca3af;
}

.section-empty {
  text-align: center;
  color: #9ca3af;
  font-size: 1.1rem;
  padding: 60px 20px;
}

/* Process Section */
.section-process {
  padding: 80px 0;
  background: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.process-card {
  background: #F8F9FA;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
}

.process-card h3 {
  font-size: 1.4rem;
  color: #193560;
  margin-bottom: 15px;
}

.process-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

/* CTA Section */
.section-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #193560 0%, rgb(9.194214876, 19.4917355372, 35.305785124) 100%);
}

.cta-card {
  text-align: center;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
}

.cta-card h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 20px;
}

.cta-card p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-card .button-primary {
  background: #fff;
  color: #193560;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-card .button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for Reviews */
@media (max-width: 991px) {
  .hero-section-recenze .page-title {
    font-size: 2.5rem;
  }
  .reviews-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .cta-card h2 {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .hero-section-recenze {
    padding: 80px 20px;
  }
  .hero-section-recenze .page-title {
    font-size: 2rem;
  }
  .hero-section-recenze .hero-subtitle {
    font-size: 1rem;
  }
  .hero-section-recenze .hero-actions {
    flex-direction: column;
  }
  .hero-section-recenze .button {
    width: 100%;
    max-width: 300px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-value {
    font-size: 2.5rem;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
  .cta-card h2 {
    font-size: 1.8rem;
  }
  .cta-card p {
    font-size: 1rem;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
}
/* Elementor Widget*/
.jsp-contact-form-wrapper, .jsp-property-contact-form-wrapper {
  padding: 10px;
}

.sell-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1f3a 0%, #1d3c6b 100%);
  color: #fff;
  padding: 110px 0 90px;
}

.sell-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(124, 192, 255, 0.35) 0%, rgba(124, 192, 255, 0) 70%);
  z-index: 0;
}

.sell-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sell-hero__eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.sell-hero__title {
  font-size: 3.2rem;
  color: #fff;
  margin-bottom: 18px;
}

.sell-hero__lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.sell-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.sell-hero__highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.sell-hero__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.sell-hero__highlights li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7cc0ff;
  margin-top: 8px;
  flex: 0 0 10px;
}

.sell-hero__card {
  background: #fff;
  color: #1d2740;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 18px 45px rgba(12, 25, 51, 0.35);
}

.sell-hero__card h2 {
  color: #1d2740;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.sell-hero__card p {
  margin-bottom: 20px;
  color: #4b5563;
}

.sell-hero__form,
.sell-valuation__form,
.sell-contact__form {
  display: grid;
  gap: 12px;
}

.sell-hero__form label,
.sell-valuation__form label,
.sell-contact__form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f2a44;
}

.sell-hero__form input,
.sell-hero__form select,
.sell-valuation__form input,
.sell-valuation__form select,
.sell-contact__form input,
.sell-contact__form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d7dee8;
  background: #f8fafc;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sell-hero__form input:focus,
.sell-hero__form select:focus,
.sell-valuation__form input:focus,
.sell-valuation__form select:focus,
.sell-contact__form input:focus,
.sell-contact__form textarea:focus {
  outline: none;
  border-color: #193560;
  box-shadow: 0 0 0 3px rgba(25, 53, 96, 0.15);
}

.sell-hero .button,
.sell-valuation .button,
.sell-contact .button {
  background: #193560;
  color: #fff;
  border-color: #193560;
}

.sell-hero .button:hover,
.sell-valuation .button:hover,
.sell-contact .button:hover {
  background: rgb(14.4628099174, 30.6611570248, 55.5371900826);
  border-color: rgb(14.4628099174, 30.6611570248, 55.5371900826);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(12, 25, 51, 0.2);
}

.sell-hero .button--ghost,
.sell-contact .button--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.sell-hero .button--ghost:hover,
.sell-contact .button--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
}

.sell-trust {
  background: #fff;
  padding: 70px 0;
}

.sell-trust__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.sell-trust__item {
  background: #f4f7fb;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(15, 31, 58, 0.08);
}

.sell-trust__item h3 {
  color: #0f1f3a;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.sell-trust__item p {
  margin: 0;
  color: #4b5563;
}

.sell-steps {
  background: #f5f7fb;
  padding: 90px 0;
}

.sell-steps__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sell-steps__inner h2 {
  text-align: center;
  margin-bottom: 40px;
}

.sell-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.sell-steps__step {
  background: #fff;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 14px 35px rgba(15, 31, 58, 0.08);
}

.sell-steps__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(25, 53, 96, 0.1);
  color: #193560;
  font-weight: 700;
  margin-bottom: 18px;
}

.sell-steps__step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.sell-steps__step p {
  margin: 0;
  color: #4b5563;
}

.sell-valuation {
  background: #fff;
  padding: 90px 0;
}

.sell-valuation__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
}

.sell-valuation__content ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}

.sell-valuation__content li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #4b5563;
}

.sell-valuation__content li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: #193560;
  flex: 0 0 8px;
}

.sell-valuation__form {
  background: #f5f7fb;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 31, 58, 0.08);
}

.sell-proof {
  background: #f8fafc;
  padding: 90px 0;
}

.sell-proof__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sell-proof__inner h2 {
  text-align: center;
  margin-bottom: 40px;
}

.sell-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.sell-proof__card {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 31, 58, 0.08);
  display: grid;
  gap: 16px;
}

.sell-proof__card p {
  margin: 0;
  font-style: italic;
  color: #374151;
}

.sell-proof__card span {
  font-weight: 600;
  color: #0f1f3a;
}

.sell-faq {
  background: #fff;
  padding: 80px 0 100px;
}

.sell-faq__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.sell-faq__items {
  display: grid;
  gap: 16px;
}

.sell-faq details {
  border: 1px solid #e3e8f0;
  border-radius: 12px;
  padding: 18px 22px;
  background: #f8fafc;
}

.sell-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: #0f1f3a;
}

.sell-faq details p {
  margin: 12px 0 0;
  color: #4b5563;
}

.sell-contact {
  background: linear-gradient(135deg, #0f1f3a 0%, #1d3c6b 100%);
  padding: 90px 0;
  color: #fff;
}

.sell-contact__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.sell-contact__content h2 {
  color: #fff;
}

.sell-contact__info {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 10px;
}

.sell-contact__info li {
  color: rgba(255, 255, 255, 0.85);
}

.sell-contact__form {
  background: #fff;
  color: #1d2740;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 18px 45px rgba(12, 25, 51, 0.35);
}

.sell-contact__consent {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #4b5563;
}

@keyframes sellFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sell-hero__content,
.sell-hero__card,
.sell-trust__item,
.sell-steps__step,
.sell-proof__card {
  animation: sellFadeUp 0.8s ease both;
}

.sell-hero__card {
  animation-delay: 0.1s;
}

.sell-trust__item:nth-child(2) {
  animation-delay: 0.15s;
}

.sell-trust__item:nth-child(3) {
  animation-delay: 0.3s;
}

.sell-proof__card:nth-child(2) {
  animation-delay: 0.15s;
}

.sell-proof__card:nth-child(3) {
  animation-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  .sell-hero__content,
  .sell-hero__card,
  .sell-trust__item,
  .sell-steps__step,
  .sell-proof__card {
    animation: none;
  }
}
/* === Property Contact Form Widget === */
.jsp-property-contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.jsp-property-contact-form .form-title {
  margin-bottom: 30px;
  font-size: 28px;
}
.jsp-property-contact-form .form-group {
  margin-bottom: 20px;
}
.jsp-property-contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
.jsp-property-contact-form .form-control {
  width: 100%;
  padding: 7px 13px;
  border: 1px solid #193560;
  border-radius: 4px;
  font-size: 15px;
}
.jsp-property-contact-form .form-control:focus, .jsp-property-contact-form .form-control:active {
  outline: none;
  border-color: #193560;
  box-shadow: none;
}
.jsp-property-contact-form select.form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23193560' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}
.jsp-property-contact-form .submit-btn {
  background-color: #193560;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.jsp-property-contact-form .submit-btn:hover, .jsp-property-contact-form .submit-btn:active, .jsp-property-contact-form .submit-btn:focus {
  background-color: #5EA6E2;
}
.jsp-property-contact-form .submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.jsp-property-contact-form .form-response {
  margin: 20px 0;
}
.jsp-property-contact-form .alert {
  padding: 12px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.jsp-property-contact-form .alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.jsp-property-contact-form .alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}/*# sourceMappingURL=custom.css.map */