/* BAU Construction Marketplace - Theme Styles */

/* Theme Colors - BAU.WEBMNS.COM Variables */
:root {
  --primary-orange: #FF6B35;
  --accent-yellow: #F7B801;
  --brown: #6B4423;
  --dark-gray: #2C3E50;
  --light-gray: #ECEFF1;
  --white: #FFFFFF;
  --green: #4CAF50;
  --text-dark: #37474F;
  --border-color: #E0E0E0;
  --shadow: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-hover: 0 4px 12px rgba(0,0,0,0.15);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Legacy BAU variables for compatibility */
  --bau-primary: #2c5aa0;
  --bau-secondary: #f39c12;
  --bau-accent: #e74c3c;
  --bau-success: #27ae60;
  --bau-warning: #f39c12;
  --bau-danger: #e74c3c;
  --bau-dark: #2c3e50;
  --bau-light: #ecf0f1;
  --bau-gray: #95a5a6;
  --bau-white: #ffffff;
}

/* ProstoBau.de Exact Header Styles - Based on https://prostobau.de/ */
.prostobau-header {
  background: #ffffff;
  border-bottom: 1px solid #e1e5e9;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.prostobau-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo Section */
.prostobau-logo-section {
  flex-shrink: 0;
  margin-right: 40px;
}

.prostobau-logo-link {
  display: block;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.prostobau-logo-link:hover {
  opacity: 0.8;
}

.prostobau-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

/* Main Navigation */
.prostobau-main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.prostobau-nav-item {
  position: relative;
}

.prostobau-nav-link {
  color: #2d3748;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
  position: relative;
}

.prostobau-nav-link:hover {
  color: #e53e3e;
}

.prostobau-nav-link.active {
  color: #e53e3e;
}

/* Dropdown Styles */
.prostobau-dropdown {
  position: relative;
}

.prostobau-dropdown-arrow {
  transition: transform 0.2s ease;
}

.prostobau-dropdown:hover .prostobau-dropdown-arrow {
  transform: rotate(180deg);
}

.prostobau-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 1000;
}

.prostobau-dropdown:hover .prostobau-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.prostobau-dropdown-item {
  display: block;
  padding: 10px 16px;
  color: #4a5568;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f7fafc;
}

.prostobau-dropdown-item:last-child {
  border-bottom: none;
}

.prostobau-dropdown-item:hover {
  background-color: #f7fafc;
  color: #e53e3e;
}

/* Header Actions */
.prostobau-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Search Button */
.prostobau-search-btn {
  background: none;
  border: none;
  color: #4a5568;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prostobau-search-btn:hover {
  background-color: #f7fafc;
  color: #e53e3e;
}

/* Language Selector */
.prostobau-language-selector {
  position: relative;
}

.prostobau-lang-btn {
  background: none;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: #4a5568;
  transition: all 0.2s ease;
}

.prostobau-lang-btn:hover {
  border-color: #e53e3e;
  color: #e53e3e;
}

.prostobau-lang-arrow {
  transition: transform 0.2s ease;
}

.prostobau-lang-btn.active .prostobau-lang-arrow {
  transform: rotate(180deg);
}

.prostobau-lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 140px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  margin-top: 4px;
  padding: 4px 0;
}

.prostobau-lang-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.prostobau-lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: #4a5568;
  text-decoration: none;
  font-size: 13px;
  transition: background-color 0.2s ease;
}

.prostobau-lang-option:hover {
  background-color: #f7fafc;
}

.prostobau-lang-option.active {
  background-color: #fed7d7;
  color: #e53e3e;
}

.prostobau-lang-flag {
  font-size: 14px;
}

/* CTA Button */
.prostobau-cta-btn {
  background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(229, 62, 62, 0.2);
}

.prostobau-cta-btn:hover {
  background: linear-gradient(135deg, #c53030 0%, #9c2626 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(229, 62, 62, 0.3);
  color: white;
}

/* Mobile Toggle */
.prostobau-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.prostobau-mobile-toggle:hover {
  background-color: #f7fafc;
}

.prostobau-hamburger-line {
  width: 20px;
  height: 2px;
  background-color: #4a5568;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.prostobau-mobile-toggle.active .prostobau-hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.prostobau-mobile-toggle.active .prostobau-hamburger-line:nth-child(2) {
  opacity: 0;
}

.prostobau-mobile-toggle.active .prostobau-hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.prostobau-mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: white;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.prostobau-mobile-nav.active {
  right: 0;
}

.prostobau-mobile-content {
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.prostobau-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.prostobau-mobile-logo {
  height: 28px;
  width: auto;
}

.prostobau-mobile-close {
  background: none;
  border: none;
  color: #4a5568;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.prostobau-mobile-close:hover {
  background-color: #f7fafc;
}

.prostobau-mobile-menu {
  flex: 1;
  padding: 20px 0;
}

.prostobau-mobile-link {
  display: block;
  padding: 16px 20px;
  color: #2d3748;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid #f7fafc;
  transition: all 0.2s ease;
}

.prostobau-mobile-link:hover {
  background-color: #f7fafc;
  color: #e53e3e;
}

.prostobau-mobile-dropdown {
  border-bottom: 1px solid #f7fafc;
}

.prostobau-mobile-dropdown-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: none;
  border: none;
  color: #2d3748;
  font-weight: 500;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.prostobau-mobile-dropdown-btn:hover {
  background-color: #f7fafc;
  color: #e53e3e;
}

.prostobau-mobile-arrow {
  transition: transform 0.2s ease;
}

.prostobau-mobile-dropdown.active .prostobau-mobile-arrow {
  transform: rotate(180deg);
}

.prostobau-mobile-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #f7fafc;
}

.prostobau-mobile-dropdown.active .prostobau-mobile-dropdown-content {
  max-height: 200px;
}

.prostobau-mobile-sublink {
  display: block;
  padding: 12px 40px;
  color: #4a5568;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.prostobau-mobile-sublink:hover {
  background-color: #edf2f7;
  color: #e53e3e;
}

.prostobau-mobile-footer {
  padding: 20px;
  border-top: 1px solid #e2e8f0;
  background-color: #f7fafc;
}

.prostobau-mobile-languages {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.prostobau-mobile-lang {
  padding: 6px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  color: #4a5568;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.prostobau-mobile-lang:hover {
  border-color: #e53e3e;
  color: #e53e3e;
}

.prostobau-mobile-lang.active {
  background-color: #e53e3e;
  border-color: #e53e3e;
  color: white;
}

.prostobau-mobile-cta {
  display: block;
  background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
  color: white;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
}

.prostobau-mobile-cta:hover {
  background: linear-gradient(135deg, #c53030 0%, #9c2626 100%);
  color: white;
}

/* Mobile Navigation */
.prostobau-mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.prostobau-mobile-nav.active {
  display: block;
}

.prostobau-mobile-content {
  padding: 24px;
}

.prostobau-mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.prostobau-mobile-link {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.prostobau-mobile-link:hover {
  background-color: #f3f4f6;
  color: #ff6b35;
}

.prostobau-mobile-languages {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.prostobau-mobile-lang {
  color: #6b7280;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.prostobau-mobile-lang:hover {
  border-color: #ff6b35;
  color: #ff6b35;
}

.prostobau-mobile-lang.active {
  background-color: #ff6b35;
  border-color: #ff6b35;
  color: white;
}

.prostobau-mobile-contact {
  width: 100%;
  margin-top: 24px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8a65 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.prostobau-mobile-contact:hover {
  background: linear-gradient(135deg, #e55a2b 0%, #ff6b35 100%);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(44, 90, 160, 0.8), rgba(52, 73, 94, 0.8)), 
              url('/prostobau_hero_bg.jpg') center/cover;
  color: var(--bau-white);
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero .btn {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Search Form */
.search-form {
  background: var(--bau-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

.search-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.search-form .form-control:focus {
  border-color: var(--bau-primary);
  box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
}

.search-form .btn-primary {
  background: linear-gradient(135deg, var(--bau-primary) 0%, var(--bau-secondary) 100%);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.search-form .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

/* Listing Cards */
.listing-card {
  background: var(--bau-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.listing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.listing-card .card-img-top {
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.listing-card:hover .card-img-top {
  transform: scale(1.05);
}

.listing-card .card-body {
  padding: 1.5rem;
}

.listing-card .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bau-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.listing-card .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bau-primary);
  margin-bottom: 0.5rem;
}

.listing-card .location {
  color: var(--bau-gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.listing-card .btn {
  border-radius: 25px;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
}

/* Categories */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.category-card {
  background: var(--bau-white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: var(--bau-primary);
  box-shadow: 0 10px 25px rgba(44, 90, 160, 0.15);
}

.category-card .icon {
  font-size: 3rem;
  color: var(--bau-primary);
  margin-bottom: 1rem;
}

.category-card h3 {
  color: var(--bau-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.category-card p {
  color: var(--bau-gray);
  font-size: 0.9rem;
}

/* Filters */
.filters {
  background: var(--bau-white);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.filters .form-label {
  font-weight: 600;
  color: var(--bau-dark);
  margin-bottom: 0.5rem;
}

.filters .form-control,
.filters .form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.filters .form-control:focus,
.filters .form-select:focus {
  border-color: var(--bau-primary);
  box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
}

/* Footer */
.footer {
  background: var(--bau-dark);
  color: var(--bau-light);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h5 {
  color: var(--bau-white);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer a {
  color: var(--bau-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--bau-secondary);
}

.footer .social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--bau-primary);
  color: var(--bau-white);
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 0.5rem;
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  background: var(--bau-secondary);
  transform: translateY(-2px);
}

/* Language Switcher */
.language-switcher {
  position: relative;
}

.language-switcher .dropdown-toggle {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--bau-white);
  border-radius: 25px;
  padding: 0.5rem 1rem;
  font-weight: 500;
}

.language-switcher .dropdown-toggle:hover {
  border-color: var(--bau-secondary);
  background: rgba(255, 255, 255, 0.1);
}

.language-switcher .dropdown-menu {
  border: none;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.language-switcher .dropdown-item {
  padding: 0.75rem 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.language-switcher .dropdown-item:hover {
  background: var(--bau-primary);
  color: var(--bau-white);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .search-form {
    margin-top: -2rem;
    padding: 1.5rem;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
  }
  
  .listing-card .card-img-top {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 2rem 0;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .search-form {
    padding: 1rem;
  }
  
  .category-card {
    padding: 1.5rem;
  }
  
  .filters {
    padding: 1rem;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-up {
  animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading States */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Contact Modal (ProstoBau Style) */
.prostobau-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.prostobau-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.prostobau-modal-content {
  position: relative;
  background: white;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.prostobau-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 16px;
  border-bottom: 1px solid #e5e7eb;
}

.prostobau-modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.prostobau-modal-close {
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prostobau-modal-close:hover {
  background-color: #f3f4f6;
  color: #374151;
}

.prostobau-modal-body {
  padding: 24px;
}

/* Contact Form */
.prostobau-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prostobau-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.prostobau-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prostobau-form-label {
  font-weight: 500;
  color: #374151;
  font-size: 14px;
}

.prostobau-form-input,
.prostobau-form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s ease;
  font-family: inherit;
}

.prostobau-form-input:focus,
.prostobau-form-textarea:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.prostobau-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.prostobau-form-submit {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8a65 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.prostobau-form-submit:hover {
  background: linear-gradient(135deg, #e55a2b 0%, #ff6b35 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .prostobau-header-container {
    padding: 0 16px;
    height: 64px;
  }
  
  .prostobau-nav.desktop-nav {
    display: none;
  }
  
  .prostobau-mobile-btn {
    display: flex;
  }
  
  .prostobau-logo-img {
    height: 32px;
  }
  
  .prostobau-contact-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .prostobau-form-row {
    grid-template-columns: 1fr;
  }
  
  .prostobau-modal-content {
    margin: 10px;
    max-height: 95vh;
  }
  
  .prostobau-modal-header,
  .prostobau-modal-body {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .prostobau-header-container {
    padding: 0 12px;
    gap: 12px;
  }
  
  .prostobau-actions {
    gap: 8px;
  }
  
  .prostobau-contact-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .prostobau-lang-btn {
    padding: 6px 8px;
    font-size: 12px;
  }
}
/* Search Modal */
.prostobau-search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}

.prostobau-search-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.prostobau-search-content {
  position: relative;
  background: white;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: searchSlideIn 0.3s ease;
}

@keyframes searchSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.prostobau-search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #e2e8f0;
}

.prostobau-search-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
}

.prostobau-search-close {
  background: none;
  border: none;
  color: #4a5568;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.prostobau-search-close:hover {
  background-color: #f7fafc;
}

.prostobau-search-form {
  padding: 24px;
  display: flex;
  gap: 12px;
}

.prostobau-search-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s ease;
}

.prostobau-search-input:focus {
  outline: none;
  border-color: #e53e3e;
}

.prostobau-search-submit {
  background: #e53e3e;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.prostobau-search-submit:hover {
  background: #c53030;
}

.prostobau-search-suggestions {
  padding: 0 24px 24px;
}

.prostobau-search-suggestions h4 {
  margin: 0 0 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: #4a5568;
}

.prostobau-search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.prostobau-search-tag {
  padding: 6px 12px;
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  font-size: 12px;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.2s ease;
}

.prostobau-search-tag:hover {
  background: #e53e3e;
  border-color: #e53e3e;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .prostobau-container {
    padding: 0 16px;
    height: 60px;
  }
  
  .prostobau-main-nav {
    display: none;
  }
  
  .prostobau-mobile-toggle {
    display: flex;
  }
  
  .prostobau-logo-section {
    margin-right: 20px;
  }
  
  .prostobau-logo-img {
    height: 28px;
  }
  
  .prostobau-cta-btn {
    display: none;
  }
  
  .prostobau-header-actions {
    gap: 8px;
  }
  
  .prostobau-search-content {
    width: 95%;
    margin: 0 10px;
  }
  
  .prostobau-search-form {
    padding: 20px;
  }
  
  .prostobau-mobile-nav {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .prostobau-container {
    padding: 0 12px;
    height: 56px;
  }
  
  .prostobau-logo-img {
    height: 24px;
  }
  
  .prostobau-search-modal {
    padding-top: 60px;
  }
  
  .prostobau-search-header,
  .prostobau-search-form,
  .prostobau-search-suggestions {
    padding: 16px;
  }
  
  .prostobau-mobile-nav {
    width: 100%;
    right: -100%;
  }
}

/* Focus styles for accessibility */
.prostobau-nav-link:focus,
.prostobau-lang-btn:focus,
.prostobau-cta-btn:focus,
.prostobau-mobile-toggle:focus,
.prostobau-search-btn:focus {
  outline: 2px solid #e53e3e;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .prostobau-header {
    border-bottom: 2px solid #000;
  }
  
  .prostobau-nav-link {
    border: 1px solid transparent;
  }
  
  .prostobau-nav-link:hover,
  .prostobau-nav-link.active {
    border-color: #e53e3e;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .prostobau-header * {
    transition: none !important;
    animation: none !important;
  }
}
/* ===================================
   HERO MODERN SECTION - Exact BAU.WEBMNS.COM Copy
   =================================== */

.hero-modern {
    position: relative;
    min-height: 90vh;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent;
    background-repeat: no-repeat !important;
    color: white !important;
    padding: 80px 20px;
    margin-bottom: 0;
    margin-top: 0;
    overflow: visible;
    z-index: 1;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Декоративные элементы убраны — фон задаётся в hero-background.css */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(44, 62, 80, 0.8) 0%, rgba(44, 62, 80, 0.5) 50%, rgba(44, 62, 80, 0.3) 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-content-modern {
    position: relative !important;
    z-index: 100 !important;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    color: white !important;
}

.hero-title-modern {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: white !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.hero-highlight {
    color: var(--primary-orange);
    font-weight: 700;
}

/* Обеспечиваем, что контент поверх overlay */
.hero-content-modern > * {
    position: relative;
    z-index: 101;
    opacity: 1;
    visibility: visible;
}

.hero-title-modern,
.hero-search-container,
.hero-cta-buttons {
    position: relative;
    z-index: 101;
    opacity: 1 !important;
    visibility: visible !important;
    color: white;
}

.prostobau-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.prostobau-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.prostobau-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.prostobau-hero-highlight {
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.prostobau-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Search Container */
.prostobau-hero-search-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.prostobau-hero-search-form {
    width: 100%;
}

.prostobau-hero-search-main-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    align-items: center;
}

.prostobau-hero-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.prostobau-hero-search-icon {
    position: absolute;
    left: 1rem;
    color: #666;
    font-size: 1.1rem;
    z-index: 2;
}

.prostobau-hero-search-input-main {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    color: #333;
    transition: all 0.3s ease;
}

.prostobau-hero-search-input-main:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.prostobau-hero-search-category-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 200px;
}

.prostobau-hero-category-icon {
    position: absolute;
    left: 1rem;
    color: #666;
    font-size: 1rem;
    z-index: 2;
    pointer-events: none;
}

.prostobau-hero-search-category-select {
    width: 100%;
    padding: 1rem 3rem 1rem 3rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    color: #333;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prostobau-hero-search-category-select:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.prostobau-hero-select-arrow {
    position: absolute;
    right: 1rem;
    color: #666;
    font-size: 0.8rem;
    pointer-events: none;
}

.prostobau-hero-search-submit-btn {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.prostobau-hero-search-submit-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Hero CTA Buttons */
.prostobau-hero-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.prostobau-btn-hero-primary,
.prostobau-btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.prostobau-btn-hero-primary {
    background: #ffd700;
    color: #333;
    border-color: #ffd700;
}

.prostobau-btn-hero-primary:hover {
    background: #ffed4e;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    text-decoration: none;
}

.prostobau-btn-hero-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.prostobau-btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    text-decoration: none;
}

.prostobau-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.prostobau-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.prostobau-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.prostobau-hero-highlight {
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.prostobau-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Search Container */
.prostobau-hero-search-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.prostobau-hero-search-form {
    width: 100%;
}

.prostobau-hero-search-main-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    align-items: center;
}

.prostobau-hero-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.prostobau-hero-search-icon {
    position: absolute;
    left: 1rem;
    color: #666;
    font-size: 1.1rem;
    z-index: 2;
}

.prostobau-hero-search-input-main {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    color: #333;
    transition: all 0.3s ease;
}

.prostobau-hero-search-input-main:focus {
    outline: none;
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.prostobau-hero-search-category-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 200px;
}

.prostobau-hero-category-icon {
    position: absolute;
    left: 1rem;
    color: #666;
    font-size: 1rem;
    z-index: 2;
    pointer-events: none;
}

.prostobau-hero-search-category-select {
    width: 100%;
    padding: 1rem 3rem 1rem 3rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    color: #333;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prostobau-hero-search-category-select:focus {
    outline: none;
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.prostobau-hero-select-arrow {
    position: absolute;
    right: 1rem;
    color: #666;
    font-size: 0.8rem;
    pointer-events: none;
}

.prostobau-hero-search-submit-btn {
    background: #e53e3e;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.prostobau-hero-search-submit-btn:hover {
    background: #c62d2d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
}

/* Hero CTA Buttons */
.prostobau-hero-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.prostobau-btn-hero-primary,
.prostobau-btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.prostobau-btn-hero-primary {
    background: #ffd700;
    color: #333;
    border-color: #ffd700;
}

.prostobau-btn-hero-primary:hover {
    background: #ffed4e;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.prostobau-btn-hero-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.prostobau-btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .prostobau-hero {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .prostobau-hero-search-container {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .prostobau-hero-search-main-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .prostobau-hero-search-category-wrapper {
        min-width: auto;
    }
    
    .prostobau-hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .prostobau-btn-hero-primary,
    .prostobau-btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ===================================
   PROSTOBAU ANNOUNCEMENTS SECTION
   =================================== */

.prostobau-announcements-section {
    padding: 4rem 0;
    background: #ffffff;
}

.prostobau-section-title-large {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
}

.prostobau-listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.prostobau-listing-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.prostobau-listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.prostobau-listing-image {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background: #f0f0f0;
    overflow: hidden;
}

.prostobau-listing-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prostobau-no-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #999;
    font-size: 3rem;
}

.prostobau-premium-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #e53e3e, #ffd700);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.prostobau-highlight-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(33, 150, 243, 0.9);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.prostobau-listing-card-body {
    padding: 1.5rem;
}

.prostobau-listing-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prostobau-listing-category {
    font-size: 0.8rem;
    color: #757575;
    margin-bottom: 0.5rem;
}

.prostobau-listing-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #e53e3e;
    margin: 0.5rem 0;
}

.prostobau-listing-location {
    font-size: 0.8rem;
    color: #757575;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .prostobau-announcements-section {
        padding: 3rem 0;
    }
    
    .prostobau-section-title-large {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .prostobau-listings-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

/* ===================================
   HERO SEARCH SECTION - Exact BAU.WEBMNS.COM Copy
   =================================== */

.hero-search-container {
    max-width: 1100px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 102;
}

.hero-search-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2), 0 2px 8px rgba(0,0,0,0.1);
    padding: 35px;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-search-form:hover {
    box-shadow: 0 12px 48px rgba(0,0,0,0.25), 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.hero-search-main-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 15px !important;
    align-items: stretch !important;
    margin-bottom: 20px !important;
}

/* Desktop layout */
@media (min-width: 769px) {
    .hero-search-main-row {
        display: flex !important;
        flex-direction: row !important;
    }
    
    .hero-search-input-wrapper {
        flex: 2.5 !important;
    }
    
    .hero-search-category-wrapper {
        flex: 1.5 !important;
    }
    
    .hero-search-submit-btn {
        flex: none !important;
    }
}

/* Search Input */
.hero-search-input-wrapper {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    background: var(--white) !important;
    border: 3px solid var(--border-color) !important;
    border-radius: 10px !important;
    padding: 0 20px !important;
    transition: all var(--transition-normal) !important;
    min-height: 60px !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
}

.hero-search-input-wrapper:focus-within {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15), 0 4px 12px rgba(255, 107, 53, 0.2);
    transform: translateY(-1px);
}

.hero-search-icon {
    font-size: 24px;
    color: var(--primary-orange);
    margin-right: 15px;
    flex-shrink: 0;
    opacity: 0.8;
}

.hero-search-input-main {
    flex: 1 !important;
    border: none !important;
    background: transparent !important;
    font-size: 18px !important;
    padding: 18px 0 !important;
    color: var(--text-dark) !important;
    outline: none !important;
    font-weight: 500 !important;
    font-family: inherit !important;
    box-shadow: none !important;
}

.hero-search-input-main::placeholder {
    color: #9E9E9E;
    font-weight: 400;
    font-size: 17px;
}

.hero-search-clear-btn {
    background: var(--light-gray);
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    margin-left: 10px;
    width: 32px;
    height: 32px;
}

.hero-search-clear-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: scale(1.1);
}

/* Category Select */
.hero-search-category-wrapper {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    background: var(--white) !important;
    border: 3px solid var(--border-color) !important;
    border-radius: 10px !important;
    padding: 0 20px !important;
    transition: all var(--transition-normal) !important;
    cursor: pointer !important;
    min-height: 60px !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
}

.hero-search-category-wrapper:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
    transform: translateY(-1px);
}

.hero-search-category-wrapper:focus-within {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15), 0 4px 12px rgba(255, 107, 53, 0.2);
}

.hero-category-icon {
    font-size: 22px;
    color: var(--primary-orange);
    margin-right: 15px;
    flex-shrink: 0;
    opacity: 0.8;
}

.hero-search-category-select {
    flex: 1 !important;
    border: none !important;
    background: transparent !important;
    font-size: 18px !important;
    padding: 18px 40px 18px 0 !important;
    color: var(--text-dark) !important;
    outline: none !important;
    cursor: pointer !important;
    font-weight: 500 !important;
    font-family: inherit !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    box-shadow: none !important;
}

.hero-select-arrow {
    position: absolute;
    right: 20px;
    font-size: 16px;
    color: var(--primary-orange);
    pointer-events: none;
    transition: transform var(--transition-normal);
    opacity: 0.8;
}

.hero-search-category-wrapper:focus-within .hero-select-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

/* Search Button */
.hero-search-submit-btn {
    background: linear-gradient(135deg, var(--primary-orange), #FF8C42) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 18px 36px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    transition: all var(--transition-normal) !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4) !important;
    font-family: inherit !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 60px !important;
}

.hero-search-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-search-submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-search-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #FF8C42, #FF6B35);
}

.hero-search-submit-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.hero-search-submit-btn i {
    font-size: 22px;
    position: relative;
    z-index: 1;
}

.hero-search-btn-text {
    position: relative;
    z-index: 1;
}

/* Advanced Filters Toggle */
.hero-search-filters-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    color: var(--primary-orange);
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    border-top: 2px solid var(--border-color);
    margin-top: 15px;
    transition: all var(--transition-normal);
    user-select: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-search-filters-toggle:hover {
    background: var(--light-gray);
    color: #FF8C42;
}

.hero-toggle-arrow {
    transition: transform var(--transition-normal);
    font-size: 14px;
}

.hero-search-filters-toggle.active .hero-toggle-arrow {
    transform: rotate(180deg);
}

/* Filters Panel */
.hero-search-filters-panel {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
    animation: slideDown 0.3s ease;
}

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

.hero-filters-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 20px !important;
}

.hero-filter-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-filter-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-filter-label i {
    color: var(--primary-orange);
    font-size: 18px;
}

.hero-filter-select,
.hero-filter-input {
    width: 100%;
    padding: 14px 16px;
    border: 3px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    color: var(--text-dark);
    background: var(--white);
    transition: all var(--transition-normal);
    outline: none;
    font-family: inherit;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.hero-filter-select:focus,
.hero-filter-input:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15), 0 4px 12px rgba(255, 107, 53, 0.2);
    transform: translateY(-1px);
}

.hero-filter-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 12 12'%3E%3Cpath fill='%23FF6B35' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 45px;
}

/* Hero CTA Buttons - Exact BAU.WEBMNS.COM Copy */
.hero-cta-buttons {
    display: flex !important;
    gap: 20px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100% !important;
    margin: 0 auto !important;
    align-items: center !important;
}

.btn-hero-primary {
    background: var(--primary-orange) !important;
    color: white !important;
    padding: 16px 32px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3) !important;
    position: relative !important;
    z-index: 10 !important;
    border: none !important;
    width: auto !important;
    min-width: 180px !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
}

.btn-hero-primary:hover {
    background: #FF8C42;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: white;
}

.btn-hero-secondary {
    background: var(--dark-gray) !important;
    color: white !important;
    padding: 16px 32px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    z-index: 10 !important;
    border: none !important;
    width: auto !important;
    min-width: 180px !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
}

.btn-hero-secondary:hover {
    background: #34495E;
    transform: translateY(-2px);
    color: white;
}

/* Mobile Responsive for Hero */
@media (max-width: 992px) {
    .hero-title-modern {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        padding: 60px 0;
    }
    
    .hero-content-modern {
        padding: 0 15px;
    }
    
    .hero-title-modern {
        font-size: 24px;
        margin-bottom: 30px;
        line-height: 1.3;
    }
}
    
    .hero-search-container {
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .hero-search-form {
        padding: 25px;
        border-radius: 12px;
    }
    
    .hero-search-main-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
    }
    
    .hero-search-input-wrapper,
    .hero-search-category-wrapper,
    .hero-search-submit-btn {
        width: 100% !important;
        flex: none !important;
    }
    
    .hero-search-input-wrapper,
    .hero-search-category-wrapper {
        padding: 0 18px;
        min-height: 56px;
    }
    
    .hero-search-input-main,
    .hero-search-category-select {
        padding: 16px 0;
        font-size: 16px; /* Предотвращает zoom на iOS */
    }
    
    .hero-search-icon,
    .hero-category-icon {
        font-size: 20px;
        margin-right: 12px;
    }
    
    .hero-search-submit-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
        font-size: 16px;
        min-height: 56px;
    }
    
    .hero-filters-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hero-filter-select,
    .hero-filter-input {
        padding: 14px 16px;
        font-size: 16px; /* Предотвращает zoom на iOS */
        border-width: 2px;
    }
    
    .hero-cta-buttons {
        flex-direction: row !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        width: 100%;
        gap: 12px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: auto !important;
        min-width: 180px !important;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-modern {
        padding: 40px 0;
    }
    
    .hero-title-modern {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .hero-search-container {
        padding: 0 10px;
    }
    
    .hero-search-form {
        padding: 20px;
    }
    
    .hero-search-main-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }
    
    .hero-search-input-wrapper,
    .hero-search-category-wrapper,
    .hero-search-submit-btn {
        width: 100% !important;
        flex: none !important;
    }
    
    .hero-search-input-wrapper,
    .hero-search-category-wrapper {
        padding: 0 15px;
        min-height: 52px;
    }
    
    .hero-search-submit-btn {
        padding: 14px 24px;
        min-height: 52px;
    }
    
    .hero-search-filters-toggle {
        font-size: 13px;
        padding: 12px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Responsive Design for Hero */
@media (max-width: 768px) {
    .prostobau-hero {
        min-height: 60vh;
        padding: 2rem 0;
        background-attachment: scroll;
    }
    
    .prostobau-hero-search-container {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .prostobau-hero-search-main-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .prostobau-hero-search-category-wrapper {
        min-width: auto;
    }
    
    .prostobau-hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .prostobau-btn-hero-primary,
    .prostobau-btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ============================================
   CUSTOM ANNOUNCEMENTS BLOCK (EXACT PROSTOBAU COPY)
   ============================================ */

/* Reset styles to prevent conflicts */
.custom-announcements-block * {
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.custom-announcements-block a,
.custom-announcements-block div,
.custom-announcements-block h2,
.custom-announcements-block h3,
.custom-announcements-block p {
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.custom-announcements-block .custom-announcements-container {
    max-width: 1200px !important;
    margin: 50px auto !important;
    padding: 0 20px !important;
}

.custom-announcements-block .custom-announcements-header {
    text-align: center !important;
    margin-bottom: 50px !important;
}

.custom-announcements-block .custom-announcements-title {
    font-size: 2.2rem !important;
    color: black !important;
    margin-bottom: 15px !important;
    font-weight: 700 !important;
    position: relative !important;
    display: inline-block !important;
}

.custom-announcements-block .custom-announcements-title:after {
    content: '' !important;
    position: absolute !important;
    bottom: -10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 80px !important;
    height: 4px !important;
    background: linear-gradient(90deg, #FF6B35, #FF8C42) !important;
    border-radius: 2px !important;
}

.custom-announcements-block .custom-announcements-description {
    font-size: 1.2rem !important;
    color: black !important;
    max-width: 700px !important;
    margin: 25px auto 0 !important;
    line-height: 1.6 !important;
}

/* Стиль для дополнительного текста */
.custom-announcements-block .custom-additional-text {
    font-size: 1.2rem !important;
    color: black !important;
    max-width: 700px !important;
    margin: 30px auto 0 !important;
    line-height: 1.6 !important;
    text-align: center !important;
    font-weight: 500 !important;
}

.custom-announcements-block .custom-categories-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
}

.custom-announcements-block .custom-category-card {
    background: white !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.custom-announcements-block .custom-category-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.25) !important;
}

.custom-announcements-block .custom-card-header {
    padding: 25px 25px 15px !important;
    text-align: center !important;
    background: white !important;
    color: black !important;
}

.custom-announcements-block .custom-card-title {
    font-size: 1.6rem !important;
    margin: 15px 0 10px !important;
    font-weight: 600 !important;
    color: black !important;
}

.custom-announcements-block .custom-card-icon {
    font-size: 3.5rem !important;
    margin-bottom: 10px !important;
    color: #FF6B35 !important;
}

.custom-announcements-block .custom-card-content {
    padding: 25px !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.custom-announcements-block .custom-card-text {
    color: black !important;
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
    flex-grow: 1 !important;
}

.custom-announcements-block .custom-card-btn {
    display: inline-block !important;
    background: #FF6B35 !important;
    color: white !important;
    padding: 14px 30px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-size: 0.95rem !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

.custom-announcements-block .custom-card-btn:before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #FF8C42 !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    z-index: -1 !important;
}

.custom-announcements-block .custom-card-btn:hover {
    color: white !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4) !important;
    text-decoration: none !important;
}

.custom-announcements-block .custom-card-btn:hover:before {
    opacity: 1 !important;
}

.custom-announcements-block .custom-card-btn i {
    margin-left: 8px !important;
    transition: transform 0.3s ease !important;
}

.custom-announcements-block .custom-card-btn:hover i {
    transform: translateX(5px) !important;
}

/* Responsive design */
@media (max-width: 992px) {
    .custom-announcements-block .custom-announcements-container {
        margin: 30px auto !important;
    }
    .custom-announcements-block .custom-announcements-header {
        margin-bottom: 30px !important;
    }
    .custom-announcements-block .custom-additional-text {
        margin: 20px auto 0 !important;
    }
    .custom-announcements-block .custom-categories-grid {
        grid-template-columns: 1fr !important;
        max-width: 600px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 576px) {
    .custom-announcements-block .custom-announcements-title {
        font-size: 2.2rem !important;
    }
    
    .custom-announcements-block .custom-announcements-description,
    .custom-announcements-block .custom-additional-text {
        font-size: 1rem !important;
    }
    
    .custom-announcements-block .custom-card-title {
        font-size: 1.4rem !important;
    }
    
    .custom-announcements-block .custom-card-btn {
        padding: 12px 25px !important;
        font-size: 0.9rem !important;
    }
}

/* ===================================
   DER GRÜNDER SECTION - Exact BAU.WEBMNS.COM Copy
   =================================== */

.founder-wrapper-elementor {
    background-color: #f8f9fa !important;
    padding: 80px 0;
    margin: 0;
}

.founder-container-elementor {
    width: 100%;
    background: transparent;
    overflow: hidden;
    margin: 0 auto;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

.founder-content-elementor {
    display: flex;
    align-items: stretch;
    min-height: 320px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.founder-image-elementor {
    flex: 0 0 35%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
    overflow: hidden;
}

.founder-image-elementor img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.year-badge-elementor {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FF5B05;
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 2px;
    z-index: 2;
}

.founder-text-elementor {
    flex: 1;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-heading-elementor {
    font-size: 22px !important;
    font-weight: 400;
    color: #222;
    margin-bottom: 8px;
    line-height: 1.2;
}

.divider-elementor {
    width: 50px;
    height: 2px;
    background: #FF5B05;
    margin: 8px 0 15px;
}

.founder-name-elementor {
    font-size: 18px !important;
    font-weight: 600;
    color: #FF5B05;
    margin-bottom: 12px;
}

.founder-description-elementor {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.5;
}

.founder-link-container-elementor {
    text-align: center;
    margin-top: 15px;
}

.founder-link-elementor {
    display: inline-block;
    padding: 8px 20px;
    background: #FF5B05;
    color: white;
    text-decoration: none;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.founder-link-elementor:hover {
    background: #e54e04;
    color: white;
}

/* Responsive Design for Der Gründer */
@media (max-width: 768px) {
    .founder-wrapper-elementor {
        padding: 40px 15px;
        margin: 40px 0;
    }
    
    .founder-content-elementor {
        flex-direction: column;
        min-height: auto;
    }
    
    .founder-image-elementor {
        flex: 0 0 180px;
        border-right: none;
        border-bottom: 1px solid #eaeaea;
    }
    
    .founder-text-elementor {
        padding: 20px;
    }
    
    .founder-heading-elementor {
        font-size: 20px !important;
    }
    
    .founder-name-elementor {
        font-size: 16px !important;
    }
}

@media (max-width: 576px) {
    .founder-wrapper-elementor {
        padding: 30px 10px;
        margin: 30px 0;
    }
    
    .founder-text-elementor {
        padding: 15px;
    }
    
    .founder-heading-elementor {
        font-size: 18px !important;
    }
    
    .founder-description-elementor {
        font-size: 13px;
    }
}
/* ===================================
   FAQ SECTION - Exact BAU.WEBMNS.COM Copy
   =================================== */

.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-title-large {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 22px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--dark-gray);
    transition: background 0.3s ease;
    user-select: none;
}

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

.faq-number {
    font-size: 18px;
    color: var(--primary-orange);
    font-weight: 700;
    min-width: 30px;
}

.faq-text {
    flex: 1;
    font-size: 16px;
}

.faq-arrow {
    font-size: 20px;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px 70px;
    color: #757575;
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 60px 0;
    background: white;
}

.contact-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-card h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.btn-large {
    padding: 18px 36px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .section-title-large {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .faq-answer p {
        padding-left: 25px;
        font-size: 14px;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-card h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .section-title-large {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-number {
        font-size: 16px;
    }
    
    .faq-text {
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 0 20px 15px 20px;
        font-size: 13px;
    }
}
/* ===================================
   CONTACT MODAL - Exact BAU.WEBMNS.COM Copy
   =================================== */

.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.contact-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.contact-modal-container {
    background: white;
    border-radius: 16px 16px 0 0;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(100%) scale(1);
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.contact-modal-overlay.show .contact-modal-container {
    transform: translateY(0) scale(1);
}

/* Блокировка скролла body при открытом модальном окне */
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.contact-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 16px;
    border-bottom: 1px solid #e5e7eb;
}

.contact-modal-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.contact-modal-close {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-modal-close:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.contact-modal-body {
    padding: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    font-family: inherit;
    background: white;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 8px;
}

.btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
    color: #374151;
}

/* Responsive Design for Contact Modal */
@media (max-width: 768px) {
    .contact-modal-overlay {
        padding: 10px;
    }
    
    .contact-modal-container {
        max-height: 95vh;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-modal-header,
    .contact-modal-body {
        padding: 20px;
    }
    
    .contact-modal-title {
        font-size: 20px;
    }
    
    .form-actions {
        flex-direction: column-reverse;
    }
    
    .btn-secondary,
    .btn-hero-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-modal-header,
    .contact-modal-body {
        padding: 16px;
    }
    
    .contact-modal-title {
        font-size: 18px;
    }
}
/* ===================================
   PROSTOBAU FOOTER - Exact BAU.WEBMNS.COM Copy
   =================================== */

/* ProstoBau Footer Styles - Exact Copy from prostobau.de */
.prostobau-footer {
    background-color: #ffffff !important;
    padding: 60px 0 30px 0 !important;
    margin-top: 0 !important;
    padding-top: 80px !important;
    border-top: 1px solid #e9ecef !important;
    position: relative !important;
}

.prostobau-footer::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, #FF5B05 0%, #e04a00 100%) !important;
}

.prostobau-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.prostobau-footer-content {
    display: grid;
    grid-template-columns: 2.5fr 1.2fr 1.2fr 1.8fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Улучшенная адаптивность для больших экранов */
@media (min-width: 1200px) {
    .prostobau-footer-container {
        padding: 0 60px;
    }
    
    .prostobau-footer-content {
        gap: 80px;
    }
    
    .prostobau-footer-section:not(.prostobau-footer-brand) {
        position: relative;
        padding-left: 30px;
    }
    
    .prostobau-footer-section:not(.prostobau-footer-brand):before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, #FF5B05 0%, transparent 100%);
        opacity: 0.3;
    }
}

/* Левая колонка - Логотип и описание */
.prostobau-footer-brand {
    padding-right: 30px;
}

@media (min-width: 1200px) {
    .prostobau-footer-brand {
        padding-right: 40px;
    }
}

.prostobau-footer-logo {
    margin-bottom: 20px;
    display: block !important;
}

.footer-logo-img {
    max-width: 70px;
    height: auto;
    display: block !important;
    visibility: visible !important;
}

@media (min-width: 1200px) {
    .footer-logo-img {
        max-width: 80px;
    }
}

.prostobau-footer-description {
    margin-bottom: 25px;
}

.prostobau-footer-description p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

@media (min-width: 1200px) {
    .prostobau-footer-description p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* Социальные сети - точная копия prostobau.de */
.prostobau-footer-social {
    margin-top: 20px !important;
}

.social-media-list {
    display: flex !important;
    gap: 15px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.social-media-list li a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    background-color: #FF5B05 !important;
    color: white !important;
    border-radius: 50% !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.social-media-list li a:hover {
    background-color: #e04a00 !important;
    transform: translateY(-2px) !important;
}

.social-media-list li a i {
    font-size: 16px !important;
}

/* SVG иконки для социальных сетей - точная копия prostobau.de */
.social-media-list li a svg {
    width: 16px !important;
    height: 16px !important;
    fill: white !important;
}

/* Заголовки секций */
.prostobau-footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    margin-top: 0;
}

@media (min-width: 1200px) {
    .prostobau-footer-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
}

/* Списки ссылок - точная копия prostobau.de */
.prostobau-footer-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

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

.prostobau-footer-list li a {
    display: flex !important;
    align-items: center !important;
    color: #666 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    padding: 8px 0 !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}

.prostobau-footer-list li a:hover {
    color: #FF5B05 !important;
    transform: translateX(5px) !important;
}

.prostobau-footer-list li a:hover svg {
    fill: #e04a00 !important;
    transform: translateX(3px) !important;
}

.prostobau-footer-list li a:hover i {
    color: #e04a00 !important;
    transform: translateX(3px) !important;
}

/* SVG иконки стрелок - точная копия prostobau.de */
.prostobau-footer-list li a svg {
    fill: #FF5B05 !important;
    margin-right: 8px !important;
    width: 12px !important;
    height: 12px !important;
    transition: all 0.3s ease !important;
}

.prostobau-footer-list li a i {
    color: #FF5B05 !important;
    margin-right: 8px !important;
    font-size: 12px !important;
    width: 12px !important;
}

.prostobau-footer-list li a span {
    flex: 1 !important;
}

/* Информационная секция */
.prostobau-footer-info-links {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prostobau-footer-info-links h4 {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 500;
}

.prostobau-footer-info-links h4 a,
.prostobau-footer-info-links > a,
.prostobau-footer-info-links .footer-link-row a {
    color: #333;
    text-decoration: none;
    padding: 5px 0;
    display: inline-block;
    transition: color 0.3s ease;
    font-size: 14px;
    font-weight: 400;
}

.prostobau-footer-info-links h4 a:hover,
.prostobau-footer-info-links > a:hover,
.prostobau-footer-info-links .footer-link-row a:hover {
    color: #FF5B05;
}

.prostobau-footer-info-links .footer-link-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.prostobau-footer-info-links .footer-link-separator {
    color: #999;
}

/* Мобильная версия - центрирование */
@media (max-width: 768px) {
    .prostobau-footer-info-links {
        align-items: center;
        text-align: center;
    }
    
    .prostobau-footer-info-links .footer-link-row {
        justify-content: center;
    }
}

/* Контактная информация */
.prostobau-footer-contact {
    margin-top: 20px;
}

.prostobau-footer-email {
    padding: 15px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.prostobau-footer-email:hover {
    box-shadow: 0 4px 12px rgba(255, 91, 5, 0.1);
    border-color: #FF5B05;
}

.email-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.email-address {
    font-size: 15px;
    color: #333;
    font-weight: 600;
}

/* Адаптивность */
@media (max-width: 992px) {
    .prostobau-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .prostobau-footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .prostobau-footer {
        padding: 40px 0 20px 0;
        margin-top: 0;
        padding-top: 60px;
    }
    
    .prostobau-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .prostobau-footer-brand {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-logo-img {
        max-width: 100px;
    }
    
    .social-media-list {
        justify-content: center;
    }
    
    .prostobau-footer-container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .prostobau-footer {
        padding: 30px 0 15px 0;
        margin-top: 0;
        padding-top: 40px;
    }
    
    .prostobau-footer-content {
        gap: 25px;
    }
    
    .prostobau-footer-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .prostobau-footer-email {
        padding: 0;
    }
}

/* Font Awesome иконки - если не подключены */
.fas, .fab {
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands";
    font-weight: 900;
}

.fab {
    font-weight: 400;
}