/* ===============================
   CONTACT SECTION - REDESIGNED
================================ */

.hanger_contact-section-new {
  padding: 100px 0;
  background: #fff;
}

.hanger_contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 0.3fr 0.7fr;
  gap: 60px;
  align-items: start;
}

/* LEFT SIDE: FORM */
.hanger_contact-form-side {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.hanger_contact-title {
  font-size: 32px;
  font-weight: 700;
  color: #0D1B3E;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hanger_contact-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* Form Styling */
.hanger_contact-form-new {
  margin-bottom: 0;
}

.hanger_form-row {
  margin-bottom: 18px;
}

.hanger_form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0D1B3E;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hanger_form-field input,
.hanger_form-field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  color: #333;
  background: #fff;
  transition: all 0.3s ease;
  font-family: inherit;
}

.hanger_form-field input:focus,
.hanger_form-field textarea:focus {
  outline: none;
  border-color: #AB966C;
  box-shadow: 0 0 0 3px rgba(171, 150, 108, 0.1);
}

.hanger_form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.hanger_contact-submit {
  width: 100%;
  background: linear-gradient(135deg, #AB966C 0%, #8a7555 100%);
  color: #fff;
  padding: 16px 30px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(171, 150, 108, 0.3);
}

.hanger_contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(171, 150, 108, 0.4);
}

.hanger_contact-submit i {
  font-size: 14px;
}

/* Contact Info Box */
.hanger_contact-info-box {
  border-top: 2px solid #e0e0e0;
  padding-top: 30px;
}

.hanger_contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: start;
}

.hanger_contact-info-item:last-child {
  margin-bottom: 0;
}

.hanger_contact-info-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #AB966C 0%, #8a7555 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.hanger_contact-info-item strong {
  display: block;
  font-size: 14px;
  color: #0D1B3E;
  margin-bottom: 4px;
  font-weight: 600;
}

.hanger_contact-info-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* RIGHT SIDE: GALLERY SCROLL */
.hanger_contact-gallery-side {
  position: relative;
}

.hanger_contact-gallery-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.hanger_contact-feature-item {
  text-align: center;
  padding: 20px 15px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hanger_contact-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hanger_contact-feature-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, #AB966C 0%, #8a7555 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}

.hanger_contact-feature-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0D1B3E;
  margin-bottom: 8px;
  font-family: 'Cormorant Garamond', serif;
}

.hanger_contact-feature-item p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.hanger_contact-gallery-scroll {
  position: relative;
  display: flex;
  gap: 20px;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding-bottom: 60px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.hanger_contact-gallery-scroll::-webkit-scrollbar {
  display: none;
}

.hanger_contact-gallery-item {
  flex: 0 0 100%;
  min-width: 100%;
  height: 550px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-snap-align: start;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hanger_contact-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
}

.hanger_contact-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Pagination Indicator */
.hanger_contact-gallery-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hanger_contact-container {
    gap: 50px;
    padding: 0 40px;
  }

  .hanger_contact-form-side {
    padding: 30px;
  }

  .hanger_contact-title {
    font-size: 28px;
  }

  .hanger_contact-gallery-item {
    height: 500px;
  }
}

@media (max-width: 991px) {
  .hanger_contact-section-new {
    padding: 80px 0;
  }

  .hanger_contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 30px;
  }

  .hanger_contact-title {
    font-size: 28px;
  }

  .hanger_contact-gallery-features {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 25px;
  }

  .hanger_contact-feature-item {
    padding: 18px 12px;
  }

  .hanger_contact-feature-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
    margin-bottom: 12px;
  }

  .hanger_contact-feature-item h4 {
    font-size: 15px;
  }

  .hanger_contact-feature-item p {
    font-size: 12px;
  }

  .hanger_contact-gallery-item {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .hanger_contact-section-new {
    padding: 60px 0;
  }

  .hanger_contact-container {
    gap: 35px;
    padding: 0 20px;
  }

  .hanger_contact-form-side {
    padding: 30px 20px;
  }

  .hanger_contact-title {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .hanger_contact-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .hanger_form-row {
    margin-bottom: 15px;
  }

  .hanger_form-field label {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .hanger_form-field input,
  .hanger_form-field textarea {
    padding: 12px 14px;
    font-size: 14px;
  }

  .hanger_contact-submit {
    padding: 14px 25px;
    font-size: 15px;
  }

  .hanger_contact-gallery-item {
    height: 400px;
  }

  .hanger_contact-gallery-indicator {
    bottom: 15px;
    padding: 10px 20px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hanger_contact-section-new {
    padding: 50px 0;
  }

  .hanger_contact-container {
    padding: 0 15px;
    gap: 30px;
  }

  .hanger_contact-form-side {
    padding: 25px 18px;
  }

  .hanger_contact-title {
    font-size: 24px;
  }

  .hanger_contact-subtitle {
    font-size: 13px;
  }

  .hanger_contact-gallery-item {
    height: 350px;
  }

  .hanger_contact-gallery-indicator {
    padding: 8px 16px;
    gap: 10px;
  }
}
