:root {
  --primary: #2A9D8F;
  --secondary: #264653;
  --accent: #E9C46A;
  --light: #F4F4F4;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--secondary);
}

header {
  background: var(--secondary);
  padding: 1rem 5%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

a {
  color: var(--light);
  text-decoration: none;
  margin: 0px;
}

p {
  margin: 0px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.logo i {
  color: var(--accent);
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--accent);
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

.hero {
  height: 100vh;
  background: linear-gradient(rgba(42, 157, 143, 0.9), rgba(38, 70, 83, 0.9)), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 5%;
  margin-top: 70px;
}

.hero-content {
  max-width: 800px;
  color: white;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  background: var(--accent);
  color: var(--secondary);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(233, 196, 106, 0.4);
}

.features {
  padding: 5rem 5%;
  background: var(--light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

/* Калькулятор */
.calculator-section {
  padding: 5rem 5%;
  background: white;
}

.calculator-wrapper {
  max-width: 100%;
  margin: 0 auto;
  background: var(--light);
  border-radius: 20px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.calculator-steps {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 20px;
}

.calculator-steps .step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #6c757d;
  transition: all 0.3s ease;
}

.calculator-steps .step.active {
  background: var(--primary);
  color: white;
}

.calculator-step {
  display: none;
}

.calculator-step.active {
  display: block;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #4CAF50;
}

.service-card:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3);
}

.service-card.selected {
  border-color: #4CAF50;
  background-color: #f1f8e9;
}

.service-card.selected::after {
  content: '✓';
  position: absolute;
  top: 10px;
  right: 10px;
  color: #4CAF50;
  font-size: 1.2rem;
  font-weight: bold;
}

.service-card h4 {
  margin: 0 0 0.5rem 0;
  color: #333;
  font-size: 1.1rem;
}

.service-card p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

/* Анимация при выборе */
.service-card {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

.checkboxes {
  display: grid;
  gap: 10px;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
}

.checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  background-color: white;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.checkbox input[type="checkbox"]:checked {
  background-color: #4CAF50;
  border-color: #4CAF50;
}

.checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox input[type="checkbox"]:hover {
  border-color: #4CAF50;
}

.checkbox input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.result-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.price {
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 700;
  margin: 1.5rem 0;
}

.buttons-group {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 20px;
}

.cta-button {
  background: var(--accent);
  color: var(--secondary);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(233, 196, 106, 0.4);
}

.cta-button.secondary {
  background: var(--secondary);
  color: white;
}

.cta-button.secondary:hover {
  box-shadow: 0 5px 15px rgba(38, 70, 83, 0.4);
}

#registrationFields {
  margin-top: 20px;
  padding: 20px;
  background: var(--light);
  border-radius: 8px;
}

.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 15px 25px;
  background: var(--primary);
  color: white;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  animation: slideIn 0.3s ease;
}

.toast.error {
  background: #ff5252;
}

.toast.success {
  background: #4CAF50;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.reviews-section {
  padding: 5rem 5%;
  background: var(--light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  position: relative;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.2;
  font-family: serif;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* Улучшенный футер */
/* footer {
  background: #2c3e50;
  color: white;
  padding: 60px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.footer-logo i {
  margin-right: 10px;
  color: #4CAF50;
}

.footer-about p {
  margin-bottom: 20px;
}

.footer-social a {
  color: white;
  margin-right: 15px;
  font-size: 20px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #4CAF50;
}

.footer-links h3, .footer-contact h3 {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #4CAF50;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #4CAF50;
} */


/* Футер */
/* footer {
  background: #2c3e50;
  color: white;
  padding: 60px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.footer-logo i {
  margin-right: 10px;
  color: #4CAF50;
}

.footer-about p {
  margin-bottom: 20px;
}

.footer-social a {
  color: white;
  margin-right: 15px;
  font-size: 20px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #4CAF50;
}

.footer-links h3, .footer-contact h3 {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #4CAF50;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #4CAF50;
} */

/* Футер*/

/* Футер */
footer {
  background: #2c3e50;
  color: white;
  padding: 40px 0 10px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.footer-logo i {
  margin-right: 10px;
  color: #4CAF50;
}

.footer-about p {
    margin-bottom: 20px;
}

.footer-social a {
    color: white;
    margin-right: 15px;
    font-size: 20px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #4CAF50;
}

.footer-links h3, .footer-contact h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #4CAF50;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
    color: #4CAF50;
}


.contact-icon {
  margin-right: 10px;
  color: #4CAF50;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #34495e;
  color: #bdc3c7;
  font-size: 14px;
}
/* Страница с новостями */
.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
}

/* Секция профессионалы */
.features {
    padding: 6rem 0;
    background: linear-gradient(45deg, #f8f9fa 0%, #f1f3f5 100%);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1.5rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(42, 157, 143, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(42, 157, 143, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    transition: 0.3s;
}

.icon-wrapper i {
    font-size: 2rem;
    color: #2A9D8F;
    transition: 0.3s;
}

.icon-wrapper.eco {
    background: rgba(104, 184, 134, 0.1);
}
.icon-wrapper.eco i {
    color: #68b886;
}

.icon-wrapper.guarantee {
    background: rgba(233, 196, 106, 0.1);
}
.icon-wrapper.guarantee i {
    color: #E9C46A;
}

.feature-title {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2A9D8F 0%, #68b886 50%, #E9C46A 100%);
}

.feature-text {
    text-align: center;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #2A9D8F;
    color: white;
    padding: 0.5rem 2rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    width: 150px;
    text-align: center;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0.8rem 0;
    color: #444;
}

.feature-list i {
    color: #68b886;
}

.feature-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(233, 196, 106, 0.15);
    text-align: center;
    position: absolute;
    bottom: -20px;
    right: -10px;
    line-height: 1;
    user-select: none;
}

/* Стили для полей с ошибками */
.form-control.error {
    border-color: #ff5252;
    background-color: #fff5f5;
}

.form-control.error:focus {
    box-shadow: 0 0 0 2px rgba(255, 82, 82, 0.2);
}

/* Стили для карточек услуг */
.service-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card.selected {
    border-color: #4CAF50;
    background-color: #f1f8e9;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Секция Отзывы*/
.reviews-section {
    padding: 6rem 1.5rem;
    background: linear-gradient(45deg, #ffffff 0%, #f8f9fa 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.review-author h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.review-rating {
    color: #ffd700;
    font-size: 0.9rem;
}

.review-quote {
    position: absolute;
    right: 0;
    top: 0;
    color: rgba(42, 157, 143, 0.1);
    font-size: 3rem;
}

.review-text {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary);
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

.review-social i {
    color: var(--secondary);
    margin-left: 0.8rem;
    transition: color 0.3s;
}

.review-social i:hover {
    color: var(--primary);
}

.reviews-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.review-prev, .review-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    transition: 0.3s;
}

.review-prev:hover, .review-next:hover {
    background: var(--primary);
    color: white;
}

/* Секция "О нас" */
.about-section {
	padding: 5rem 5%;
	background: white;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-image {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.stat-item {
	text-align: center;
	padding: 1.5rem;
	background: var(--light);
	border-radius: 15px;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary);
}

/* Страница Логин Регистрации */
.auth-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  padding: 2rem;
}

.auth-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  max-width: 450px;
  width: 100%;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 0.6s ease-out forwards;
}

.auth-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.auth-header h2 {
  color: var(--secondary);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.auth-form .input-group {
  margin-bottom: 1.5rem;
}

.auth-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--secondary);
  font-weight: 600;
}

.auth-form input,
.auth-form select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.auth-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232a2a2a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

.auth-form input:focus,
.auth-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
}

.auth-actions {
  margin-top: 2rem;
}

.auth-links {
  text-align: center;
  margin-top: 1.5rem;
  color: #666;
}

.auth-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.auth-links a:hover {
  color: var(--secondary);
}

@keyframes fadeUp {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Страница клиента */

.client-dashboard {
  padding: 4rem 5%;
  background: var(--light);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.welcome-message h1 {
  color: var(--secondary);
  font-size: 2.4rem;
}

.welcome-message p {
  color: #666;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.order-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.order-card:hover {
  transform: translateY(-5px);
}

.order-status {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.status-new { background: #E9C46A; color: var(--secondary); }
.status-in-progress { background: #2A9D8F; color: white; }
.status-completed { background: #264653; color: white; }

.new-order-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.form-section {
  margin-bottom: 2rem;
}

.history-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.history-table th,
.history-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.history-table th {
  background: var(--primary);
  color: white;
}

/* Страница платежей */
.cta-button.outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.cta-button.outline:hover {
  background: rgba(42, 157, 143, 0.1);
}

.status-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

.status-completed {
  background: var(--secondary);
  color: white;
}

/* Стили для кнопки авторизации */
.auth-button {
  background: #4CAF50;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.auth-button:hover, .auth-button:focus {
    text-decoration: none !important;
    box-shadow: none;
}

.auth-button::after {
  display: none !important;
}

/* Стили для блока этапов работы */
.work-steps {
  padding: 80px 20px;
  background: #f9f9f9;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
}

.step-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-number {
  position: absolute;
  top: -20px;
  left: -20px;
  background: #4CAF50;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
}

.step-icon {
  font-size: 2.5em;
  color: #4CAF50;
  margin: 15px 0;
}

.steps-cta {
  text-align: center;
  margin-top: 50px;
}

/* Обратная связь */
.feedback-section {
  padding: 100px 20px;
  background: #f8f9fa;
}

.feedback-form {
/*   max-width: 600px; */
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px;
}

.alert.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Страница с вакансиями */
.vacancies-section {
  padding: 60px 20px;
  background: #f8f9fa;
}

.vacancies-list {
  max-width: 1000px;
  margin: 0 auto;
}

.vacancy-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  padding: 25px;
}

.vacancy-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 2px solid #eee;
  padding-bottom: 15px;
}

.vacancy-date {
  color: #666;
  font-size: 0.9em;
}

.vacancy-block {
  margin-bottom: 25px;
}

.vacancy-block h4 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.vacancy-block ul {
  list-style: none;
  padding-left: 20px;
}

.vacancy-block li {
  position: relative;
  margin-bottom: 8px;
}

.vacancy-block li::before {
  content: "•";
  color: #4CAF50;
  position: absolute;
  left: -15px;
}

.toggle-form {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.toggle-form:hover {
  background: #45a049;
}

.application-form {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.application-form .form-group {
  margin-bottom: 15px;
}

.application-form input[type="file"] {
  padding: 8px;
}

/* Мобильное меню */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
}

/* Выбор города */
.city-selector {
    margin: 0 20px;
}

.city-selector select {
  padding: 8px 15px;
  border: 2px solid var(--accent);
  border-radius: 20px;
  background: transparent;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  outline: none;
  transition: all 0.3s;
}

.city-selector select:hover {
  background: rgba(255, 255, 255, 0.1);
}

.city-selector select option {
  background: var(--secondary);
  color: white;
}

/* Модальное окно с куки уведомлением */
.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: #2f3640;
  color: #f5f6fa;
  padding: 20px 30px;
  box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 15px 15px 0 0;
}

.cookie-consent.active {
  bottom: 0;
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cookie-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.cookie-text {
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  max-width: 800px;
}

.cookie-text a {
  color: #44bd32;
  text-decoration: none;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-btn {
  background: #44bd32;
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  flex-shrink: 0;
  text-transform: uppercase;
  font-size: 14px;
}

.cookie-btn:hover {
  background: #4cd137;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(76, 209, 55, 0.3);
}

/* Страница с новостями */
/* .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  display: flex;
  align-items: center;
}

.logo i {
  margin-right: 10px;
  color: #4CAF50;
} */

/* Основной контент */
main {
  margin-top: 80px;
}

/* Герой-секция */
.hero-news {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1434030216411-0b793f4b4173?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero-news h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-news p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
}

/* Секция новостей */
.news-section {
  padding: 80px 0;
  background: white;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 15px;
}

.section-title p {
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.news-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  background: white;
}

.news-card:hover {
  transform: translateY(-10px);
}

.news-image {
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-content {
  padding: 25px;
}

.news-date {
  color: #4CAF50;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.news-date i {
  margin-right: 8px;
}

.news-title {
  font-size: 22px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.news-excerpt {
  color: #7f8c8d;
  margin-bottom: 20px;
}

.read-more {
  display: inline-block;
  color: #4CAF50;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.read-more::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: #4CAF50;
  transition: width 0.3s;
}

.read-more:hover::after {
  width: 100%;
}

/* Пагинация */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.page-numbers {
  display: flex;
  list-style: none;
  padding: 0;
}

.page-numbers li {
  margin: 0 5px;
}

.page-numbers a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  text-decoration: none;
  color: #2c3e50;
  font-weight: 600;
  transition: all 0.3s;
}

.page-numbers a:hover, .page-numbers a.active {
  background: #4CAF50;
  color: white;
}

/* Секция подписки */
.subscribe-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.subscribe-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.subscribe-form {
  display: flex;
  margin-top: 30px;
}

.subscribe-input {
  flex-grow: 1;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px 0 0 5px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}

.subscribe-input:focus {
  outline: none;
  border-color: #4CAF50;
}

.subscribe-button {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 0 25px;
  border-radius: 0 5px 5px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.subscribe-button:hover {
  background: #2E7D32;
}

.contact-item {
  display: flex;
  margin-bottom: 15px;
  align-items: center;
}

.contact-icon {
  margin-right: 10px;
  color: #4CAF50;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #34495e;
  color: #bdc3c7;
  font-size: 14px;
}

/* Страница с контактами */
.container {
  max-width: 1200px;
  margin: 0 auto;
/*   padding: 0 20px; */
}
/* Основной контент */
main {
  margin-top: 80px;
}

/* Герой-секция */
.hero-contact {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1484154218962-a197022b5858?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero-contact h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-contact p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
}

/* Секция контактов */
.contact-section {
  padding: 80px 0;
  background: white;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 15px;
}

.section-title p {
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.contact-info {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 10px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: #4CAF50;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-text h3 {
  margin: 0 0 5px;
  color: #2c3e50;
}

.contact-text p {
  margin: 0;
  color: #7f8c8d;
}

.contact-text a {
  color: #4CAF50;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-text a:hover {
  color: #2E7D32;
}

.social-links {
  display: flex;
  margin-top: 30px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #e8f5e9;
  border-radius: 50%;
  margin-right: 15px;
  color: #4CAF50;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #4CAF50;
  color: white;
}

/* Форма обратной связи */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2c3e50;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #4CAF50;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.submit-btn:hover {
  background: #2E7D32;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* Карта */
.map-section {
  padding: 0 0 80px;
}

.map-container {
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Секция CTA */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.cta-button {
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.cta-button.primary {
  background: white;
  color: #4CAF50;
}

.cta-button.primary:hover {
  background: #f1f8e9;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-button.secondary:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

/* Стили для выпадающего списка улиц */
.suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0 0 10px 10px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.suggestions.active {
    display: block;
}

.suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.suggestion-item:hover {
    background-color: #f5f5f5;
}

.form-group {
    position: relative;
}

/* Стили для страницы с пользовательским соглашением */
.policy-section {
    padding: 6rem 5%;
    background: var(--light);
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-header h1 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.policy-date {
    color: #666;
    font-size: 1.1rem;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.policy-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light);
}

.policy-intro p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #444;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    color: var(--secondary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light);
}

.policy-section h3 {
    color: var(--secondary);
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.policy-section h4 {
    color: var(--secondary);
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.policy-block {
    padding: 1rem 0;
}

.policy-block p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #444;
}

.policy-block ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-block ul li {
    position: relative;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #444;
}

.policy-block ul li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: -1.5rem;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 2rem;
    }

    .policy-header h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-section h3 {
        font-size: 1.3rem;
    }

    .policy-section h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .policy-content {
        padding: 1.5rem;
    }

    .policy-header h1 {
        font-size: 1.8rem;
    }
}

/* Модальные окно Выбора города */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1000;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.modal-content h2 {
  margin-bottom: 1rem;
}

.modal-content p {
  margin-bottom: 1.5rem;
  color: #666;
}

.modal-content select {
  width: 100%;
  margin-bottom: 1.5rem;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}