/* Contact page styles */
.page-contact .contact-wrapper {
  display: flex;
  gap: 48px;
  max-width: 98%;
  margin: 0 auto;
}

.page-contact .contact-form-section {
  flex: 1;
  min-width: 0;
}

.page-contact .contact-info-section {
  width: 400px;
  flex-shrink: 0;
}

/* Page header */
.page-contact .contact-header {
  margin-bottom: 42px;
}

.page-contact .contact-header h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: #00181c;
  margin-bottom: 16px;
}

.page-contact .contact-header .subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #9aa8ae;
}

/* Form styles */
.page-contact .contact-form .form-group {
  margin-bottom: 20px;
  position: relative;
}

.page-contact .contact-form .form-group.form-group-textarea .form-control {
  min-height: 240px;
  resize: vertical;
}

.page-contact .contact-form .form-control,
.page-contact .contact-form .form-select {
  width: 100%;
  padding: 16px;
  border: 1px solid #ebe9ef;
  border-radius: 8px;
  background-color: white;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #00181c;
  transition: border-color 0.3s ease;
}

.page-contact .contact-form .form-control:focus,
.page-contact .contact-form .form-select:focus {
  outline: none;
  border-color: #29b4d6;
  box-shadow: 0 0 0 3px rgba(41, 180, 214, 0.1);
}

.page-contact .contact-form .form-control::placeholder {
  color: #9aa8ae;
}

.page-contact .contact-form .form-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #9aa8ae;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  position: absolute;
  top: 16px;
  left: 16px;
  background: white;
  padding: 0 4px;
  pointer-events: none;
  z-index: 1;
}

.page-contact .contact-form .form-label .required {
  color: #e83892;
  font-weight: 700;
}

.page-contact .contact-form .optional-label {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #9aa8ae;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.page-contact .contact-form .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.83333 8.33333L10 12.5L14.1667 8.33333' stroke='%239AA8AE' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

/* Privacy policy checkbox */
.page-contact .privacy-policy {
  margin-bottom: 8px;
}

.page-contact .privacy-policy .form-check {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-contact .privacy-policy .form-check-input {
  width: 20px;
  height: 20px;
  border: 1px solid #f6f6f6;
  border-radius: 4px;
  background-color: #f6f6f6;
  margin: 0;
  flex-shrink: 0;
}

.page-contact .privacy-policy .form-check-input:checked {
  background-color: #f6f6f6;
  border-color: #f6f6f6;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.6667 5L7.5 14.1667L3.33333 10' stroke='%2329B4D6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}

.page-contact .privacy-policy .form-check-input:focus {
  box-shadow: none;
}

.page-contact .privacy-policy .form-check-label {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #00181c;
  margin: 0;
}

.page-contact .privacy-policy .form-check-label a {
  color: #29b4d6;
  font-weight: 700;
  text-decoration: none;
}

.page-contact .privacy-policy .form-check-label a:hover {
  text-decoration: underline;
}

.page-contact .required-notice {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.4;
  color: #00181c;
  margin-bottom: 32px;
}

/* Submit button */
.page-contact .form-submit {
  padding: 16px 0;
}

.page-contact .form-submit .btn-submit {
  background-color: #3b2563;
  color: white;
  border: none;
  border-radius: 58px;
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-contact .form-submit .btn-submit:hover {
  background-color: #2e1e4f;
  transform: translateY(-2px);
}

.page-contact .form-submit .btn-submit:active {
  transform: translateY(0);
}

/* Contact info sidebar */
.page-contact .contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.page-contact .info-block h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: #00181c;
  margin-bottom: 7px;
}

.page-contact .info-block .info-item {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.page-contact .info-block .info-item .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.page-contact .info-block .info-item i {
    color: #29b4d6;
}

.page-contact .info-block .info-item .icon svg {
  width: 100%;
  height: 100%;
}

.page-contact .info-block .info-item .text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: #00181c;
}

.page-contact .info-block .info-item.or-text .text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.page-contact .info-block .social-links {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.page-contact .info-block .social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #29b4d6;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-contact .info-block .social-link:hover {
  transform: scale(1.1);
  background-color: #22a0c0;
}

.page-contact .info-block .social-link svg,
.page-contact .info-block .social-link img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

/* Responsive design */
@media (max-width: 991px) {
  .page-contact .contact-wrapper {
    flex-direction: column;
  }

  .page-contact .contact-info-section {
    width: 100%;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .page-contact .contact-wrapper{
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .page-contact .contact-wrapper .contact-form-section{
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 575px) {
  .page-contact .contact-header h1 {
    font-size: 24px;
  }

  .page-contact .info-block h2 {
    font-size: 20px;
  }

    .page-contact .contact-wrapper {
        gap: 24px;
    }
}

/* Showroom Section */
.showroom-section {
  background-color: #29b4d6;
  /*width: calc(100vw - var(--bs-gutter-x) * .3);*/
  /*position: relative;*/
  /*left: 50%;*/
  /*right: 50%;*/
  /*margin-left: -50vw;*/
  /*margin-right: -50vw;*/
  padding: 42px 0;
  /*margin-top: 48px;*/
}

.showroom-section .showroom-content {
  max-width: 1168px;
  margin: 0 auto;
  padding: 0 15px;
}

.showroom-section .showroom-header {
  text-align: center;
  margin-bottom: 48px;
}

.showroom-section .showroom-header h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 16px;
}

.showroom-section .showroom-header p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
}

.showroom-section .showroom-blocks {
  display: flex;
  gap: 50px;
  align-items: stretch;
}

.showroom-section .map-container,
.showroom-section .video-container {
  flex: 1;
  height: 366px;
  border-radius: 16px;
  overflow: hidden;
}

.showroom-section .map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.showroom-section .video-container {
  position: relative;
}

.showroom-section .video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
              url('https://picsum.photos/600/366') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.showroom-section .play-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease;
}

.showroom-section .play-button:hover {
  transform: scale(1.1);
}

.showroom-section .play-button svg {
  width: 92px;
  height: 92px;
}

/* Responsive design for showroom section */
@media (max-width: 991px) {
  .showroom-section .showroom-blocks {
    flex-direction: column;
    gap: 30px;
  }
  
  .showroom-section .map-container,
  .showroom-section .video-container {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .showroom-section {
    padding: 30px 0;
    margin-top: 30px;
  }
  
  .showroom-section .showroom-header h2 {
    font-size: 24px;
  }
  
  .showroom-section .showroom-header {
    margin-bottom: 30px;
  }
  
  .showroom-section .map-container,
  .showroom-section .video-container {
    height: 250px;
  }
}