@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* СТИЛИ ДЛЯ БЕЛОГО ТЕКСТА В ФУТЕРЕ */
html body .footer,
body html .footer,
html body .footer *,
body html .footer *,
.footer,
.footer *,
.footer h1,
.footer h2,
.footer h4,
.footer h5,
.footer h6,
.footer p,
.footer span,
.footer div,
.footer li,
.footer a,
.footer strong,
.footer em,
.footer b,
.footer u,
.footer label,
.footer input,
.footer textarea,
.footer button,
.footer .contact-list,
.footer .contact-list li,
.footer .contact-section,
.footer .contact-details,
.footer .footer-content *,
.footer .footer-bottom * {
  color: #ffffff !important;
}

/* Footer koppen blauw */
html body .footer .footer-section h3,
html body .footer .footer-col h3,
.footer .footer-section h3,
.footer .footer-col h3 {
  color: #0084ff !important;
}

/* Footer contact icoontjes blauw */
html body .footer .contact-list li i,
.footer .contact-list li i,
.footer i.fas,
.footer i.fa {
  color: #0084ff !important;
}

/* Footer social icoontjes wit */
html body .footer .footer-top-bar .footer-social a,
.footer .footer-top-bar .footer-social a,
html body .footer .footer-top-bar .footer-social a i,
.footer .footer-top-bar .footer-social a i {
  color: #ffffff !important;
}

.footer a:hover,
.footer a:focus,
.footer a:active,
.footer a:visited {
  color: #ffffff !important;
}

:root {
  --main-blue: #2f2f2f;
  --bg-color: rgb(244, 249, 255);
  --accent-blue: #2196f3;
  --light-blue: #f8fafc;
  --gradient: linear-gradient(90deg, #2196f3 0%, #003b73 100%);
  --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
  --radius: 18px;
  --transition: 0.3s cubic-bezier(.4,2,.6,1);
  --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
  --yellow: #3b82f6;
  --color1: #2196d3;
  --color2: #00C851;
  --color3: #bdbdbd;
  --color4: #0084ff;
  --white: #ffffff;
  --gray: #f5f5f5;
  --dark: #333333;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
  --diamond-gradient: linear-gradient(135deg, #2196d3 0%, #1a237e 100%);
  --diamond-shine: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.1) 100%);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.back-to-top {
  display: none !important;
}
body {
  font-family: var(--font-main);
  /* background: var(--light-blue) url('images/bgmain.jpg') no-repeat center center fixed; */
  background-color: var(--bg-color);
  background-size: cover;
  zoom: 0.95;
  transform-origin: top left;
  color: #222;
  margin: 0;
  min-height: 100vh;
  padding-top: 220px;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
#app, .container, section, header, .footer, .contact-bar, .product-catalog, .calculator, .services, .about, .benefits, .reviews, .gallery, .contact {
  position: relative;
  z-index: 1;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 12px 0;
  border-radius: 0 0 var(--radius) var(--radius);
}
.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--diamond-shine);
  opacity: 0.1;
  z-index: 0;
}
.header .container {
  position: relative;
  z-index: 1;
}
.header h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.site-logo {
  height: 100px;
  width: auto;
  margin-right: 12px;
  vertical-align: middle;
  display: inline-block;
}

.partners-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.partners-label {
  font-size: 0.75rem;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

.partner-logos {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.partner-logo {
  height: 60px;
  width: auto;
  opacity: 1;
  transition: all 0.3s ease;
  filter: none;
}

.partner-logo:hover {
  opacity: 1;
  filter: none;
  transform: scale(1.05);
}

/* Специальный размер для логотипа Dia Casa */
.partner-logo[src*="logodiacasa"] {
  height: 65px;
}
.nav-links {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: all 0.3s ease;
}
.nav-links a {
  color: var(--main-blue);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
.nav-links a.active, .nav-links a:hover {
  color: var(--accent-blue);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--gradient);
  transition: width 0.2s;
  border-radius: 2px;
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.nav-links a[href*="Over%20Ons"], .nav-links a[href*="Over Ons"] {
  white-space: nowrap;
  letter-spacing: normal;
  font-size: inherit;
}
.lang-switcher {
  display: none;
}
.btn, .btn-offerte, .btn-outline {
  background: #3b82f6;
  color: #fff;
  border: 1px solid rgba(0, 59, 115, 0.3);
  border-radius: var(--radius);
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 1px 0 rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn:hover, .btn:focus, .btn-offerte:hover, .btn-outline:hover {
  background: #2196f3;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(33, 150, 243, 0.3);
  border-color: rgba(33, 150, 243, 0.5);
}
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: rgba(33,150,211,0.07);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  margin-right: auto;
  order: 1;
}
.mobile-menu-btn span {
  display: block;
  width: 26px;
  height: 3.5px;
  background: #222;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .nav-container {
    gap: 16px;
  }
  
  .nav-links {
    gap: 16px;
  }
  
  .nav-links a {
    font-size: 1rem;
  }
  
  .site-logo {
    height: 70px;
  }
  
  .site-search {
    margin-left: auto;
  }
  
  .lang-switcher {
    margin-left: auto;
  }
  
  .offerte-btn-wrap {
    margin-left: auto;
  }
  
  .contact-bar {
    top: 190px;
  }
  body {
    padding-top: 190px;
  }
  .product-catalog {
    margin-top: 40px;
  }
}
@media (max-width: 992px) {
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
    gap: 10px;
  }

  .mobile-menu-btn {
    display: flex;
    z-index: 1000;
    order: 1;
  }

  .logo {
    order: 2;
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .offerte-btn-wrap {
    order: 3;
  }

  .mobile-buttons-container {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-partners-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #003b73;
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    order: 2;
  }

  .logo {
    flex-shrink: 0;
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .site-search {
    display: none;
  }

  .lang-switcher {
    display: none;
  }

  .offerte-btn-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .partners-section {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 40px;
    transition: left 0.3s;
    z-index: 999;
  }

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

  .nav-links a {
    font-size: 3.2rem;
    padding: 10px 0;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(0, 59, 115, 0.1);
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
  }

  .header {
    padding: 8px 0;
  }

  .site-logo {
    height: 55px;
  }

  body {
    padding-top: 150px;
  }

  .contact-bar {
    position: fixed;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    z-index: 998;
  }

  .contact-bar-container {
    flex-wrap: wrap;
    gap: 15px;
  }

  .contact-link {
    padding: 6px 12px;
    font-size: 0.9rem;
    gap: 6px;
  }

  .info-bar {
    margin-top: 20px;
  }
}
@media (max-width: 800px) {
  .nav-container {
    gap: 8px;
  }
  
  .nav-links {
    gap: 20px;
  }
  
  .nav-links a {
    font-size: 2.3rem;
    padding: 8px 0;
  }
  
  .logo {
    gap: 8px;
  }
  
  .site-logo {
    height: 45px;
  }
  
  .partner-logo {
    height: 25px;
  }
  
  .partner-logo[src*="logodiacasa"] {
    height: 27px;
  }
  
  .partners-label {
    font-size: 0.6rem;
  }
  
  .site-search {
    padding: 2px 4px 2px 8px;
  }
  
  .site-search input[type="text"] {
    width: 60px;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .site-logo {
    height: 56px;
  }
  .contact-bar {
    top: 110px;
  }
  .nav-links {
    gap: 16px;
  }
  .product-catalog {
    margin-top: 24px;
  }
}
.hero {
  background: #f5f7fa;
  padding: 48px 0 32px 0;
  margin-top: 80px;
  text-align: center;
  min-height: unset;
  box-shadow: none;
}
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.hero .subtitle {
  font-size: 1.15rem;
  margin-bottom: 28px;
  color: #273c7a;
}
@media (max-width: 600px) {
  .hero {
    padding: 28px 0 18px 0;
    margin-top: 100px;
  }
  .hero h1 {
    font-size: 1.4rem;
  }
}
.services {
  padding: 80px 0;
  background: #fff;
  scroll-margin-top: 200px;
}
.services h2 {
  text-align: center;
  margin-bottom: 50px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 0;
}
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .site-search {
    margin-left: auto;
  }
  
  .lang-switcher {
    margin-left: auto;
  }
  
  .offerte-btn-wrap {
    margin-left: auto;
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.catalog-slider-link {
  display: flex;
  flex: 1 1 auto;
  width: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.card, .service-card, .benefit-item, .catalog-item, .gallery-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  text-align: center;
}
.card:hover, .service-card:hover, .benefit-item:hover, .catalog-item:hover, .gallery-item:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(33, 150, 243, 0.2);
  border-color: rgba(33, 150, 243, 0.3);
}
.service-icon {
  font-size: 2.5rem;
  color: #0084ff;
  margin-bottom: 20px;
  display: block;
}
.service-card h3 {
  margin-bottom: 15px;
  color: #0084ff;
}
.btn-outline {
  border: 2px solid #003b73;
  color: #fff !important;
  background: #003b73;
  padding: 8px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: #2196f3;
  color: #fff !important;
}
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.calculator {
  background: #fff;
  padding: 60px 0;
}
.calculator h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--main-blue);
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
}

.calculator h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

/* Calculator Redirect Styles */
.calculator-redirect {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 4px 24px rgba(33, 150, 243, 0.05);
}

.calculator-redirect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.03) 0%, rgba(0, 59, 115, 0.05) 100%);
  pointer-events: none;
}

.calculator-redirect-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
}

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

.calculator-redirect-icon {
  margin-bottom: 35px;
}

.calculator-redirect-icon i {
  font-size: 4.5rem;
  color: var(--accent-blue);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(33, 150, 243, 0.2));
}

/* Переопределяем для hero-calculator */
.hero-calculator .calculator-redirect-icon {
  background: var(--gradient) !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
}

.hero-calculator .calculator-redirect-icon i {
  color: white !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
}

.calculator-redirect-text {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 45px;
  line-height: 1.7;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.calculator-redirect-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--gradient);
  color: white;
  padding: 20px 40px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.15rem;
  transition: var(--transition);
  box-shadow: var(--card-shadow);
  margin-bottom: 45px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.calculator-redirect-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.calculator-redirect-btn:hover::before {
  left: 100%;
}

.calculator-redirect-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(33, 150, 243, 0.25);
  background: linear-gradient(135deg, #1976d2, #003b73);
}

.calculator-redirect-btn:active {
  transform: translateY(-1px);
}

.calculator-redirect-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.calculator-redirect-btn:hover i {
  transform: translateX(3px);
}

.calculator-redirect-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 35px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: 1px solid rgba(33, 150, 243, 0.08);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.feature-item:hover::before {
  transform: scaleY(1);
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(33, 150, 243, 0.15);
  border-color: rgba(33, 150, 243, 0.2);
}

.feature-item i {
  color: var(--color2);
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.feature-item:hover i {
  transform: scale(1.1);
}

.feature-item span {
  color: var(--dark);
  font-weight: 500;
  font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .calculator-redirect {
    padding: 60px 0;
  }
  
  .calculator-redirect-content {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .calculator-redirect-icon i {
    font-size: 3.5rem;
  }
  
  .calculator-redirect-text {
    font-size: 1.1rem;
    padding: 0 10px;
    max-width: 100%;
  }
  
  .calculator-redirect-btn {
    padding: 18px 32px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .calculator-redirect-features {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 10px;
  }
  
  .feature-item {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .calculator-redirect {
    padding: 50px 0;
  }
  
  .calculator-redirect-icon i {
    font-size: 3rem;
  }
  
  .calculator-redirect-text {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .calculator-redirect-btn {
    padding: 16px 24px;
    font-size: 0.95rem;
    max-width: 280px;
  }
  
  .calculator-redirect-features {
    gap: 15px;
  }
  
  .feature-item {
    padding: 16px;
    gap: 12px;
  }
  
  .feature-item i {
    font-size: 1.1rem;
  }
  
  .feature-item span {
    font-size: 0.95rem;
  }
}

@media (min-width: 1200px) {
  .calculator-redirect {
    padding: 100px 0;
  }
  
  .calculator-redirect-content {
    max-width: 800px;
  }
  
  .calculator-redirect-icon i {
    font-size: 5rem;
  }
  
  .calculator-redirect-text {
    font-size: 1.3rem;
    max-width: 600px;
  }
  
  .calculator-redirect-btn {
    padding: 22px 45px;
    font-size: 1.2rem;
  }
  
  .calculator-redirect-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
  }
  
  .feature-item {
    padding: 25px;
  }
  
  .hero-content {
    max-width: 1000px;
    gap: 40px;
    padding: 35px 20px;
  }
  
  .showroom-invitation {
    width: 320px;
    height: 400px;
    padding: 30px;
  }
  
  .showroom-invitation .invitation-icon {
    width: 40px;
    height: 40px;
  }
  
  .showroom-invitation .invitation-icon i {
    font-size: 16px;
  }
  
  .hero-calculator {
    width: 320px;
    height: 400px;
    padding: 30px;
  }
  
  .hero-calculator .calculator-redirect-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient) !important;
  }
  
  .hero-calculator .calculator-redirect-icon i {
    font-size: 16px;
    color: white !important;
  }
  
  .hero-calculator .calculator-redirect-text {
    font-size: 0.95rem;
  }
  
  .hero-calculator .calculator-redirect-btn {
    padding: 14px 25px;
    font-size: 0.95rem;
  }
  
  .showroom-features .feature-item {
    padding: 15px;
  }
  
  .showroom-features .feature-item i,
  .hero-calculator .feature-item i {
    width: 18px;
    height: 18px;
    font-size: 1rem;
  }
  
  .showroom-features .feature-item span {
    font-size: 0.9rem;
  }
}

@media (min-width: 1600px) {
  .calculator-redirect {
    padding: 120px 0;
  }
  
  .calculator-redirect-content {
    max-width: 900px;
  }
  
  .calculator-redirect-icon i {
    font-size: 5.5rem;
  }
  
  .calculator-redirect-text {
    font-size: 1.4rem;
    max-width: 650px;
  }
  
  .calculator-redirect-btn {
    padding: 25px 50px;
    font-size: 1.25rem;
  }
  
  .hero-content {
    max-width: 1200px;
    gap: 60px;
    padding: 50px 20px;
  }
  
  .showroom-invitation {
    width: 380px;
    height: 480px;
    padding: 40px;
  }
  
  .showroom-invitation .invitation-icon {
    width: 50px;
    height: 50px;
  }
  
  .showroom-invitation .invitation-icon i {
    font-size: 20px;
  }
  
  .hero-calculator {
    width: 380px;
    height: 480px;
    padding: 40px;
  }
  
  .showroom-features .feature-item,
  .hero-calculator .feature-item {
    padding: 18px !important;
  }
  
  .showroom-features .feature-item i,
  .hero-calculator .feature-item i {
    width: 20px;
    height: 20px;
    font-size: 1.1rem;
  }
  
  .showroom-features .feature-item span,
  .hero-calculator .feature-item span {
    font-size: 0.95rem;
  }
  
  .hero-calculator .calculator-redirect-icon {
    width: 50px;
    height: 50px;
  }
  
  .hero-calculator .calculator-redirect-icon i {
    font-size: 20px;
  }
  
  .hero-calculator .calculator-redirect-text {
    font-size: 1rem;
  }
  
  .hero-calculator .calculator-redirect-btn {
    padding: 16px 30px;
    font-size: 1rem;
  }
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(0, 59, 115, 0.2);
  border-radius: var(--radius);
  font-size: 1rem;
}
.dimensions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.benefits {
  background: var(--diamond-gradient);
  padding: 80px 0;
}
.benefits h2 {
  text-align: center;
  margin-bottom: 50px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 0;
}
.benefit-item {
  text-align: center;
  padding: 30px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  backdrop-filter: blur(5px);
}
.benefit-item i {
  font-size: 2.5rem;
  color: #0084ff !important;
  margin-bottom: 20px;
}
.benefit-item h3 {
  margin-bottom: 10px;
  color: #333;
}
.about {
  padding: 80px 0;
  background: var(--white);
}
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.stat-item {
  text-align: center;
}
.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #2196f3;
  margin-bottom: 10px;
}
.stat-label {
  color: var(--dark);
  font-size: 1.1rem;
}
.reviews {
  background: var(--color2);
  padding: 48px 0 32px 0;
}
.reviews h2 {
  text-align: center;
  margin-bottom: 28px;
}
.reviews-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px 0;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: var(--card-shadow);
}
.review-card p {
  font-style: italic;
  margin-bottom: 10px;
}
.review-card span {
  font-size: 0.95rem;
  color: var(--color2);
}
@media (max-width: 900px) {
  .reviews-list {
    flex-direction: column;
    align-items: center;
  }
}
.logo i {
  display: none;
}
.footer {
  background: #1a1a1a !important;
  background-color: #1a1a1a !important;
  color: #fff;
  padding: 0;
  margin-top: 0;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

/* Дополнительные стили для гарантии применения фона */
body .footer,
html .footer,
.footer.footer {
  background: #1a1a1a !important;
  background-color: #1a1a1a !important;
}
.footer-top-wave {
  display: none !important;
}

/* Footer top bar: logo left, social right */
.footer-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0 30px 0;
}
.footer-top-bar .footer-logo img {
  height: 140px;
  width: auto;
}
.footer-top-bar .footer-partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-top-bar .footer-partners .partners-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.footer-top-bar .footer-partners .partners-logos {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-top-bar .footer-partners img {
  height: 48px;
  width: auto;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}
.footer-top-bar .footer-partners img.partner-renovatie {
  height: 90px;
}
.footer-top-bar .footer-partners img.partner-diacasa {
  height: 144px;
}
.footer-top-bar .footer-partners img:hover {
  opacity: 1;
}
.footer-top-bar .footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-top-bar .footer-social a,
html body .footer .footer-top-bar .footer-social a {
  color: #0084ff !important;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer-top-bar .footer-social a:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

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

/* 4-column footer content */
.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 40px 0;
}
.footer-section h3, .footer-col h3,
html body .footer .footer-section h3,
html body .footer .footer-col h3 {
  color: #0084ff !important;
  font-size: 0.85rem;
  margin-bottom: 20px;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
}
.footer-col ul, .footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li, .footer-section ul li {
  margin-bottom: 10px;
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: all 0.3s ease;
}
.footer-col ul li a, .footer-section ul li a {
  color: rgba(255,255,255,0.85) !important;
  text-decoration: none;
  border-bottom: none;
  transition: all 0.3s ease;
  padding: 0;
}
.footer-col ul li a:hover, .footer-section ul li a:hover {
  color: #ffffff !important;
  text-decoration: underline;
}
.footer .contact-list,
.footer .contact-list li,
.footer .contact-section,
.footer .contact-details {
  color: rgba(255,255,255,0.85) !important;
}
.footer .contact-list a {
  color: rgba(255,255,255,0.85) !important;
  text-decoration: none;
  border-bottom: none;
  transition: all 0.3s ease;
  padding: 0;
}
.footer .contact-list a:hover {
  color: #ffffff !important;
  text-decoration: underline;
}
.footer .contact-list li i,
html body .footer .contact-list li i {
  color: #0084ff !important;
  margin-right: 8px;
  width: 18px;
  text-align: center;
}
.footer-col .footer-col-bold {
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 4px;
}
.footer-col .footer-col-sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-style: italic;
}

/* Hide old social links section at bottom */
.footer > .container > .social-links {
  display: none !important;
}
.footer > .container > .partners-section {
  display: none !important;
}

/* Footer bottom */
.footer-bottom {
  margin-top: 0;
  padding: 28px 0;
  text-align: center;
  color: rgba(255,255,255,0.6) !important;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  z-index: 3;
  position: relative;
}
.footer-bottom p {
  margin-bottom: 6px;
  color: rgba(255,255,255,0.6) !important;
}
.footer-bottom .footer-auteursrechten {
  margin-bottom: 8px;
}
.footer-bottom .footer-auteursrechten strong {
  color: #3b82f6 !important;
}
.footer-bottom .cookie-settings-link {
  color: rgba(255,255,255,0.5) !important;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-bottom .cookie-settings-link:hover {
  color: #fff !important;
}
.footer-bottom .cookie-settings-link i {
  margin-right: 4px;
}

/* Responsive footer */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .footer-top-bar {
    padding: 30px 0 24px 0;
  }
}
@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0 20px 0;
  }
  .footer-top-bar .footer-social {
    align-self: flex-start;
  }
  .footer-top-bar .footer-partners {
    flex-direction: row;
    gap: 12px;
  }
  .footer-top-bar .footer-partners img {
    height: 36px;
  }
}

/* Стили для страницы Algemene Voorwaarden */
.terms-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 80vh;
}

.terms-header {
  text-align: center;
  margin-bottom: 60px;
}

.terms-header h1 {
  font-size: 3rem;
  color: var(--main-blue);
  margin-bottom: 20px;
  font-weight: 700;
}

.terms-header p {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

.language-selection {
  margin-bottom: 60px;
}

.language-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
  justify-items: center;
}

.language-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.language-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-blue);
}

.flag-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.language-card h3 {
  font-size: 1.8rem;
  color: var(--main-blue);
  margin-bottom: 15px;
  font-weight: 600;
}

.language-card p {
  color: #6c757d;
  margin-bottom: 25px;
  line-height: 1.6;
}

.language-card .btn-primary {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.language-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
}

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

.info-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.info-card i {
  font-size: 2rem;
  color: var(--accent-blue);
  margin-top: 5px;
}

.info-card h3 {
  color: var(--main-blue);
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.info-card p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Стили для флагов в переключателе языков */
.flag {
  width: 20px;
  height: 15px;
  display: inline-block;
  border-radius: 2px;
}

.lang-btn .flag {
  width: 18px;
  height: 13px;
}

.dropdown-item .flag {
  width: 16px;
  height: 12px;
  margin-right: 8px;
}

/* Стили для флагов в карточках языков */
.flag-icon .flag {
  width: 40px;
  height: 30px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive design for terms page */
@media (max-width: 768px) {
  .terms-header h1 {
    font-size: 2.2rem;
  }
  
  .terms-header p {
    font-size: 1rem;
  }
  
  .language-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .language-card {
    padding: 30px 20px;
  }
  
  .info-card {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .footer-content {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer {
    padding: 48px 0 18px 0;
  }
}
.gallery {
  background: var(--gray);
  padding: 60px 0 40px 0;
}
.gallery h1 {
  text-align: center;
  color: #003b73;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.gallery > .container > p {
  text-align: center;
  color: #444;
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 16px auto;
}
.gallery > .container > p a {
  color: var(--accent-blue);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.gallery > .container > p a:hover {
  border-bottom-color: var(--accent-blue);
}
.gallery h2 {
  text-align: center;
  color: var(--main-blue);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 40px;
  margin-top: 8px;
  letter-spacing: 0.01em;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.gallery-item {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  padding-bottom: 15px;
}
.gallery-item:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(33, 150, 243, 0.2);
  border-color: rgba(33, 150, 243, 0.3);
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.3s ease;
}
.gallery-item span {
  display: block;
  margin-top: 12px;
  color: var(--color1);
  font-weight: 500;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .gallery-item img {
    height: 200px;
  }
  .gallery h1 {
    font-size: 1.75rem;
    margin-bottom: 12px;
  }
  .gallery > .container > p {
    font-size: 1rem;
    padding: 0 8px;
  }
  .gallery h2 {
    font-size: 1.15rem;
    margin-bottom: 28px;
  }
}
.gallery-desc {
  padding: 14px 16px 4px 16px;
}
.contact-bar {
  position: fixed;
  top: 180px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 10px 0;
}
.contact-bar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--main-blue);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}
.contact-link i {
  font-size: 1.2rem;
  color: var(--accent-blue);
}
@media (max-width: 992px) {
  .contact-bar {
    position: fixed;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    z-index: 998;
  }
  .contact-bar-container {
    flex-wrap: wrap;
    gap: 15px;
  }
  .contact-link {
    padding: 6px 12px;
    font-size: 0.9rem;
    gap: 6px;
  }
  .contact-link i {
    font-size: 1.1rem;
  }
}
@media (max-width: 600px) {
  .contact-bar {
    padding: 6px 0;
  }
  .contact-bar-container {
    gap: 10px;
  }
  .contact-link {
    padding: 4px 8px;
    font-size: 0.85rem;
    white-space: nowrap;
  }
    .contact-link i {
    font-size: 1rem;
  }
  
  .contact-link[href*="maps.google.com"] span[data-i18n="view_on_map"] {
    font-size: 0.75rem;
  }
}

/* Hero Section with Showroom Invitation */
.hero-section {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0;
}

/* Hero Slideshow Styling */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero-section:not(.hero-section-no-bg)::before {
  content: none;
}

.hero-banner {
  text-align: left;
  padding: 150px 50px 130px;
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 60%;
}

/* Slideshow Navigation Dots */
.hero-slideshow-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 12px;
}

.hero-slideshow-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-slideshow-dots .dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.hero-slideshow-dots .dot.active {
  background-color: rgba(255, 255, 255, 1);
  transform: scale(1.3);
}

.hero-headline {
  font-size: 64px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-highlight {
  color: #FFD700;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-subtext {
  font-size: 22px;
  color: #ffffff;
  margin: 0 0 30px 0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  font-weight: 500;
  opacity: 0.95;
  letter-spacing: 0.3px;
}

.hero-banner-sticker {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.verduurzaming-sticker {
  height: 140px;
  width: auto;
  max-width: 200px;
  opacity: 0.95;
  transition: all 0.3s ease;
}

.verduurzaming-sticker:hover {
  opacity: 1;
  transform: scale(1.05);
}

.hero-section-no-bg {
  background-image: none !important;
  background-color: transparent;
}

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

.hero-offerte-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  width: 380px;
  z-index: 5;
}

.hero-offerte-form .contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-offerte-form .form-group {
  margin-bottom: 0;
}

.hero-offerte-desktop {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-offerte-mobile {
  display: none;
  margin: 20px auto 0;
  width: 90%;
}

.hero-offerte-form h3 {
  font-size: 20px;
  font-weight: 700;
  color: #003b73;
  margin: 0 0 24px 0;
  text-align: center;
}

.hero-offerte-form .form-group {
  margin-bottom: 16px;
}

.hero-offerte-form input,
.hero-offerte-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.hero-offerte-form input:focus,
.hero-offerte-form select:focus {
  outline: none;
  border-color: #2196F3;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.hero-offerte-form .form-submit {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #003b73 0%, #0066cc 100%);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.hero-offerte-form .form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 59, 115, 0.3);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: start;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 20px;
  justify-content: center;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.showroom-invitation {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  backdrop-filter: blur(20px);
  padding: 45px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 
    0 20px 60px rgba(0, 59, 115, 0.12),
    0 8px 25px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(33, 150, 243, 0.08);
  width: 420px;
  height: 480px;
  z-index: 3;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.showroom-photo-wrap {
  width: 100%;
  height: 170px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.showroom-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showroom-photo-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #f4a63a;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(244, 166, 58, 0.4);
}

.showroom-invitation .invitation-icon,
.showroom-invitation h3,
.showroom-invitation p,
.showroom-invitation .invitation-address {
  flex-shrink: 0;
}

.showroom-invitation .invitation-btn {
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: 15px;
}

.showroom-invitation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient);
  z-index: 1;
  box-shadow: 0 2px 10px rgba(33, 150, 243, 0.3);
}

.showroom-invitation::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(33, 150, 243, 0.02) 100%);
  pointer-events: none;
}

.showroom-invitation:hover {
  transform: perspective(1000px) rotateX(2deg) translateY(-8px) scale(1.02);
  box-shadow: 
    0 30px 80px rgba(0, 59, 115, 0.18),
    0 15px 35px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(33, 150, 243, 0.15);
}

.showroom-invitation:hover::before {
  box-shadow: 0 4px 20px rgba(33, 150, 243, 0.4);
}

/* Showroom Features Styles */
.showroom-features {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 15px !important;
  margin-top: auto !important;
  padding-top: 20px !important;
}

.showroom-features .feature-item {
  padding: 10px !important;
  gap: 10px !important;
  background: rgba(255, 255, 255, 0.7) !important;
  border-radius: 12px !important;
  border: 1px solid rgba(33, 150, 243, 0.08) !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(10px) !important;
  display: flex !important;
  align-items: center !important;
}

.showroom-features .feature-item:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(33, 150, 243, 0.15);
  transform: translateX(5px);
}

.showroom-features .feature-item i {
  font-size: 1.1rem;
  color: var(--accent-blue) !important;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.showroom-features .feature-item span {
  font-size: 0.9rem;
  color: #475569;
  font-weight: 500;
}

/* Hero Calculator Styles */
.hero-calculator {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  backdrop-filter: blur(20px);
  padding: 45px;
  border-radius: 24px;
  box-shadow: 
    0 20px 60px rgba(0, 59, 115, 0.12),
    0 8px 25px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(33, 150, 243, 0.08);
  width: 420px;
  height: 480px;
  z-index: 3;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.hero-calculator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient);
  z-index: 1;
  box-shadow: 0 2px 10px rgba(33, 150, 243, 0.3);
}

.hero-calculator::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(33, 150, 243, 0.02) 100%);
  pointer-events: none;
}

.hero-calculator:hover {
  transform: perspective(1000px) rotateX(-2deg) translateY(-8px) scale(1.02);
  box-shadow: 
    0 30px 80px rgba(0, 59, 115, 0.18),
    0 15px 35px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(33, 150, 243, 0.15);
}

.hero-calculator:hover::before {
  box-shadow: 0 4px 20px rgba(33, 150, 243, 0.4);
}

.hero-calculator .calculator-redirect-content {
  max-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-calculator .calculator-redirect-content h2,
.hero-calculator .calculator-redirect-icon,
.hero-calculator .calculator-redirect-text {
  flex-shrink: 0;
}

.hero-calculator .calculator-redirect-btn {
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: 20px;
}

.hero-calculator .calculator-redirect-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--main-blue);
  margin: 0 0 15px 0;
  line-height: 1.2;
  position: relative;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.hero-calculator .calculator-redirect-content h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: var(--gradient);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
  transition: all 0.3s ease;
}

.hero-calculator:hover .calculator-redirect-content h2::after {
  width: 60px;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

.hero-calculator .calculator-redirect-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 
    0 6px 20px rgba(33, 150, 243, 0.3),
    0 2px 10px rgba(0, 59, 115, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero-calculator .calculator-redirect-icon i {
  font-size: 18px;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.hero-calculator:hover .calculator-redirect-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 20px 50px rgba(33, 150, 243, 0.4),
    0 8px 25px rgba(0, 59, 115, 0.3);
}

.hero-calculator:hover .calculator-redirect-icon i {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.hero-calculator .calculator-redirect-text {
  font-size: 0.85rem;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #475569;
  font-weight: 400;
  transition: all 0.3s ease;
}

.hero-calculator:hover .calculator-redirect-text {
  color: #334155;
}

.hero-calculator .calculator-redirect-btn {
  padding: 10px 20px;
  font-size: 0.85rem;
  margin-top: 20px;
  margin-bottom: 15px;
  width: 100%;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 25px;
  box-shadow: 
    0 6px 20px rgba(33, 150, 243, 0.3),
    0 2px 10px rgba(0, 59, 115, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero-calculator .calculator-redirect-features {
  grid-template-columns: 1fr !important;
  gap: 15px !important;
  margin-top: auto !important;
  padding-top: 20px !important;
}

.hero-calculator .feature-item {
  padding: 10px !important;
  gap: 10px !important;
  background: rgba(255, 255, 255, 0.7) !important;
  border-radius: 12px !important;
  border: 1px solid rgba(33, 150, 243, 0.08) !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(10px) !important;
  display: flex !important;
  align-items: center !important;
}

.hero-calculator .feature-item:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(33, 150, 243, 0.15);
  transform: translateX(5px);
}

.hero-calculator .feature-item i {
  font-size: 1.1rem;
  color: var(--accent-blue) !important;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-calculator .feature-item span {
  font-size: 0.9rem;
  color: #475569;
  font-weight: 500;
}

.invitation-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 
    0 6px 20px rgba(33, 150, 243, 0.3),
    0 2px 10px rgba(0, 59, 115, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.invitation-icon i {
  font-size: 18px;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.invitation-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 20px 50px rgba(33, 150, 243, 0.4),
    0 8px 25px rgba(0, 59, 115, 0.3);
}

.invitation-icon:hover i {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.showroom-invitation h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--main-blue);
  margin: 0 0 10px 0;
  line-height: 1.2;
  position: relative;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.showroom-invitation h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: var(--gradient);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
  transition: all 0.3s ease;
}

.showroom-invitation:hover h3::after {
  width: 60px;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

.showroom-invitation p {
  font-size: 0.85rem;
  color: #475569;
  margin: 0 0 12px 0;
  line-height: 1.4;
  font-weight: 400;
  transition: all 0.3s ease;
}

.invitation-address {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  color: #64748b;
  font-size: 0.9rem;
}

.invitation-address i {
  color: #003b73;
  font-size: 14px;
}

.calculator-address {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  color: #64748b;
  font-size: 0.9rem;
}

.calculator-address i {
  color: #003b73;
  font-size: 14px;
}

.invitation-btn {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 6px 20px rgba(33, 150, 243, 0.3),
    0 2px 10px rgba(0, 59, 115, 0.2);
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
  letter-spacing: 0.5px;
}

.invitation-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.invitation-btn:hover::before {
  left: 100%;
}

.invitation-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 20px 50px rgba(33, 150, 243, 0.4),
    0 8px 25px rgba(0, 59, 115, 0.3);
  color: white;
}

/* Mobile responsiveness */
@media (max-width: 968px) {
  .hero-banner {
    padding: 100px 20px 80px;
    min-height: 500px;
  }
  
  .hero-headline {
    font-size: 36px;
  }
  
  .hero-subtext {
    font-size: 18px;
  }
  
  .verduurzaming-sticker {
    height: 110px;
    max-width: 160px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }
  
  .showroom-invitation {
    order: 2;
    max-width: none;
    margin: 0 auto;
  }
  
  .hero-image {
    order: 1;
  }
  
  .hero-image img {
    height: 400px;
  }
}

@media (max-width: 600px) {
  .hero-banner {
    padding: 80px 15px 70px;
    min-height: 450px;
  }
  
  .hero-headline {
    font-size: 28px;
  }
  
  .hero-subtext {
    font-size: 16px;
  }
  
  .hero-banner-sticker {
    position: absolute;
    top: 20px;
    right: 15px;
    margin-top: 0;
  }
  
  .verduurzaming-sticker {
    height: 70px;
    max-width: 100px;
  }
  
  .hero-section {
    margin-top: 0;
  }
  
  .hero-content {
    gap: 20px;
    padding: 0 15px;
  }
  
  .showroom-invitation {
    padding: 25px;
    margin: 0;
    width: 100%;
    height: auto;
    min-height: 400px;
  }
  
  .showroom-invitation h3 {
    font-size: 1.4rem;
  }
  
  .hero-image img {
    height: 300px;
  }
  
  .invitation-icon {
    width: 50px;
    height: 50px;
  }
  
  .invitation-icon i {
    font-size: 20px;
  }
  
  .invitation-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  
  .hero-calculator {
    padding: 25px;
    margin: 0;
    width: 100%;
    height: auto;
    min-height: 400px;
  }
  
  .hero-calculator .calculator-redirect-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient) !important;
  }
  
  .hero-calculator .calculator-redirect-icon i {
    font-size: 20px;
    color: white !important;
  }
  
  .hero-calculator .calculator-redirect-text {
    font-size: 0.9rem;
  }
  
  .hero-calculator .calculator-redirect-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .hero-calculator .feature-item {
    padding: 12px;
  }
  
  .hero-calculator .feature-item span {
    font-size: 0.85rem;
  }
  
  .showroom-features .feature-item,
  .hero-calculator .feature-item {
    padding: 12px !important;
  }
  
  .showroom-features .feature-item i,
  .hero-calculator .feature-item i {
    width: 18px;
    height: 18px;
    font-size: 1rem;
  }
  
  .showroom-features .feature-item span,
  .hero-calculator .feature-item span {
    font-size: 0.85rem;
  }
}
.whatsapp-float {
  position: fixed;
  right: 28px;
  top: 88vh;
  z-index: 1200;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 4px 18px rgba(37,211,102,0.18);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.whatsapp-float i {
  font-size: 2.8rem;
  text-decoration: none;
}
@media (max-width: 600px) {
  .whatsapp-float {
    right: 8px;
    top: 88vh;
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }
  .whatsapp-float i {
    font-size: 2.1rem;
  }
}
.form-group input:invalid, .form-group textarea:invalid {
  border-color: #bdbdbd;
}
.form-group input:focus:invalid, .form-group textarea:focus:invalid {
  box-shadow: 0 0 0 2px #bdbdbd33;
}
.form-group .error-message, .form-group .invalid-feedback {
  color: #bdbdbd;
}
.site-search {
  display: flex;
  align-items: center;
  background: #e3e7ed;
  border: 1.5px solid #b0bed9;
  border-radius: 24px;
  padding: 8px 16px;
  margin-left: 20px;
  transition: background 0.2s, border 0.2s;
}
.site-search:focus-within {
  border: 1.5px solid #2196f3;
  background: #f5f7fa;
}
.site-search input {
  border: none;
  background: transparent;
  width: 200px;
  font-size: 1rem;
  color: #003b73;
  border-radius: 24px;
  padding: 8px;
  transition: color 0.2s;
}
.site-search input::placeholder {
  color: #6b8cae;
}
.site-search button {
  background: none;
  border: none;
  color: #003b73;
  padding: 8px;
  cursor: pointer;
  transition: color 0.2s;
}
.site-search button:hover {
  color: #0056b3;
}
.site-search input:focus {
  border: 1.5px solid #2196f3;
  background: #f5f7fa;
  outline: none;
}
@media (max-width: 900px) {
  .site-search {
    margin-left: auto;
    padding: 2px 6px 2px 10px;
  }
  .site-search input[type="text"] {
    width: 80px;
    font-size: 0.98rem;
  }
  
  .lang-switcher {
    margin-left: auto;
  }
  
  .offerte-btn-wrap {
    margin-left: auto;
  }
  
  .nav-container {
    gap: 10px;
  }
  
  .nav-links {
    gap: 24px;
  }
  
  .nav-links a {
    font-size: 2.4rem;
    padding: 10px 0;
  }
  
  .logo {
    gap: 10px;
  }
  
  .site-logo {
    height: 50px;
  }
  
  .partner-logo {
    height: 30px;
  }
  
  .partner-logo[src*="logodiacasa"] {
    height: 32px;
  }
}
@media (max-width: 600px) {
  .site-search {
    display: none;
  }
  
  .nav-container {
    gap: 6px;
  }
  
  .nav-links {
    gap: 18px;
  }
  
  .nav-links a {
    font-size: 2.1rem;
    padding: 8px 0;
  }
  
  .logo {
    gap: 6px;
  }
  
  .site-logo {
    height: 40px;
  }
  
  .partner-logo {
    height: 20px;
  }
  
  .partner-logo[src*="logodiacasa"] {
    height: 22px;
  }
  
  .partners-label {
    font-size: 0.55rem;
  }
  
  .lang-switcher {
    margin-left: 10px;
  }
  
  .offerte-btn-wrap {
    margin-left: 10px;
  }
}
.product-catalog {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,30,80,0.06);
  margin: 0 0 32px 0;
  padding: 32px 0 16px 0;
  border-radius: 18px;
  margin-top: 60px;
}
.product-catalog .catalog-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.catalog-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  background: #f7faff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,30,80,0.04);
  padding: 0;
  min-width: 260px;
  max-width: 320px;
  min-height: 320px;
  text-align: center;
  text-decoration: none;
  color: #003b73;
  font-weight: 500;
  font-size: 1.08rem;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  overflow: hidden;
}
.catalog-slider {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: unset;
  margin-bottom: 0;
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
}
.catalog-slider .catalog-image {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  z-index: 1;
  border-radius: inherit;
  background: #fff;
  box-shadow: none;
}
.catalog-slider .catalog-image.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  width: 100%;
  display: block;
  text-align: center;
  z-index: 10;
  pointer-events: auto;
}
.dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  border-radius: 50%;
  background: #bdbdbd;
  border: 2px solid #bdbdbd;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, border 0.2s;
  box-shadow: 0 1px 4px rgba(0,30,80,0.10);
  margin: 0 2px;
  padding: 0;
}
.dot.active {
  background: #666;
  border-color: #666;
  transform: scale(1.2);
}
.catalog-item span {
  margin-top: 0;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  padding: 18px 0 12px 0;
  background: none;
}
@media (max-width: 900px) {
  .catalog-item {
    min-width: 160px;
    max-width: 180px;
    min-height: 220px;
    font-size: 0.98rem;
  }
  .catalog-slider {
    min-height: unset;
  }
}
@media (max-width: 600px) {
  .catalog-item {
    min-height: 180px;
    max-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .catalog-slider {
    min-height: 140px;
    height: 140px;
    position: relative;
    margin-bottom: 0;
  }
  .catalog-slider .catalog-image {
    height: 140px;
    min-height: 140px;
    max-height: 180px;
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    object-fit: contain;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
    z-index: 1;
    border-radius: inherit;
    background: #fff;
    box-shadow: none;
  }
  .catalog-slider .catalog-image.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
  }
  .catalog-item a {
    margin-top: 12px;
    margin-bottom: 8px;
  }
}
section, .card, .service-card, .benefit-item, .catalog-item, .gallery-item, .calculator, .contact, .footer, .contact-form, .product-catalog, .about, .benefits, .reviews, .gallery, .contact-info, .contact-details, .map-container {
  background: rgba(255,255,255,0.45) !important;
  backdrop-filter: blur(2px);
}
@media (max-width: 900px) {
  .nav-links a[href*="Over%20Ons"], .nav-links a[href*="Over Ons"] {
    font-size: 0.95rem;
  }
}
.footer .contact-list,
.footer .contact-list li,
.footer .contact-section,
.footer .contact-details {
  color: #ffffff !important;
}
.footer .contact-list a {
  color: var(--color4);
  text-decoration: underline;
}
.showroom-gallery {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.showroom-gallery h2 {
  text-align: center;
  color: var(--main-blue);
  margin-bottom: 40px;
}
.showroom-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.showroom-gallery .gallery-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.showroom-gallery .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.showroom-gallery .gallery-item:hover img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .container {
    width: 95%;
    padding: 0 10px;
  }
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.3rem;
  }
  .btn, .btn-offerte, .btn-outline {
    padding: 12px 24px;
    font-size: 1rem;
  }
  section {
    padding: 40px 0;
  }
  .hero-offerte-desktop {
    display: none;
  }
  .hero-offerte-mobile {
    display: block;
  }
  .hero-banner {
    text-align: center;
    align-items: center;
    max-width: 100%;
  }
  .hero-headline {
    font-size: 36px;
  }
  .hero-subtext {
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .partners-section {
    display: none;
  }
  
  .logo {
    gap: 0;
  }
  
  .nav-container {
    gap: 4px;
  }
  
  .nav-links {
    gap: 16px;
  }
  
  .nav-links a {
    font-size: 2rem;
    padding: 7px 0;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 140px;
  }
  .site-logo {
    height: 45px;
  }
  
  .partner-logos {
    gap: 8px;
  }
  
  .partner-logo {
    height: 35px;
  }
  
  .partners-section {
    gap: 2px;
  }
  
  .partners-label {
    font-size: 0.6rem;
    margin-bottom: 0;
  }
  
  .partner-logo[src*="logodiacasa"] {
    height: 38px;
  }
  .header {
    padding: 8px 0;
  }
  .btn, .btn-offerte, .btn-outline {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  section {
    padding: 30px 0;
  }
  .product-catalog {
    padding: 12px 0 4px 0;
    margin-top: 16px;
    border-radius: 10px;
  }
  .product-catalog .catalog-grid {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .catalog-item {
    min-width: 90vw;
    max-width: 98vw;
    min-height: 90px;
    font-size: 0.88rem;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,30,80,0.08);
  }
  .catalog-slider .catalog-image {
    height: 90px;
  }

  .btn, .btn-primary, .btn-offerte {
    font-size: 1rem;
    padding: 12px 0;
    border-radius: 8px;
  }

}
.services-grid,
.benefits-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .services-grid,
  .benefits-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 15px 0;
  }
}
.card,
.service-card,
.benefit-item,
.gallery-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}
@media (max-width: 768px) {
  .card,
  .service-card,
  .benefit-item,
  .gallery-item {
    padding: 20px;
  }
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.hero-offerte-form .contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-offerte-form .form-group {
  margin-bottom: 0;
}
.form-group {
  margin-bottom: 20px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(0, 59, 115, 0.2);
  border-radius: var(--radius);
  font-size: 1rem;
}
@media (max-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .form-group {
    margin-bottom: 15px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px;
    font-size: 0.95rem;
  }
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 60px 0 30px;
}
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0 20px;
    text-align: center;
  }
  .footer-col,
  .footer-section {
    padding: 0 20px;
  }
  .footer .social-links {
    justify-content: center;
  }
}
.reviews-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px 0;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: var(--card-shadow);
}
@media (max-width: 768px) {
  .reviews-list {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 15px 0;
  }
  .review-card {
    padding: 20px;
  }
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .map-container {
    height: 300px;
  }
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .gallery-item img {
    height: 200px;
  }
}
@media (min-width: 993px) {
  .header {
    margin-bottom: 0;
  }
  .contact-bar {
    margin-top: 0;
    margin-bottom: 0;
    padding: 14px 0;
    position: static;
    background: none;
    box-shadow: none;
    width: 100%;
    z-index: auto;
  }
  .contact-bar-container {
    justify-content: center;
    gap: 16px;
  }
  .product-catalog,
  .about,
  .services,
  .benefits,
  .gallery,
  .calculator,
  .reviews,
  .contact {
    margin-top: 0;
    padding-top: 0;
  }
}
.showroom-section {
  background: linear-gradient(120deg, #f0f6fb 60%, #e3ecf7 100%);
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(33, 150, 243, 0.08);
  margin: 40px 0 32px 0;
  padding: 48px 0 32px 0;
  position: relative;
  overflow: hidden;
}
.showroom-section h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #003b73;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(33,150,243,0.08);
}
.showroom-section p {
  font-size: 1.1rem;
  color: #234;
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 700px;
  background: rgba(255,255,255,0.7);
  border-radius: 18px;
  padding: 14px 20px;
  box-shadow: 0 2px 12px rgba(33,150,243,0.06);
}
.showroom-map {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(33, 150, 243, 0.10);
  margin-top: 18px;
}
.showroom-gallery {
  background: linear-gradient(120deg, #e3ecf7 60%, #f0f6fb 100%);
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(33, 150, 243, 0.08);
  margin: 0 0 40px 0;
  padding: 48px 0 32px 0;
  position: relative;
  overflow: hidden;
}
.showroom-gallery h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #003b73;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(33,150,243,0.08);
}
.showroom-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.showroom-gallery .gallery-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(33, 150, 243, 0.10);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.showroom-gallery .gallery-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(33, 150, 243, 0.18);
}
.showroom-gallery .gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: filter 0.3s;
}
.showroom-gallery .gallery-item:hover img {
  filter: brightness(0.95) saturate(1.1);
}
@media (max-width: 900px) {
  .showroom-section, .showroom-gallery {
    padding: 32px 0 24px 0;
    border-radius: 18px;
  }
  .showroom-section h1 {
    font-size: 2rem;
  }
  .showroom-section p {
    font-size: 1.05rem;
    padding: 14px 12px;
  }
  .showroom-gallery h2 {
    font-size: 1.3rem;
  }
  .showroom-gallery .gallery-grid {
    gap: 16px;
  }
  .showroom-gallery .gallery-item img {
    height: 120px;
  }
}
@media (max-width: 600px) {
  .showroom-section, .showroom-gallery {
    padding: 18px 0 10px 0;
    border-radius: 10px;
    margin: 16px 0 12px 0;
  }
  .showroom-section h1 {
    font-size: 1.3rem;
  }
  .showroom-section p {
    font-size: 0.95rem;
    padding: 8px 6px;
  }
  .showroom-gallery h2 {
    font-size: 1.1rem;
  }
  .showroom-gallery .gallery-item img {
    height: 80px;
  }
  
  /* Адаптивные стили для showroom контента на мобильных */
  .showroom-content {
    gap: 16px;
  }
  
  .showroom-image {
    max-width: 100%;
    padding: 4px;
  }
  
  .showroom-image img {
    height: 220px;
    min-height: 220px;
  }
  
  .showroom-main-text {
    min-height: auto;
    display: block;
  }
  
  .showroom-bottom-row {
    min-height: 250px;
  }
  
  .showroom-contact-info,
  .showroom-map-square {
    min-height: 250px;
  }
  
  .showroom-map-square iframe {
    min-height: 250px;
  }
}
.top-bar { display: none !important; }
.showroom-flex {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Новый контейнер для текста и изображения */
.showroom-content {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

/* Стили для изображения showroom */
.showroom-image {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(33, 150, 243, 0.15);
  background: #fff;
  padding: 8px;
  min-height: 450px;
}

.showroom-image img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.showroom-image:hover img {
  transform: scale(1.05);
}
.showroom-bottom-row {
  display: flex;
  gap: 20px;
  align-items: stretch;
  min-height: 350px;
}
.showroom-main-text, .showroom-contact-info {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  padding: 24px 30px;
  box-shadow: 0 4px 24px rgba(33, 150, 243, 0.08);
}
.showroom-main-text {
  flex: 1;
  max-width: none;
  margin: 0;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.showroom-main-text p {
  white-space: pre-line;
  line-height: 1.7;
  color: #234;
}
.showroom-contact-info {
  flex: 1;
  color: #234;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.showroom-contact-info h3 {
  color: var(--main-blue);
  margin-top: 0;
  margin-bottom: 24px;
}
.showroom-contact-info p {
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 0.9rem;
}
.showroom-contact-info p:last-child {
  margin-bottom: 0;
}
.showroom-contact-info i {
  color: var(--accent-blue);
  margin-right: 12px;
  width: 20px;
  text-align: center;
}
.showroom-map-square {
  flex: 1;
  display: flex;
  align-items: stretch;
  min-height: 350px;
  }
.showroom-map-square iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(33,150,243,0.10);
}
@media (max-width: 900px) {
  .showroom-flex {
    flex-direction: column;
    gap: 24px;
  }
  
  /* Адаптивный макет для контента */
  .showroom-content {
    flex-direction: column;
    gap: 24px;
  }
  
  .showroom-image {
    flex: none;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    min-height: 300px;
  }
  
  .showroom-image img {
    height: 300px;
    min-height: 300px;
  }
  
  .showroom-main-text {
    min-height: 300px;
  }
  
  .showroom-bottom-row {
    min-height: 280px;
  }
  
  .showroom-contact-info,
  .showroom-map-square {
    min-height: 280px;
  }
  
  .showroom-map-square iframe {
    min-height: 280px;
  }
  
  .showroom-map-square {
    width: 100%;
    height: 220px;
    max-width: 100%;
  }
  .showroom-map-square iframe {
    width: 100% !important;
    height: 220px !important;
  }
}
.image-lightbox {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 30, 80, 0.85);
  transition: opacity 0.3s;
  opacity: 0;
}
.image-lightbox[style*="display:flex"] {
  display: flex !important;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(33,150,243,0.25);
  background: #fff;
  object-fit: contain;
  animation: lightbox-in 0.3s;
}
@keyframes lightbox-in {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.lightbox-close {
  position: absolute;
  top: 32px;
  right: 48px;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 10;
  text-shadow: 0 2px 8px #003b73;
  transition: color 0.2s;
  user-select: none;
}
.lightbox-close:hover, .lightbox-close:focus {
  color: #2196f3;
}
@media (max-width: 600px) {
  .lightbox-prev, .lightbox-next {
    font-size: 2.2rem;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    left: 2vw;
    right: 2vw;
    background: rgba(0,59,115,0.18);
    opacity: 0.85;
    box-shadow: 0 2px 8px rgba(33,150,243,0.10);
    top: 50% !important;
    transform: translateY(-50%);
    z-index: 11;
  }
  .lightbox-prev {
    left: 2vw;
    right: auto;
  }
  .lightbox-next {
    right: 2vw;
    left: auto;
  }
  .lightbox-close {
    top: 12px !important;
    right: 12px !important;
    left: auto !important;
    font-size: 2rem;
    background: rgba(0,59,115,0.18);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    z-index: 20;
  }
  .lightbox-img {
    max-width: 98vw;
    max-height: 60vh;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
  }
  }
.catalog-item a:not(.catalog-slider-link) {
  display: inline-block;
  margin: 18px auto 12px auto;
  padding: 8px 28px;
  font-size: 1.13rem;
  font-weight: 600;
  color: #fff;
  background: #2196f3;
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(21,101,192,0.07);
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.catalog-item a:not(.catalog-slider-link):hover, .catalog-item a:not(.catalog-slider-link):focus {
  color: #fff;
  background: linear-gradient(90deg, #1976d2 0%, #64b5f6 100%);
  box-shadow: 0 4px 16px rgba(21,101,192,0.13);
  transform: translateY(-2px) scale(1.04);
  text-decoration: none;
}
.gallery-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 32px 0 0 0;
  position: relative;
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
}
.gallery-slider .gallery-prev,
.gallery-slider .gallery-next {
  background: transparent;
  border: none;
  color: #1565c0;
  font-size: 2.2rem;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  min-width: unset;
  min-height: unset;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.15s;
}
.gallery-slider .gallery-prev:hover,
.gallery-slider .gallery-next:hover {
  color: #1976d2;
  background: transparent;
  transform: scale(1.12);
}
.gallery-slider .gallery-track {
  display: flex;
  flex-direction: row;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 100%;
  padding: 8px 0;
}
.gallery-slider .gallery-track img {
  height: 220px;
  width: auto;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(21,101,192,0.07);
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  flex-shrink: 0;
}
.gallery-slider .gallery-track img:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(33,150,243,0.18);
}
@media (max-width: 900px) {
  .gallery-slider .gallery-track img {
    height: 140px;
  }
}
@media (max-width: 600px) {
  .gallery-slider .gallery-track img {
    height: 90px;
  }
  .gallery-slider .gallery-prev,
  .gallery-slider .gallery-next {
    font-size: 1.5rem;
    padding: 4px 10px;
  }
} 
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  background: rgba(0,59,115,0.25);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 11;
  user-select: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.lightbox-prev {
  left: 32px;
}
.lightbox-next {
  right: 32px;
}
.lightbox-prev:hover, .lightbox-next:hover, .lightbox-prev:focus, .lightbox-next:focus {
  background: #2196f3;
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}
@media (max-width: 600px) {
  .lightbox-prev, .lightbox-next {
    font-size: 2.2rem;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    left: 2vw;
    right: 2vw;
    background: rgba(0,59,115,0.18);
    opacity: 0.85;
    box-shadow: 0 2px 8px rgba(33,150,243,0.10);
    top: 50% !important;
    transform: translateY(-50%);
    z-index: 11;
  }
  .lightbox-prev {
    left: 2vw;
    right: auto;
  }
  .lightbox-next {
    right: 2vw;
    left: auto;
  }
  .lightbox-close {
    top: 12px !important;
    right: 12px !important;
    left: auto !important;
    font-size: 2rem;
    background: rgba(0,59,115,0.18);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    z-index: 20;
  }
  .lightbox-img {
    max-width: 98vw;
    max-height: 60vh;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
  }
}
.info-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  background: rgba(255,255,255,0.7);
  border-bottom: 4px solid #003b73;
  padding: 18px 0 10px 0;
  font-size: 1.13rem;
  margin-top: -40px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(33,150,243,0.10);
  border-radius: 0 0 18px 18px;
  position: relative;
  z-index: 10;
  backdrop-filter: blur(2px);
}
.info-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2f2f2f;
  font-weight: 600;
}
.info-bar-item i {
  color: #3b82f6;
  font-size: 1.3em;
  margin-right: 4px;
}
.info-bar-reviews {
  gap: 6px;
}
.info-bar-reviews .fa-google {
  background: linear-gradient(to bottom, #4285F4 0%, #EA4335 33%, #FBBC05 66%, #34A853 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.review-stars {
  display: flex;
  gap: 2px;
  margin: 0 2px;
}
.review-stars i {
  color: #ffc107;
  font-size: 1em;
  margin-right: 0;
}

.info-bar-simple {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  background: #ffffff;
  padding: 10px 12px;
  font-size: 0.98rem;
  margin-top: -75px;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.10);
  border-radius: 0;
  position: relative;
  z-index: 10;
}

.info-bar-simple-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #2f2f2f;
  font-weight: 600;
}

.info-bar-simple-item i {
  color: #00C851;
  font-size: 1em;
}

.announcement-bar {
  display: none;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  padding: 10px 16px;
  margin-top: 0;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.10);
  border-radius: 0;
  position: relative;
  z-index: 9;
}

.announcement-content {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2f2f2f;
  font-weight: 600;
  font-size: 0.98rem;
}

.announcement-content .fa-google {
  background: linear-gradient(to bottom, #4285F4 0%, #EA4335 33%, #FBBC05 66%, #34A853 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 1.1em;
}

.google-colors {
  background: linear-gradient(90deg, #EA4335 0%, #FBBC04 25%, #4285F4 50%, #EA4335 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.announcement-stars {
  display: flex;
  gap: 2px;
  margin: 0 2px;
}

.announcement-stars i {
  color: #ffc107;
  font-size: 0.95em;
}

.info-bar-reviews-desktop {
  display: flex;
}

.info-bar-mobile-reviews {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 10px 12px;
  font-size: 0.98rem;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.10);
  border-radius: 0;
  position: relative;
  z-index: 10;
  color: #2f2f2f;
  font-weight: 600;
}

@media (max-width: 700px) {
  .info-bar {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 24px;
  }
  
  .info-bar-item {
    justify-content: center;
    font-size: 0.95rem;
  }

  .info-bar.info-bar--carousel {
    position: relative;
    overflow: hidden;
    padding: 14px 0;
    gap: 0;
    min-height: 48px;
  }

  .info-bar.info-bar--carousel .info-bar-item {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateX(24px);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    white-space: nowrap;
  }

  .info-bar.info-bar--carousel .info-bar-item.info-bar-item--active {
    opacity: 1;
    transform: translate(-50%, -50%) translateX(0);
  }

  .info-bar.info-bar--carousel .info-bar-item.info-bar-item--exit {
    opacity: 0;
    transform: translate(-50%, -50%) translateX(-24px);
  }

  .info-bar-simple {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 0;
  }

  .info-bar-simple-item {
    justify-content: center;
    font-size: 0.95rem;
  }

  .info-bar-reviews-desktop {
    display: none;
  }

  .info-bar-mobile-reviews {
    display: flex;
  }

  .info-bar-simple.info-bar--carousel {
    position: relative;
    overflow: hidden;
    padding: 14px 0;
    gap: 0;
    min-height: 48px;
  }

  .info-bar-simple.info-bar--carousel .info-bar-simple-item {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateX(24px);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    white-space: nowrap;
  }

  .info-bar-simple.info-bar--carousel .info-bar-simple-item.info-bar-item--active {
    opacity: 1;
    transform: translate(-50%, -50%) translateX(0);
  }

  .info-bar-simple.info-bar--carousel .info-bar-simple-item.info-bar-item--exit {
    opacity: 0;
    transform: translate(-50%, -50%) translateX(-24px);
  }

  .announcement-bar {
    padding: 12px 16px;
    text-align: center;
  }

  .announcement-content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    font-size: 0.92rem;
  }
}
section.contact {
  scroll-margin-top: 250px;
}
.custom-file-input-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  margin-top: 10px;
}
#customFileBtn {
  background-color: #f5f7fa;
  color: #2c3e50;
  border: 2px solid #e1e8ed;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: left;
}
#customFileBtn:hover {
  border-color: #2196f3;
  background-color: #f8faff;
}
#customFileLabel {
  margin-left: 8px;
  font-style: italic;
}
.lang-switcher {
  position: relative;
  display: inline-block;
  margin-left: 20px;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-btn.active, .lang-btn:focus {
  outline: none;
}
.lang-btn .flag {
  width: 24px;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.lang-switcher.dropdown {
  position: relative;
}
.lang-btn.dropdown-toggle {
  background: transparent;
  border: 1px solid #dce4e8;
  border-radius: 20px;
  padding: 6px 12px;
  transition: background-color 0.2s;
}
.lang-btn.dropdown-toggle:hover,
.lang-btn.dropdown-toggle.active {
  background-color: #f5f7fa;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 8px;
  min-width: 150px;
  z-index: 1001;
}
.dropdown-menu.show {
  display: block;
}
.dropdown-item.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  cursor: pointer;
  text-decoration: none;
  color: #333;
  border-radius: 8px;
  transition: background-color 0.2s;
}
.dropdown-item.lang-option:hover,
.dropdown-item.lang-option.active {
  background-color: #f5f7fa;
}
.flag {
  width: 20px;
  height: auto;
}
.offerte-page {
  margin-top: 40px;
  margin-bottom: 40px;
}
.offerte-page h1 {
  text-align: center;
}
.progress-bar {
  display: flex;
  justify-content: center;
  margin: 0 auto 32px auto;
  max-width: 320px;
  position: relative;
}
.progress-step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #d3d7dd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #666;
  position: relative;
  z-index: 2;
  transition: all 0.3s cubic-bezier(.4,2,.6,1);
}
.progress-step.active {
  background: #2196f3;
  border-color: #2196f3;
  color: #fff;
  transform: scale(1.1);
}
.progress-step.completed {
  background: #4CAF50;
  border-color: #4CAF50;
  color: #fff;
}
.progress-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 2px;
  background: #d3d7dd;
  width: 80%;
  z-index: 1;
}
.progress-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #4CAF50;
  width: 0;
  transition: width 0.3s ease;
}
.offerte-step {
  display: none;
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(33,150,243,0.12);
  padding: 40px;
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(.4,2,.6,1);
}
.offerte-step.active {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.offerte-options {
  display: grid;
  gap: 16px;
  margin: 32px 0;
}
.offerte-option-btn {
  background: #f5f7fa;
  color: #2c3e50;
  border: 2px solid #e1e8ed;
  border-radius: 16px;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.4,2,.6,1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.offerte-option-btn i {
  font-size: 1.4rem;
  color: #2196f3;
  transition: transform 0.3s ease;
}
.offerte-option-btn:hover {
  background: #f8faff;
  border-color: #2196f3;
  transform: translateY(-2px);
}
.offerte-option-btn.selected {
  background: #2196f3;
  color: #fff;
  border-color: #2196f3;
}
.offerte-option-btn.selected i {
  color: #fff;
  transform: scale(1.2);
}
.offerte-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  gap: 16px;
}
.offerte-nav button {
  flex: 1;
  background: #f5f7fa;
  color: #2c3e50;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.4,2,.6,1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.offerte-nav button:not(:disabled):hover {
  background: #2196f3;
  color: #fff;
  transform: translateY(-2px);
}
.offerte-nav button:disabled {
  background: #e1e8ed;
  color: #95a5a6;
  cursor: not-allowed;
}
.offerte-nav button[type="submit"] {
  background: #2196f3;
  color: #fff;
}
.offerte-nav button[type="submit"]:hover {
  background: #1976d2;
}
.offerte-contact-form {
  text-align: left;
  padding-top: 12px;
}
.offerte-contact-form .form-group {
  margin-bottom: 28px !important;
}
.offerte-contact-form label {
  display: block;
  margin-bottom: 10px !important;
  font-weight: 500;
  color: #2c3e50;
}
.offerte-contact-form input {
  width: 100%;
  border: 2px solid #e1e8ed;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 1rem;
  background: #f8faff;
  transition: all 0.3s ease;
}
.offerte-contact-form input:focus {
  border-color: #2196f3;
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 4px rgba(33,150,243,0.1);
}
.offerte-contact-form input[type="file"] {
  padding: 10px;
  background: #fff;
}
.offerte-success, .offerte-error {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 48px auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #4CAF50;
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  max-width: 100%;
  text-align: center;
}
.offerte-success span {
  color: #28a745; /* Green color */
}
.offerte-home-btn {
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  color: #fff !important;
}
.offerte-home-btn span,
.offerte-home-btn i {
  color: #fff !important;
}
.offerte-error {
  color: #f44336;
}
@media (max-width: 600px) {
  .offerte-step {
    padding: 24px 20px;
    border-radius: 20px;
  }
  
  .offerte-option-btn {
    padding: 16px;
    font-size: 1rem;
  }
  
  .offerte-nav button {
    padding: 14px 20px;
    font-size: 0.9rem;
  }
  
  .progress-step {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
}
.product-catalog {
  padding: 50px 0;
}

section {
  padding: 64px 0;
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 32px;
  box-shadow: var(--card-shadow);
}
section:nth-child(even) {
  background: #f7faff;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--main-blue);
  margin-bottom: 18px;
}
h1 {
  font-size: 2.6rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.3rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-form {
  flex: 1 1 340px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 300px;
  max-width: 420px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: var(--radius);
  border: 1.5px solid #d0d8e6;
  padding: 14px 16px;
  font-size: 1rem;
  margin-bottom: 8px;
  box-shadow: 0 1px 4px rgba(33,150,243,0.04);
  transition: border 0.2s, box-shadow 0.2s;
  background: #f7faff;
  resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--accent-blue);
  outline: none;
  box-shadow: 0 2px 12px rgba(33,150,243,0.10);
}
.contact-form button {
  margin-top: 8px;
}
.contact-info {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  margin-bottom: 18px;
}
.contact-details {
  background: #f7faff;
  border-radius: var(--radius);
  padding: 18px 20px;
  color: var(--main-blue);
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(33,150,243,0.06);
}
.contact-details i {
  color: var(--accent-blue);
  margin-right: 8px;
}
#formMessage {
  min-height: 24px;
  margin-top: 6px;
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .map-container {
    height: 300px;
  }
}
main.offerte-page {
  background: transparent;
  padding: 40px 15px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 250px);
}
.form-message-area {
  position: relative;
  z-index: 10;
  min-height: 32px;
  margin-top: 15px;
}
.offerte-success, .offerte-error {
  display: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1.1em;
  background: #f0f6fb;
  box-shadow: 0 2px 8px rgba(33,150,243,0.08);
}
.offerte-success {
  color: #00C851;
  border: 1px solid #00C851;
}
.offerte-error {
  color: #ff4444;
  border: 1px solid #ff4444;
}

/* Contact Page Specific Styles */
.contact-page-section .container {
    background: transparent;
    box-shadow: none;
    padding-top: 20px;
    padding-bottom: 20px;
}
.contact-page-section h1 {
    text-align: center;
    color: var(--main-blue);
    margin-bottom: 1rem;
}
.contact-page-section > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 25px 40px;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 59, 115, 0.1);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--main-blue);
}
.contact-page-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    align-items: flex-start;
    gap: 40px;
}
.contact-wrapper, .contact-page-info {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 35px 40px;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 59, 115, 0.1);
}
.contact-page-info h2 {
    color: var(--main-blue);
    margin-top: 0;
    margin-bottom: 20px;
}
.contact-page-info .contact-list {
    list-style: none;
    padding: 0;
    line-height: 2;
    color: #333;
}
.contact-page-info .contact-list a {
    color: var(--accent-blue);
    text-decoration: none;
}
.contact-page-info .contact-list a:hover {
    text-decoration: underline;
}
.contact-page-map {
    margin-top: 24px;
}
.contact-page-map iframe {
    border-radius: 12px !important; /* Use important to override inline style */
    box-shadow: none !important;
}

/* Language Switcher */
.lang-switcher { position: relative; margin-left: 20px; }
.lang-btn { background: transparent; border: 1px solid #dce4e8; border-radius: 20px; padding: 6px 12px; cursor: pointer; display: flex; align-items: center; }
@media (max-width: 992px) {
  body { padding-top: 80px; }
  .nav-links { position: fixed; top: 80px; left: -100%; width: 100%; height: calc(100vh - 80px); background: rgba(255,255,255,0.98); backdrop-filter: blur(10px); flex-direction: column; justify-content: flex-start; align-items: center; padding-top: 40px; transition: left 0.3s; z-index: 999; }
  .mobile-menu-btn.active span:nth-child(3) { transform: translateY(-12px) rotate(-45deg); }
  .info-bar { flex-direction: column; gap: 16px; padding: 20px; }
  main.container:not(.offerte-page) { padding: 20px; }
  .offerte-step { padding: 20px; }
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
} 

.video-container {
  width: 100%;
  height: 50vh; /* Adjust as needed */
  overflow: hidden;
  position: relative;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.info-bar-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
} 

@media (max-width: 768px) {
  .video-container {
    height: 30vh;
  }
}

/* Read More styles */
.read-more-text {
  display: block;
  color: #444;
  font-size: 1rem;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  max-height: 3em;
  transition: all 0.4s cubic-bezier(.4,2,.6,1);
  white-space: normal;
  text-overflow: ellipsis;
}

.gallery-item:not(.read-more-open) .read-more-text {
  display: -webkit-box;
}

.read-more-open .read-more-text {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  max-height: 500px;
  display: block;
}
.read-more-btn {
  display: inline-block;
  margin-top: 8px;
  background: var(--accent-blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 18px;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(33,150,243,0.10);
}
.read-more-btn:hover, .read-more-btn:focus {
  background: var(--main-blue);
  color: #fff;
}
.read-more-open .read-more-btn {
  /* display: none; */
}
@media (max-width: 600px) {
  .read-more-btn {
    font-size: 0.92rem;
    padding: 5px 14px;
  }
}

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #003b73;
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: center;
}

.contact-bar {
  padding: 13px 0;
}
.contact-bar-container {
  gap: 26px;
}
.contact-link {
  font-size: 1.3rem;
  padding: 10.4px 20.8px;
}
.contact-link i {
  font-size: 1.56rem;
}
@media (min-width: 993px) {
  .contact-bar {
    padding: 13px 0;
  }
  .contact-bar-container {
    gap: 26px;
  }
  .contact-link {
    font-size: 1.3rem;
    padding: 10.4px 20.8px;
  }
  .contact-link i {
    font-size: 1.56rem;
  }
}
@media (max-width: 992px) {
  .contact-bar {
    padding: 8px 0 !important;
  }
  .contact-bar-container {
    gap: 15px !important;
  }
  .contact-link {
    font-size: 0.9rem !important;
    padding: 6px 12px !important;
  }
  .contact-link i {
    font-size: 1.1rem !important;
  }
}

.offerte-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 20px;
}
.offerte-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95em;
  color: #666;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 7px 28px 7px 18px;
  margin-top: 8px;
  letter-spacing: 0.01em;
  font-weight: 400;
  min-height: 32px;
  white-space: nowrap;
  position: relative;
  cursor: help;
}

/* Tooltip styling */
.offerte-note::before {
  content: attr(data-tooltip) var(--tooltip-text, "");
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(0, 59, 115, 0.95);
  color: white !important;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  white-space: normal;
  width: 280px;
  max-width: 90vw;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  line-height: 1.5;
  text-align: center;
  display: block;
}

/* Tooltip arrow */
.offerte-note::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0px);
  border: 6px solid transparent;
  border-bottom-color: rgba(0, 59, 115, 0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1001;
}

/* Show tooltip on hover - desktop only */
@media (hover: hover) and (pointer: fine) {
  .offerte-note:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(12px);
  }
  
  .offerte-note:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(4px);
  }
}

.offerte-note svg {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
  fill: #666;
  opacity: 0.7;
  margin-right: 2px;
}
.offerte-note svg circle {
  stroke: #999;
}
.offerte-note svg rect {
  fill: #666;
}

.btn-offerte {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 600px) {
  .offerte-btn-wrap {
    width: 100%;
    align-items: stretch;
    margin-bottom: 16px;
  }
  .offerte-note {
    font-size: 0.55em;
    padding: 5px 10px 5px 8px;
    gap: 5px;
    min-height: 22px;
    white-space: normal;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
    color: #666;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-weight: 400;
  }
  .offerte-note svg {
    width: 1em;
    height: 1em;
    margin-right: 1px;
  }
  .header {
    padding-bottom: 0 !important;
  }
  .info-bar {
    margin-top: 1px !important;
  }
}

/* Window calculator styles - removed and replaced with redirect button */

/* Wizard calculator styles - removed and replaced with redirect button */

/* Visual calculator styles - removed and replaced with redirect button */

/* Visual offer modal - removed and replaced with redirect button */

/* ФОРСИРОВАННЫЕ СТИЛИ ДЛЯ ФУТЕРА - В КОНЦЕ ФАЙЛА */
.footer,
.footer *,
.footer h3,
.footer h1,
.footer h2,
.footer h4,
.footer h5,
.footer h6,
.footer p,
.footer span,
.footer div,
.footer li,
.footer a,
.footer i,
.footer strong,
.footer em,
.footer b,
.footer u {
  color: #ffffff !important;
}

.footer a:hover,
.footer a:focus,
.footer a:active {
  color: #ffffff !important;
}

.footer .footer-content *,
.footer .footer-section *,
.footer .footer-col *,
.footer .contact-list *,
.footer .social-links *,
.footer .footer-bottom * {
  color: #ffffff !important;
}

/* Модальное окно для запроса предложения */
.visual-offer-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.visual-offer-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-offer-modal-content {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 59, 115, 0.3);
  border: 1px solid rgba(33, 150, 243, 0.1);
  animation: slideInUp 0.4s ease;
}

.visual-offer-modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.visual-offer-modal-close:hover {
  color: var(--main-blue);
  background: rgba(33, 150, 243, 0.1);
  transform: rotate(90deg);
}

.visual-offer-modal h3 {
  color: var(--main-blue);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 30px 0;
  text-align: center;
  position: relative;
}

.visual-offer-modal h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
}

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

.visual-offer-form input {
  padding: 18px 20px;
  border: 2px solid rgba(33, 150, 243, 0.15);
  border-radius: 16px;
  font-size: 1rem;
  font-family: var(--font-main);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  color: var(--dark);
}

.visual-offer-form input:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.15);
  transform: translateY(-2px);
}

.visual-offer-form input::placeholder {
  color: #999;
  font-weight: 500;
}

.visual-offer-form button {
  padding: 18px 35px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 20px;
  background: var(--gradient);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.visual-offer-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(33, 150, 243, 0.4);
}

.visual-offer-form-message {
  min-height: 24px;
  margin-top: 15px;
  text-align: center;
  font-weight: 500;
  border-radius: 12px;
  padding: 12px;
  transition: all 0.3s ease;
}

.visual-offer-form-message.success {
  background: rgba(0, 200, 81, 0.1);
  color: #00C851;
  border: 1px solid rgba(0, 200, 81, 0.2);
}

.visual-offer-form-message.error {
  background: rgba(255, 68, 68, 0.1);
  color: #ff4444;
  border: 1px solid rgba(255, 68, 68, 0.2);
}

/* Анимации для модального окна */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .visual-offer-modal-content {
    padding: 30px 25px;
    margin: 20px;
    max-width: calc(100% - 40px);
  }
  
  .visual-offer-modal h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
  
  .visual-offer-form {
    gap: 15px;
  }
  
  .visual-offer-form input {
    padding: 16px 18px;
    font-size: 0.95rem;
  }
  
  .visual-offer-form button {
    padding: 16px 30px;
    font-size: 1rem;
  }
}

/* ===== МОБИЛЬНЫЕ СТИЛИ ДЛЯ ПАРТНЕРОВ И ПЕРЕВОДА ===== */

/* Мобильная кнопка партнеров */
.mobile-partners-btn {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2);
  position: relative;
  overflow: hidden;
}

.mobile-partners-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.mobile-partners-btn:hover::before {
  left: 100%;
}

.mobile-partners-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
}

.mobile-partners-btn i {
  font-size: 1rem;
}

/* Мобильное выпадающее меню партнеров */
.mobile-partners-dropdown {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-partners-dropdown.show {
  display: flex;
  opacity: 1;
}

.mobile-partners-dropdown-content {
  background: white;
  margin: auto;
  width: 90%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.mobile-partners-dropdown.show .mobile-partners-dropdown-content {
  transform: scale(1);
}

.mobile-partners-dropdown-header {
  background: var(--gradient);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-partners-dropdown-header h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
}

.mobile-partners-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.mobile-partners-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-partners-list {
  padding: 20px;
}

.mobile-partner-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  margin-bottom: 10px;
}

.mobile-partner-item:hover {
  background: #f8faff;
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.15);
}

.mobile-partner-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
}

.mobile-partner-info h4 {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
  color: var(--main-blue);
  font-weight: 600;
}

.mobile-partner-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

/* Плавающая кнопка перевода */
.mobile-lang-float {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.mobile-lang-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(33, 150, 243, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mobile-lang-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.mobile-lang-btn:hover::before {
  left: 100%;
}

.mobile-lang-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(33, 150, 243, 0.4);
}

.mobile-lang-btn .flag {
  width: 30px;
  height: auto;
  border-radius: 4px;
}

.mobile-lang-dropdown {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 10px;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

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

.mobile-lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 15px;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.3s ease;
  text-align: left;
}

.mobile-lang-option:hover {
  background: #f8faff;
}

.mobile-lang-option .flag {
  width: 20px;
  height: auto;
  border-radius: 3px;
}

.mobile-lang-option span {
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
}

/* Медиа-запросы для мобильных устройств */
@media (max-width: 600px) {
  /* ===== УЛУЧШЕННЫЙ МОБИЛЬНЫЙ ХЕДЕР ===== */
  
  /* Плавающая кнопка перевода справа по центру */
  .mobile-lang-float {
    display: block;
    right: 20px;
    left: auto;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
  
  /* Скрываем ненужные элементы на мобильных */
  .lang-switcher,
  .partners-section,
  .site-search,
  .offerte-note {
    display: none !important;
  }
  
  /* Оптимизированная структура хедера для мобильных */
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-wrap: nowrap;
    padding: 10px 0;
  }
  
  /* Hamburger menu - links */
  .mobile-menu-btn {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    transform: translateX(30px);
  }
  
  /* Logo - absoluut gecentreerd */
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    flex-shrink: 0;
    pointer-events: auto;
  }

  .logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    pointer-events: auto;
  }
  
  /* Offerte knop - rechts */
  .offerte-btn-wrap {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    transform: translateX(50px);
  }
  
  /* Увеличиваем логотип на мобильных */
  .logo img,
  .header .logo img,
  .nav-container .logo img {
    max-height: 50px !important;
    width: auto !important;
    height: auto !important;
  }
  
  /* Контейнер для всех мобильных кнопок - центр */
  .mobile-buttons-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    order: 2;
    justify-content: flex-start;
    flex: 1;
    margin: 0 15px;
    padding-left: 20px;
  }
  
  /* Кнопка Partners - левее */
  .mobile-partners-btn {
    padding: 12px 16px !important;
    font-size: 0.9rem !important;
    min-width: 110px !important;
    height: 44px !important;
    border-radius: 12px !important;
    background: var(--gradient) !important;
    color: white !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-weight: 600 !important;
    order: 1;
  }
  
  /* Offerte knop styling */
  .btn-offerte,
  .offerte-btn-wrap .btn-offerte,
  .header .btn-offerte,
  .nav-container .btn-offerte {
    padding: 12px 18px !important;
    font-size: 0.9rem !important;
    min-width: 130px !important;
    height: 44px !important;
    border-radius: 12px !important;
    background: #3b82f6 !important;
    color: white !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0, 59, 115, 0.2) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
    text-decoration: none !important;
  }
  
  /* Hamburger menu styling */
  .mobile-menu-btn {
    flex-shrink: 0;
    width: 48px !important;
    height: 48px !important;
    border-radius: 12px !important;
    background: var(--gradient) !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2) !important;
    overflow: visible !important;
  }
  
  /* Стили для полосок меню */
  .mobile-menu-btn span {
    width: 22px !important;
    height: 3px !important;
    background: white !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
    display: block !important;
  }
  
  /* Hover эффекты */
  .mobile-partners-btn:hover,
  .btn-offerte:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3) !important;
  }
  
  .mobile-menu-btn:hover {
    transform: translate(30px, -2px) !important;
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3) !important;
  }
  
  .btn-offerte:hover {
    box-shadow: 0 6px 20px rgba(0, 59, 115, 0.3) !important;
  }
}

/* Дополнительные медиа-запросы для очень маленьких экранов */
@media (max-width: 480px) {
  /* Уменьшаем размеры кнопок */
  .mobile-partners-btn {
    padding: 10px 14px !important;
    font-size: 0.85rem !important;
    min-width: 100px !important;
    height: 40px !important;
  }
  
  .btn-offerte,
  .offerte-btn-wrap .btn-offerte,
  .header .btn-offerte,
  .nav-container .btn-offerte {
    padding: 10px 16px !important;
    font-size: 0.85rem !important;
    min-width: 120px !important;
    height: 40px !important;
  }
  
  .mobile-menu-btn {
    width: 40px !important;
    height: 40px !important;
  }
  
  .mobile-buttons-container {
    gap: 10px;
    margin: 0 10px;
  }
  
  /* Уменьшаем отступы хедера */
  .nav-container {
    gap: 10px;
    padding: 8px 0;
  }
  
  /* Уменьшаем логотип, но оставляем больше чем было */
  .logo img,
  .header .logo img,
  .nav-container .logo img {
    max-height: 45px !important;
    width: auto !important;
    height: auto !important;
  }
}

@media (max-width: 360px) {
  /* Минимальные размеры для очень маленьких экранов */
  .mobile-partners-btn {
    padding: 8px 12px !important;
    font-size: 0.8rem !important;
    min-width: 90px !important;
    height: 36px !important;
  }
  
  .btn-offerte,
  .offerte-btn-btn,
  .offerte-btn-wrap .btn-offerte,
  .header .btn-offerte,
  .nav-container .btn-offerte {
    padding: 8px 14px !important;
    font-size: 0.8rem !important;
    min-width: 110px !important;
    height: 36px !important;
  }
  
  .mobile-menu-btn {
    width: 36px !important;
    height: 36px !important;
  }
  
  .mobile-buttons-container {
    gap: 8px;
    margin: 0 8px;
  }
  
  /* Минимальные отступы */
  .nav-container {
    gap: 8px;
    padding: 6px 0;
  }
  
  /* Минимальный логотип, но больше чем было */
  .logo img,
  .header .logo img,
  .nav-container .logo img {
    max-height: 40px !important;
    width: auto !important;
    height: auto !important;
  }
  
  /* Уменьшаем шрифты */
  .mobile-partners-btn,
  .btn-offerte {
    font-size: 0.75rem !important;
  }
}

/* ===== ПРИНУДИТЕЛЬНОЕ ПРИМЕНЕНИЕ СТИЛЕЙ ДЛЯ МОБИЛЬНЫХ КНОПОК ===== */
@media (max-width: 600px) {
  /* Принудительно применяем стили для кнопки Partners */
  .header .nav-container .mobile-buttons-container .mobile-partners-btn {
    padding: 10px 14px !important;
    font-size: 0.85rem !important;
    min-width: 100px !important;
    margin: 0 !important;
  }
  
  /* Принудительно применяем стили для кнопки Offerte */
  .header .nav-container .offerte-btn-wrap .btn-offerte,
  .header .nav-container .btn-offerte,
  .header .btn-offerte,
  .btn-offerte {
    padding: 8px 12px !important;
    font-size: 0.8rem !important;
    min-width: 100px !important;
    max-width: 120px !important;
    height: auto !important;
    line-height: 1.2 !important;
    margin: 0 !important;
  }
}

@media (max-width: 480px) {
  .header .nav-container .mobile-buttons-container .mobile-partners-btn {
    padding: 8px 12px !important;
    font-size: 0.8rem !important;
    min-width: 90px !important;
    margin: 0 !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  
  /* Принудительно применяем стили для кнопки Offerte */
  .header .nav-container .offerte-btn-wrap .btn-offerte,
  .header .nav-container .btn-offerte,
  .header .btn-offerte,
  .btn-offerte {
    padding: 6px 10px !important;
    font-size: 0.75rem !important;
    min-width: 90px !important;
    max-width: 100px !important;
    height: auto !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}

@media (max-width: 360px) {
  .header .nav-container .mobile-buttons-container .mobile-partners-btn {
    padding: 6px 10px !important;
    font-size: 0.75rem !important;
    min-width: 80px !important;
    margin: 0 !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  
  /* Принудительно применяем стили для кнопки Offerte */
  .header .nav-container .offerte-btn-wrap .btn-offerte,
  .header .nav-container .btn-offerte,
  .header .btn-offerte,
  .btn-offerte {
    padding: 5px 8px !important;
    font-size: 0.7rem !important;
    min-width: 80px !important;
    max-width: 90px !important;
    height: auto !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}

/* === LANGUAGE SWITCHER DISABLED === */
.lang-switcher,
.mobile-lang-float {
  display: none !important;
}

/* === POPULAR NL GRID === */
.popular-nl-grid {
  display: flex;
  gap: 70px;
  flex-wrap: nowrap;
  justify-content: center;
}

@media (max-width: 768px) {
  .popular-nl-grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}

/* === IMAGE COMPARISON SLIDER === */
.img-comparison-slider {
  position: relative;
  width: 100%;
  max-width: 345px;
  margin: 0 auto;
  overflow: hidden;
  user-select: none;
  border-radius: 12px;
}

.img-comparison-slider img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
}

.img-comparison-slider img:first-child {
  width: 100%;
}

.img-comparison-slider img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 50% 0 0);
}

.img-comparison-slider::after {
  content: '';
  position: absolute;
  top: 0;
  left: var(--thumb-position, 50%);
  width: 2px;
  height: 100%;
  background: white;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  transform: translateX(-50%);
  cursor: col-resize;
  z-index: 10;
  transition: left 0.05s ease;
}

.img-comparison-slider::before {
  content: '◀  ▶';
  position: absolute;
  top: 50%;
  left: var(--thumb-position, 50%);
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  color: #003b73;
  padding: 8px 12px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  z-index: 11;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  letter-spacing: 4px;
  white-space: nowrap;
  pointer-events: none;
  transition: left 0.05s ease;
}

@media (max-width: 768px) {
  .img-comparison-slider {
    max-width: 100%;
  }
}
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
  pointer-events: none;
}

.comparison-arrow:hover {
  background: rgba(255, 255, 255, 1);
}

.comparison-arrow.left {
  left: 5px;
}

.comparison-arrow.left::after {
  content: '◀';
  color: #003b73;
  font-size: 20px;
  font-weight: bold;
}

.comparison-arrow.right {
  right: 5px;
}

.comparison-arrow.right::after {
  content: '▶';
  color: #003b73;
  font-size: 20px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .comparison-slider {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .comparison-arrow {
    width: 40px;
    height: 40px;
  }
  
  .comparison-arrow.left::after,
  .comparison-arrow.right::after {
    font-size: 16px;
  }
}

/* Modular House Section Styles */
.test-section {
  padding: 60px 0;
  background: var(--light-blue);
}

.test-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #003b73;
  font-weight: 700;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  justify-items: center;
}

.test-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  max-width: 380px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.card-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f0f0f0;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ffa500;
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #003b73;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.card-subtitle {
  font-size: 14px;
  color: #666;
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.card-features {
  display: flex;
  gap: 20px;
  margin: 16px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.feature i {
  font-size: 16px;
  color: #2196f3;
  width: 20px;
  text-align: center;
}

.card-build-time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.card-build-time i {
  font-size: 16px;
  color: #2196f3;
}

.card-btn {
  background: #3b82f6;
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: auto;
}

.card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

.card-btn:active {
  transform: translateY(0);
}

.card-address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
  margin: 16px 0;
}

.card-address i {
  font-size: 16px;
  color: #2196f3;
}

.card-showroom-features,
.card-calculator-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}

.showroom-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #333;
}

.showroom-feature-item i {
  font-size: 16px;
  color: #2196f3;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.card-calculator-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}

.card-calculator-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .test-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .test-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .test-card {
    max-width: 100%;
  }

  .card-content {
    padding: 20px;
  }

  .card-title {
    font-size: 18px;
  }
}

/* === SERVICE CARDS GRID === */
.service-links {
  padding: 60px 0;
  background: #f8f9fa;
  margin-top: 40px;
}

.service-links h2 {
  font-size: 2rem;
  color: #003b73;
  margin-bottom: 15px;
  text-align: center;
}

.service-links > p {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 59, 115, 0.2);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 3px solid #3b82f6;
}

.service-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin: 20px 20px 10px 20px;
  font-weight: 600;
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
  margin: 0 20px 20px 20px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .service-links {
    padding: 40px 0;
  }

  .service-links h2 {
    font-size: 1.6rem;
  }

  .service-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    padding: 0 15px;
  }

  .service-card img {
    height: 140px;
  }

  .service-card h3 {
    font-size: 1rem;
    margin: 15px 15px 8px 15px;
  }

  .service-card p {
    font-size: 0.85rem;
    margin: 0 15px 15px 15px;
  }
}

@media (max-width: 480px) {
  .service-cards-grid {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 200px;
  }
}

/* ===== OVER ONS PAGE STYLES ===== */
.about-hero {
  padding: 80px 0 60px;
  text-align: center;
}
.about-hero-content {
  max-width: 900px;
  margin: 0 auto;
}
.about-hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #111 !important;
  line-height: 1.3;
}
.about-hero-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #333 !important;
}
.about-hero p {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #444 !important;
}

.about-stats-section {
  padding: 50px 0;
}
.about-stats-section .about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.about-block {
  padding: 60px 0;
}
.about-block-light {
  background: var(--bg-color) !important;
}
.about-block-white {
  background: var(--white) !important;
}
.about-block-reasons {
  background: var(--bg-color) !important;
}

.about-block-inner {
  max-width: 900px;
  margin: 0 auto;
}
.about-block-icon {
  text-align: center;
  margin-bottom: 20px;
}
.about-block-icon i {
  font-size: 2.5rem;
  color: #2196f3;
  background: rgba(33,150,243,0.1);
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  display: inline-block;
}

.about-block h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #003b73 !important;
  margin-bottom: 20px;
  text-align: center;
}
.about-block p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333 !important;
  margin-bottom: 16px;
}

.about-checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.about-checklist li {
  font-size: 1.05rem;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333 !important;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.about-checklist li:last-child {
  border-bottom: none;
}
.about-checklist li i {
  color: #2196f3;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.about-checklist-green li i {
  color: #4caf50;
}

.about-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.about-product-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white) !important;
  border-radius: 12px;
  border: 1px solid rgba(0,59,115,0.08);
  transition: var(--transition);
}
.about-product-item:hover {
  box-shadow: var(--card-shadow);
  transform: translateY(-2px);
}
.about-product-item i {
  color: #2196f3;
  font-size: 1.3rem;
}
.about-product-item span {
  font-weight: 600;
  color: #003b73 !important;
}

.about-highlight {
  background: linear-gradient(135deg, rgba(33,150,243,0.08), rgba(0,59,115,0.06)) !important;
  padding: 18px 24px;
  border-radius: 12px;
  border-left: 4px solid #2196f3;
  font-weight: 600;
  color: #003b73 !important;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.about-highlight i {
  color: #2196f3;
  font-size: 1.3rem;
}

.about-reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.about-reason-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--white) !important;
  border-radius: 14px;
  border: 1px solid rgba(0,59,115,0.08);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}
.about-reason-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.about-reason-card i {
  color: #2196f3;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.about-reason-card span {
  color: #111 !important;
  font-weight: 600;
  font-size: 1rem;
}

.about-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.about-cta-row .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #2196f3;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.about-cta-row .btn-primary:hover {
  background: #1976d2;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(33,150,243,0.4);
}

/* ===== HOME PAGE - TRIPLE GLAS BANNER ===== */
.home-triple-banner {
  padding: 60px 0;
  background: var(--bg-color) !important;
}
.triple-banner-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.triple-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #43a047;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.triple-banner-text h2 {
  font-size: 1.9rem;
  color: #003b73 !important;
  margin-bottom: 16px;
  line-height: 1.3;
}
.triple-banner-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333 !important;
  margin-bottom: 20px;
}
.triple-banner-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.triple-banner-list li {
  padding: 8px 0;
  font-size: 1.02rem;
  color: #333 !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.triple-banner-list li i {
  color: #43a047;
  font-size: 1.1rem;
}
.triple-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #2196f3;
  color: #fff !important;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}
.triple-banner-btn:hover {
  background: #1976d2;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(33,150,243,0.4);
}
.triple-banner-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
}
.triple-banner-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* ===== HOME PAGE - KUNSTSTOF SECTION ===== */
.home-kunststof {
  padding: 70px 0;
  background: var(--white) !important;
}
.home-kunststof > .container > h2 {
  text-align: center;
  font-size: 1.9rem;
  color: #003b73 !important;
  margin-bottom: 12px;
}
.home-kunststof-intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 40px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #444 !important;
}
.home-kunststof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.home-kunststof-card {
  background: var(--bg-color) !important;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,59,115,0.06);
  transition: all 0.3s ease;
}
.home-kunststof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}
.home-kunststof-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.home-kunststof-card h3 {
  padding: 18px 20px 8px;
  font-size: 1.15rem;
  color: #003b73 !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.home-kunststof-card h3 i {
  color: #2196f3;
}
.home-kunststof-card p {
  padding: 0 20px 22px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #444 !important;
}

/* ===== HOME PAGE - VERDUURZAMEN SECTION ===== */
.home-verduurzamen {
  padding: 70px 0;
  background: var(--bg-color) !important;
}
.home-verduurzamen-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.home-verduurzamen-img-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
  margin-bottom: 16px;
}
.home-verduurzamen-img-main img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.home-verduurzamen-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.home-verduurzamen-img-row img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.home-verduurzamen-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.home-verduurzamen-content h2 {
  font-size: 1.8rem;
  color: #003b73 !important;
  margin-bottom: 16px;
  line-height: 1.3;
}
.home-verduurzamen-content > p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333 !important;
  margin-bottom: 24px;
}
.home-verduurzamen-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
.home-verduurzamen-stat {
  text-align: center;
  flex: 1;
  padding: 16px 12px;
  background: var(--white) !important;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.home-verduurzamen-stat .stat-big {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #2196f3 !important;
  margin-bottom: 4px;
}
.home-verduurzamen-stat span:not(.stat-big) {
  font-size: 0.88rem;
  color: #555 !important;
  font-weight: 600;
}
.home-verduurzamen-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.home-verduurzamen-list li {
  padding: 8px 0;
  font-size: 1.02rem;
  color: #333 !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-verduurzamen-list li i {
  color: #43a047;
  font-size: 1.15rem;
}

@media (max-width: 768px) {
  .triple-banner-inner {
    grid-template-columns: 1fr;
  }
  .triple-banner-image img {
    height: 260px;
  }
  .home-kunststof-grid {
    grid-template-columns: 1fr;
  }
  .home-verduurzamen-split {
    grid-template-columns: 1fr;
  }
  .home-verduurzamen-stats {
    flex-wrap: nowrap;
    gap: 12px;
  }
  .home-verduurzamen-stat {
    min-width: 0;
    flex: 1;
    padding: 12px 6px;
  }
  .home-verduurzamen-stat .stat-big {
    font-size: clamp(1.1rem, 5vw, 1.6rem);
    white-space: nowrap;
  }
}

/* About hero split layout */
.about-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* Before & After photos */
.about-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0 12px;
}
.about-ba-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}
.about-ba-item img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.about-ba-label {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #e53935;
  color: #fff;
  padding: 6px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.about-ba-label-after {
  background: #43a047;
}

/* Product photo grid */
.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.about-photo-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}
.about-photo-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Showroom image */
.about-showroom-image {
  margin: 24px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
}
.about-showroom-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 60px 0 40px;
  }
  .about-hero h1 {
    font-size: 1.55rem;
  }
  .about-hero-split {
    grid-template-columns: 1fr;
  }
  .about-hero-image {
    max-height: 280px;
  }
  .about-block {
    padding: 40px 0;
  }
  .about-block h2 {
    font-size: 1.4rem;
  }
  .about-before-after {
    grid-template-columns: 1fr;
  }
  .about-ba-item img {
    height: 340px;
  }
  .about-photo-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-photo-grid img {
    height: 140px;
  }
  .about-showroom-image img {
    height: 220px;
  }
  .about-products-grid {
    grid-template-columns: 1fr;
  }
  .about-reasons-grid {
    grid-template-columns: 1fr;
  }
  .about-cta-row {
    flex-direction: column;
    align-items: center;
  }
}
