body {
  font-family: 'Inter', sans-serif;
  color: #667085;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

/* Banner */
.contact-banner {
  position: relative;
  width: 100%;
  height: 530px;
  background: url('../img/image 22.png') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
}

/* Fallback if the image doesn't exist */
.contact-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(89.89deg, #000000 0.06%, rgba(0, 0, 0, 0) 71.01%), #333;
  z-index: 1;
}

.contact-banner-title {
  position: relative;
  z-index: 2;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0;
  /* Push down a bit based on Figma top: 296px */
  margin-top: 150px; 
}

/* Breadcrumb */
.bc-wrapper {
  width: 100%;
  background: #fff;
  padding: 40px 0 20px 0;
}
.slide-breadcrumb {
  display: flex;
  align-items: center;
  gap: 20px;
}
.bc-item {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
  text-decoration: none;
}
.bc-current {
  font-family: 'Open Sans', sans-serif;
}
.bc-arrow {
  display: block;
}

/* Main Container */
.contact-page {
  padding: 60px 0 100px 0;
}

.contact-container {
  max-width: 1216px !important;
}

/* Address Blocks */
.address-section {
  max-width: 470px;
}
.company-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 23px;
  line-height: 30px;
  color: #000000;
  margin-bottom: 24px;
}
.global-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 60px;
  letter-spacing: -0.02em;
  color: #101828;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #667085;
}
.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  /* Replicate Figma icon structure (using a border logic or just setting size) */
}

.contact-divider {
  border-top: 1px solid #F4F4F4;
  margin: 80px 0;
  opacity: 1;
}

/* Form Section */
.form-header {
  margin-bottom: 48px;
}
.form-main-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 60px;
  letter-spacing: -0.02em;
  color: #101828;
  margin-bottom: 0;
}
.form-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #667085;
}

/* Contact Cards (Working Hours, Email, Feedback) */
.c-card {
  background: rgba(224, 224, 224, 0.2);
  height: 112px;
  display: flex;
  align-items: center;
  padding: 24px;
  gap: 16px;
  border-radius: 4px;
}
.c-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-card-info {
  display: flex;
  flex-direction: column;
}
.c-card-info h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #000000;
  margin: 0 0 4px 0;
}
.c-card-info strong {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
}

/* Form Styles */
.custom-input {
  height: 48px;
  background: #FFFFFF;
  border: 1px solid #D0D5DD;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #667085;
  border-radius: 4px;
}
.asas-form .select-wrap {
  position: relative;
}
.asas-form .select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url('/img/asaskompozit/chevron-down.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  pointer-events: none;
  transition: transform 0.2s ease;
}
.asas-form .select-wrap.is-open::after {
  transform: translateY(-50%) rotate(180deg);
}
.asas-form .select-wrap select.custom-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  background-image: none;
}
.asas-form select.custom-input::-ms-expand {
  display: none;
}
.custom-input:focus {
  border-color: #D1000F;
  box-shadow: 0 0 0 1px rgba(209, 0, 15, 0.15);
}
.custom-textarea {
  height: 154px;
  resize: vertical;
}

.flag-addon {
  background-color: #fff;
  border: 1px solid #D0D5DD;
  border-right: none;
}

/* File Upload */
.file-upload-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  border: 2px solid #E9E9E9;
  padding: 0 16px;
  background: #fff;
  border-radius: 4px;
}
.file-texts {
  display: flex;
  flex-direction: column;
}
.file-desc {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #838383;
}
.file-types {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: #838383;
  text-transform: uppercase;
  margin-top: 2px;
}
.file-btn {
  position: relative;
  background: #F2F2F2;
  height: 52px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
}
.file-btn span {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  text-transform: uppercase;
}
.file-btn input[type="file"] {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0;
  cursor: pointer;
}

/* Custom Checkbox */
.custom-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.custom-checkbox {
  width: 20px;
  height: 20px;
  border: 1px solid #D0D5DD;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 2px;
}
.custom-checkbox:checked {
  background-color: #D1000F;
  border-color: #D1000F;
}
.kvkk-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #838383;
  cursor: pointer;
}

/* reCAPTCHA Mock */
.recaptcha-wrapper {
  display: flex;
  justify-content: flex-start;
}
.recaptcha-mock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 304px;
  height: 78px;
  background: #F9F9F9;
  border: 1px solid #D3D3D3;
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  padding: 0 16px;
}
.recaptcha-mock span {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  margin-left: 10px;
}
.rc-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rc-brand img {
  width: 32px;
  height: 32px;
}
.rc-links {
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  color: #555555;
  text-align: center;
  line-height: 12px;
  margin-top: 4px;
}
.rc-links a {
  font-size: 8px;
  color: #555;
  text-decoration: none;
}

/* Button */
.btn-submit {
  background: #D1000F;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 312px;
  height: 60px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16.8px;
  color: #FFFFFF;
  border-radius: 0;
  border: none;
}
.btn-submit:hover {
  background: #b3000d;
  color: #FFF;
}

/* Map Banner */
.map-banner {
  width: 100%;
}
.map-banner img {
  display: block;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .contact-banner-title {
    font-size: 32px;
    line-height: 40px;
  }
  .recaptcha-wrapper {
    justify-content: flex-start;
  }
  .file-upload-box {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    height: auto;
    padding: 20px;
    align-items: flex-start;
  }
}
