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

body {
  font-family: 'Manrope', sans-serif;
  background: #fff;
  color: #232732;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-left {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
} 
/* Header */
.header {
  padding: 20px 0;
  background: #36030E;
  backdrop-filter: blur(10px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-icon img {
  max-height: 40px;
}
.logo-icon {
  color: white;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
}

.logo-text {
  font-size: 12px;
  color: #cccccc;
}
a {
  text-decoration: none;
  color: #232732;
}
.header-phone a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.header-phone {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #232732;
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #232732;
}

.btn {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}
.catalog-btn {
  color: #191a1f;
  font-size: 16px;
  font-family: 'Manrope', Arial, sans-serif;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-width: 1px;
  border-radius: 8px 8px 8px 8px;
  background-color: #ffffff;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition: background-color 0.2s 
      ease-in-out, color 0.2s 
      ease-in-out, border-color 0.2s 
      ease-in-out;
  width: fit-content;
  text-decoration: none;
}
.catalog-btn {
  position: relative;
  z-index: 1;
  background-color: transparent;
  background-image: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.catalog-btn::after {
  z-index: -1;
  opacity: 0;
  background-color: transparent;
  background-image: radial-gradient(circle at center, rgba(98, 107, 234, 0.65) 0%, rgba(98, 107, 234, 1) 87%);
  border-color: #779aff;
}

.catalog-btn::before,.catalog-btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  box-sizing: content-box;
  pointer-events: none;
  border-radius: 8px 8px 8px 8px;
  transition: opacity 0.2s 
      ease-in-out;
  border-width: 1px;
  box-sizing: border-box;
  border-style: solid;
}

.catalog-btn::before {
  z-index: -2;
  opacity: 1;
  background-color: #ffffff;
  background-image: none;
}

.catalog-btn:hover {
  color: #ffffff;
}

.hero__bottom {
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 100%;
  /* background-image: linear-gradient(0turn, rgba(38, 56, 87, 1) 6%, rgba(255, 247, 5, 0) 100%); */
  border-color: transparent;
  height: 115px;
}

.catalog-btn:hover::after {
  opacity: 1;
  /* z-index: 0; */
}


/* Hero Section */
.hero {
  position: relative;
  padding: 80px 0;
}

.hero .container {
  position: relative;
  z-index: 3;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 20px;
  align-items: start;
}

.hero-title {
  color: #fff;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 24px;
  color: #cccccc;
  margin-bottom: 40px;
}

.hero_banner__link__image {
  width: 100%;
  height: 100%;
}

.hero-card {
  cursor: pointer;
  transform: translateX(0px) rotate(0deg) scale(1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  max-width: 535px;
  transition: 0.3s all ease-in-out;
}

.hero-card:hover {
  transform: translateX(30px) rotate(1deg) scale(1.1);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-weight: 600;
}

.telegram-icon {
  font-size: 20px;
}

.card-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.feature {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Calculator Form */
.calculator-form {
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.calculator-form h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.calculator-form p {
  font-size: 12px;
  color: #666;
  text-align: center;
  margin-bottom: 25px;
}

.calc-form {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  position: relative;
}

.form-input, .form-select {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  transition: border-color 0.3s ease;
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: #232732;
}

.country-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  appearance: none;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.callback-form .checkbox-label a,
.callback-form .checkbox-label,
.consultation-form .calc-form .checkbox-label a,
.consultation-form .calc-form .checkbox-label {
  color: #fff
}

.checkbox-label a,
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  align-items: center;
  font-size: 12px;
  cursor: pointer;
}

.checkbox {
  margin: 0;
}

.submit-btn {
  background: #DC0045;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #555;
}

.hero-cars {
  margin-top: 60px;
}

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

/* Catalog Section */
.catalog-section {
  padding: 100px 0;
  background-image: #fff;
  --zoom: 1;
}

.catalog-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.section-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 30px;
  text-transform: lowercase;
}

.catalog-stats {
  margin-bottom: 20px;
}

.stats-number {
  font-size: 24px;
  font-weight: 700;
  color: #DC0045;
}

.stats-text {
  font-size: 18px;
  color: #232732;
}

.catalog-description {
  max-width: 510px;
  font-size: 16px;
  color: #232732;
  margin-bottom: 40px;
}

.catalog-btn-main {
  background: #232732;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.catalog-btn-main:hover {
  background: #357abd;
}
.catalog-right {
  position: relative;
}

.catalog-preview {
  left: -110px;
  top: -120px;
  width: 100%;
  text-align: center;
  position: absolute;
}

.catalog-image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.catalog-image:nth-child(2) {
  left:30%;
  width: 377px;
  top: -120px;
  height: auto;
  z-index: 1;
  transform: rotate(2deg);
}
.catalog-image:last-child {
  width: 234px;
  z-index: 0;
  transform: rotate(10deg);
  height: auto;
  left: 100%;
}
.catalog-image:first-child {
  width: 235px;
  z-index: 0;
  height: auto;
  transform: rotate(353deg);
  left: 0;
}

.catalog-image {
  max-width: 100%;
  border-radius: 15px;
}

/* Work Scheme Section */
.work-scheme {
  padding: 100px 0;
  background-image: #fff;
}

.scheme-subtitle {
  font-size: 18px;
  color: #232732;
  margin-bottom: 60px;
}

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

.country-card {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.country-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.country-header h3 {
  font-size: 24px;
  font-weight: 700;
}

.country-badge {
  background: #232732;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.country-description {
  font-size: 14px;
  color: #232732;
  margin-bottom: 30px;
}

.country-btn {
  background: #232732;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.country-btn:hover {
  background: #357abd;
}

.country-image img {
  width: 100%;
  max-width: 220px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}

/* Completed Orders Section */
.completed-orders {
  padding: 100px 0;
  background: #fff;
}

.orders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.order-card {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.order-image {
  height: 200px;
  overflow: hidden;
}

.order-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-info {
  padding: 20px;
}

.order-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.order-details {
  font-size: 14px;
  color: #232732;
  margin-bottom: 15px;
}

.order-price {
  font-size: 20px;
  font-weight: 700;
  color: #232732;
  margin-bottom: 15px;
}

.order-btn {
  background: #232732;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.order-btn:hover {
  background: #357abd;
}

.show-all-btn {
  display: block;
  margin: 0 auto;
  background: transparent;
  color: white !important;
  padding: 15px 40px;
  background: #DC0045;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  text-decoration: none;
}

.show-all-btn:hover {
  background: #232732;
}

/* Experts Section */
.experts-section {
  padding: 100px 0;
}

.experts-subtitle {
  font-size: 18px;
  color: #232732;
  margin-bottom: 60px;
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 600px;
  margin: 0 auto;
}

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

.expert-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
}

.expert-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.expert-contacts {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.contact-btn {
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.whatsapp {
  background: #25d366;
  color: white;
}

.telegram {
  background: #0088cc;
  color: white;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .catalog-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .countries-grid {
      grid-template-columns: 1fr;
  }
  
  .orders-grid {
      grid-template-columns: 1fr;
  }
  
  .experts-grid {
      grid-template-columns: 1fr;
  }
  
  .hero-title {
      font-size: 36px;
  }
  
  .section-title {
      font-size: 48px;
  }
  
  .header-content {
      flex-direction: column;
      gap: 20px;
  }
  
  .nav {
      gap: 15px;
  }
}

@media (max-width: 480px) {
  .hero-title {
      font-size: 28px;
  }
  
  .section-title {
      font-size: 36px;
  }
  
  .calculator-form {
      padding: 20px;
  }
  
  .container {
      padding: 0 15px;
  }
}

/* Добавляю стили для новых секций */

/* Consultation Section */
.consultation-section {
  padding: 80px 0;
  background: #fff;
}

.consultation-content {
display: flex;
gap: 60px;
align-items: center;
}

.consultation-left {
flex: 1;
}

.consultation-title {
font-size: 48px;
font-weight: 700;
margin-bottom: 24px;
line-height: 1.2;
}

.consultation-description {
font-size: 18px;
margin-bottom: 32px;
line-height: 1.6;
}

.consultation-features {
display: flex;
flex-direction: column;
gap: 16px;
}

.feature-item {
display: flex;
align-items: center;
gap: 12px;
font-size: 16px;
}

.feature-icon {
width: 24px;
height: 24px;
background: #DC0045;
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
}

.consultation-right {
flex: 1;
max-width: 400px;
}
  
.consultation-form {
background: rgba(0, 0, 0, 0.05);
backdrop-filter: blur(10px);
border-radius: 20px;
padding: 32px;
border: 1px solid rgba(0, 0, 0, 0.1);
}

.consultation-form:has(.calc-form) p,
.consultation-form:has(.calc-form) h3 {
  color: #fff;
}

.consultation-form h3 {
font-size: 24px;
margin-bottom: 24px;
text-align: center;
}

.form-textarea {
width: 100%;
padding: 16px;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 12px;
background: rgba(255, 255, 255, 0.05);
font-size: 16px;
min-height: 100px;
resize: vertical;
}

.form-textarea::placeholder {
color: #888;
}

/* Credit Section */
.credit-section {
padding: 80px 0;
background: #fff;
}

.credit-content {
text-align: center;
}

.credit-subtitle {
font-size: 18px;
color: #b8b8b8;
margin-bottom: 48px;
}

.credit-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 32px;
margin-bottom: 60px;
}

.credit-form-container {
background: rgba(0, 0, 0, 0.05);
backdrop-filter: blur(10px);
border-radius: 20px;
padding: 40px;
border: 1px solid rgba(0, 0, 0, 0.1);
max-width: 600px;
margin: 0 auto;
}

.credit-form-container h3 {
font-size: 28px;
margin-bottom: 16px;
text-align: center;
}

.form-description {
text-align: center;
margin-bottom: 32px;
line-height: 1.6;
}

.credit-form {
display: flex;
flex-direction: column;
gap: 12px;
}

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

.form-input {
padding: 16px;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 12px;
background: rgba(0, 0, 0, 0.05);
font-size: 16px;
transition: all 0.3s ease;
}

.calc-form .form-input {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.form-input:focus {
outline: none;
border-color: #DC0045;
background: rgba(0, 0, 0, 0.1);
}

.form-input::placeholder {
color: #888;
}

.form-textarea {
width: 100%;
padding: 16px;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 12px;
background: rgba(0, 0, 0, 0.05);
font-size: 16px;
min-height: 100px;
resize: vertical;
transition: all 0.3s ease;
}
.form-textarea:focus {
outline: none;
border-color: #DC0045;
background: rgba(0, 0, 0, 0.1);
}

.form-textarea::placeholder {
color: #888;
}

/* FAQ Section */
.faq-section {
padding: 80px 0;
background: #fff;
}

.faq-subtitle {
font-size: 18px;
color: #b8b8b8;
margin-bottom: 48px;
}

.faq-item {
background: rgba(0, 0, 0, 0.05);
backdrop-filter: blur(10px);
border-radius: 16px;
margin-bottom: 16px;
border: 1px solid rgba(0, 0, 0, 0.1);
overflow: hidden;
}

.faq-question {
display: flex;
justify-content: space-between;
align-items: center;
padding: 24px;
cursor: pointer;
font-size: 18px;
font-weight: 500;
transition: all 0.3s ease;
}

.faq-question:hover {
background: rgba(0, 0, 0, 0.05);
}

.faq-toggle {
font-size: 24px;
font-weight: 300;
transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
padding: 12px 24px 24px;
max-height: 100%;
}

.faq-answer p {
line-height: 1.6;
margin: 0;
}

/* Partners Section */
.partners-section {
padding: 80px 0;
background: #fff;
}

.partners-subtitle {
font-size: 18px;
color: #b8b8b8;
margin-bottom: 48px;
}

.partners-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 12px;
align-items: center;
}

.partner-logo {
display: flex;
height: 62px;
justify-content: center;
align-items: center;
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}

.partner-logo:hover {
transform: translateY(-4px);
background: rgba(255, 255, 255, 0.1);
}

.partner-logo img {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 16px;
max-width: 100%;
transition: filter 0.3s ease;
}


/* Footer */
.footer {
background: #36030E;
padding: 60px 0 20px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}

.footer-section h4 {
color: #ffffff;
font-size: 20px;
font-weight: 600;
margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-terms-info {
  color: #fff;
  font-size: 12px;
}

.footer-logo p {
color: #b8b8b8;
line-height: 1.6;
margin-bottom: 24px;
}

.footer-contacts {
display: flex;
align-items: flex-end;
flex-direction: column;
gap: 16px;
}

.footer .contact-item a{
  color: #fff;
}
.footer .contact-item {
  color: #fff;
}
.contact-item {
display: flex;
gap: 12px;
align-items: flex-start;
}

.contact-item span {
font-size: 18px;
}

.contact-item p {
color: #b8b8b8;
margin: 0;
line-height: 1.4;
}

.footer-links {
list-style: none;
padding: 0;
margin: 0;
}

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

.footer-links a {
color: #b8b8b8;
text-decoration: none;
transition: color 0.3s ease;
}

.footer-links a:hover {
color: #4f46e5;
}

.social-links {
display: flex;
flex-direction: column;
gap: 12px;
}

.social-link {
display: flex;
align-items: center;
gap: 12px;
color: #b8b8b8;
text-decoration: none;
transition: color 0.3s ease;
}

.social-link:hover {
color: #4f46e5;
}

.footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
flex-wrap: wrap;
gap: 20px;
}

.footer-copyright p {
color: #888;
margin: 0;
}

.footer-legal {
display: flex;
gap: 24px;
}

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

.footer-legal a:hover {
color: #4f46e5;
}

.consult-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* Responsive Design */
@media (max-width: 768px) {
.consultation-content {
  flex-direction: column;
  gap: 40px;
}

.consultation-title {
  font-size: 36px;
}

.credit-grid {
  grid-template-columns: 1fr;
}

.calculator-inputs {
  grid-template-columns: 1fr;
}

.partners-grid {
  grid-template-columns: repeat(2, 1fr);
}

.footer-bottom {
  flex-direction: column;
  text-align: center;
}

.footer-legal {
  justify-content: center;
}
}



/* Catalog Specific Styles */

/* Catalog Hero */
.catalog-hero {
padding: 120px 0 80px;
background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
position: relative;
overflow: hidden;
}

.catalog-hero::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url("/placeholder.svg?height=600&width=1200") center / cover;
opacity: 0.1;
z-index: 1;
}

.catalog-hero-content {
position: relative;
z-index: 2;
text-align: center;
}

.catalog-title {
font-size: 56px;
font-weight: 700;
color: #ffffff;
margin-bottom: 16px;
line-height: 1.2;
}

.catalog-subtitle {
font-size: 20px;
color: #b8b8b8;
margin-bottom: 40px;
}

/* Search Bar */
.search-bar {
display: flex;
max-width: 600px;
margin: 0 auto;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 16px;
padding: 8px;
border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-input {
flex: 1;
padding: 16px 20px;
border: none;
background: transparent;
color: #ffffff;
font-size: 16px;
outline: none;
}

.search-input::placeholder {
color: #888;
}

.search-btn {
padding: 16px 20px;
background: #4f46e5;
border: none;
border-radius: 12px;
color: white;
font-size: 18px;
cursor: pointer;
transition: all 0.3s ease;
}

.search-btn:hover {
background: #6366f1;
transform: translateY(-2px);
}

/* Filters Section */
.filters-section {
padding: 40px 0;
background: rgba(255, 255, 255, 0.02);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filters-row {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 20px;
align-items: end;
}

.filter-group {
display: flex;
flex-direction: column;
gap: 8px;
}

.filter-group label {
color: #b8b8b8;
font-size: 14px;
font-weight: 500;
}

.filter-select,
.filter-input {
padding: 12px 16px;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 8px;
background: rgba(255, 255, 255, 0.05);
color: #ffffff;
font-size: 14px;
transition: all 0.3s ease;
}

.filter-select:focus,
.filter-input:focus {
outline: none;
border-color: #DC0045;
background: rgba(255, 255, 255, 0.1);
}

.filter-select option {
background: #1a1a2e;
color: #ffffff;
}

.filter-actions {
display: flex;
gap: 12px;
}

.filter-actions .btn-primary,
.filter-actions .btn-secondary {
padding: 12px 24px;
font-size: 14px;
white-space: nowrap;
}

.catalog-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 40px;
flex-wrap: wrap;
gap: 20px;
}

.results-count {
color: #b8b8b8;
font-size: 16px;
}

.results-count strong {
color: #ffffff;
}

.sort-controls {
display: flex;
align-items: center;
gap: 12px;
}

.sort-controls label {
color: #b8b8b8;
font-size: 14px;
}

.sort-select {
padding: 8px 12px;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 6px;
background: rgba(255, 255, 255, 0.05);
color: #ffffff;
font-size: 14px;
}

.sort-select option {
background: #1a1a2e;
color: #ffffff;
}

/* Catalog Grid */
.catalog-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 32px;
}

/* Car Card */
.car-card {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border-radius: 20px;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
position: relative;
}

.car-card:hover {
transform: translateY(-8px);
background: rgba(255, 255, 255, 0.08);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.car-image {
position: relative;
height: 200px;
overflow: hidden;
}

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

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

.car-badge {
position: absolute;
top: 12px;
left: 12px;
background: #4f46e5;
color: white;
padding: 4px 12px;
border-radius: 20px;
font-size: 12px;
font-weight: 500;
}

.car-favorite {
position: absolute;
top: 12px;
right: 12px;
width: 36px;
height: 36px;
background: rgba(255, 255, 255, 0.9);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
cursor: pointer;
transition: all 0.3s ease;
}

.car-favorite:hover {
background: #ff4757;
color: white;
}

.car-info {
padding: 24px;
}

.car-title {
font-size: 20px;
font-weight: 600;
color: #ffffff;
margin-bottom: 12px;
}

.car-details {
display: flex;
gap: 16px;
margin-bottom: 12px;
flex-wrap: wrap;
}

.car-details span {
color: #b8b8b8;
font-size: 14px;
background: rgba(255, 255, 255, 0.05);
padding: 4px 8px;
border-radius: 6px;
}

.car-features {
display: flex;
flex-direction: column;
gap: 6px;
margin-bottom: 16px;
}

.car-features span {
color: #888;
font-size: 13px;
}

.car-price {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 20px;
}

.price-current {
font-size: 24px;
font-weight: 700;
color: #4f46e5;
}

.price-old {
font-size: 16px;
color: #888;
text-decoration: line-through;
}

.car-actions {
display: flex;
gap: 12px;
}

.car-actions .btn-primary,
.car-actions .btn-secondary {
flex: 1;
padding: 12px;
font-size: 14px;
text-align: center;
}

/* Pagination */
.pagination {
display: flex;
justify-content: center;
align-items: center;
gap: 8px;
margin-top: 60px;
}

.pagination-btn {
padding: 12px 16px;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 8px;
background: rgba(255, 255, 255, 0.05);
color: #ffffff;
cursor: pointer;
transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
background: #4f46e5;
border-color: #DC0045;
}

.pagination-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}

.pagination-numbers {
display: flex;
gap: 4px;
align-items: center;
}

.pagination-number {
width: 40px;
height: 40px;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 8px;
background: rgba(255, 255, 255, 0.05);
color: #ffffff;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
}

.pagination-number:hover,
.pagination-number.active {
background: #4f46e5;
border-color: #DC0045;
}

.modal-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 12px;
}
.pagination-dots {
color: #888;
padding: 0 8px;
}

@media( max-width:1100px) {
  .catalog-right {
      display: none;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
.catalog-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.filters-row {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}
}

@media (max-width: 768px) {
.catalog-title {
  font-size: 36px;
}

.catalog-subtitle {
  font-size: 16px;
}

.search-bar {
  max-width: 100%;
}

.filters-row {
  grid-template-columns: 1fr;
}

.filter-actions {
  grid-column: 1;
  justify-content: stretch;
}

.filter-actions .btn-primary,
.filter-actions .btn-secondary {
  flex: 1;
}

.catalog-header {
  flex-direction: column;
  align-items: stretch;
  text-align: center;
}

.catalog-grid {
  grid-template-columns: 1fr;
}

.car-actions {
  flex-direction: column;
}

.pagination {
  flex-wrap: wrap;
}

.pagination-numbers {
  order: -1;
  margin-bottom: 16px;
}
}

@media (max-width: 480px) {
.car-details {
  flex-direction: column;
  gap: 8px;
}

.car-price {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
}

span.error {
  display: none !important;
}

.checkbox-label:has(.agreement__checkbox.error),
.checkbox-label:has(.agreement__checkbox.error) *{
  color: rgb(158, 13, 13);
}
.form-input.error {
  border-color: rgb(158, 13, 13);
} 

/* Callback Button Styles */
.callback-btn {
background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
color: white;
border: none;
padding: 12px 24px;
border-radius: 25px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
margin-right: 16px;
}

.callback-btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.contact-btn.callback {
background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
color: white;
border: none;
padding: 8px 16px;
border-radius: 20px;
font-size: 12px;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
margin-top: 8px;
}

.contact-btn.callback:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
color: white;
}

/* Modal Styles */
.modal-content {
background: #36030E;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
backdrop-filter: blur(10px);
}

.modal-header {
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
padding: 24px;
}

.modal-title {
color: #ffffff;
font-size: 24px;
font-weight: 600;
}

.btn-close {
filter: invert(1);
}

.callback-form .form-input {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.btn-close:hover {
opacity: 1;
}

.modal-body {
padding: 24px;
}

.modal-description {
color: #fff;
margin-bottom: 24px;
line-height: 1.6;
text-align: center;
}

.callback-form .form-label {
color: #ffffff;
font-weight: 500;
margin-bottom: 8px;
}

.callback-form .form-control {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 12px;
color: #ffffff;
padding: 12px 16px;
transition: all 0.3s ease;
}

.callback-form .form-control:focus {
background: rgba(255, 255, 255, 0.1);
border-color: #DC0045;
box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.25);
color: #ffffff;
}

.callback-form .form-control::placeholder {
color: #888;
}

.callback-form .form-select {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 12px;
color: #ffffff;
padding: 12px 16px;
transition: all 0.3s ease;
}

.callback-form .form-select:focus {
background: rgba(255, 255, 255, 0.1);
border-color: #DC0045;
box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.25);
color: #ffffff;
}

.callback-form .form-select option {
background: #1a1a2e;
color: #ffffff;
}

.callback-form .form-check-input {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.2);
}

.callback-form .form-check-input:checked {
background-color: #4f46e5;
border-color: #DC0045;
}

.callback-form .form-check-label {
color: #b8b8b8;
font-size: 14px;
}

.btn-secondary {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
color: #ffffff;
padding: 12px 24px;
border-radius: 12px;
transition: all 0.3s ease;
}

.btn-secondary:hover {
background: rgba(255, 255, 255, 0.2);
border-color: rgba(255, 255, 255, 0.3);
color: #ffffff;
}

.btn-primary {
background: #DC0045;
border: none;
color: white;
padding: 12px 24px;
border-radius: 8px;
font-weight: 500;
transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #DC0045;
  transform: translateY(-2px);
}
.success-details * {
  color: #fff;
}

/* Modal backdrop */
.modal-backdrop {
background-color: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(5px);
}


/* Responsive modal */
@media (max-width: 576px) {
.modal-dialog {
  margin: 1rem;
}

.modal-content {
  border-radius: 16px;
}

.modal-header,
.modal-body,
.modal-footer {
  padding: 16px;
}

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


@media (max-width: 1100px) {
    .checkbox-group.agreement * {
        font-size: 10px;
    }

    .faq-question {
        padding: 12px;
        font-size: 14px;
    }

    .faq-subtitle {
        margin-bottom: 12px;
    }
    .faq-item {
        margin-bottom: 8px;
    }
    .faq-answer * {
        font-size: 12px;
    }
    .faq-answer ul {
        padding: 0;
    }
    .consultation-form {
        padding: 16px;
    }
    .completed-orders {
        padding: 24px 0;
    }
    .work-scheme {
        padding: 24px 0;
    }
    .catalog-section {
        padding: 24px 0;
    }
    .header-content {
        gap: 8px;
    }
    .hero-description {
        font-size: 16px;
    }
    .consultation-section {
        padding: 24px 0;
    }
    .faq-section {
        padding: 24px 0;
    }
}