/* ====================================================================
   CONTACT PAGE STYLES
   ==================================================================== */

/* Hero Section with Background Image */
.contact-hero {
  position: relative;
  width: 100%;
  height: 700px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 90px;
  overflow: hidden;
  padding-top: 20px;
}

.contact-hero-graphic {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-hero-graphic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.contact-title-canvas {
  margin: 64px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.contact-title-canvas canvas {
  max-width: 100%;
  display: block;
}

.contact-hero-title {
  position: relative;
  z-index: 2;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 140px;
  font-weight: 900;
  letter-spacing: 32px;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}

/* Main Contact Section */
.contact-main {
  background-color: #000000;
  padding: 120px 80px 80px;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
}

.contact-section-title {
  font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 40px;
  letter-spacing: 0;
}

/* Content Layout */
.contact-content-wrapper {
  display: flex;
  gap: 128px;
  align-items: flex-start;
}

/* Contact Information */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 0 0 auto;
  min-width: 280px;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info-heading {
  font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0;
}

.contact-info-subheading {
  font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #eeeeee;
  margin: 0;
  line-height: 1.2;
}

.contact-info-text {
  font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #dcdcdc;
  margin: 0;
  line-height: 1.35;
}

/* Contact Form */
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 448px;
  width: 100%;
}

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

.form-label {
  font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0;
}

/* Select Dropdown */
.form-select-wrapper {
  position: relative;
  z-index: 1;
}

.form-select-native {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  inset: 0;
}

.form-select {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  padding-right: 40px;
  background-color: transparent;
  border: 1px solid #474747;
  border-radius: 12px;
  font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  background-image: none;
}

.custom-select-trigger {
  width: 100%;
  min-height: 50px;
  padding: 14px 16px;
  padding-right: 40px;
  background-color: transparent;
  border: 1px solid #474747;
  border-radius: 12px;
  font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-select-trigger:hover {
  background-color: #303030;
  border-color: #303030;
}

.custom-select-trigger:focus-visible,
.form-select-wrapper.is-open .custom-select-trigger {
  background-color: #000000;
  border-color: #6d6d6d;
  outline: none;
}

.custom-select-value {
  display: block;
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 4px;
  background-color: #000000;
  border: 1px solid #474747;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  z-index: 20;
}

.form-select-wrapper.is-open .custom-select-menu {
  display: flex;
}

.custom-select-option {
  width: 100%;
  padding: 12px 14px;
  background-color: transparent;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.custom-select-option:hover,
.custom-select-option:focus-visible,
.custom-select-option.is-selected {
  background-color: #282828;
  outline: none;
}

.form-select:hover {
  background-color: #303030;
  color: #ffffff;
  border-color: #303030;
}

.form-select:focus,
.form-select:active {
  background-color: #000000;
  color: #ffffff;
  border-color: #6d6d6d;
}

.form-select option {
  background-color: #000000;
  color: #ffffff;
  padding: 8px 16px;
  font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
}

.form-select option:hover,
.form-select option:checked {
  background-color: #333333;
  color: #ffffff;
}

/* Dropdown Icon */
.dropdown-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  pointer-events: none;
  z-index: 3;
  filter: none;
  opacity: 1;
  transition: all 0.3s ease;
}

.form-select:hover + .dropdown-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
  opacity: 1;
}

.form-select:focus + .dropdown-icon,
.form-select:active + .dropdown-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
  opacity: 1;
  transform: translateY(-50%) rotate(180deg);
}

.form-select-wrapper:hover .dropdown-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
  opacity: 1;
}

.form-select-wrapper.is-open .dropdown-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
  opacity: 1;
  transform: translateY(-50%) rotate(180deg);
}

.form-select-wrapper:focus-within {
  position: relative;
}

.form-select::-webkit-calendar-picker-indicator {
  display: none;
}

.form-select::-webkit-inner-spin-button,
.form-select::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Text Inputs */
.form-input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  background-color: transparent;
  border: 1px solid #6d6d6d;
  border-radius: 12px;
  font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input::placeholder {
  color: rgba(179, 179, 179, 0.93);
}

.form-input:hover,
.form-input:focus {
  border-color: #8d8d8d;
}

/* Phone Input with Flag */
.form-phone-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.phone-flag {
  position: absolute;
  left: 16px;
  width: 22px;
  height: 16px;
  pointer-events: none;
  z-index: 1;
  display: block;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.form-phone-input {
  padding-left: 46px;
}

/* Textarea */
.form-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  background-color: transparent;
  border: 1px solid #474747;
  border-radius: 12px;
  font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  outline: none;
  resize: vertical;
  min-height: 117px;
  transition: border-color 0.3s ease;
}

.form-textarea::placeholder {
  color: rgba(179, 179, 179, 0.93);
}

.form-textarea:hover,
.form-textarea:focus {
  border-color: #6d6d6d;
}

/* Autofill fix */
.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover,
.form-input:-webkit-autofill:focus,
.form-select:-webkit-autofill,
.form-select:-webkit-autofill:hover,
.form-select:-webkit-autofill:focus,
.form-textarea:-webkit-autofill,
.form-textarea:-webkit-autofill:hover,
.form-textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff;
  caret-color: #ffffff;
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  box-shadow: 0 0 0 1000px transparent inset;
  transition: background-color 9999s ease-in-out 0s;
}

.form-input:-moz-autofill,
.form-select:-moz-autofill,
.form-textarea:-moz-autofill {
  box-shadow: 0 0 0 1000px transparent inset;
  -moz-text-fill-color: #ffffff;
}

/* Submit Button */
.form-submit-btn {
  align-self: center;
  padding: 12px 48px;
  background-color: #ffffff;
  color: #000000;
  border: none;
  border-radius: 12px;
  font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0;
}

.form-submit-btn:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

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

.form-message {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

/* ==========================================================================
   SOCIAL SIDEBAR
   ========================================================================== */

.social-sidebar {
  position: fixed;
  left: 16px;
  top: auto;
  bottom: max(20px, calc((100vh - 100%) / 2));
  transform: none;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;
}

.social-sidebar a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240, 240, 240, 0.55);
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.social-sidebar a:hover {
  color: #ffffff;
  transform: scale(1.2);
}

.social-sidebar a svg {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   SOCIAL MEDIA SECTION
   ========================================================================== */

.contact-social-section {
  background-color: #000000;
  padding: 80px 80px 60px;
}

.contact-social-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.social-media-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: #121212;
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  letter-spacing: 0;
}

.social-media-btn:hover {
  background-color: #1f1f1f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.social-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

/* ==========================================================================
   FOOTER MODERN
   ========================================================================== */

.footer-social-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 10000;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 191px;
  height: 48px;
  padding: 0;
  background-color: #121212;
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  pointer-events: auto;
}

.social-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s;
}

.social-btn:hover::before {
  left: 100%;
}

.social-btn:hover {
  background-color: #1f1f1f;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

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

.social-btn img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  filter: brightness(0) invert(1);
}

.social-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: currentColor;
  color: #ffffff;
}

.social-btn:hover img {
  transform: scale(1.1);
}

.social-btn span {
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* Footer Content */
.footer-content-modern {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  gap: 80px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
}

.contact-block h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.contact-block a {
  color: #dcdcdc;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  transition: color 0.3s ease;
  font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.contact-block a:hover {
  color: #ffffff;
}

.footer-nav-modern {
  display: flex;
  gap: 80px;
}

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

.nav-column a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
  font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-column a:hover {
  color: #dcdcdc;
}

.footer-copyright-modern {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 18px;
  font-weight: 400;
  padding: 32px 80px;
  color: rgba(179, 179, 179, 0.93);
  background-color: #000000;
  font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin-top: 60px;
}

/* Active Contact link in nav */
.nav-links a[href="contact.html"],
.overlay-links a[href="contact.html"] {
  background: linear-gradient(
    90deg,
    #521EFC 0%,
    #A740FD 35%,
    #FD62FE 65%,
    #521EFC 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ====================================================================
   RESPONSIVE DESIGN
   ==================================================================== */

/* --- 1200px --- */
@media (max-width: 1200px) {
  .contact-hero {
    height: 600px;
  }

  .contact-hero-title {
    font-size: 120px;
    letter-spacing: 38px;
  }

  .contact-main {
    padding: 100px 60px 60px;
  }

  .contact-content-wrapper {
    gap: 80px;
  }

  .contact-social-section {
    padding: 60px 60px 50px;
  }

  .footer-content-modern {
    gap: 60px;
  }

  .footer-copyright-modern {
    padding: 32px 60px;
  }
}

/* --- 1024px --- */
@media (max-width: 1024px) {
  .contact-hero {
    height: 500px;
  }

  .contact-hero-title {
    font-size: 100px;
    letter-spacing: 32px;
  }

  .contact-main {
    padding: 80px 40px 50px;
  }

  .contact-content-wrapper {
    flex-direction: column;
    gap: 60px;
  }

  .contact-info-wrapper {
    flex-direction: row;
    gap: 60px;
    min-width: auto;
    width: 100%;
  }

  .contact-form {
    max-width: 100%;
  }

  .contact-content-wrapper,
  .contact-form,
  .form-group,
  .form-select-wrapper,
  .form-phone-wrapper {
    width: 100%;
  }

  .contact-social-section {
    padding: 50px 40px 40px;
  }

  .footer-content-modern {
    gap: 60px;
    flex-direction: column;
  }

  .footer-nav-modern {
    gap: 60px;
  }

  .footer-copyright-modern {
    padding: 32px 40px;
  }

}

/* SVG іконки в social-btn — завжди білі */
.social-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: currentColor;
  color: #ffffff;
}

/* --- 768px --- */
@media (max-width: 768px) {
  .contact-hero {
    height: 400px;
    margin-top: 70px;
  }

  .contact-hero-title {
    font-size: 72px;
    letter-spacing: 20px;
  }

  .contact-main {
    padding: 60px 20px 40px;
  }

  .contact-section-title {
    font-size: 36px;
    margin-bottom: 32px;
  }

  .contact-content-wrapper {
    gap: 50px;
  }

  .contact-info-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .contact-container,
  .contact-content-wrapper,
  .contact-form,
  .form-group,
  .form-select-wrapper,
  .form-phone-wrapper {
    width: 100%;
  }

  .contact-social-section {
    padding: 40px 20px 30px;
  }

  .contact-social-buttons {
    gap: 12px;
  }

  .social-media-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .social-icon {
    width: 18px;
    height: 18px;
  }

  .footer-social-buttons {
    gap: 12px;
  }

  .social-btn {
    width: 150px;
    height: 42px;
    font-size: 14px;
    gap: 8px;
  }

  .social-btn img,
  .social-btn svg {
    width: 18px;
    height: 18px;
  }

  .footer-content-modern {
    flex-direction: column;
    padding: 0 20px;
    gap: 40px;
  }

  .footer-contacts {
    gap: 24px;
  }

  .footer-nav-modern {
    gap: 40px;
    justify-content: center;
    margin-top: 0;
  }

  .nav-column {
    text-align: center;
  }

  .footer-copyright-modern {
    padding-top: 24px;
  }

  /* Nav */
  .nav-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 16px;
  }

  .mobile-logo {
    display: flex;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  .burger-label {
    display: flex;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  .overlay-header {
    display: flex;
  }

  .overlay-logo {
    display: flex;
  }

  .overlay-close {
    display: flex;
  }

  .overlay-links {
    gap: 40px;
  }

  .overlay-links a {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 500;
    color: #DCDCDC;
  }

  /* Social Sidebar */
  .social-sidebar {
    top: 83%;
    bottom: auto;
    transform: translateY(-50%);
    left: 16px;
  }

  .social-sidebar a {
    width: 32px;
    height: 32px;
  }

  .social-sidebar a svg {
    width: 16px;
    height: 16px;
  }
}

/* --- 480px --- */
@media (max-width: 480px) {
  .contact-hero {
    height: 320px;
  }

  .contact-hero-title {
    font-size: 48px;
    letter-spacing: 12px;
    -webkit-text-stroke: 0.5px #b3b3b3;
  }

  .contact-main {
    padding: 50px 20px 30px;
  }

  .contact-container,
  .contact-content-wrapper,
  .contact-form,
  .form-group,
  .form-select-wrapper,
  .form-phone-wrapper {
    width: 100%;
  }

  .contact-section-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .contact-content-wrapper {
    gap: 40px;
  }

  .contact-info-heading {
    font-size: 20px;
  }

  .contact-info-subheading {
    font-size: 16px;
  }

  .contact-info-text {
    font-size: 14px;
  }

  .form-label {
    font-size: 14px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 13px;
    padding: 12px 14px;
  }

  .form-phone-input {
    padding-left: 46px;
  }

  .form-submit-btn {
    padding: 10px 36px;
    font-size: 14px;
  }

  .contact-social-buttons {
    gap: 8px;
  }

  .social-media-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .social-icon {
    width: 16px;
    height: 16px;
  }

  .footer-social-buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    justify-items: center;
    align-items: center;
  }

  .social-btn {
    width: 100%;
    min-width: 0;
    height: 36px;
    max-width: 220px;
    padding: 0;
    font-size: 12px;
    border-radius: 10px;
    gap: 6px;
    justify-content: center;
  }

  .social-btn img,
  .social-btn svg {
    width: 16px;
    height: 16px;
  }

  .social-btn span {
    font-size: 11px;
  }

  .footer-content-modern {
    padding: 0 20px;
    gap: 32px;
  }

  .footer-contacts {
    gap: 20px;
  }

  .contact-block h4 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .contact-block a {
    font-size: 12px;
  }

  .footer-nav-modern {
    gap: 32px;
    flex-wrap: wrap;
  }

  .nav-column {
    gap: 12px;
  }

  .nav-column a {
    font-size: 12px;
  }

  .footer-copyright-modern {
    font-size: 12px;
    padding-top: 20px;
  }

  /* Social Sidebar */
  .social-sidebar {
    top: 70%;
    bottom: auto;
    transform: translateY(-50%);
    left: 16px;
  }

  .social-sidebar a {
    width: 32px;
    height: 32px;
  }

  .social-sidebar {
    left: 8px;
    padding: 4px;
    gap: 8px;
  }

  .social-btn svg {
    width: 16px;
    height: 16px;
  }

  .social-btn {
    color: #ffffff;
  }
}

/* --- 393px --- */
@media (max-width: 393px) {
  .contact-main {
    padding: 50px 16px 30px;
  }

  .contact-container,
  .contact-content-wrapper,
  .contact-form,
  .form-group,
  .form-select-wrapper,
  .form-phone-wrapper {
    width: 100%;
  }

  .contact-form {
    max-width: none;
  }
}

/* --- 360px --- */
@media (max-width: 360px) {
  .contact-hero {
    height: 280px;
  }

  .contact-hero-title {
    font-size: 36px;
    letter-spacing: 8px;
  }

  .contact-section-title {
    font-size: 24px;
  }

  .contact-info-heading {
    font-size: 18px;
  }

  .social-media-btn {
    padding: 6px 12px;
    font-size: 11px;
  }

  .social-btn {
    min-width: 0;
    height: 30px;
    padding: 0;
    font-size: 11px;
  }

  /* Social Sidebar */
  .social-sidebar {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    left: 16px;
  }

  .social-sidebar a {
    width: 32px;
    height: 32px;
  }

  .social-sidebar {
    left: 8px;
    padding: 4px;
    gap: 8px;
  }
}

/* --- 320px --- */
@media (max-width: 320px) {
  .social-sidebar {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    left: 16px;
  }

  .social-sidebar a {
    width: 32px;
    height: 32px;
  }

  .social-sidebar {
    left: 8px;
    padding: 4px;
    gap: 8px;
  }
}
