/*
input::placeholder{
  font-style: italic;
  font-weight: 200;
  font-size: 16px;
  color: #fff;
 }
input::-webkit-input-placeholder {    
  font-style: italic;
  font-weight: 200;
  font-size: 16px;
  color: #fff;
}
input::-moz-placeholder {
  font-style: italic;
  font-weight: 200;
  font-size: 16px;
  color: #fff;
}
input:-moz-placeholder {
  font-style: italic;
  font-weight: 200;
  font-size: 16px;
  color: #fff;
}
input:-ms-input-placeholder {
  font-style: italic;
  font-weight: 200;
  font-size: 16px;
  color: #fff;
}
input {
  font-style: italic;
  font-weight: 200;
  font-size: 16px;
  color: #fff;
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.39);
  padding-bottom: 15px;
  margin-bottom: 36px;
  background: transparent;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
[type="submit"] {
  line-height: 46px;
  margin: auto;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 25px;
  width: 100%;
  height: 46px;
  background: #fff;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  font-style: normal;
  margin-top: 58px;
  margin-bottom: 36px;
  position: relative;
}
*/

.page-header {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #fff;
    padding: 4rem 20px;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.booking-section {
    padding: 5rem 0;
    background-color: #fff;
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
}

.booking-form {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row .form-group {
    margin-bottom: 1.5rem;
}

.required {
    color: #d4a574;
}

.form-info {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid #d4a574;
    margin-bottom: 2rem;
}

.form-info h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.form-info p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background-color: #d4a574;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: #c49563;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.3);
}

.form-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.booking-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #d4a574;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.step h4 {
    color: #1a1a1a;
    font-size: 0.95rem;
    margin: 0;
}

.success-message {
    background-color: #4caf50;
    color: white;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    text-align: center;
    display: none;
}

.success-message.show {
    display: block;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .step {
        padding: 1rem;
    }

    .step h4 {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .booking-steps {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 1.5rem;
    }
}