
@import url('index.css');

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.woff2') format('woff2'),
       url('../fonts/Satoshi-Light.woff') format('woff'),
       url('../fonts/Satoshi-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.woff2') format('woff2'),
       url('../fonts/Satoshi-Regular.woff') format('woff'),
       url('../fonts/Satoshi-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.woff2') format('woff2'),
       url('../fonts/Satoshi-Medium.woff') format('woff'),
       url('../fonts/Satoshi-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.woff2') format('woff2'),
       url('../fonts/Satoshi-Bold.woff') format('woff'),
       url('../fonts/Satoshi-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Black.woff2') format('woff2'),
       url('../fonts/Satoshi-Black.woff') format('woff'),
       url('../fonts/Satoshi-Black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}

/* CSS Variables for Colors */
:root {
  /* Primary Brand Colors */
  --primary-color: #CA9C51;
  --primary-color-50: #ca9c5184;
  --primary-color-20: #ca9c5136;
  
  /* Background Colors */
  --bg-dark: #1a1a1a;
  --bg-darker: #212121;
  --bg-darkest: #1F1B1C;
  --bg-medium: #272727;
  --bg-gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  --bg-gradient-medium: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
  --bg-light: #f8f9fa;
  --bg-light-gray: #e9ecef;
  
  /* Text Colors */
  --text-white: #ffffff;
  --text-light: #e7e7e7;
  --text-gray: #cccccc;
  --text-medium-gray: #a6a6a6;
  --text-dark-gray: #646464;
  --text-light-gray: #f1f1f1;
  --text-black: #000000;
  --text-dark: #060606;
  --text-border-gray: #515151;
  --text-muted: #888;
  
  /* Accent Colors */
  --accent-gold: #D4AF37;
  --accent-yellow: #FFD700;
  --accent-orange: #FF6B35;
  --accent-orange-light: #FF8E53;
  --accent-red: #FF4500;
  --accent-red-light: #FF6347;
  
  /* Overlay */
  --overlay-dark: #00000080;
  
  /* Shadow Colors */
  --shadow-dark: rgba(0, 0, 0, 0.25);
  --shadow-light: rgba(0, 0, 0, 0.15);
}

/* Hero title styles for renovation page */
.hero-title {
  word-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  white-space: normal !important;
  overflow-wrap: break-word;
  max-width: 100%;
  width: 100%;
}

/* Variable font version (лучший вариант) */
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Variable.woff2') format('woff2-variations'),
       url('../fonts/Satoshi-Variable.woff') format('woff-variations'),
       url('../fonts/Satoshi-Variable.ttf') format('truetype-variations');
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-VariableItalic.woff2') format('woff2'),
       url('../fonts/Satoshi-VariableItalic.woff') format('woff'),
       url('../fonts/Satoshi-VariableItalic.ttf') format('truetype');
  font-weight: 300 900;
  font-display: swap;
  font-style: italic;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  background-color: var(--bg-dark); /* Добавляем темный фон */
  overflow-x: hidden; /* Предотвращаем горизонтальную прокрутку */
  width: 100%;
  position: relative;
}

/* Принудительно применяем шрифт ко всем элементам */
*, *::before, *::after {
  font-family: inherit;
}

/* Специально для заголовков и кнопок */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Satoshi', sans-serif;
  
}

button, .btn {
  font-family: 'Satoshi', sans-serif;
}

.nav-menu a {
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
  isolation: isolate;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

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

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

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-width: 200px;
  list-style: none;
  margin: 10px 0 0 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
}



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

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  background: rgba(181, 152, 122, 0.1);
  border-left-color: var(--primary-color);
  padding-left: 25px;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .dropdown-menu {
      position: static;
      background: rgba(0, 0, 0, 0.8);
      border-radius: 0;
      box-shadow: none;
      margin: 0;
      padding: 0;
      opacity: 1;
      visibility: visible;
      transform: none;
      display: none;
  }
  
  .dropdown.active .dropdown-menu {
      display: block;
  }
}

/* Mobile Menu Styles */
/* Бургер меню кнопка */
.mobile-menu-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	gap: 4px;
	transition: all 0.3s ease;
}

.hamburger-line {
	width: 25px;
	height: 2px;
	background: white;
	transition: all 0.3s ease;
	transform-origin: center;
}

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

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

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

/* Мобильное меню */
.mobile-menu {
	position: fixed;
	top: 80px;
	left: 0;
	right: 0;
	bottom: 0;
	background: #000000cb;
	backdrop-filter: blur(10px);
	z-index: 1000;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	overflow-y: auto;
}

.mobile-menu.active {
	transform: translateX(0);
}

.mobile-menu-list {
	list-style: none;
	padding: 40px 20px;
	margin: 0;
}

.mobile-menu-list li {
	margin-bottom: 20px;
}

.mobile-menu-list a {
	display: block;
	color: white;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	padding: 15px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.mobile-menu-list a:hover {
	color: var(--primary-color);
	padding-left: 10px;
}

.mobile-dropdown {
    position: relative;
}

/* Мобильный dropdown */
.mobile-dropdown-toggle {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mobile-dropdown-arrow {
	transition: transform 0.3s ease;
}

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

.mobile-dropdown-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

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

.mobile-dropdown-menu li {
	margin-bottom: 0;
}

.mobile-dropdown-menu a {
	padding: 10px 0 10px 20px;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-dropdown-menu a:hover {
	color: var(--primary-color);
	padding-left: 30px;
}

/* Мобильная CTA кнопка */
.mobile-menu-cta {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-form-submit-btn {
	background: var(--primary-color);
	color: white;
	border: none;
	padding: 15px 30px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	text-align: center;
}

.mobile-form-submit-btn:hover {
	background: #a67c52;
	transform: translateY(-2px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
}





/* Footer */
.footer {
  background: #000;
  color: #fff;
  padding: 80px 150px 0;
}

.footer-container {
  max-width: 1650px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 150px;
  object-fit: cover;
  object-position: center;
}

.footer-description {
  font-size: 16px;
  line-height: 1.6;
  color: #888;
  margin-bottom: 30px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-form .form-submit-btn  {
  display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: 0 auto;
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-menu {
  list-style: none;
}

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

.footer-menu a {
  color: #888;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: var(--primary-color);
}

.contact-info-footer p {
  color: #888;
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: #888;
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a {
  color: #888;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #D4AF37;
}

/* Hero Section - Полная адаптивная система */

/* Базовые стили для больших экранов - 1200px+ */
@media (min-width: 1201px) {
  .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .hero-form {
    max-width: 450px;
  }
}

/* Адаптация для средних экранов - 1024px */
@media (max-width: 1200px) {
  .hero-container {
    padding: 0 2rem;
    gap: 40px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-right {
    flex: 0 0 400px;
    max-width: 400px;
  }
  
  .hero-form {
    max-width: 400px;
  }
}

/* Адаптация для планшетов - 1024px */
@media (max-width: 1024px) {
  .hero-container {
    gap: 30px;
    padding: 0 1.5rem;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-right {
    flex: 0 0 350px;
    max-width: 350px;
  }
  
  .hero-form {
    max-width: 350px;
    padding: 25px;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 24px;
  }
  
  .hero-znacki {
    gap: 25px;
  }
  
  .hero-znacki img {
    height: 45px;
  }
  
  .testimonials-grid {
      grid-template-columns: 1fr;
      gap: 30px;
  }
  
  .cta-content {
      grid-template-columns: 1fr;
      gap: 50px;
      text-align: center;
  }
  
  .footer-content {
      grid-template-columns: 1fr;
      gap: 50px;
  }
  
  .footer-links {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
  }
  
  .testimonials-section {
    padding: 80px 60px;
  }
}

/* Адаптация для средних экранов - 900px (переход на вертикальную компоновку) */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
    padding: 0 1rem;
  }
  
  .hero-left {
    order: 1;
    max-width: 100%;
    padding-right: 0;
    text-align: center;
  }
  
  .hero-right {
    order: 2;
    flex: none;
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    display: flex;
    justify-content: center;
  }
  
  .hero-title {
    font-size: 30px;
  }
  
  .hero-form {
    max-width: 450px;
    width: 100%;
  }
  
  .hero-stats {
    justify-content: center;
    margin-top: 2rem;
  }
  
  .stat-item {
    text-align: center;
    min-width: 140px;
  }
  
  .hero-reviews {
    justify-content: center;
    margin-top: 1.5rem;
  }
  
  .hero-znacki {
    justify-content: center;
    margin-top: 1.5rem;
  }
}

/* Полная адаптация для мобильных - 768px */
/* Адаптивные стили для десктопного хедера */
@media (max-width: 1400px) {
  .header {
    padding: 15px 80px;
  }
  
  .navbar {
    padding: 0 1rem;
    gap: 15px;
  }
  
  .logo svg {
    height: 80px;
  }
  
  .nav-menu {
    gap: 30px;
  }
  
  .nav-menu a {
    font-size: 15px;
  }
  
  .contact-btn {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 1200px) {
  .header {
    padding: 15px 60px;
  }
  
  .navbar {
    gap: 10px;
  }
  
  .logo svg {
    height: 70px;
  }
  
  .nav-menu {
    gap: 25px;
  }
  
  .nav-menu a {
    font-size: 14px;
  }
  
  .contact-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 1024px) {
  .header {
    padding: 15px 40px;
  }
  
  .navbar {
    gap: 8px;
  }
  
  .logo svg {
    height: 60px;
  }
  
  .nav-menu {
    gap: 20px;
  }
  
  .nav-menu a {
    font-size: 13px;
  }
  
  .contact-btn {
    padding: 0.3rem 0.7rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 900px) {
  .header {
    padding: 15px 30px;
  }
  
  .navbar {
    gap: 5px;
  }
  
  .logo svg {
    height: 55px;
  }
  
  .nav-menu {
    gap: 15px;
  }
  
  .nav-menu a {
    font-size: 12px;
  }
  
  .contact-btn {
    padding: 0.3rem 0.6rem;
    font-size: 0.65rem;
  }
}

@media (max-width: 850px) {
  .header {
    padding: 15px 25px;
  }
  
  .logo svg {
    height: 50px;
  }
  
  .nav-menu {
    gap: 12px;
  }
  
  .nav-menu a {
    font-size: 11px;
  }
  
  .contact-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.6rem;
  }
}

@media (max-width: 800px) {
  .header {
    padding: 15px 20px;
  }
  
  .logo svg {
    height: 45px;
  }
  
  .nav-menu {
    gap: 10px;
  }
  
  .nav-menu a {
    font-size: 10px;
  }
  
  .contact-btn {
    padding: 0.2rem 0.4rem;
    font-size: 0.55rem;
  }
}

@media (max-width: 780px) {
  .navbar {
    gap: 3px;
  }
  
  .logo svg {
    height: 40px;
  }
  
  .nav-menu {
    gap: 8px;
  }
  
  .nav-menu a {
    font-size: 9px;
  }
  
  .contact-btn {
    padding: 0.2rem 0.3rem;
    font-size: 0.5rem;
  }
}

@media (max-width: 768px) {
  .header {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  .hero {
    min-height: 100vh !important;
    height: auto !important;
    padding: 2rem 0;
  }

  .hero-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
    text-align: center;
  }

  .hero-left {
    order: 1;
    text-align: center;
    max-width: 100%;
  }

  .hero-right {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-title {
    font-size: 28px;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }

  .hero-form {
    padding: 30px;
    margin: 0 auto;
    max-width: 90%;
    width: 100%;
    min-width: 320px;
    box-sizing: border-box;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .form-input {
    width: 100%;
    padding: 15px 18px;
    font-size: 16px;
    box-sizing: border-box;
  }

  .form-textarea {
    padding: 15px 18px;
    font-size: 16px;
    min-height: 120px;
    box-sizing: border-box;
  }

  .form-submit-btn {
    padding: 16px 24px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-stats {
    margin-top: 2rem;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .stat-item {
    text-align: center;
    min-width: 120px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-text {
    font-size: 14px;
  }

  .hero-reviews {
    margin-top: 1.5rem;
    justify-content: center;
    text-align: center;
  }
  
  .reviews-stars .star {
    font-size: 18px;
  }
  
  .reviews-rating {
    font-size: 16px;
  }
  
  .reviews-count {
    font-size: 14px;
  }

  .hero-znacki {
    margin-top: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-znacki img {
    height: 40px;
  }
  
  .hero-arrow {
    bottom: 20px;
  }
  
  .hero-arrow svg {
    width: 35px;
    height: 35px;
  }

  /* Packages Section Mobile */
  .packages-section {
    padding: 60px 20px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .package-card {
    padding: 30px 20px;
  }

  .package-title {
    font-size: 20px;
  }

  .package-price {
    font-size: 28px;
  }

  .package-features li {
    font-size: 14px;
  }

  /* Gallery Section Mobile */
  .gallery-section {
    padding: 60px 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gallery-item {
    margin: 0 auto;
    max-width: 400px;
  }

  .before-after-slider {
    height: 250px;
  }

  .gallery-info h4 {
    font-size: 18px;
  }

  .gallery-info p {
    font-size: 14px;
  }

  /* Portfolio Section Mobile */
  .portfolio-section {
    padding: 60px 20px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .portfolio-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .portfolio-image {
    height: 250px;
  }

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

  /* Process Section Mobile */
  .process-section {
    padding: 60px 20px;
  }

  .process-timeline {
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
  }

  .process-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .process-step:nth-child(odd),
  .process-step:nth-child(even) {
    flex-direction: row;
    text-align: left;
  }

  .process-step:nth-child(odd) .step-number,
  .process-step:nth-child(even) .step-number {
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
    width: 80px;
    height: 80px;
    font-size: 20px;
  }
  
  .process-step:nth-child(odd) .step-content,
  .process-step:nth-child(even) .step-content {
    position: absolute;
    top: 0;
    left: 100px;
    transform: none;
    max-width: none;
    width: calc(100% - 100px);
  }

  /* About Section Mobile */
  .about-section {
    padding: 60px 20px;
  }

  .about-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .about-left {
    order: 1;
  }

  .about-right {
    order: 2;
  }

  .about-left,
  .about-right {
    flex: none;
    max-width: 100%;
  }
  
  .about-right {
    margin-top: 0;
  }

  .team-grid {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 2.5rem;
  }

  .team-photo {
    width: 90px;
    height: 90px;
  }
  
  .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .team-position {
    font-size: 11px;
  }
  
  .team-name {
    font-size: 13px;
  }

  .leader-photo {
    width: 220px;
    height: 220px;
  }

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

  .leader-name {
    font-size: 22px;
  }
  
  .leader-position {
    font-size: 15px;
  }
  
  .leader-quote {
    font-size: 15px;
    padding: 0 15px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-description {
    font-size: 15px;
  }

  /* Testimonials Section Mobile - Полная адаптация */
  .testimonials-section {
    padding: 60px 20px;
  }

  .testimonials-header {
    margin-bottom: 40px;
  }

  .testimonials-title {
    font-size: 32px;
  }

  /* Одна карточка на экране для мобильных */
  .testimonials-group {
    display: block !important; /* Убираем grid */
    max-width: 600px;
    margin: 0 auto;
  }

  /* JavaScript будет управлять отображением карточек на мобильных */

  .testimonial-card {
    padding: 30px 25px;
  }

  .testimonial-image {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
  }

  .quote-icon {
    font-size: 50px;
  }

  .testimonial-text {
    font-size: 15px;
    min-height: auto;
    margin-bottom: 20px;
  }

  .author-name {
    font-size: 17px;
  }

  .testimonial-navigation {
    margin-top: 40px;
  }

  .testimonial-nav-btn {
    width: 55px;
    height: 55px;
  }

  

  /* Footer Mobile */
  .footer {
    padding: 50px 20px 0;
  }

  .footer-container {
    padding: 0 15px;
  }

  .footer-content {
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo img {
    height: 120px;
  }

  .footer-description {
    font-size: 15px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
    gap: 12px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .footer-title {
    font-size: 16px;
    text-align: center;
  }

  .footer-menu {
    text-align: center;
  }

  .footer-menu a {
    font-size: 15px;
  }

  .contact-info-footer p {
    font-size: 15px;
    justify-content: center;
  }

  .footer-bottom {
    padding: 25px 0;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 15px;
  }

  .copyright {
    font-size: 13px;
  }

  .footer-bottom-links a {
    font-size: 13px;
  }

  .testimonials-section,
  .cta-section {
      padding: 60px 0;
  }
  
  .testimonials-title,
  .cta-title {
      font-size: 32px;
  }
  
  .testimonials-grid {
      grid-template-columns: 1fr;
  }
  
  .testimonial-card {
      padding: 30px;
  }
  
  .cta-container {
      flex-direction: column;
      text-align: center;
      gap: 30px;
  }
  
  .cta-buttons {
      justify-content: center;
  }
  
  .cta-image {
      display: none;
  }
}

@media (min-width: 769px) {
  .mobile-bottom-nav {
    display: none;
  }

  .mobile-header {
    display: none;
  }
}

/* Поддержка iPhone с вырезом */
@media (max-width: 768px) {
  .mobile-bottom-nav {
    bottom: max(20px, env(safe-area-inset-bottom));
  }
}

/* Адаптация для маленьких экранов - 480px */
@media (max-width: 480px) {
  .hero {
    min-height: 90vh !important;
    height: auto !important;
    padding: 1.5rem 0;
  }

  .hero-container {
    gap: 1.5rem;
    padding: 0 0.75rem !important;
  }

  .hero-title {
    font-size: 24px;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .hero-form {
    padding: 25px;
    max-width: 95%;
    width: 100%;
    min-width: 280px;
  }

  .form-input {
    padding: 14px 16px;
    font-size: 16px;
  }

  .form-textarea {
    padding: 14px 16px;
    font-size: 16px;
    min-height: 100px;
  }

  .form-submit-btn {
    padding: 15px 20px;
    font-size: 16px;
  }

  .hero-stats {
    margin-top: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .stat-item {
    min-width: 100px;
    flex: 1 1 45%;
  }

  .stat-number {
    font-size: 20px;
  }

  .stat-text {
    font-size: 12px;
  }

  .hero-reviews {
    margin-top: 1rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-znacki {
    margin-top: 1rem;
    gap: 15px;
    flex-wrap: wrap;
  }

  .hero-znacki img {
    height: 35px;
  }
  
  .hero-arrow {
    bottom: 10px;
  }
  
  .hero-arrow svg {
    width: 30px;
    height: 30px;
  }

  /* Packages для маленьких экранов */
  .packages-section {
    padding: 40px 15px;
  }

  .package-card {
    padding: 25px 15px;
  }

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

  .package-price {
    font-size: 24px;
  }

  .package-features li {
    font-size: 13px;
  }

  /* Gallery для маленьких экранов */
  .gallery-section {
    padding: 40px 15px;
  }

  .gallery-item {
    max-width: 350px;
  }

  .before-after-slider {
    height: 220px;
  }

  .gallery-info h4 {
    font-size: 16px;
  }

  .gallery-info p {
    font-size: 13px;
  }

  /* Portfolio для маленьких экранов */
  .portfolio-section {
    padding: 40px 15px !important;
  }

  .portfolio-card {
    max-width: 350px;
  }

  .portfolio-image {
    height: 220px;
  }

  .portfolio-title {
    font-size: 16px;
  }

  /* Process для маленьких экранов */
  .process-section {
    padding: 40px 15px;
  }

  .process-step:nth-child(odd) .step-number,
  .process-step:nth-child(even) .step-number {
    width: 70px;
    height: 70px;
    font-size: 18px;
  }

  .process-step:nth-child(odd) .step-content,
  .process-step:nth-child(even) .step-content {
    left: 90px;
    width: calc(100% - 90px);
  }

  .step-content h3 {
    font-size: 16px;
  }

  .step-content p {
    font-size: 13px;
  }

  /* About для маленьких экранов */
  .about-section {
    padding: 40px 15px;
  }

  .team-grid {
    gap: 12px;
    margin-bottom: 2rem;
  }

  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .team-position {
    font-size: 10px;
  }
  
  .team-name {
    font-size: 12px;
  }

  .leader-photo {
    width: 200px;
    height: 200px;
  }

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

  .leader-name {
    font-size: 20px;
  }
  
  .leader-position {
    font-size: 14px;
  }
  
  .leader-quote {
    font-size: 14px;
    padding: 0 10px;
  }

  .about-title {
    font-size: 24px;
  }

  .about-description {
    font-size: 14px;
  }

  /* Testimonials Section Mobile - 480px */
  .testimonials-section {
    padding: 40px 15px !important;
  }

  .testimonials-container {
    padding: 0 15px !important;
  }

  .testimonials-header {
    margin-bottom: 30px;
  }

  .testimonials-title {
    font-size: 24px !important;
    line-height: 1.2;
  }

  .testimonials-group {
    max-width: 100%;
    gap: 25px;
  }

  .testimonial-card {
    padding: 25px 20px !important;
    border-radius: 16px;
  }

  .testimonial-image {
    width: 120px !important;
    height: 120px !important;
    margin-bottom: 15px;
    border-width: 2px;
  }

  .quote-icon {
    font-size: 45px !important;
  }

  .testimonial-text {
    font-size: 14px !important;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .author-name {
    font-size: 16px !important;
    letter-spacing: 1px;
  }

  .testimonial-navigation {
    margin-top: 35px;
    gap: 12px;
  }

  .testimonial-nav-btn {
    width: 50px !important;
    height: 50px !important;
  }

  .testimonial-nav-btn svg {
    width: 22px;
    height: 22px;
  }

  /* Steps Section Mobile - 480px */
  .process-section {
    padding: 40px 15px !important;
  }

  .process-timeline {
    flex-direction: column !important;
    gap: 30px !important;
    align-items: stretch !important;
    min-height: auto !important;
  }

  .process-timeline::before {
    display: none !important;
  }

  .process-step {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 20px 0 !important;
    margin: 0 !important;
    width: 100% !important;
    flex-direction: row !important;
    text-align: left !important;
  }

  .process-step:nth-child(odd),
  .process-step:nth-child(even) {
    flex-direction: row !important;
    text-align: left !important;
  }

  .process-step:nth-child(odd) .step-number,
  .process-step:nth-child(even) .step-number {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 60px !important;
    height: 60px !important;
    font-size: 18px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
  }
  
  .process-step:nth-child(odd) .step-content,
  .process-step:nth-child(even) .step-content {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .step-content h3 {
    font-size: 16px !important;
    margin-bottom: 0 !important;
    white-space: normal !important;
    line-height: 1.4 !important;
  }

  .step-content p {
    font-size: 14px !important;
    margin: 0 !important;
  }

  

  /* Footer для маленьких экранов */
  .footer {
    padding: 40px 15px 0;
  }

  .footer-container {
    padding: 0 10px;
  }

  .footer-content {
    gap: 30px;
    margin-bottom: 30px;
  }

  .footer-logo img {
    height: 100px;
  }

  .footer-description {
    font-size: 14px;
    line-height: 1.5;
  }

  .footer-social {
    gap: 10px;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .footer-title {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .footer-menu a {
    font-size: 14px;
  }

  .contact-info-footer p {
    font-size: 14px;
  }

  .footer-bottom-links a {
    font-size: 12px;
  }

  .copyright {
    font-size: 12px;
  }
}

/* Адаптация для очень маленьких экранов - 360px */
@media (max-width: 360px) {
  .hero-container {
    padding: 0 0.5rem;
  }

  .hero-title {
    font-size: 22px;
  }

  .hero-form {
    padding: 20px;
    max-width: 98%;
    min-width: 260px;
  }

  .form-input {
    padding: 12px 14px;
    font-size: 16px;
  }

  .form-textarea {
    padding: 12px 14px;
    font-size: 16px;
    min-height: 90px;
  }

  .form-submit-btn {
    padding: 14px 18px;
    font-size: 15px;
  }
  
  .hero-stats {
    gap: 0.75rem;
  }
  
  .stat-item {
    min-width: 80px;
  }
  
  .stat-number {
    font-size: 18px;
  }
  
  .stat-text {
    font-size: 11px;
  }
  
  .hero-znacki {
    gap: 10px;
  }
  
  .hero-znacki img {
    height: 30px;
  }
}

  .packages-section,
  .gallery-section,
  .portfolio-section,
  .process-section,
  .about-section,
  .testimonials-section {
    padding: 30px 10px;
  }



  .footer {
    padding: 30px 10px 0;
  }

  .footer-logo img {
    height: 80px;
  }

  .footer-description {
    font-size: 13px;
  }

  .footer-title {
    font-size: 14px;
  }

  .footer-menu a {
    font-size: 13px;
  }

  .contact-info-footer p {
    font-size: 13px;
  }

  .team-grid {
    gap: 10px;
    margin-bottom: 1.5rem;
  }

  .team-photo {
    width: 70px;
    height: 70px;
  }
  
  .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .team-position {
    font-size: 9px;
  }
  
  .team-name {
    font-size: 11px;
  }

  .leader-photo {
    width: 180px;
    height: 180px;
  }

  .leader-name {
    font-size: 18px;
  }
  
  .leader-position {
    font-size: 13px;
  }
  
  .leader-quote {
    font-size: 13px;
    padding: 0 8px;
  }

  /* Testimonials Section Mobile - 360px */
  .testimonials-section {
    padding: 30px 12px;
  }

  .testimonials-title {
    font-size: 22px;
  }

  .testimonial-card {
    padding: 20px 16px;
  }

  .testimonial-image {
    width: 100px;
    height: 100px;
    margin-bottom: 12px;
  }

  .quote-icon {
    font-size: 40px;
  }

  .testimonial-text {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .author-name {
    font-size: 15px;
  }

  .testimonial-nav-btn {
    width: 45px;
    height: 45px;
  }

  .testimonial-nav-btn svg {
    width: 20px;
    height: 20px;
  }


/* Поддержка iPhone с вырезом */
@media (max-width: 768px) and (orientation: portrait) {
  .hero {
    padding-top: max(2rem, env(safe-area-inset-top)) !important;
  }
  
  .hero-arrow {
    bottom: max(10px, env(safe-area-inset-bottom));
  }
}

/* Дополнительные стили для улучшения UX на мобильных */
@media (max-width: 768px) {
  .form-input:focus,
  .form-textarea:focus {
    transform: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
  }
  
  .form-checkbox {
    text-align: left;
    margin-top: 15px;
  }
  
  .form-checkbox label {
    font-size: 14px;
    line-height: 1.4;
  }
}

/* Оптимизация для landscape режима на мобильных */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 100vh !important;
    padding: 1rem 0;
  }
  
  .hero-container {
    gap: 1.5rem;
  }
  
  .hero-form {
    padding: 20px;
  }
  
  .hero-title {
    font-size: 24px;
    margin-bottom: 1rem;
  }
}




.header {
	position: fixed;
	top: 0px; /* Вместо margin-top */
	left: 0px; /* Вместо margin-left */
	right: 0px; /* Вместо margin-right */
	width: auto; /* Убираем width: 100% */
	z-index: 1000;
	padding: 15px 150px;
	box-sizing: border-box;
	backdrop-filter: blur(15px);
	background: rgba(0, 0, 0, 0.3);
	isolation: isolate;
}

.navbar {
	display: flex;
	align-items: center;
	max-width: 1610px;
	margin: 0 auto;
	position: relative;
	padding: 0 2rem;
	gap: 20px; /* Добавляем базовый отступ между элементами */
}

.logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	min-width: 100px;
}

.logo svg {
	height: 90px;
	width: auto;
	fill: white;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 40px;
	margin: 0;
	flex: 1;
	justify-content: center;
	overflow: hidden;
	min-width: 0; /* Позволяет сжиматься */
}

.nav-menu a {
	color: #fff;
	text-decoration: none;
	font-weight: 400;
	transition: opacity 0.3s ease;
	font-size: 16px;
	white-space: nowrap;
}

.nav-menu a:hover {
	opacity: 0.7;
}

.nav-right {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	min-width: 100px;
	justify-content: flex-end;
}

.contact-btn {
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
	padding: 0.5rem 1.2rem;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 0.85rem;
}

.contact-btn:hover {
	background: #fff;
	color: #000;
}

/* Адаптивные стили для десктопного хедера */
@media (max-width: 1400px) {
  .header {
    padding: 15px 100px;
  }
  
  .navbar {
    padding: 0 1.5rem;
  }
}

@media (max-width: 1200px) {
  .header {
    padding: 15px 60px;
  }
  
  .navbar {
    padding: 0 1rem;
  }
  
  .logo svg {
    height: 80px;
  }
  
  .nav-menu {
    gap: 35px;
  }
  
  .nav-menu a {
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  .header {
    padding: 15px 40px;
  }
  
  .navbar {
    padding: 0 0.5rem;
  }
  
  .logo svg {
    height: 70px;
  }
  
  .nav-menu {
    gap: 25px;
  }
  
  .nav-menu a {
    font-size: 14px;
  }
  
  .contact-btn {
    padding: 0.4rem 1.2rem;
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .header {
    padding: 15px 30px;
  }
  
  .logo svg {
    height: 65px;
  }
  
  .nav-menu {
    gap: 20px;
  }
  
  .nav-menu a {
    font-size: 13px;
  }
  
  .contact-btn {
    padding: 0.35rem 1rem;
    font-size: 13px;
  }
}

@media (max-width: 850px) {
  .header {
    padding: 15px 25px;
  }
  
  .navbar {
    padding: 0;
  }
  
  .logo svg {
    height: 60px;
  }
  
  .nav-menu {
    gap: 15px;
  }
  
  .nav-menu a {
    font-size: 12px;
  }
  
  .contact-btn {
    padding: 0.3rem 0.8rem;
    font-size: 12px;
  }
}

@media (max-width: 800px) {
  .header {
    padding: 15px 20px;
  }
  
  .logo svg {
    height: 55px;
  }
  
  .nav-menu {
    gap: 12px;
  }
  
  .nav-menu a {
    font-size: 11px;
  }
  
  .contact-btn {
    padding: 0.25rem 0.6rem;
    font-size: 11px;
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 1000;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:active {
  transform: translateY(-1px);
}

.scroll-to-top svg {
  transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .scroll-to-top {
      bottom: 20px;
      right: 20px;
      width: 45px;
      height: 45px;
  }
}

@media (max-width: 480px) {
  .scroll-to-top {
      bottom: 15px;
      right: 15px;
      width: 40px;
      height: 40px;
  }
  
  .scroll-to-top svg {
      width: 20px;
      height: 20px;
  }
}

/* Animation for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .scroll-to-top {
      transition: opacity 0.3s ease;
      transform: none;
  }
  
  .scroll-to-top.visible {
      transform: none;
  }
  
  .scroll-to-top:hover {
      transform: none;
  }
  
  .scroll-to-top svg {
      transition: none;
  }
  
  .scroll-to-top:hover svg {
      transform: none;
  }
}



/* Contact Info Footer */
.contact-info-footer p {
    color: #888;
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 15px 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #888;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 15px;
    min-width: 60px;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
    color: var(--primary-color);
    background: rgba(202, 156, 81, 0.1);
}

.mobile-nav-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

.mobile-nav-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    stroke: currentColor;
}

.mobile-nav-label {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        display: none;
    }
    
    .mobile-header {
        display: flex;
    }
    
    .mobile-bottom-nav {
        display: block;
    }
    
    main {
        padding-top: 90px;
    }
}

@media (min-width: 769px) {
    .mobile-bottom-nav {
        display: none;
    }
    
    .mobile-header {
        display: none;
    }
    
    main {
        padding-top: 120px;
    }
}

/* Support for iPhone with notch */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        bottom: max(20px, env(safe-area-inset-bottom));
    }
    
    .mobile-header {
        top: env(safe-area-inset-top);
        padding-top: calc(15px + env(safe-area-inset-top));
    }
}

/* Hero form positioning to avoid header overlap */


.hero-left {
  margin-top: 120px !important;
}



/* Impressum and Datenschutz Modal Styles */
.impressum-modal,
.datenschutz-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(26, 26, 26, 0.9));
    backdrop-filter: blur(10px);
    animation: legalModalFadeIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.impressum-modal.show,
.datenschutz-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-modal-content {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow: hidden;
    position: relative;
    animation: legalModalSlideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.legal-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b35, var(--primary-color));
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

.legal-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 40px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.legal-modal-header h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.legal-modal-close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.legal-modal-close:hover {
    background: rgba(255, 59, 48, 0.2);
    border-color: rgba(255, 59, 48, 0.4);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 59, 48, 0.3);
}

.legal-modal-body {
    padding: 32px 40px;
    overflow-y: auto;
    max-height: calc(85vh - 140px);
    line-height: 1.7;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(255, 255, 255, 0.1);
}

.legal-modal-body::-webkit-scrollbar {
    width: 8px;
}

.legal-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.legal-modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), #ff6b35);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.legal-modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff6b35, var(--primary-color));
}

.legal-modal-body h4 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin: 32px 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
}

.legal-modal-body h4:first-child {
    margin-top: 0;
}

.legal-modal-body h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ff6b35;
}

.legal-modal-body h5 {
    color: #e0e0e0;
    font-size: 18px;
    font-weight: 500;
    margin: 24px 0 12px 0;
    position: relative;
    padding-left: 20px;
}

.legal-modal-body h5::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: linear-gradient(180deg, var(--primary-color), #ff6b35);
    border-radius: 2px;
}

.legal-modal-body p {
    color: #b8b8b8;
    margin: 16px 0;
    font-size: 15px;
    line-height: 1.7;
}

.legal-modal-body p strong {
    color: #ffffff;
    font-weight: 600;
}

.legal-modal-body a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.legal-modal-body a:hover {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
}

.legal-modal-note {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 20px;
    border-radius: 12px;
    margin: 24px 0;
    position: relative;
    overflow: hidden;
}

.legal-modal-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), #ff6b35);
}

.legal-modal-note p {
    color: #ffffff;
    margin: 0;
    font-weight: 500;
}

.legal-modal-note strong {
    color: var(--primary-color);
}










/* Mobile Responsive for Legal Modals */
@media (max-width: 768px) {
    .legal-modal-content {
        width: 95%;
        max-height: 90vh;
        margin: 20px;
        border-radius: 16px;
    }
    
    .legal-modal-header {
        padding: 24px 24px 20px;
    }
    
    .legal-modal-header h3 {
        font-size: 24px;
    }
    
    .legal-modal-close {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 50%;
        min-width: 40px;
        min-height: 40px;
        max-width: 40px;
        max-height: 40px;
    }
    
    .modal-close {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 50%;
        min-width: 40px;
        min-height: 40px;
        max-width: 40px;
        max-height: 40px;
    }
    
    .legal-modal-body {
        padding: 24px;
        max-height: calc(90vh - 120px);
    }
    
    .legal-modal-body h4 {
        font-size: 20px;
        margin: 24px 0 12px 0;
    }
    
    .legal-modal-body h5 {
        font-size: 16px;
        margin: 20px 0 10px 0;
    }
    
    .legal-modal-body p {
        font-size: 14px;
    }

    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 20px 24px;
    }
    
    .modal-form {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .legal-modal-content {
        width: 98%;
        margin: 10px;
        border-radius: 12px;
    }
    
    .legal-modal-header {
        padding: 20px 20px 16px;
    }
    
    .legal-modal-header h3 {
        font-size: 22px;
    }
    
    .legal-modal-body {
        padding: 20px;
    }
    
    .legal-modal-body h4 {
        font-size: 18px;
    }
    
    .legal-modal-body h5 {
        font-size: 15px;
        padding-left: 16px;
    }
    
    .legal-modal-body h5::before {
        width: 3px;
        height: 14px;
    }

    .modal-content {
        width: 98%;
        margin: 10px;
    }
    
    .modal-header {
        padding: 16px 20px;
    }
    
    .modal-header h3 {
        font-size: 20px;
    }
    
    .modal-form {
        padding: 20px;
    }
}




/* Hero Section with Rounded Bottom */
.hero {
  position: relative;
  background-color: #232323;
  overflow: hidden;
  min-height: 800px !important;
  border-radius: 0 0 150px 150px; /* Добавляем закругление снизу к самой секции */
}

/* Убираем отдельный элемент закругления */
.hero-bottom-curve {
  display: none;
}

/* Responsive rounded corners */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh !important;
    height: auto !important;
    padding: 2rem 0;
    border-radius: 0 0 30px 30px; /* Меньшее закругление на мобильных */
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 90vh !important;
    height: auto !important;
    padding: 1.5rem 0;
    border-radius: 0 0 25px 25px; /* Еще меньшее закругление на маленьких экранах */
  }
}



.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 450px));
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.package-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.luxury-package {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, var(--bg-card) 100%);
  border: 2px solid rgba(212, 175, 55, 0.7);
}

.modern-package {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, var(--bg-card) 100%);
  border: 2px solid rgba(212, 175, 55, 0.7);
}

.package-header {
  text-align: center;
  margin-bottom: 5px;
}

.package-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.luxury-package .package-badge {
  background: var(--primary-color);
  color: var(--text-dark);
}

.modern-package .package-badge {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
}

.package-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
}

.package-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  min-height: 42px; /* Фиксированная минимальная высота для 2 строк текста */
  display: flex;
  align-items: flex-start;
}

.package-features {
  margin: 30px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  min-height: 60px; /* Фиксированная минимальная высота для каждого элемента */
}

.feature-icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  flex-shrink: 0;
  margin-top: 2px; /* Небольшой отступ для лучшего выравнивания с текстом */
}

.luxury-package .feature-icon {
  background: rgba(212, 175, 55, 0.2);
}

.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.feature-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 6px;
  line-height: 1.3;
}

.feature-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: #4CAF50;
    transition: color 0.3s ease;
}

.modern-package .feature-icon svg {
  color: #FF9800; /* Синий для Modern пакета */
}

.luxury-package .feature-icon svg {
    color: #FF9800; /* Оранжевый для Luxury пакета */
}

.feature-item:hover .feature-icon svg {
    color: #fff; /* Белый при наведении */
}

.package-cta {
  text-align: center;
  margin-top: auto;
  padding-top: 20px;
}

.package-btn {
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.luxury-btn {
  background: #bd924ea1;
  color: #E7E7E7;
  border: 1px solid #BD934E;
}

.luxury-btn:hover {
  background: #bd924ed0;
  transform: translateY(-2px);
}

.modern-btn {
  background: #bd924ea1;
  color: #E7E7E7;
  border: 1px solid #BD934E;
}

.modern-btn:hover {
  background: #bd924ed0;
  transform: translateY(-2px);
}



.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  align-items: stretch;
}

.gallery-item {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: var(--text-gray) 1px solid;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.before-after-slider {
  position: relative;
  height: 300px;
  overflow: hidden;
  cursor: ew-resize;
}

.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.before-image img,
.after-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-image {
  clip-path: inset(0 50% 0 0);
  /* Убираем transition для мгновенного отклика */
}

.image-label {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.after-image .image-label {
  left: auto;
  right: 20px;
  background: var(--primary-color);
  color: var(--text-dark);
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 10;
  transition: none;
}

.slider-handle::before {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='48' height='48' fill='white' fill-opacity='0.01'/%3E%3Cpath d='M10 8L4 14L10 20' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M38 28L44 34L38 40' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 14H44' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' stroke='%23000000'/%3E%3Cpath d='M4 34H44' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' stroke='%23000000'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.gallery-info {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.gallery-info h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 10px;
  min-height: 24px;
}

.gallery-info p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
}



.process-timeline {
  margin-top: 60px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  min-height: 400px; /* Увеличил высоту */
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 200px; /* Переместил линию ниже */
  left: 50px;
  right: 50px;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), rgba(212, 175, 55, 0.3));
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  gap: 0;
}

/* Нечетные шаги (1, 3, 5) - текст снизу */
.process-step:nth-child(odd) .step-content {
  position: absolute;
  top: 280px; /* Больше отступ от круга */
  left: 50%;
  transform: translateX(-50%);
}

.process-step:nth-child(odd) .step-number {
  position: absolute;
  top: 150px; /* На линии */
  left: 50%;
  transform: translateX(-50%);
}

/* Четные шаги (2, 4) - текст сверху */
.process-step:nth-child(even) .step-content {
  position: absolute;
  top: 80px; /* Увеличил с 50px до 80px, чтобы расстояние было одинаковым с нечетными */
  left: 50%;
  transform: translateX(-50%);
}

.process-step:nth-child(even) .step-number {
  position: absolute;
  top: 150px; /* На линии */
  left: 50%;
  transform: translateX(-50%);
}

.step-number {
  width: 100px;
  height: 100px;
  background: var(--primary-color);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(202, 156, 81, 0.3);
}

.step-content {
  max-width: 350px;
  padding: 0;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.3;
  white-space: nowrap;
}



.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 50px;
}

.cta-form-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: visible;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}





@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.form-group {
    position: relative;
    flex: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(221, 221, 221, 0.6);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
    font-family: 'Satoshi', sans-serif;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(255, 107, 53, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-weight: 400;
    transition: all 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group select:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: #bbb;
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Satoshi', sans-serif;
    line-height: 1.6;
}



.form-textarea {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background: var(--bg-light);
  resize: vertical;
  font-family: inherit;
  transition: all 0.3s ease;
}

.cta-submit-btn {
    padding: 20px 45px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Satoshi', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: none;
    letter-spacing: 0.5px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(255, 107, 53, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(255, 107, 53, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.15);
}





/* Custom Select Styles */
.custom-select {
    position: relative;
    width: 100%;
}

.select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(221, 221, 221, 0.6);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
    font-family: 'Satoshi', sans-serif;
    color: var(--text-dark);
}

.select-trigger:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(255, 107, 53, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

.select-trigger.active {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(255, 107, 53, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

.select-text {
    color: var(--text-dark);
    flex: 1;
}

.select-text.placeholder {
    color: #999;
}

.select-arrow {
    color: #999;
    transition: transform 0.3s ease, color 0.3s ease;
    margin-left: 12px;
}

.select-trigger.active .select-arrow {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid var(--primary-color);
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-height: 200px;
    overflow-y: auto;
}

.select-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.select-option {
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Satoshi', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
}

.select-option:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
}

.select-option.selected {
    background: var(--primary-color);
    color: white;
}

.select-option:first-child {
    color: #999;
    font-style: italic;
}

.select-option:first-child:hover {
    background: rgba(153, 153, 153, 0.1);
    color: #666;
}

/* Scrollbar для опций */
.select-options::-webkit-scrollbar {
    width: 6px;
}

.select-options::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.select-options::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.select-options::-webkit-scrollbar-thumb:hover {
    background: #e55a2b;
}

/* Services Header Styles (same as index.css) */
.services-header {
    margin-bottom: 60px;
}

.services-subtitle {
    font-size: 28px;
    font-weight: 300;
    color: #888;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    min-width: 0;
    position: static;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

.services-subtitle::before {
    content: '';
    width: 150px;
    height: 2px;
    background: #888;
    display: block;
    flex-shrink: 0;
}

.services-main-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
    word-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    white-space: normal !important;
    overflow-wrap: break-word;
    max-width: 100%;
    width: 100%;
}

/* Центрирование только для секции packages */
.packages-section .services-main-title {
    text-align: center;
    width: 100%;
    display: block;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
    margin: 0;
}

/* Адаптивные стили для заголовка packages */
@media (max-width: 1024px) {
  .packages-section .services-main-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .packages-section .services-main-title {
    font-size: 32px;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .packages-section .services-main-title {
    font-size: 28px;
    line-height: 1.4;
  }
}

@media (max-width: 360px) {
  .packages-section .services-main-title {
    font-size: 24px;
    line-height: 1.4;
  }
}

.section-description {
    font-size: 18px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Container for all sections */
.container {
  max-width: 1650px;
  margin: 0 auto;
  padding: 0 150px;
}

/* Hero Section */
.renovation-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-container {
  max-width: 1650px;
  margin: 0 auto;
  padding: 0 150px;
  position: relative;
  z-index: 2;
}

/* Packages Section */
.packages-section {
  padding: 100px 150px;
  background: var(--bg-dark);
  max-height: 950px;
}

.packages-section .container {
  max-width: 1650px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Gallery Section */
.gallery-section {
  padding: 100px 150px;
  background: var(--bg-darker);
}

.gallery-section .container {
  max-width: 1650px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Process Section */
.process-section {
  padding: 100px 150px;
  background: var(--bg-gradient-medium);
}

.process-section .container {
  max-width: 1650px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Testimonials Section - Полная адаптация из index.css */
.testimonials-section {
  padding: 100px 150px;
  background: var(--bg-medium);
  color: var(--text-white);
  border-top: var(--text-muted) 1px solid;
}

.testimonials-container {
  max-width: 1650px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.testimonials-header {
  text-align: left;
  margin-bottom: 60px;
}

.testimonials-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
  margin: 20px 0 0 0;
  word-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  white-space: normal !important;
  overflow-wrap: break-word;
  max-width: 100%;
  width: 100%;
}

.testimonials-grid-container {
  position: relative;
  overflow: visible;
}

.testimonials-grid {
  position: relative;
  width: 100%;
}

.testimonials-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s ease;
  transform: translateX(100px);
  padding-top: 15px; /* Добавляем отступ сверху для hover эффекта */
}

.testimonials-group.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: translateX(0);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px var(--primary-color-20);
}

.testimonial-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 3px solid var(--primary-color);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-icon {
  font-size: 60px;
  color: var(--primary-color);
  font-family: serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  min-height: 80px;
  display: flex;
  align-items: center;
  text-align: center;
}

.testimonial-author {
  margin-top: auto;
}

.author-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1.5px;
  margin: 0;
}

.testimonial-navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  padding: 10px; /* Добавляем отступы для hover эффекта кнопок */
}

.testimonial-nav-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #515151;
  background: transparent;
  color: #515151;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  touch-action: manipulation;
}

.testimonial-nav-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: scale(1.1);
}

.testimonial-nav-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-black);
}

.testimonials-section .container {
  max-width: 1650px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Final CTA Section */
.final-cta-section {
  padding: 100px 150px;
  background: var(--bg-gradient-dark);
  text-align: center;
}

.final-cta-section .container {
  max-width: 1650px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container,
  .hero-container,
  .final-cta-section .container {
    padding: 0 80px;
  }
  
  .header {
    padding: 15px 80px;
  }
  
  .footer {
    padding: 80px 80px 0;
  }
}

/* Process Section Header Styles - унифицированные заголовки */
.process-section .services-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.process-section .services-subtitle {
  font-size: 28px;
  font-weight: 300;
  color: #888;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-width: 0;
  justify-content: flex-start;
}

.process-section .services-subtitle::before {
  content: '';
  width: 150px;
  height: 2px;
  background: #888;
  display: block;
  flex-shrink: 0;
}

.process-section .services-main-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
  margin: 0;
}

/* Testimonials Section Header Styles - унифицированные заголовки */
.testimonials-section .section-label {
  font-size: 28px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-start;
}

.testimonials-section .section-label::before {
  content: '';
  width: 150px;
  height: 2px;
  background: var(--text-muted);
  display: block;
  flex-shrink: 0;
}

.testimonials-section .testimonials-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
  margin: 20px 0 0 0;
}

/* Responsive styles for all section headers */
@media (max-width: 1024px) {
  .process-section .services-header {
    margin-bottom: 60px;
  }
  
  .process-section .services-subtitle {
    font-size: 24px;
    gap: 15px;
  }
  
  .process-section .services-subtitle::before {
    width: 120px;
  }
  
  .process-section .services-main-title {
    font-size: 36px;
  }
  
  .testimonials-section .section-label {
    font-size: 24px;
    gap: 15px;
  }
  
  .testimonials-section .section-label::before {
    width: 120px;
  }
  
  .testimonials-section .testimonials-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .process-section .services-header {
    margin-bottom: 50px;
  }
  
  .process-section .services-subtitle {
    font-size: 20px;
    gap: 12px;
  }
  
  .process-section .services-subtitle::before {
    width: 100px;
  }
  
  .process-section .services-main-title {
    font-size: 28px;
  }
  
  .testimonials-section .section-label {
    font-size: 20px;
    gap: 12px;
  }
  
  .testimonials-section .section-label::before {
    width: 100px;
  }
  
  .testimonials-section .testimonials-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .process-section .services-header {
    margin-bottom: 40px;
  }
  
  .process-section .services-subtitle {
    font-size: 18px;
    gap: 10px;
  }
  
  .process-section .services-subtitle::before {
    width: 80px;
  }
  
  .process-section .services-main-title {
    font-size: 24px;
  }
  
  .testimonials-section .section-label {
    font-size: 18px;
    gap: 10px;
  }
  
  .testimonials-section .section-label::before {
    width: 80px;
  }
  
  .testimonials-section .testimonials-title {
    font-size: 24px;
  }
}





/* About Section Header Styles - унифицированные заголовки */
.about-section .section-label {
  font-size: 28px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-start;
}

.about-section .section-label::before {
  content: '';
  width: 150px;
  height: 2px;
  background: var(--text-muted);
  display: block;
  flex-shrink: 0;
}

/* Responsive styles for about section headers */
@media (max-width: 1024px) {
  .about-section .section-label {
    font-size: 24px;
    gap: 15px;
  }
  
  .about-section .section-label::before {
    width: 120px;
  }
}

@media (max-width: 768px) {
  .about-section .section-label {
    font-size: 20px;
    gap: 12px;
  }
  
  .about-section .section-label::before {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .about-section .section-label {
    font-size: 18px;
    gap: 10px;
  }
  
  .about-section .section-label::before {
    width: 80px;
  }
}

/* Portfolio Section Header Styles - унифицированные заголовки */
.portfolio-section .services-subtitle {
  font-size: 28px;
  font-weight: 300;
  color: #888;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-width: 0;
  justify-content: flex-start;
}

.portfolio-section .services-subtitle::before {
  content: '';
  width: 150px;
  height: 2px;
  background: #888;
  display: block;
  flex-shrink: 0;
}

/* Portfolio Section Main Title Styles */
.portfolio-section .services-main-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
  margin: 0;
}

/* Responsive styles for portfolio section headers */
@media (max-width: 1024px) {
  .portfolio-section .services-subtitle {
    font-size: 24px;
    gap: 15px;
  }

  .portfolio-section .services-subtitle::before {
    width: 120px;
  }
  
  .portfolio-section .services-main-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .portfolio-section .services-subtitle {
    font-size: 22px;
    gap: 12px;
  }

  .portfolio-section .services-subtitle::before {
    width: 100px;
  }
  
  .portfolio-section .services-main-title {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .portfolio-section .services-subtitle {
    font-size: 20px;
    gap: 10px;
  }

  .portfolio-section .services-subtitle::before {
    width: 80px;
  }
  
  .portfolio-section .services-main-title {
    font-size: 28px;
  }
}

/* Gallery Section Responsive Styles */
@media (max-width: 1200px) {
  .gallery-section {
    padding: 80px 100px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .before-after-slider {
    height: 280px;
  }
}

@media (max-width: 1024px) {
  .gallery-section {
    padding: 60px 50px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
  }
  
  .before-after-slider {
    height: 260px;
  }
  
  .gallery-info {
    padding: 25px;
  }
  
  .gallery-info h4 {
    font-size: 18px;
  }
  
  .gallery-info p {
    font-size: 14px;
  }
  
  .slider-handle {
    width: 45px;
    height: 45px;
  }
  
  .image-label {
    font-size: 11px;
    padding: 6px 12px;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 50px 30px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  
  .gallery-item {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  
  .before-after-slider {
    height: 240px;
  }
  
  .gallery-info {
    padding: 20px;
  }
  
  .gallery-info h4 {
    font-size: 17px;
  }
  
  .gallery-info p {
    font-size: 13px;
  }
  
  .slider-handle {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .gallery-section {
    padding: 40px 15px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 25px;
  }
  
  .gallery-item {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  
  .before-after-slider {
    height: 220px;
  }
  
  .gallery-info {
    padding: 15px;
  }
  
  .gallery-info h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .gallery-info p {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .slider-handle {
    width: 35px;
    height: 35px;
  }
  
  .image-label {
    font-size: 10px;
    padding: 5px 10px;
    top: 15px;
    left: 15px;
  }
  
  .after-image .image-label {
    right: 15px;
  }
}

@media (max-width: 360px) {
  .gallery-section {
    padding: 30px 10px;
  }
  
  .gallery-item {
    max-width: 100%;
  }
  
  .before-after-slider {
    height: 200px;
  }
  
  .gallery-info {
    padding: 12px;
  }
  
  .gallery-info h4 {
    font-size: 15px;
  }
  
  .gallery-info p {
    font-size: 12px;
  }
  
  .slider-handle {
    width: 30px;
    height: 30px;
  }
}

/* Packages Section Responsive Styles */
@media (max-width: 1200px) {
  .packages-section {
    padding: 80px 100px;
    max-height: none;
  }
  
  .packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 400px));
    gap: 25px;
  }
  
  .package-card {
    padding: 25px;
  }
  
  .package-title {
    font-size: 24px;
  }
  
  .feature-content h4 {
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  .packages-section {
    padding: 60px 50px;
  }
  
  .packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  
  .package-card {
    padding: 20px;
  }
  
  .package-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .package-subtitle {
    font-size: 13px;
    min-height: 38px;
  }
  
  .package-features {
    margin: 25px 0;
  }
  
  .feature-item {
    margin-bottom: 20px;
    min-height: 55px;
  }
  
  .feature-icon {
    width: 35px;
    height: 35px;
  }
  
  .feature-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .feature-content h4 {
    font-size: 14px;
  }
  
  .feature-content p {
    font-size: 12px;
  }
  
  .package-btn {
    padding: 12px 28px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .packages-section {
    padding: 50px 30px;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 25px;
  }
  
  .package-card {
    padding: 18px;
    max-width: 100%;
  }
  
  .package-header {
    margin-bottom: 20px;
  }
  
  .package-title {
    font-size: 20px;
    margin-bottom: 8px;
  }
  
  .package-subtitle {
    font-size: 12px;
    min-height: 35px;
  }
  
  .package-features {
    margin: 20px 0;
  }
  
  .feature-item {
    margin-bottom: 18px;
    min-height: 50px;
    gap: 12px;
  }
  
  .feature-icon {
    width: 32px;
    height: 32px;
  }
  
  .feature-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .feature-content h4 {
    font-size: 13px;
    margin-bottom: 4px;
  }
  
  .feature-content p {
    font-size: 11px;
    line-height: 1.3;
  }
  
  .package-cta {
    padding-top: 15px;
  }
  
  .package-btn {
    padding: 10px 24px;
    font-size: 12px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .packages-section {
    padding: 40px 15px;
  }
  
  .packages-grid {
    gap: 12px;
    margin-top: 20px;
  }
  
  .package-card {
    padding: 15px;
  }
  
  .package-header {
    margin-bottom: 15px;
  }
  
  .package-title {
    font-size: 18px;
    margin-bottom: 6px;
  }
  
  .package-subtitle {
    font-size: 15px;
    min-height: 32px;
    line-height: 1.4;
  }
  
  .package-features {
    margin: 15px 0;
  }
  
  .feature-item {
    margin-bottom: 15px;
    min-height: 45px;
    gap: 10px;
  }
  
  .feature-icon {
    width: 28px;
    height: 28px;
  }
  
  .feature-icon svg {
    width: 14px;
    height: 14px;
  }
  
  .feature-content h4 {
    font-size: 12px;
    margin-bottom: 3px;
  }
  
  .feature-content p {
    font-size: 13px;
    line-height: 1.2;
  }
  
  .package-cta {
    padding-top: 12px;
  }
  
  .package-btn {
    padding: 8px 20px;
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  .packages-section {
    padding: 30px 10px;
  }
  
  .package-card {
    padding: 12px;
  }
  
  .package-title {
    font-size: 16px;
  }
  
  .package-subtitle {
    font-size: 10px;
    min-height: 30px;
  }
  
  .feature-item {
    margin-bottom: 12px;
    min-height: 40px;
    gap: 8px;
  }
  
  .feature-icon {
    width: 24px;
    height: 24px;
  }
  
  .feature-icon svg {
    width: 12px;
    height: 12px;
  }
  
  .feature-content h4 {
    font-size: 11px;
  }
  
  .feature-content p {
    font-size: 9px;
  }
  
  .package-btn {
    padding: 6px 16px;
    font-size: 10px;
  }
}

/* Gallery Section Header Styles - унифицированные заголовки */
.gallery-section .services-subtitle {
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-width: 200px;
  justify-content: flex-start;
}

.gallery-section .services-subtitle::before {
  content: '';
  width: 150px;
  height: 2px;
  background: #888;
  display: block;
  flex-shrink: 0;
}

/* Packages Section Header Styles - унифицированные заголовки */
.packages-section .services-subtitle {

  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-width: 200px;
  justify-content: flex-start;
}

.packages-section .services-subtitle::before {
  content: '';
  width: 150px;
  height: 2px;
  background: #888;
  display: block;
  flex-shrink: 0;
}

/* Адаптивные стили */
@media (max-width: 1024px) {
  .gallery-section .services-subtitle {
    font-size: 15px;
    gap: 15px;
  }
  
  .gallery-section .services-subtitle::before {
    width: 120px;
  }
  
  .packages-section .services-subtitle {
    font-size: 15px;
    gap: 15px;
  }
  
  .packages-section .services-subtitle::before {
    width: 120px;
  }
}

@media (max-width: 768px) {
  .gallery-section .services-subtitle {
    font-size: 14px;
    gap: 12px;
  }
  
  .gallery-section .services-subtitle::before {
    width: 100px;
  }
  
  .packages-section .services-subtitle {
    font-size: 14px;
    gap: 12px;
  }
  
  .packages-section .services-subtitle::before {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .gallery-section .services-subtitle {
    font-size: 20px;
    font-weight: 300;
    gap: 10px;
  }
  
  .gallery-section .services-subtitle::before {
    width: 80px;
  }
  
  .packages-section .services-subtitle {
    font-size: 20px;
    font-weight: 300;
    gap: 10px;
  }
  
  .packages-section .services-subtitle::before {
    width: 80px;
  }
}

/* Responsive styles for horizontal timeline */
@media (max-width: 1024px) {
  .process-timeline {
    gap: 15px;
    min-height: 200px;
  }
  
  .step-number {
    width: 80px;
    height: 80px;
    font-size: 20px;
  }
  
  .step-content {
    max-width: 180px;
  }
  
  .step-content h3 {
    font-size: 18px;
  }
  
  .step-content p {
    font-size: 13px;
  }
}

/* ==================================
   ABOUT SECTION STYLES
   ================================== */

/* About Section - Новая структура */
.about-section {
	padding: 100px 150px;
	background: var(--bg-dark);
	color: var(--text-white);
	border-top: 1px solid var(--text-medium-gray);
}

.about-container {
	max-width: 1650px;
	margin: 0 auto;
	display: flex;
	gap: 80px;
	align-items: flex-start;
}

.about-left {
	flex: 1;
	max-width: none;
}

.about-right {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-top: 60px;
}

/* Левая часть - заголовок и текст */
.section-label {
	font-size: 28px;
	font-weight: 300;
	color: var(--text-muted);
	letter-spacing: 2px;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 20px;
}

.section-label::before {
	content: '';
	width: 150px;
	height: 2px;
	background: var(--text-muted);
	display: block;
	flex-shrink: 0;
}

.about-title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 2rem;
	color: var(--text-white);
	word-wrap: break-word;
	hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	white-space: normal !important;
	overflow-wrap: break-word;
	max-width: 100%;
	width: 100%;
}

.about-description {
	font-size: 1.1rem;
	line-height: 1.6;
	color: var(--text-gray);
	margin-bottom: 3rem;
	max-width: 100%;
}

/* Команда - 4 маленькие картинки в ряд */
.team-grid {
	display: flex;
	gap: 20px;
	margin-bottom: 3rem;
	justify-content: flex-start;
}

.team-member {
	text-align: center;
	flex: 0 0 auto;
}

.team-photo {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 10px;
	border: 2px solid var(--primary-color);
}

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

.team-position {
	font-size: 12px;
	color: var(--text-muted);
	margin-bottom: 3px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.team-name {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-white);
}

/* Правая часть - большая картинка и цитата */
.leader-photo {
	width: 300px;
	height: 300px;
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 25px;
	border: 2px solid var(--primary-color);
}

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

.leader-name {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-white);
	margin-bottom: 5px;
}

.leader-position {
	font-size: 16px;
	color: var(--text-muted);
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
}

.leader-quote {
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-gray);
	font-style: italic;
	margin-bottom: 30px;
	position: relative;
	padding: 0 20px;
}

.leader-quote::before {
	content: '"';
	font-size: 60px;
	color: var(--primary-color);
	position: absolute;
	top: -20px;
	left: -10px;
	font-family: serif;
}

.leader-quote::after {
	content: '"';
	font-size: 60px;
	color: var(--primary-color);
	position: absolute;
	bottom: -40px;
	right: -10px;
	font-family: serif;
}

.cta-btn-about {
	background: var(--primary-color);
	color: var(--text-white);
	padding: 15px 30px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.cta-btn-about:hover {
	box-shadow: 0 0 20px var(--primary-color);
	transform: translateY(-2px);
}

/* Адаптивные стили для больших планшетов и маленьких десктопов */
@media (max-width: 1200px) {
	.packages-section {
		padding: 80px 100px;
	}
	
	.gallery-section {
		padding: 80px 100px;
	}
	
	.portfolio-section {
		padding: 80px 100px;
	}
	
	.process-section {
		padding: 80px 100px;
	}
	
	.testimonials-section {
		padding: 80px 100px;
	}
	
	.about-section {
		padding: 80px 100px;
	}
	
	
	.about-container {
		gap: 60px;
	}
	
	.about-title {
		font-size: 42px;
	}
	
	.section-label {
		font-size: 24px;
	}
	
	.section-label::before {
		width: 120px;
	}
	
	.leader-photo {
		width: 280px;
		height: 280px;
	}
	
	.team-photo {
		width: 130px;
		height: 130px;
	}
}

/* Адаптивные стили для планшетов */
@media (max-width: 1024px) {
	.packages-section {
		padding: 60px 60px;
	}
	
	.gallery-section {
		padding: 60px 60px;
	}
	
	.portfolio-section {
		padding: 60px 60px;
	}
	
	.process-section {
		padding: 60px 60px;
	}
	
	.testimonials-section {
		padding: 60px 60px;
	}
	
	.about-section {
		padding: 60px 60px;
	}
	


	.about-container {
		gap: 50px;
	}

	.about-title {
		font-size: 38px;
	}
	
	.about-description {
		font-size: 1rem;
	}

	.about-right {
		flex: 0 0 350px;
		margin-top: 40px;
	}

	.leader-photo {
		width: 250px;
		height: 250px;
	}
	
	.team-photo {
		width: 120px;
		height: 120px;
	}
	
	.team-grid {
		gap: 18px;
	}
	
	.section-label {
		font-size: 22px;
	}
	
	.section-label::before {
		width: 100px;
	}
}

/* Адаптивные стили для маленьких планшетов */
@media (max-width: 768px) {
	.packages-section {
		padding: 50px 30px;
	}
	
	.gallery-section {
		padding: 50px 30px;
	}
	
	.portfolio-section {
		padding: 50px 30px;
	}
	
	.process-section {
		padding: 50px 30px;
	}
	
	.testimonials-section {
		padding: 50px 30px;
	}
	
	.about-section {
		padding: 50px 30px;
	}
	


	.about-container {
		flex-direction: column;
		gap: 40px;
		text-align: center;
	}

	.about-left,
	.about-right {
		flex: none;
		max-width: 100%;
	}
	
	.about-right {
		margin-top: 0;
	}

	.about-title {
		font-size: 32px;
	}
	
	.about-description {
		font-size: 16px;
		margin-bottom: 2.5rem;
	}

	.team-grid {
		flex-wrap: wrap;
		gap: 15px;
		justify-content: center;
		margin-bottom: 2.5rem;
	}

	.team-photo {
		width: 90px;
		height: 90px;
	}
	
	.team-position {
		font-size: 11px;
	}
	
	.team-name {
		font-size: 13px;
	}

	.leader-photo {
		width: 220px;
		height: 220px;
	}

	.leader-name {
		font-size: 22px;
	}
	
	.leader-position {
		font-size: 15px;
	}
	
	.leader-quote {
		font-size: 15px;
		padding: 0 15px;
	}
	
	.leader-quote::before,
	.leader-quote::after {
		font-size: 50px;
	}
	
	.leader-quote::before {
		top: -15px;
	}
	
	.leader-quote::after {
		bottom: -35px;
	}
	
	.section-label {
		font-size: 20px;
		justify-content: center;
	}
	
	.section-label::before {
		width: 80px;
	}
}

/* Адаптивные стили для больших телефонов */
@media (max-width: 480px) {
	.packages-section {
		padding: 40px 20px;
	}
	
	.gallery-section {
		padding: 40px 20px;
	}
	
	.portfolio-section {
		padding: 40px 20px;
	}
	
	.process-section {
		padding: 40px 20px;
	}
	
	.testimonials-section {
		padding: 40px 20px;
	}
	
	.about-section {
		padding: 40px 20px;
	}
	

	
	.about-container {
		gap: 35px;
	}

	.about-title {
		font-size: 28px;
		margin-bottom: 1.5rem;
	}

	.about-description {
		font-size: 15px;
		margin-bottom: 2rem;
	}

	.team-grid {
		gap: 12px;
		margin-bottom: 2rem;
	}

	.team-photo {
		width: 70px;
		height: 70px;
	}

	.team-position {
		font-size: 10px;
	}

	.team-name {
		font-size: 12px;
	}

	.leader-photo {
		width: 180px;
		height: 180px;
	}
	
	.leader-name {
		font-size: 20px;
	}
	
	.leader-position {
		font-size: 14px;
	}

	.leader-quote {
		font-size: 14px;
		padding: 0 10px;
		margin-bottom: 25px;
	}
	
	.leader-quote::before,
	.leader-quote::after {
		font-size: 40px;
	}
	
	.leader-quote::before {
		top: -10px;
		left: -5px;
	}
	
	.leader-quote::after {
		bottom: -30px;
		right: -5px;
	}

	.section-label {
		font-size: 18px;
		gap: 15px;
	}

	.section-label::before {
		width: 60px;
	}
	
	.cta-btn-about {
		padding: 12px 25px;
		font-size: 15px;
	}
}

/* Адаптивные стили для маленьких телефонов */
@media (max-width: 360px) {
	.packages-section {
		padding: 35px 15px;
	}
	
	.gallery-section {
		padding: 35px 15px;
	}
	
	.portfolio-section {
		padding: 35px 15px;
	}
	
	.process-section {
		padding: 35px 15px;
	}
	
	.testimonials-section {
		padding: 35px 15px;
	}
	
	.about-section {
		padding: 35px 15px;
	}
	
 
	
	.about-container {
		gap: 30px;
	}

	.about-title {
		font-size: 24px;
		margin-bottom: 1.2rem;
	}

	.about-description {
		font-size: 14px;
		margin-bottom: 1.8rem;
	}

	.team-grid {
		gap: 10px;
		margin-bottom: 1.8rem;
	}

	.team-photo {
		width: 60px;
		height: 60px;
	}

	.team-position {
		font-size: 9px;
	}

	.team-name {
		font-size: 11px;
	}

	.leader-photo {
		width: 160px;
		height: 160px;
	}
	
	.leader-name {
		font-size: 18px;
	}
	
	.leader-position {
		font-size: 13px;
	}

	.leader-quote {
		font-size: 13px;
		padding: 0 8px;
		margin-bottom: 20px;
	}
	
	.leader-quote::before,
	.leader-quote::after {
		font-size: 35px;
	}

	.section-label {
		font-size: 16px;
		gap: 12px;
	}

	.section-label::before {
		width: 50px;
	}
	
	.cta-btn-about {
		padding: 10px 20px;
		font-size: 14px;
		gap: 8px;
	}
}

/* ==================================
   PORTFOLIO SECTION STYLES
   ================================== */

.portfolio-section {
	padding: 100px 150px;
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	position: relative;
}

.portfolio-section .portfolio-container {
	max-width: 1650px;
	margin: 0 auto;
}

/* Contact Form: базовая адаптация без изменений карты */
.contact-form-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

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

.contact-form .form-row {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
}

.contact-form .form-row > * {
  flex: 1 1 0;
  min-width: 0;
}

.contact-form .form-input,
.contact-form .form-textarea {
  width: 100%;
  box-sizing: border-box;
}

.contact-form .form-submit-btn {
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1600px) {
  .contact-form-wrapper { padding: 32px; }
  .contact-form .form-row { gap: 14px; }
  .contact-form .form-input,
  .contact-form .form-textarea { padding: 14px 18px; font-size: 15px; }
}

@media (max-width: 1400px) {
  .contact-form-wrapper { padding: 30px; }
  .contact-form .form-row { gap: 12px; }
  .contact-form .form-input,
  .contact-form .form-textarea { padding: 13px 16px; font-size: 14px; }
  .contact-form .form-submit-btn { padding: 14px 24px; font-size: 15px; }
}

@media (max-width: 1200px) {
  .contact-form-wrapper { padding: 28px; }
  .contact-form .form-row { gap: 10px; }
  .contact-form .form-input,
  .contact-form .form-textarea { padding: 12px 15px; font-size: 14px; }
  .contact-form .form-submit-btn { padding: 13px 22px; font-size: 14px; }
}

@media (max-width: 1024px) {
  .contact-form-wrapper { padding: 26px; }
  .contact-form .form-row { gap: 8px; }
  .contact-form .form-input,
  .contact-form .form-textarea { padding: 11px 14px; font-size: 13px; }
  .contact-form .form-submit-btn { padding: 12px 20px; font-size: 14px; }
}

@media (max-width: 900px) {
  .contact-form-wrapper { padding: 24px; }
  .contact-form .form-row { flex-direction: column; gap: 15px; }
  .contact-form .form-input,
  .contact-form .form-textarea { padding: 12px 16px; font-size: 14px; }
  .contact-form .form-submit-btn { padding: 14px 20px; font-size: 14px; }
}

@media (max-width: 800px) {
  .contact-form-wrapper { padding: 20px; }
  .contact-form .form-input,
  .contact-form .form-textarea { padding: 10px 14px; font-size: 13px; }
  .contact-form .form-submit-btn { padding: 12px 16px; font-size: 13px; }
}

@media (max-width: 480px) {
  .contact-form-wrapper { padding: 18px; }
  .contact-form .form-input,
  .contact-form .form-textarea { padding: 10px 14px; font-size: 13px; }
  .contact-form .form-submit-btn { padding: 12px 16px; font-size: 13px; }
}

@media (max-width: 360px) {
  .contact-form-wrapper { padding: 15px; }
  .contact-form .form-input,
  .contact-form .form-textarea { padding: 8px 12px; font-size: 12px; }
  .contact-form .form-submit-btn { padding: 10px 14px; font-size: 12px; }
}

/* Contact map: align left on desktop without changing size */
@media (min-width: 1024px) {
  .contact-content {
    align-items: flex-start;
  }
  .contact-map {
    margin: 0 0 30px 0 !important;
    justify-self: start;
  }
  .contact-map img {
    display: block;
    margin: 0;
  }
}

/* Адаптивная сетка для блока контактов */
.contact-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
}

.contact-item {
    width: 100%;
}

/* Уточнение для средних экранов (чуть компактнее колонки) */
@media (max-width: 1200px) {
    .contact-info {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
        gap: 20px;
    }
}

/* На узких экранах — одна колонка */
@media (max-width: 900px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
}

