:root {
    --primary: #C22034;
    --primary-dark: #A11B2B;
    --accent: #1E2152;
    --accent-light: #2A2E70;
    --dark: #0f172a;
    --darker: #020617;
    --light-bg: #f8fafc;
    --border: #e2e8f0;
    --gradient-purple: #153D4D;
    --gradient-blue: #153D4D;
    --gradient-orange: #153D4D;
  }
  .contact-section {
    margin-top: -150px;
    padding: 0 5% 100px;
    position: relative;
    z-index: 10;
  }
  .contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 20px 60px -10px rgba(0,0,0,0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 400px 1fr;
  }
  .contact-sidebar {
    background: linear-gradient(135deg, #0077c8 0%, #004b87 100%);
    padding: 30px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
    border: 10px solid;
    border-radius: 36px;
}
  .sidebar-content {
    position: relative;
    z-index: 2;
  }
  .contact-sidebar h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .contact-sidebar p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
  }
  .contact-method {
    background: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: #000;
    display: block;
    place-items: center;
}
  .method-icon {
    width: 48px;
    height: 48px;
    background: #0078C9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    color: #fff;
}
  .method-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 6px;
  }
  .method-detail {
    font-size: 13px;
    color: #000;
    text-align: center;
    line-height: 1.6;
}
  .form-area {
    padding: 60px;
    position: relative;
  }
  .form-area > * {
          position: relative;
          z-index: 1;
        }
  .form-header {
    margin-bottom: 40px;
  }
  .form-header h2 {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 12px;
  }
  .form-header p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}
  @keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @media (max-width: 1200px) {
    .contact-wrapper {
      grid-template-columns: 1fr;
    }
    
    .contact-sidebar {
      padding: 50px 40px;
    }

    .form-area {
      padding: 50px 40px;
    }
  }
  @media (max-width: 768px) {

    .form-area, .contact-sidebar {
      padding: 40px 24px;
    }

    .contact-wrapper {
      border-radius: 24px;
    }
  }
  .page-header {
    background-color: #0b1120;
    background-image: radial-gradient(circle at 10% 50%, rgba(0, 119, 200, 0.08) 0%, transparent 40%), radial-gradient(circle at 90% 10%, rgba(56, 189, 248, 0.06) 0%, transparent 40%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 100px 0 120px;
  }
  @media (max-width: 767px) {
    .page-header {
      height: inherit;
      padding: 100px 0;
    }
  }
  .booking-form-status {
        font-size: 13px;margin-top: 20px;text-align: center;
      }
  .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        margin-bottom: 14px;
    }
  .form-row.full {
        grid-template-columns: 1fr;
    }
  .form-label {
        display: block;
        font-size: 12px;
        font-weight: 600;
        color: #475569;
        margin-bottom: 6px;
        letter-spacing: 0.3px;
    }
  .input-wrapper {
        position: relative;
    }
  .input-wrapper .input-icon {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        color: #94A3B8;
        transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
        z-index: 1;
    }
  .form-input,
    .form-select,
    .form-textarea {
        width: 100%;
        padding: 13px 16px 13px 42px;
        
        font-size: 14px;
        font-weight: 500;
        color: #0A1628;
        background: #F8FAFC;
        border: 1.5px solid #E2E8F0;
        border-radius: 10px;
        outline: none;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        appearance: none;
        -webkit-appearance: none;
    }
  .form-select {
        cursor: pointer;
        padding-right: 40px;
    }
  .form-textarea {
        padding: 13px 16px;
        min-height: 72px;
        resize: vertical;
        line-height: 1.5;
    }
  .submit-btn {
        width: 100%;
        padding: 16px 24px;
        margin-top: 8px;
        
        font-size: 15px;
        font-weight: 700;
        color: #FFFFFF;
        background: radial-gradient(ellipse 65% 80% at 78% 52%, rgba(0, 170, 255, 0.09) 0%, rgba(0, 100, 180, 0.04) 40%, transparent 70%), linear-gradient(135deg, #0B1F2A 0%, #0E2D3A 100%);
        border: none;
        border-radius: 10px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        letter-spacing: 0.3px;
    }
  .submit-btn-icon {
        font-size: 14px;
        transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }
  .form-footer {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        margin-top: 16px;
        font-size: 12px;
        color: #94A3B8;
    }
  .form-footer-icon {
        color: #10B981;
        font-size: 11px;
    }
  .form-row:nth-child(2) { animation: fadeInUp 0.4s ease 0.6s both; }
  .form-row:nth-child(3) { animation: fadeInUp 0.4s ease 0.7s both; }
  .form-row:nth-child(4) { animation: fadeInUp 0.4s ease 0.8s both; }
  .submit-btn { animation: fadeInUp 0.4s ease 1s both; }
  @media (max-width: 640px) {

        .form-row {
            grid-template-columns: 1fr;
        }
    }
  .submit-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
  }
  .form-row:nth-child(5) { animation: fadeInUp 0.4s ease 0.9s both; }
  @keyframes spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
  }