@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --brand-color: #e61b23; 
  --text-dark: #0f0f12;
  --text-muted: #666;
}

.blog-hero { 
    background-image: url('~/img/Loading.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    text-align: center;
    padding: 150px 0 120px; 
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(43, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.blog-hero .container {
    position: relative;
    z-index: 2;
}
.blog-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 45px;
    line-height: 100%;
    color: #fff;
    margin: 0;
}

.contact-section {
  background: #fff;
  padding: 80px 0;
}

.contact-info h2, 
.contact-form-wrapper h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 30px;
  line-height: 1.46;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  background-color: #f9f9f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(18%) sepia(90%) saturate(3870%) hue-rotate(344deg) brightness(92%) contrast(102%);
}

.contact-details h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.contact-details p, 
.contact-details a {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 1.6;
  color: #000;
  text-decoration: none;
  margin: 0;
  display: block;
}

.address-text {
    max-width: 100%;
}

.contact-details a:hover {
  color: var(--brand-color);
}

.map-container {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  height: 220px;
  width: 100%;
}

.contact-form-wrapper {
  background: #fff;
  padding-left: 0; 
}

.form-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 30px;
}

.form-control {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 20px;
  transition: border-color 0.3s;
  background-color: #fff;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--brand-color);
}

.form-check-label {
  font-size: 14px;
  font-weight: 300;
  color: #000;
  line-height: 1.5;
}

.form-check-input:checked {
  background-color: var(--brand-color);
  border-color: var(--brand-color);
}

.kvkk-modal-link {
    color: #000;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 400;
}
.kvkk-modal-link:hover {
    color: var(--brand-color);
}

.btn-submit {
  background-color: #FF001F;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 40px;
  font-weight: 500;
  font-size: 16px;
  width: 100%;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  background-color: #d00019;
  color: #fff;
}

.vertical-divider-container {
    display: flex;
    justify-content: center;
    height: 100%;
}
.vertical-divider {
    display: none;
    width: 1px;
    background-color: #e0e0e0;
    height: 100%;
    box-shadow: 4px 0 8px rgba(0,0,0,0.15);
}

@media (min-width: 992px) {
    .vertical-divider { display: block; }
    .contact-form-wrapper { padding-left: 40px; }
}

@media (max-width: 991px) {
  .blog-hero h1 { font-size: 36px; }
  .contact-section { padding: 50px 0; }
  
  .contact-form-wrapper {
    padding-left: 0;
    margin-top: 50px; 
    border-top: 1px solid #eee; 
    padding-top: 40px;
  }
}