/* trip.css */

/* الأساسيات */
body {
    background-color: #e0f7fa;
    font-family: 'Cairo', sans-serif;
    margin: 0;
    padding: 0;
    direction: rtl;
    color: #004d40;
  }
  
  /* حاوية المحتوى */
  .container {
    max-width: 480px;
    background: #ffffff;
    margin: 50px auto;
    padding: 30px 25px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* رابط العودة */
  .back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #00796b;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .back-link:hover {
    color: #004d40;
  }
  
  /* العنوان */
  h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
  }
  
  /* صورة الرحلة */
  .hotel-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    height: 220px;
  }
  
  /* وصف الرحلة */
  .description {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 25px;
    color: #00695c;
  }
  
  /* الفورم */
  form {
    display: flex;
    flex-direction: column;
  }
  
  /* التسميات */
  label {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 15px;
    color: #00796b;
  }
  
  /* الحقول */
  input[type="text"],
  input[type="tel"],
  input[type="date"],
  select {
    padding: 12px 14px;
    border: 1.8px solid #80cbc4;
    border-radius: 10px;
    font-size: 15px;
    color: #004d40;
    margin-bottom: 18px;
    transition: border-color 0.3s ease;
    background-color: #e0f2f1;
  }
  
  input[type="text"]:focus,
  input[type="tel"]:focus,
  input[type="date"]:focus,
  select:focus {
    border-color: #00796b;
    outline: none;
    background-color: #ffffff;
  }
  
  /* زر الإرسال */
  input[type="submit"] {
    background-color: #00796b;
    color: white;
    padding: 14px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
  }
  
  input[type="submit"]:hover {
    background-color: #004d40;
  }
  
  /* زر بايبال */
  .paypal-button {
    margin-top: 20px;
    text-align: center;
  }
  
  .paypal-button a button {
    background-color: #ffc439;
    color: #111;
    font-weight: 700;
    border: none;
    padding: 14px 25px;
    border-radius: 12px;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 300px;
  }
  
  .paypal-button a button:hover {
    background-color: #e0b832;
  }
  
  /* استجابة الموبايل */
  @media (max-width: 480px) {
    .container {
      margin: 25px 10px;
      padding: 25px 20px;
    }
  
    h1 {
      font-size: 24px;
    }
  }
  