@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
body {
  font-family: "SFProDisplay", sans-serif
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-weight: 600;
  margin: 0 0 1rem;
}

p {
  margin: 0 0 1.5rem;
}

.about-section {
  margin: 0 auto;
  padding: 0 auto;
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 119, 204, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}
.about-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #b01b30;
  margin-top: 2rem;
  position: relative;
  display: inline-block;
}
.about-header h1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #740606, #984141);
}

.tagline {
  display: inline-block;
  margin: 0 1rem;
  text-align: left;
}
.tagline .line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.tagline .word {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0.5rem;
  position: relative;
  color: #333333;
  transition: all 0.3s ease-in-out;
}
.tagline .word:hover {
  color: #b01b30;
}
.tagline .word:nth-child(odd)::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #b01b30;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out;
}
.tagline .word:nth-child(odd):hover::after {
  transform: scaleX(1);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 5rem;
  gap: 3rem;
  margin-top: 2%;
}
.about-content .about-image {
  flex: 1 1 45%;
  min-width: 300px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 119, 204, 0.1);
}
.about-content .about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease-in-out;
}
.about-content .about-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 119, 204, 0.1) 100%);
  transition: all 0.3s ease-in-out;
}
.about-content .about-image:hover img {
  transform: scale(1.03);
}
.about-content .about-image:hover .image-overlay {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 119, 204, 0.2) 100%);
}
.about-content .about-text {
  flex: 1 1 45%;
  min-width: 259px;
  box-shadow: 0 10px 30px rgba(0, 119, 204, 0.1);
  border-radius: 10px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 119, 204, 0.1);
}
.about-content .about-text::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 50px;
  height: 50px;
  border-top: 3px solid #b01b30;
  border-left: 3px solid #b01b30;
  transition: all 0.3s ease-in-out;
}
.about-content .about-text::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 50px;
  height: 50px;
  border-bottom: 3px solid #b01b30;
  border-right: 3px solid #b01b30;
  transition: all 0.3s ease-in-out;
}
.about-content .about-text:hover::before, .about-content .about-text:hover::after {
  width: 60px;
  height: 60px;
}
.about-content .about-text p {
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
  padding: 1%;
  padding: 5%;
}
.about-content .about-text p::before {
  content: "•";
  position: absolute;
  left: 2%;
  color: #b01b30;
  font-weight: bold;
}

.why-choose-us {
  text-align: center;
  margin-top: 5rem;
}
.why-choose-us h2 {
  font-size: 2.5rem;
  color: #0B1F33;;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.why-choose-us h2::before, .why-choose-us h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 50px;
  height: 2px;
  background: #b01b30;
}
.why-choose-us h2::before {
  left: -60px;
}
.why-choose-us h2::after {
  right: -60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 3%;
}

.feature-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 119, 204, 0.1);
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(0, 119, 204, 0.1);
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: #b01b30;
  transition: all 0.3s ease-in-out;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 119, 204, 0.15);
}
.feature-card:hover::before {
  height: 100%;
}
.feature-card:hover .feature-icon {
  transform: rotate(5deg) scale(1.1);
  background: rgba(0, 0, 0, 0.05);
}
.feature-card h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0 0.5rem;
  color: #0B1F33;
}
.feature-card .subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: #666666;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}
.feature-card .subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #b01b30;
}
.feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 1rem;
  text-align: left;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  font-size: 2rem;
  color: #b01b30;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .about-header h1 {
    font-size: 2.2rem;
  }
  .about-header .tagline .word {
    font-size: 1.2rem;
  }
  .about-content {
    flex-direction: column;
  }
  .about-content .about-image, .about-content .about-text {
    flex: 1 1 100%;
  }
  .why-choose-us h2 {
    font-size: 2rem;
  }
  .why-choose-us h2::before, .why-choose-us h2::after {
    width: 30px;
  }
  .why-choose-us h2::before {
    left: -40px;
  }
  .why-choose-us h2::after {
    right: -40px;
  }
}
@media (max-width: 480px) {
  .page-wrapper {
    padding: 2%;
  }
  .about-header h1 {
    font-size: 1.8rem;
  }
  .about-header .tagline .word {
    font-size: 1rem;
  }
  .why-choose-us h2 {
    font-size: 1.6rem;
  }
  .why-choose-us h2::before, .why-choose-us h2::after {
    display: none;
  }
  .feature-card {
    padding: 1.5rem 1rem;
  }
}
/* Глобальное исправление горизонтального скролла */
html, body {
  max-width: 100%;
  overflow-x: hidden;
  font-family: "SFProDisplay", sans-serif
}

/* Для всех секций добавляем ограничение по ширине */
.main-header,
.hero-section,
.about-section,
.products-section,
.workshop-section {
  width: 100vw;
  overflow-x: hidden;
}

/* Контейнеры должны быть ограничены по ширине */
.container {
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
}

/* Мобильная версия - дополнительные исправления */
@media (max-width: 768px) {
  /* Фиксируем ширину для всех элементов */
  body {
    position: relative;
    width: 100%;
    font-family: "SFProDisplay", sans-serif
  }
  /* Исправляем flex-контейнеры */
  .workshop-content,
  .about-content {
    flex-direction: column;
    width: 100%;
  }
  /* Галерея продуктов */
  .products-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
  /* Карусель */
  .carousel-container {
    width: 100%;
  }
  .carousel-img {
    width: 100% !important;
    height: auto;
    max-height: 250px;
  }
  /* Герой секция */
  .hero-content {
    width: 95%;
    padding: 20px;
  }
  /* Навигация */
  .nav-list.active {
    width: 70%;
    right: 0;
  }
}
@media (max-width: 480px) {
  /* Еще более строгие ограничения для маленьких экранов */
  .container {
    padding: 0 10px;
  }
  .hero-section {
    min-height: 400px;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .product-card {
    width: 100%;
  }
  .carousel-btn {
    padding: 5px 10px;
    font-size: 14px;
  }
  /* Фиксируем модальное окно */
  .modal-content {
    margin-top: 20%;
  }
  #modalImage {
    max-width: 95%;
  }
}
.page-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.main-header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  position: relative;
}

.header-container {
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Header top section */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.logo-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  flex-grow: 1;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-left: 10px;
}

.experience-text {
  font-size: 14px;
  color: #0B1F33;;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Navigation */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.header-nav {
  padding: 15px 0;
  display: flex;
  justify-content: center; /* Добавлено для центрирования nav-list */
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0 auto; /* Добавлено для лучшего центрирования */
  padding: 0; /* Убираем стандартные отступы */
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  padding: 5px 0;
  position: relative;
  display: block;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #b01b30;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Responsive styles */
@media (max-width: 992px) {
  .logo-text {
    font-size: 20px;
  }
  .experience-text {
    font-size: 13px;
  }
  .nav-list {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .logo-group {
    gap: 10px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .header-nav {
    justify-content: flex-start; /* На мобильных меню прижато к левому краю */
    padding: 0; /* Убираем отступы для мобильного меню */
  }
  .nav-list {
    margin: 0; /* На мобильных убираем авто-отступы */
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    gap: 20px;
    transition: right 0.3s ease;
  }
  .nav-list.active {
    right: 0;
  }
  .nav-item {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
  }
}
@media (max-width: 480px) {
  .logo-text {
    font-size: 18px;
  }
  .experience-text {
    font-size: 12px;
  }
  .nav-list {
    width: 80%;
    padding: 70px 20px 20px;
  }
}
/* Глобальное исправление горизонтального скролла */
html, body {
  max-width: 100%;
  overflow-x: hidden;
  font-family: "SFProDisplay", sans-serif
}

/* Для всех секций добавляем ограничение по ширине */
.main-header,
.hero-section,
.about-section,
.products-section,
.workshop-section {
  width: 100vw;
  overflow-x: hidden;
}

/* Контейнеры должны быть ограничены по ширине */
.container {
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
}

/* Мобильная версия - дополнительные исправления */
@media (max-width: 768px) {
  /* Фиксируем ширину для всех элементов */
  body {
    position: relative;
    width: 100%;
    font-family: "SFProDisplay", sans-serif
  }
  /* Исправляем flex-контейнеры */
  .workshop-content,
  .about-content {
    flex-direction: column;
    width: 100%;
  }
  /* Галерея продуктов */
  .products-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
  /* Карусель */
  .carousel-container {
    width: 100%;
  }
  .carousel-img {
    width: 100% !important;
    height: auto;
    max-height: 250px;
  }
  /* Герой секция */
  .hero-content {
    width: 95%;
    padding: 20px;
  }
  /* Навигация */
  .nav-list.active {
    width: 70%;
    right: 0;
  }
}
@media (max-width: 480px) {
  /* Еще более строгие ограничения для маленьких экранов */
  .container {
    padding: 0 10px;
  }
  .hero-section {
    min-height: 400px;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .product-card {
    width: 100%;
  }
  .carousel-btn {
    padding: 5px 10px;
    font-size: 14px;
  }
  /* Фиксируем модальное окно */
  .modal-content {
    margin-top: 20%;
  }
  #modalImage {
    max-width: 95%;
  }
}
.page-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.main-header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  position: relative;
}

.header-container {
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Header top section */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.logo-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  flex-grow: 1;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-left: 10px;
}

.experience-text {
  font-size: 14px;
  color: #0B1F33;;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Navigation */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.header-nav {
  padding: 15px 0;
  display: flex;
  justify-content: center; /* Добавлено для центрирования nav-list */
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0 auto; /* Добавлено для лучшего центрирования */
  padding: 0; /* Убираем стандартные отступы */
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  padding: 5px 0;
  position: relative;
  display: block;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #b01b30;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Responsive styles */
@media (max-width: 992px) {
  .logo-text {
    font-size: 20px;
  }
  .experience-text {
    font-size: 13px;
  }
  .nav-list {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .logo-group {
    gap: 10px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .header-nav {
    justify-content: flex-start; /* На мобильных меню прижато к левому краю */
    padding: 0; /* Убираем отступы для мобильного меню */
  }
  .nav-list {
    margin: 0; /* На мобильных убираем авто-отступы */
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    gap: 20px;
    transition: right 0.3s ease;
  }
  .nav-list.active {
    right: 0;
  }
  .nav-item {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
  }
}
@media (max-width: 480px) {
  .logo-text {
    font-size: 18px;
  }
  .experience-text {
    font-size: 12px;
  }
  .nav-list {
    width: 80%;
    padding: 70px 20px 20px;
  }
}
/* Hero section */
/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "SFProDisplay", sans-serif
  color: #333;
}

.page-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2%;
}

.footer {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 40px 0;
  font-family: "Poppins", sans-serif;
  color: #333;
  /* Новые стили для контактов - чистый текст с изменением цвета при наведении */
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}
.footer__section {
  margin-bottom: 20px;
}
.footer__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
  position: relative;
  padding-bottom: 10px;
}
.footer__text {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 15px 0;
}
.footer__branding {
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 30px;
}
.footer__brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
  margin-bottom: 15px;
}
.footer__brand {
  font-size: 14px;
  font-weight: 500;
  color: #0B1F33;;
}
.footer__copyright {
  font-size: 13px;
  color: #777;
}
.footer__contacts {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__contact-item {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}
.footer__contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__contact-item a:hover {
  color: #e64622;
}
@media (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }
  .footer__content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer__brands {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 25px 0;
  }
  .footer__title {
    font-size: 16px;
  }
  .footer__text, .footer__contact-item {
    font-size: 13px;
  }
}

/* Feedback Section Styles */
.feedback-section {
  background-color: rgba(249, 249, 249, 0.4392156863);
  margin-top: 28px;
}

.feedback-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  padding-top: 18px;
}

.feedback-container:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 2.2rem;
  color: #0B1F33;;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.form-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #740606, #984141);
}

.form-header p {
  color: #666;
  font-size: 1rem;
  margin-top: 1%;
}

/* Form Styles */
.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #444;
  transition: all 0.3s ease;
}

.form-label.required::after {
  content: "*";
  color: #b01b30;
  margin-left: 4px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
}

.form-control:focus {
  outline: none;
  border-color: #b01b30;
  box-shadow: 0 0 0 3px rgba(134, 29, 29, 0.1);
  background-color: white;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Verification Section */
.verification-section {
  margin: 30px 0;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #b01b30;
}

.verification-title {
  font-weight: 500;
  margin-bottom: 15px;
  color: #b01b30;
}

.captcha-image {
  height: 50px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.refresh-captcha {
  background: none;
  border: none;
  color: #b01b30;
  cursor: pointer;
  font-size: 1rem;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.refresh-captcha:hover {
  transform: rotate(180deg);
  color: #740606;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #b01b30, #740606);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(134, 29, 29, 0.3);
}

.btn-submit:hover {
  background: linear-gradient(135deg, #740606, #b01b30);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(134, 29, 29, 0.4);
}

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

/* Error Messages */
.error-message {
  color: #b01b30;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
  animation: fadeIn 0.3s ease;
}

.is-invalid {
  border-color: #b01b30 !important;
}

.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Success Message */
.success-message {
  display: none;
  text-align: center;
  padding: 20px;
  background-color: #2ecc71;
  color: white;
  border-radius: 8px;
  margin-bottom: 20px;
  animation: fadeIn 0.5s ease;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .feedback-container {
    padding: 30px 20px;
  }
  .form-header h2 {
    font-size: 1.8rem;
  }
  .verification-section {
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .feedback-section {
    padding: 40px 0;
  }
  .form-header h2 {
    font-size: 1.6rem;
  }
  .form-control {
    padding: 10px 12px;
  }
  .btn-submit {
    padding: 12px;
  }
}/*# sourceMappingURL=styles2.css.map */