@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
* {
  font-family: "SFProDisplay", sans-serif
}

/* Глобальное исправление горизонтального скролла */
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%;
  }
  /* Исправляем 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: #9e3626;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #9e3626;
  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;
  font-family: "SFProDisplay", sans-serif
}

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

/* Hero section */
.hero-section {
  position: relative;
  height: 100vh;
  max-height: 900px; /* Ограничиваем максимальную высоту */
  min-height: 500px; /* Минимальная высота */
  background: url("images/bgmain.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  /* Затемнение фона для лучшей читаемости */
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px; /* Уменьшил максимальную ширину */
  width: 90%; /* Процентная ширина для адаптивности */
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  /* Анимация появления */
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem); /* Адаптивный размер шрифта */
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #b01b30;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem); /* Адаптивный размер шрифта */
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  color: #444;
}

.hero-subtitle-line2 {
  display: block;
  font-size: inherit; /* Наследует размер от hero-subtitle */
}

.hero-badge {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #d00;
  font-weight: 700;
  padding: 5px 15px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
}
.hero-badge::before {
  content: "*";
  margin-right: 5px;
}

/* Вертикальная адаптация для мобильных */
@media (max-width: 768px) and (orientation: portrait) {
  .hero-section {
    height: auto;
    aspect-ratio: 3/4; /* Соотношение для вертикальных устройств */
    min-height: 600px;
    max-height: 100vh;
  }
  .hero-content {
    padding: 20px;
    margin: 20px 0;
  }
}
/* Горизонтальная адаптация для планшетов */
@media (max-width: 1024px) and (orientation: landscape) {
  .hero-section {
    max-height: 800px;
  }
}
/* About section */
.about-section {
  padding: 60px 0;
  padding-bottom: 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.video-container {
  flex: 1;
  min-width: 0; /* Fix for flexbox overflow */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-video {
  width: 100%;
  height: auto;
  display: block;
}

.text-container {
  flex: 1;
  min-width: 0; /* Fix for flexbox overflow */
  padding: 2%;
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #0B1F33;;
}

.about-text {
  font-size: 1rem;
  color: #0B1F33;;
  line-height: 1.7;
}
.about-text p {
  margin-bottom: 15px;
}
.about-text p:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .about-content {
    gap: 30px;
  }
  .about-title {
    font-size: 1.7rem;
  }
}
@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
    padding-bottom: 0;
  }
  .about-content {
    flex-direction: column;
  }
  .video-container,
  .text-container {
    width: 100%;
  }
  .about-title {
    font-size: 1.5rem;
    text-align: center;
  }
  .about-text {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .about-section {
    padding: 40px 0;
    padding-bottom: 0;
  }
  .about-title {
    font-size: 1.3rem;
  }
  .about-text {
    font-size: 0.9rem;
  }
}
/* Products section */
.products-section {
  background-color: #fff;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: #b01b30;
  margin-top: 5%;
}
.section-title p {
  padding: 2%;
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: #666;
  line-height: 1.6;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-image {
  height: 220px;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.product-image:hover img {
  transform: scale(1.05);
}

.product-content {
  padding: 25px;
}

.product-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.product-description {
  font-size: 0.95rem;
  color: #0B1F33;;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .products-grid {
    gap: 25px;
  }
  .product-image {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .section-subtitle {
    margin-bottom: 40px;
  }
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .products-section {
    padding: 30px 0;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .product-card {
    max-width: 350px;
    margin: 0 auto;
  }
  .product-content {
    padding: 20px;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
}

.modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80%;
  margin-top: 5%;
}

#modalImage {
  max-width: 90%;
  max-height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}
.close-btn:hover {
  color: #d4a762;
}

.modal-nav {
  position: absolute;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.nav-btn {
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  color: white;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: background-color 0.3s;
}
.nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

/* Workshop section */
.workshop-section {
  background-color: #f9f9f9;
}

.container {
  margin: 1%;
  padding-right: 4%;
}

.workshop-content {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
}

.workshop-text {
  flex: 1;
  min-width: 0; /* Prevent flex item overflow */
}

.section-title {
  font-size: 2rem;
  color: #b01b30;
  font-weight: 700;
  margin-top: 3%;
}

.workshop-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #0B1F33;;
}

/* Карусель */
.carousel-container {
  flex: 1;
  min-width: 0;
  position: relative;
  padding: 0 15px; /* Добавляем отступы по бокам */
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 0 10px; /* Добавляем внешние отступы */
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
  padding: 0 5px; /* Внутренние отступы для контента */
}

.carousel-item {
  min-width: 100%;
  position: relative;
  padding: 0 5px; /* Отступы между слайдами */
}

.carousel-img {
  width: calc(100% - 10px); /* Учитываем отступы */
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s;
  margin: 0 auto; /* Центрируем изображение */
  display: block;
  border-radius: 8px;
}
.carousel-img:hover {
  transform: scale(1.02);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  color: #333;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: background-color 0.3s;
  opacity: 0;
}
.carousel-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
.carousel-btn.prev-btn {
  left: 15px;
}
.carousel-btn.next-btn {
  right: 15px;
}

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

.carousel-indicator {
  text-align: center;
  margin-top: 15px;
  font-size: 0.9rem;
  color: #666;
}

/* Модальное окно и остальные стили остаются без изменений */
/* ... */
/* Адаптивные стили */
@media (max-width: 992px) {
  .carousel-img {
    height: 300px;
    width: calc(100% - 20px); /* Увеличиваем отступы на мобильных */
  }
}
@media (max-width: 768px) {
  .carousel-container {
    padding: 0 10px;
  }
  .carousel {
    margin: 0 5px;
  }
  .carousel-img {
    height: 250px;
  }
}
@media (max-width: 480px) {
  .carousel-container {
    padding: 0 5px;
  }
  .carousel-img {
    height: 200px;
    width: calc(100% - 10px);
  }
}
.custom-products {
  background-color: #f8f8f8;
  position: relative;
  overflow: hidden;
}
.custom-products .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.custom-products .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .custom-products .content {
    flex-direction: row;
    align-items: center;
  }
}
.custom-products .text-content {
  flex: 1;
  padding-right: 0;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .custom-products .text-content {
    padding-right: 40px;
    margin-bottom: 0;
  }
}
.custom-products .text-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0B1F33;;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .custom-products .text-content h2 {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  .custom-products .text-content h2 {
    font-size: 40px;
  }
}
.custom-products .text-content .divider {
  width: 60px;
  height: 3px;
  background-color: #b01b30;
  margin: 20px 0;
}
.custom-products .text-content .subtitle {
  font-size: 18px;
  color: #666;
  font-weight: 500;
}
@media (min-width: 576px) {
  .custom-products .text-content .subtitle {
    font-size: 20px;
  }
}
.custom-products .image-container {
  flex: 1;
  position: relative;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .custom-products .image-container {
    text-align: right;
  }
}
.custom-products .image-container .floating-image {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease-out;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .custom-products .image-container .floating-image {
    max-width: 80%;
  }
}
@media (min-width: 992px) {
  .custom-products .image-container .floating-image {
    max-width: 100%;
  }
}

.download-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #b01b30;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}
.download-btn:hover {
  background-color: rgb(249, 57, 57);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.download-btn:active {
  transform: translateY(0);
}

.customers-section {
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #b01b30;
}

.customers-container {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11%;
  margin-top: 30px;
  padding-bottom: 49px;
}

.customer-card {
  width: 200px;
  height: 120px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  opacity: 0;
  transform: translateY(50px);
  perspective: 1000px;
}

.customer-card-inner {
  transition: transform 0.6s;
  transform-style: preserve-3d;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.customer-card img {
  max-width: 100%;
  max-height: 287%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.5s ease;
}

.customer-card:hover .customer-card-inner {
  transform: scale(1.1) rotateY(5deg) rotateX(5deg);
}

.customer-card.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Анимация появления */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Адаптивность */
@media (max-width: 992px) {
  .customer-card {
    width: 160px;
    height: 100px;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .customers-container {
    gap: 30px;
  }
  .customer-card {
    width: 130px;
    height: 80px;
  }
}
@media (max-width: 576px) {
  .customers-section {
    padding: 60px 15px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .customers-container {
    gap: 20px;
  }
  .customer-card {
    width: 100px;
    height: 60px;
    padding: 15px;
  }
}
.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: #0B1F33;
  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=style.css.map */