
:root {
  --booking-primary: #F3EEE1;
  --booking-dark: #2c2c2c;
  --booking-medium: #666666;
  --booking-light: #999999;
  --booking-white: #ffffff;
  --booking-border: #e8e8e8;
  --booking-shadow: rgba(0, 0, 0, 0.1);
}

.booking-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/rez.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}


.booking-header {
  text-align: center;
  padding: 0 24px 60px 24px;
  position: relative;
  z-index: 2;
}

.booking-header-content {
  max-width: 800px;
  margin: 0 auto;
}

.booking-badge {
  display: inline-block;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--booking-white);
}

.booking-main-title {
  font-family: 'Jost', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', SimHei, Arial, Helvetica, sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--booking-white);
  margin: 0 0 20px 0;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.booking-main-description {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.booking-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 90px;
  align-items: start;
  position: relative;
  z-index: 2;
}


.booking-info {
  display: flex;
  flex-direction: column;
  margin-top: -40px;
align-self: center;
  padding-right: 40px;

}

.booking-text-content {
  max-width: 100%;
}

.booking-badge-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.booking-line {
  width: 60px;
  height: 2px;
  background: var(--booking-white);
}

.booking-badge {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--booking-white);
  white-space: nowrap;
}

.booking-left-title {
  font-family: 'Jost', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', SimHei, Arial, Helvetica, sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: var(--booking-white);
  margin: 0 0 24px 0;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.booking-left-description {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}


.booking-form-section {
  background: transparent;
}

.booking-form-container {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 20px;
}

.booking-form-title {
  font-family: 'Jost', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', SimHei, Arial, Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--booking-white);
  margin: 0 0 12px 0;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.booking-form-subtitle {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px 0;
  line-height: 1.5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.booking-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.booking-form-group label {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--booking-white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.booking-form-group input,
.booking-form-group select,
.booking-form-group textarea {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  padding: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--booking-white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

.booking-form-group input::placeholder,
.booking-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.booking-form-group input:focus,
.booking-form-group select:focus,
.booking-form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

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


.booking-form-group select option {
  background: var(--booking-dark);
  color: var(--booking-white);
  padding: 8px 16px;
}

.booking-form-group select option:hover,
.booking-form-group select option:focus {
  background: #1A2F79;
  color: var(--booking-white);
}

.booking-form-group select option:checked {
  background: #1A2F79;
  color: var(--booking-white);
}

.booking-submit-btn {
  font-size: 16px;
  font-weight: 600;
  background: #1A2F79;
  color: white;
  border: none;
  padding: 18px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  border-radius: 30px;
}

.booking-submit-btn:hover {
  background: #1A2F79;
  color: var(--booking-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--booking-shadow);
}

.booking-submit-btn i {
  font-size: 18px;
}


@media (max-width: 768px) {
  .booking-left-title {
    font-size: 36px;
    white-space: normal;
  }
  
  .booking-left-description {
    font-size: 16px;
  }
  
  .booking-info {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .booking-line {
    width: 40px;
  }
  
  .booking-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .booking-form-container {
    padding: 40px 24px;
  }
  
  .booking-form-title {
    font-size: 28px;
  }
  
  .booking-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .booking-section {
    padding: 60px 0;
  }
  
  .booking-left-title {
    font-size: 28px;
    white-space: normal;
  }
  
  .booking-left-description {
    font-size: 15px;
  }
  
  .booking-info {
    padding-right: 0;
    padding-top: 45px;
    margin-bottom: 10px;
  }
  
  .booking-line {
    width: 30px;
  }
  
  .booking-badge-container {
    gap: 15px;
  }
  
  .booking-container {
    padding: 0 16px;
    gap: 30px;
  }
  

  
  .booking-form-container {
    padding: 30px 20px;
  }
  
  .booking-form-title {
    font-size: 24px;
  }
  
  .booking-form-group input,
  .booking-form-group select,
  .booking-form-group textarea {
    padding: 14px;
  }
}