@font-face {
  font-family: "AA Stetica";
  font-style: normal;
}

:root {
  --primary-green: #727967;
  --light-green: #b8bfad;
  --brown: #89503c;
  --Global-Black: #000;
  --Global-white: #FFF;
  --Text-Secondary: #565351;
  --Global-Gray-Gray-20: #ECE9E7;
  --Global-Gray-Gray-30: #CECBC9;
  --Global-Green-Green-30: #E0E7D5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "AA Stetica", sans-serif;
  background: #F5F5F5;
}

.contact-head-pg {
  color: #000;
  font-family: Ledger;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 72px;
}

.contacts-hero {
  height: 450px;
  background: linear-gradient(rgba(137, 80, 60, 0.7), rgba(137, 80, 60, 0.7)),
              url('./src/images/rent_contact_back.png') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin-top: 128px;
}

.contacts-hero h1 {
  font-family: 'Ledger', serif;
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 16px;
}

inbi-footer {
background: black !important;
min-height: 300px !important;
display: block !important;
}


.contacts-hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.contacts-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px;
  width: 100%;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 72px;
}

.info-section h2 {
  font-family: 'Ledger', serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 32px;
  color: var(--Global-Black);
}

.contact-card {
  background: #F5F5F5;
  border: 1px solid var(--Global-Gray-Gray-30);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.contact-card h3 {
  font-family: 'Ledger', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--Global-Black);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: var(--primary-green);
}

.contact-text {
  font-size: 16px;
  line-height: 24px;
  color: var(--Global-Black);
}

.contact-text a {
  color: var(--primary-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: var(--brown);
}

.map-section {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 72px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.form-section {
  background: var(--Global-Gray-Gray-20);
  border-radius: 12px;
  padding: 48px;
  height: 97.5% !important;
}

.form-section h2 {
  font-family: 'Ledger', serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 32px;
  text-align: center;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
  color: var(--Global-Black);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid var(--Global-Gray-Gray-30);
  border-radius: 6px;
  background: #F5F5F5;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-green);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
}

.checkbox-container input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #727967;
  flex-shrink: 0;
}

.checkbox-label {
  font-size: 14px;
  color: #5A6C7D;
  line-height: 1.5;
}

.checkbox-label a {
  color: #727967;
  text-decoration: underline;
  font-weight: 600;
}

.checkbox-container .error-message {
  display: none;
  flex-basis: 100%;
  margin-top: 0;
  margin-left: 30px;
  color: #dc3545;
  font-size: 12px;
}

.checkbox-container .error-message.show {
  display: block;
}

.submit-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 500;
  color: white;
  background: var(--primary-green);
  border: 1px solid var(--primary-green);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--brown);
  border-color: var(--brown);
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--Global-Green-Green-30);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary-green);
  transform: translateY(-3px);
}

.social-link svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-green);
  transition: fill 0.3s ease;
}

.social-link:hover svg {
  fill: white;
}

.working-hours {
  background: var(--Global-Green-Green-30);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.working-hours h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--Global-Black);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hours-item:last-child {
  border-bottom: none;
}

.reg {
  font-size: 20px !important;
}
@media (max-width: 768px) {
  .contacts-hero {
    height: 300px;
    margin-top: 80px;
    padding: 0 24px;
  }

  .contact-head-pg {
    font-size: 36px;
  }

  .contacts-hero h1 {
    font-size: 36px;
  }

  .contacts-container {
    padding: 48px 24px;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-section {
    padding: 32px 24px;
  }

  .map-section {
    height: 350px;
  }
}