/* ===== Страници стилове ===== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark, #1a1a1a) 0%, var(--primary-gray, #2d2d2d) 100%);
    color: var(--text-light, #fff);
    text-align: center;
    padding: 60px 24px;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--text-light, #fff);
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--accent-gold-light, #daa520);
    font-weight: 300;
}

/* Contacts Page */
.contacts-section {
    padding: 80px 0;
    background: var(--bg-light, #f9f9f9);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--bg-white, #fff);
    border: 1px solid var(--border-light, #e0e0e0);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: var(--transition-normal, 0.3s ease);
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,0.08));
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md, 0 4px 16px rgba(0,0,0,0.12));
}

.contact-card-icon {
    margin-bottom: 16px;
    color: var(--accent-gold, #b8860b);
}

.contact-card-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-primary, #1a1a1a);
}

.contact-card-content p {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.contact-card-content a {
    color: var(--accent-blue, #2c5f7c);
    font-weight: 600;
    text-decoration: none;
}

.contact-card-content a:hover {
    color: var(--accent-gold, #b8860b);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-muted, #6b6b6b);
    font-style: italic;
    margin-top: 8px;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-white, #fff);
    border: 1px solid var(--border-light, #e0e0e0);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-md, 0 4px 16px rgba(0,0,0,0.12));
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--text-primary, #1a1a1a);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary, #4a4a4a);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light, #e0e0e0);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast, 0.2s ease);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold, #b8860b);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-muted, #6b6b6b);
    margin-top: 12px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--bg-white, #fff);
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg, 0 8px 32px rgba(0,0,0,0.16));
    margin-top: 32px;
}

/* Mobile Responsive для контакти */
@media (max-width: 1024px) {
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
}

/* Hero section from old index.css */
.hero {
  border-bottom: 1px solid var(--border);
  background: radial-gradient(
      900px 360px at 20% -20%,
      rgba(14, 165, 233, 0.06),
      transparent
    ),
    radial-gradient(
      700px 360px at 80% -20%,
      rgba(6, 182, 212, 0.04),
      transparent
    );
}
.hero-wrap {
  padding: 28px 0 18px;
}
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.hero-top.centered {
  justify-content: center;
}
.hero-title {
  flex: 1;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text);
  text-align: center;
}
.slideshow {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  z-index: 0;
}
.slides {
  height: 100%;
  width: 100%;
  position: relative;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s, transform 0.4s;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
}
.slide.active {
  opacity: 1;
}
.slide-visual {
  position: relative;
  background-size: cover;
  background-position: center;
  filter: contrast(100%) saturate(105%);
  cursor: pointer;
  transition: transform 0.22s ease, filter 0.18s;
  will-change: transform;
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  align-self: stretch;
  justify-self: stretch;
  overflow: hidden;
}
.slide-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(16px) saturate(110%) brightness(0.85);
  transform: scale(1.06);
  z-index: 0;
  pointer-events: none;
}
.slide-visual img,
.slide-img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
}
.slide-copy {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  align-items: flex-start;
}
.slide-eyebrow {
  color: var(--accent);
  font-weight: 700;
}
.slide-headline {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
}
.slide-text {
  color: var(--muted);
}
.slide-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.slide-actions .btn {
  padding: 12px 18px;
  font-size: 1rem;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
  transform-origin: center center;
  text-decoration: none;
}
.slide-actions .btn:hover {
  transform: translateY(-3px) scale(1.12);
  box-shadow: 0 14px 36px rgba(16, 24, 40, 0.08);
}
.slideshow .btn.primary {
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(14, 165, 233, 0.12);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.08);
  transition: transform 0.16s, box-shadow 0.16s, background 0.12s;
}
.slideshow .btn.primary:hover {
  transform: translateY(-3px) scale(1.14);
  box-shadow: 0 20px 48px rgba(14, 165, 233, 0.12);
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  cursor: pointer;
  border: 1px solid var(--border);
  z-index: 2;
  font-size: 1.6rem;
}
.arrow.left {
  left: 20px;
}
.arrow.right {
  right: 20px;
}
.arrow:hover {
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-50%) scale(1.06);
}
.dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 1;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
}
.dot.active {
  background: var(--accent);
}
.carousel-wrapper {
  position: relative;
  margin: 12px 0;
}
.product-carousel {
  display: flex;
  gap: 16px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 10px 0;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(16, 24, 40, 0.06);
  color: var(--text);
  border: none;
  border-radius: 999px;
  width: 64px;
  height: 64px;
  cursor: pointer;
  font-size: 1.8rem;
  z-index: 2;
  transition: transform 0.12s, background 0.12s;
}
.carousel-arrow.left {
  left: -12px;
}
.carousel-arrow.right {
  right: -12px;
}
.carousel-arrow:hover {
  background: rgba(16, 24, 40, 0.1);
  transform: translateY(-50%) scale(1.08);
}
.section-footer {
  display: flex;
  justify-content: center;
  margin-top: auto;
}
.btn.primary {
  background: var(--sale);
  color: #fff;
  padding: 12px 20px;
  font-size: 1.05rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.12);
}
.product-card {
  position: relative;
  width: 220px;
  min-width: 220px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
  transform-origin: center top;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
}
.sale-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--sale);
  color: #fff;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
}
.product-image {
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
  transition: transform 0.22s ease, filter 0.18s;
  will-change: transform;
}
.product-card:hover .product-image img {
  transform: scale(1.02);
}
.product-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.product-prices {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.old-price {
  color: var(--muted);
  font-size: 0.85rem;
}
.old-price-eur {
  color: var(--muted);
  font-size: 0.8rem;
  text-decoration: line-through;
}
.new-price {
  color: var(--sale);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 4px;
}
.new-price-eur {
  color: var(--sale);
  font-weight: 600;
  font-size: 0.9rem;
}
.regular-price {
  color: var(--accent-2);
  font-weight: 700;
  font-size: 0.95rem;
}
.price-eur {
  font-size: 0.8rem;
  color: var(--muted);
}
.view-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(16, 24, 40, 0.06);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.15s, transform 0.12s, box-shadow 0.12s;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform-origin: center center;
}
.view-btn:hover {
  background: rgba(16, 24, 40, 0.1);
  transform: scale(1.06);
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.06);
}
.product-card:hover .view-btn {
  transform: scale(1.04);
}
@media (max-width: 768px) {
  .hero-top {
    flex-direction: column;
    text-align: center;
  }
  .hero-title {
    text-align: center;
  }
  .product-card {
    width: 180px;
    min-width: 180px;
  }
  .product-image img {
    height: 150px;
  }
}

/* ===== Products Page Styles ===== */
.products-section {
    padding: 80px 0;
    background: var(--bg-light, #f9f9f9);
}

.product-category {
    background: var(--bg-white, #fff);
    border-radius: 12px;
    padding: 48px;
    margin-bottom: 48px;
    box-shadow: var(--shadow-md, 0 4px 16px rgba(0,0,0,0.12));
}

.category-title {
    font-size: 2.5rem;
    margin-bottom: 32px;
    color: var(--text-primary, #1a1a1a);
    text-align: center;
    border-bottom: 3px solid var(--accent-gold, #b8860b);
    padding-bottom: 16px;
}

.category-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.category-content.category-reverse {
    grid-template-columns: 1.2fr 1fr;
}

.category-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg, 0 8px 32px rgba(0,0,0,0.16));
}

.category-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.category-image img:hover {
    transform: scale(1.05);
}

.category-description .lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--text-primary, #1a1a1a);
}

.features-list {
    list-style: none;
    padding-left: 0;
    margin: 24px 0;
}

.features-list li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-secondary, #4a4a4a);
    line-height: 1.6;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold, #b8860b);
    font-weight: bold;
    font-size: 1.3rem;
    top: 8px;
}

.category-description p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary, #4a4a4a);
}

/* Products Page Responsive */
@media (max-width: 1024px) {
    .category-content,
    .category-content.category-reverse {
        grid-template-columns: 1fr;
    }
    
    .product-category {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .category-title {
        font-size: 1.8rem;
    }
    
    .product-category {
        padding: 24px;
        margin-bottom: 32px;
    }
}

/* ===== Pricing Page Styles ===== */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-light, #f9f9f9);
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary, #4a4a4a);
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.price-card {
    background: var(--bg-white, #fff);
    border: 2px solid var(--border-light, #e0e0e0);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-normal, 0.3s ease);
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,0.08));
    position: relative;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg, 0 8px 32px rgba(0,0,0,0.16));
    border-color: var(--accent-gold, #b8860b);
}

.price-card.featured {
    border-color: var(--accent-gold, #b8860b);
    border-width: 3px;
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-gold, #b8860b);
    color: var(--text-light, #fff);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
}

.price-card-header {
    background: linear-gradient(135deg, var(--primary-dark, #1a1a1a) 0%, var(--primary-gray, #2d2d2d) 100%);
    padding: 32px 24px;
    text-align: center;
    color: var(--text-light, #fff);
}

.price-card-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--text-light, #fff);
}

.price-badge {
    display: inline-block;
    background: rgba(184, 134, 11, 0.2);
    color: var(--accent-gold-light, #daa520);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.price-card-body {
    padding: 32px 24px;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light, #e0e0e0);
}

.price-list li:last-child {
    border-bottom: none;
}

.service-name {
    font-size: 1rem;
    color: var(--text-secondary, #4a4a4a);
    flex: 1;
}

.service-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent-gold, #b8860b);
    white-space: nowrap;
    margin-left: 16px;
}

.package-includes {
    margin-top: 24px;
    padding: 20px;
    background: var(--bg-light, #f9f9f9);
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold, #b8860b);
}

.package-includes strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary, #1a1a1a);
    font-size: 1.05rem;
}

.package-includes p {
    margin: 0;
    color: var(--text-secondary, #4a4a4a);
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-note {
    background: var(--bg-white, #fff);
    border: 2px solid var(--accent-gold, #b8860b);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.pricing-note p {
    font-size: 1.05rem;
    color: var(--text-secondary, #4a4a4a);
    line-height: 1.7;
    margin: 0;
}

.pricing-note strong {
    color: var(--accent-gold, #b8860b);
}

/* Pricing Page Responsive */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-intro {
        font-size: 1.05rem;
        padding: 0 16px;
    }
    
    .price-card-header {
        padding: 24px 16px;
    }
    
    .price-card-title {
        font-size: 1.5rem;
    }
    
    .price-card-body {
        padding: 24px 16px;
    }
    
    .pricing-note {
        padding: 24px 16px;
    }
}
